diff --git a/.gitignore b/.gitignore
index e537c121fc579681c8140c55af31471e4238bd0c..50aa88cb0836d934c94f3a46af18691acb0ede35 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,5 +25,5 @@ Desktop.ini
 /.vagrant
 Makefile
 /__pycache__
-/source
+/docs/source
 *.pyc
diff --git a/docs/source/HowToRun.rst b/docs/source/HowToRun.rst
deleted file mode 100644
index 8f3a5857e1a742079119ea858954f97e69713972..0000000000000000000000000000000000000000
--- a/docs/source/HowToRun.rst
+++ /dev/null
@@ -1,220 +0,0 @@
-How to use Spindle FEA
-===============================
-Spindle FEA application is an easy to use tool that can be run either directly from the
-command line or from the Abaqus CAE gui interface. Here we discuss
-prerequisites and provide a step-by-step guide to running a simple analysis.
-
-Requirements
--------------
-1. The application relies on the third party finite element package `Abaqus CAE
-<https://www.3ds.com/products-services/simulia/products/abaqus/abaquscae/>`_
-by Dassault Systems. Abaqus CAE version 6.11+ should be installed in order to use this application.
-No further requirements need to be satisfied for a simple use of the application without modifying
-its modules.
-
-2. If, however, the internal modules need to be modified to add some new functionality or alter
-the existing one it is recommended to install `Python 2.7
-<https://www.python.org/download/releases/2.7/>`_
-and `Anaconda
-<https://www.anaconda.com/>`_
-platform.
-
-Configure and run the analysis
--------------------------------
-Run executing python scripts in Abaqus CAE graphical interface
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-1. Lunch Abaqus CAE from command line or shortcut on your desktop and close the
-   ``Start Session`` window.
-
-   .. figure::  images/GUIstp1.pdf
-      :target: ../../source/images/GUIstp1.pdf
-      :align:   center
-
-2. Go to ``File`` then to ``Set Work Directory...``
-
-   .. figure::  images/GUIstp2.pdf
-      :target: ../../source/images/GUIstp2.pdf
-      :align:   center
-
-   and browse to the root directory of Spindle FEA called ``Spindle``.
-
-3. Configure ``job.py`` file by providing all the essential modelling parameters.
-   All the spindle geometric and physical parameters should be inserted into a
-   dictionary ``kwargs``.
-
-4. Modify execution parameters in ``mdb.Job()`` in ``job.py`` file.
-
-   .. code-block:: python
-      :linenos:
-
-       mdb.Job(name=name, model=modelname, description='', type=ANALYSIS, atTime=None,
-               waitMinutes=0, waitHours=0, queue=None, memory=90,
-               memoryUnits=PERCENTAGE, getMemoryFromAnalysis=True,
-               explicitPrecision=SINGLE, nodalOutputPrecision=SINGLE, echoPrint=OFF,
-               modelPrint=OFF, contactPrint=OFF, historyPrint=OFF, userSubroutine='',
-               scratch='', resultsFormat=ODB, multiprocessingMode=DEFAULT, numCpus=1,
-               numGPUs=0)
-
-   Users may change queueing by changing ``queue`` parameter, memory allocation in % by changing ``memory`` parameter,
-   precision of the computation in ``explicitPrecision`` and in ``nodalOutputPrecision`` and also request parallelisation of computations
-   by changing type of threading in ``multiprocessingMode``, number of CPUs in ``numCpus`` and number of GPUs in ``numGPUs``. It is highly
-   recommended that before changing any of the above parameters you closely read the Abaqus CAE documentation accessible from ``Help`` tab
-   in Abaqus CAE graphical interface.
-
-5. Run the analysis by going to ``File`` then ``Run Script...`` and selecting ``job.py``.
-
-.. figure::  images/GUIstp3.pdf
-  :target: ../../source/images/GUIstp3.pdf
-  :align:   center
-
-6. After the analysis has been executed you can see the results by opening a `Job-1.odb` file within Abaqus graphical interface.
-The critical buckling loads will also be accessible from ``Job-1.dat`` file. If you renamed the job by changing ``JobName`` parameter in
-``job.py`` file then the .odb and .dat files will have different names.
-
-Run from Windows or Linux command line
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-1. To run the job from the command line you should first navigate to ``Spindle`` directory using ``cd`` command.
-
-2. Within ``Spindle`` directory you need to open ``job.py`` in your favourite code editing application if you want to
-change some default parameters of the analysis.
-
-3. When ready you need to type ``abaqus cae noGUI=job.py`` in the command line and hit enter to start the analysis.
-
-4. After analysis has finished you can open ``Job-1.odb`` in Abaqus GUI or access it via your own python scripts. Same for the ``Job-1.dat`` file.
-
-Explanation of the ``kwargs`` parameters
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-The default ``kwargs`` dictionary is presented in the code snippet blow. The defaults may be
-easily changed by replacing the values of ``kwargs`` in ``job.py`` with the user defined ones.
-
-.. code-block:: python
-   :linenos:
-
-   " User input parameters "
-   kwargs =
-         {'x'               : 0,
-          'y'               : 0,
-          'index'           : 0,
-          'modelname'       : 'test',
-          'assembly'        : 0,
-          'CentrosomeRadius': 0.24,
-          'CentrosomeLength': 0.48,
-          'CentrosomeE'     : 1500000000.0,
-          'CentrosomeNu'    : 0.3,
-          'ipMTnumber'      : 6,
-          'lengthInterval'  : [2, 5],
-          'separation'      : [0.02876, 0.0414],
-          'angle'           : [96.39, 11.12],
-          'd'              : 0.015,
-          'D'              : 0.025,
-          'ElasticModulus'  : 1500000000.0,
-          'PoissonRatio'    : 0.3,
-          'spindleLength'   : 10,
-          'Nconnectors'     : 10,
-          'connectorRadius' : 0.005,
-          'connectorE'      : 1500000000.,
-          'connectorNu'     : 0.3,
-          'aMTnumber'       : 20,
-          'aMTlength'       : 2,
-          'aMTsSpring'      : 10,
-          'groundSpring'    : 10,
-          'StepName'        : 'Standard_Buckling',
-          'NumberOfEigs'    : 20,
-          'CompressiveLoad' : 1,
-          'JobName'         : 'Job-1'}
-
-
-Here ``modelname`` is the string representing the name of the model,
-
-``CentrosomeRadius`` is a radius of the centrosome or pole in :math:`\mu m`.
-
-``CentrosomeLength`` is a length of the centrosome or pole in :math:`\mu m`.
-
-``CentrosomeE`` is an elastic modulus of centrosome material in :math:`\frac{pN}{\mu m^{2}}`.
-
-``CentrosomeNu`` is a Poisson ratio of the centrosome material. Taken to be :math:`0.3` for the isotropic model.
-
-``ipMTnumber`` is a number of inter-polar microtubules in a bundle. Typically up to :math:`6` in `Anaphase B`.
-
-``lengthInterval`` is defined by the mean value of the Gaussian distribution :math:`\mu_{L} = 5 \mu m` representing the average length of the inter-polar microtubule :math:`L_{p}/2` and the standard deviation :math:`\sigma_{L} = 2 \mu m` of the MT length :math:`L_{m}/2`.
-
-    .. _spindle:
-    .. figure::  images/spindle_html.pdf
-       :align:   center
-
-        The model of the whole spindle in anaphase B generated by Spindle FEA with the interpolar distance labeled :math:`L_{p}` and the midzone length labeled :math:`L_{m}`.
-
-    The inter-polar distance is the distance between the centrosomes :math:`L_{p}` and the midzone length is the length :math:`L_{m}` of the zone where MTs are coupled by interlinkers and protein motors as shown in :numref:`spindle`.
-
-``separation`` is the distance between two neighbouring MTs in the inter-polar bundle as shown on the cross-sectional view of the spindle in :numref:`midzone`.
-
-    .. _midzone:
-    .. figure::  images/interlinked_zone.pdf
-       :align:   center
-
-        The model of the inter-polar bundle of the mitotic spindle generated by Spindle FEA exhibiting right and left pole MTs, interlinked zone, connectors and protein motors as well as separation distance between MTs in a bundle.
-
-    It is generally random and by default is defined by the Gaussian distribution with :math:`\mu_{s} = 0.02876 \mu m` and :math:`\sigma_{s} = 0.0414 \mu m` that were calculated from the experimental data [1]_.
-
-    .. [1] J. J. Ward, H. Roque, C. Antony, and F. Nedelec.
-                `Mechanical design principles of a mitotic spindle.`
-                eLife, 2014.
-
-``angle`` is the the orientation angle :math:`\phi` of the microtubules within the inter-polar bundle as shown in :numref:`MTangle`.
-
-    .. _Mtangle:
-    .. figure::  images/MTangle.pdf
-       :align:   center
-
-        The schematic view of the cross-section of the inter-polar bundle of microtubules near pole and in the mid-zone. The green MTs are growing from the left pole while the purple ones are growing from the right pole.
-
-    The MT angle is also a defined by a Gaussian distribution with mean and standard deviation taken from experimental data [1]_. The default values are :math:`\mu_{\phi}=96.39^{\circ}` and :math:`\sigma_{\phi}=11.12^{\circ}`.
-
-``d`` is the inner diameter of a microtubule as shown in :numref:`MTangle`. Default value is :math:`d=0.015 \mu m`.
-
-``D`` is the outer diameter of a microtubule as shown in :numref:`MTangle`. The value is :math:`D=0.025 \mu m` according to Ward et al. [2]_ and :math:`D=0.018 \mu m` according to Pampaloni et al. [1]_ The default value is :math:`D=0.025 \mu m`.
-
-``ElasticModulus`` is an elastic modulus of microtubule material. In the simplest case an isotropic model for microtubule is assumed and the default value is :math:`E=1.5 \times 10^{9} \frac{pN}{\mu m^{2}}` [2]_.
-
-    .. [2] F. Pampaloni, G. Lattanzi, A. Jonas, T. Surrey, E. Frey, and E-L. Florin.
-          `Thermal fluctuations of grafted microtubules provide evidence of a
-          length-dependent persistence length.`
-          Proceedings of the National Academy of Sciences, 2006.
-
-``PoissonRatio`` is the Poisson ratio of microtubule material. Assumed to be :math:`\nu=0.3` for isotropic model.
-
-``spindleLength`` is the distance between poles of the spindle as shown in :numref:`spindle`. The default value for the late anaphase B is :math:`L_{p}=10 \mu m` [1]_.
-
-``Nconnectors`` is the number of interlinkers and protein motors in the mid-zone (see :numref:`midzone`). The exact number of interlinkers is hard to estimate from the experiments therefore can become
-    one of the governing parameters of the model. The default value is :math:`10` per microtubule.
-
-``connectorRadius`` is the radius of the cross-link between MTs. The default value is :math:`r=0.005 \mu m`.
-
-``connectorE`` is the elastic modulus of the connector material. The default value is assumed the same as the one for the microtubule :math:`E=1.5 \times 10^{9} \frac{pN}{\mu m^{2}}`.
-
-``connectorNu`` Poisson ratio of the connector material. Assumed :math:`\nu=0.3`.
-
-``aMTnumber`` is the number of astral microtubules to be modelled in a spindle. The default is :math:`20`.
-
-``aMTlength`` is the length of astral MTs which is generally governed by the radius of the cell membrane and the length between cell tips. The default value is :math:`L_{aMT}=2 \mu m` with cell radius :math:`R_{cell}=1.6 \mu m` [1]_ and the cell length :math:`L_{cell}=14.3 \mu m` [1]_.
-
-``aMTsSpring`` is the stiffness of the distributed spring that we employ to model astral microtubule embedding in the surrounding mesh of MT connectors [3]_. The default value is :math:`k = 10 \frac{pN}{\mu m^{2}}`.
-
-    .. [3] F. M. Nixon, C. Gutierrez-Caballero, F. E. Hood, D. G. Booth, I. A. Prior,
-          and S. J. Royle. `The mesh is a network of microtubule connectors that stabilizes
-          individual kinetochore fibers of the mitotic spindle.` eLife, 2015.
-
-``groundSpring`` is the spring stiffness of the distributed spring that we employ to model inter-polar MT bundle embedding in the mesh of MT connectors [3]_. The default value is :math:`k = 10 \frac{pN}{\mu m^{2}}`.
-
-``StepName`` is the name of the buckling analysis step.
-
-``NumberOfEigs`` is the number of the eigenvalues and, thus, critical buckling loads that need to be calculated. Notice, that as buckling analysis uses subspace algorithm for eigenvalue calculation the execution time will increase dramatically with the number of requested eigenvalues.
-    The default is 5.
-
-``CompressiveLoad`` is the preload factor that will be used to multiply the eigenvalue to obtain the critical buckling load. It is recommended that this parameter is not changed.
-
-``JobName`` is the name of the job and will be included in all the names of all files produced by analysis. Default is ``Job-1``.
-
-
-
diff --git a/docs/source/LoadCase.rst b/docs/source/LoadCase.rst
deleted file mode 100644
index 93ec7c318f2a205abe1eedbbd56d41d736076ecb..0000000000000000000000000000000000000000
--- a/docs/source/LoadCase.rst
+++ /dev/null
@@ -1,46 +0,0 @@
-LoadCase package
-================
-
-Submodules
-----------
-
-LoadCase.Interaction module
----------------------------
-
-.. automodule:: LoadCase.Interaction
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-LoadCase.InteractionHelpers module
-----------------------------------
-
-.. automodule:: LoadCase.InteractionHelpers
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-LoadCase.LoadsAndBCs module
----------------------------
-
-.. automodule:: LoadCase.LoadsAndBCs
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-LoadCase.Step module
---------------------
-
-.. automodule:: LoadCase.Step
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-
-Module contents
----------------
-
-.. automodule:: LoadCase
-    :members:
-    :undoc-members:
-    :show-inheritance:
diff --git a/docs/source/Parts.rst b/docs/source/Parts.rst
deleted file mode 100644
index 2f28c671db83f7dd869bbf478405d05aada7bef5..0000000000000000000000000000000000000000
--- a/docs/source/Parts.rst
+++ /dev/null
@@ -1,30 +0,0 @@
-Parts package
-=============
-
-Submodules
-----------
-
-Parts.GeometryBuilder module
-----------------------------
-
-.. automodule:: Parts.GeometryBuilder
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-Parts.standard\_parts module
-----------------------------
-
-.. automodule:: Parts.standard_parts
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-
-Module contents
----------------
-
-.. automodule:: Parts
-    :members:
-    :undoc-members:
-    :show-inheritance:
diff --git a/docs/source/Project_idea.rst b/docs/source/Project_idea.rst
deleted file mode 100644
index 49e8daace4dabb46271c56f0f3441e75f4fe7c0f..0000000000000000000000000000000000000000
--- a/docs/source/Project_idea.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-Objectives of this project
-===============================
-
-.. figure::  images/Spindle_image.svg
-   :align:   center
-
-   3D Finite element model of the mitotic spindle
\ No newline at end of file
diff --git a/docs/source/SpindleAssembly.rst b/docs/source/SpindleAssembly.rst
deleted file mode 100644
index a97b2e549b9a50f6b01195c6555e777d0c920532..0000000000000000000000000000000000000000
--- a/docs/source/SpindleAssembly.rst
+++ /dev/null
@@ -1,54 +0,0 @@
-SpindleAssembly package
-=======================
-
-Submodules
-----------
-
-SpindleAssembly.AddComponents module
-------------------------------------
-
-.. automodule:: SpindleAssembly.AddComponents
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-SpindleAssembly.PositionComponents module
------------------------------------------
-
-.. automodule:: SpindleAssembly.PositionComponents
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-SpindleAssembly.PositionConnectors module
------------------------------------------
-
-.. automodule:: SpindleAssembly.PositionConnectors
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-SpindleAssembly.PositionIpMTs module
-------------------------------------
-
-.. automodule:: SpindleAssembly.PositionIpMTs
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-SpindleAssembly.assembly\_random module
----------------------------------------
-
-.. automodule:: SpindleAssembly.assembly_random
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-
-Module contents
----------------
-
-.. automodule:: SpindleAssembly
-    :members:
-    :undoc-members:
-    :show-inheritance:
diff --git a/docs/source/SpindleMesh.rst b/docs/source/SpindleMesh.rst
deleted file mode 100644
index 22de2b7639a2d027ed4e34cd852de7bc3c15b214..0000000000000000000000000000000000000000
--- a/docs/source/SpindleMesh.rst
+++ /dev/null
@@ -1,22 +0,0 @@
-SpindleMesh package
-===================
-
-Submodules
-----------
-
-SpindleMesh.generate\_mesh module
----------------------------------
-
-.. automodule:: SpindleMesh.generate_mesh
-    :members:
-    :undoc-members:
-    :show-inheritance:
-
-
-Module contents
----------------
-
-.. automodule:: SpindleMesh
-    :members:
-    :undoc-members:
-    :show-inheritance:
diff --git a/docs/source/conf.py b/docs/source/conf.py
deleted file mode 100644
index f3768440cb4c4187095a5019ad42975b23be0335..0000000000000000000000000000000000000000
--- a/docs/source/conf.py
+++ /dev/null
@@ -1,182 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-# Configuration file for the Sphinx documentation builder.
-#
-# This file does only contain a selection of the most common options. For a
-# full list see the documentation:
-# http://www.sphinx-doc.org/en/master/config
-
-# -- Path setup --------------------------------------------------------------
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#
-import os
-import sys
-path = "/Users/Andrico/Documents/One_Drive/OneDrive - University " \
-       "of Southampton/Buckling/Spindle"
-sys.path.insert(0, os.path.abspath(path))
-
-
-# -- Project information -----------------------------------------------------
-
-project = 'Spindle FEA'
-copyright = '2018, Andrii Iakovliev'
-author = 'Andrii Iakovliev'
-
-# The short X.Y version
-version = '2.0'
-# The full version, including alpha/beta/rc tags
-release = '1.0.0'
-
-
-# -- General configuration ---------------------------------------------------
-
-# If your documentation needs a minimal Sphinx version, state it here.
-#
-# needs_sphinx = '1.0'
-
-# Add any Sphinx extension module names here, as strings. They can be
-# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
-# ones.
-extensions = [
-    'sphinx.ext.autodoc',
-    'sphinx.ext.coverage',
-    'sphinx.ext.mathjax',
-    'sphinx.ext.ifconfig',
-    'sphinx.ext.viewcode',
-    'sphinx.ext.githubpages',
-    'sphinx.ext.napoleon',
-]
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
-
-# The suffix(es) of source filenames.
-# You can specify multiple suffix as a list of string:
-#
-# source_suffix = ['.rst', '.md']
-source_suffix = '.rst'
-
-# The master toctree document.
-master_doc = 'index'
-
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#
-# This is also used if you do content translation via gettext catalogs.
-# Usually you set "language" from the command line for these cases.
-language = None
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-# This pattern also affects html_static_path and html_extra_path .
-exclude_patterns = []
-
-# The name of the Pygments (syntax highlighting) style to use.
-pygments_style = 'sphinx'
-
-
-# -- Options for HTML output -------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages.  See the documentation for
-# a list of builtin themes.
-#
-html_theme = 'sphinx_rtd_theme'
-html_theme_path = ["_themes", ]
-html_theme_options = {
-    'canonical_url': '',
-    'analytics_id': '',
-    'logo_only': False,
-    'display_version': True,
-    'prev_next_buttons_location': 'bottom',
-    'style_external_links': False,
-    'vcs_pageview_mode': '',
-    # Toc options
-    'collapse_navigation': True,
-    'sticky_navigation': True,
-    'navigation_depth': 4,
-    'includehidden': True,
-    'titles_only': False
-}
-# Theme options are theme-specific and customize the look and feel of a theme
-# further.  For a list of options available for each theme, see the
-# documentation.
-#
-# html_theme_options = {}
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['_static']
-
-# Custom sidebar templates, must be a dictionary that maps document names
-# to template names.
-#
-# The default sidebars (for documents that don't match any pattern) are
-# defined by theme itself.  Builtin themes are using these templates by
-# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
-# 'searchbox.html']``.
-#
-# html_sidebars = {}
-
-
-# -- Options for HTMLHelp output ---------------------------------------------
-
-# Output file base name for HTML help builder.
-htmlhelp_basename = 'FEASpindledoc'
-numfig = True
-
-# -- Options for LaTeX output ------------------------------------------------
-
-latex_elements = {
-    # The paper size ('letterpaper' or 'a4paper').
-    #
-    # 'papersize': 'letterpaper',
-
-    # The font size ('10pt', '11pt' or '12pt').
-    #
-    # 'pointsize': '10pt',
-
-    # Additional stuff for the LaTeX preamble.
-    #
-    # 'preamble': '',
-
-    # Latex figure (float) alignment
-    #
-    # 'figure_align': 'htbp',
-}
-
-# Grouping the document tree into LaTeX files. List of tuples
-# (source start file, target name, title,
-#  author, documentclass [howto, manual, or own class]).
-latex_documents = [
-    (master_doc, 'FEASpindle.tex', 'FEA Spindle Documentation',
-     'Andrii Iakovliev', 'manual'),
-]
-
-
-# -- Options for manual page output ------------------------------------------
-
-# One entry per manual page. List of tuples
-# (source start file, name, description, authors, manual section).
-man_pages = [
-    (master_doc, 'feaspindle', 'FEA Spindle Documentation',
-     [author], 1)
-]
-
-
-# -- Options for Texinfo output ----------------------------------------------
-
-# Grouping the document tree into Texinfo files. List of tuples
-# (source start file, target name, title, author,
-#  dir menu entry, description, category)
-texinfo_documents = [
-    (master_doc, 'FEASpindle', 'FEA Spindle Documentation',
-     author, 'FEASpindle', 'One line description of project.',
-     'Miscellaneous'),
-]
-
-
-# -- Extension configuration -------------------------------------------------
\ No newline at end of file
diff --git a/docs/source/images/GUIstp-1.pdf_tex b/docs/source/images/GUIstp-1.pdf_tex
deleted file mode 100644
index a233c5ce1853ce0399825c53eedcf6f0bf8e0182..0000000000000000000000000000000000000000
--- a/docs/source/images/GUIstp-1.pdf_tex
+++ /dev/null
@@ -1,54 +0,0 @@
-%% Creator: Inkscape inkscape 0.92.2, www.inkscape.org
-%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010
-%% Accompanies image file 'GUIstp-1.pdf' (pdf, eps, ps)
-%%
-%% To include the image in your LaTeX document, write
-%%   \input{<filename>.pdf_tex}
-%%  instead of
-%%   \includegraphics{<filename>.pdf}
-%% To scale the image, write
-%%   \def\svgwidth{<desired width>}
-%%   \input{<filename>.pdf_tex}
-%%  instead of
-%%   \includegraphics[width=<desired width>]{<filename>.pdf}
-%%
-%% Images with a different path to the parent latex file can
-%% be accessed with the `import' package (which may need to be
-%% installed) using
-%%   \usepackage{import}
-%% in the preamble, and then including the image with
-%%   \import{<path to file>}{<filename>.pdf_tex}
-%% Alternatively, one can specify
-%%   \graphicspath{{<path to file>/}}
-%% 
-%% For more information, please see info/svg-inkscape on CTAN:
-%%   http://tug.ctan.org/tex-archive/info/svg-inkscape
-%%
-\begingroup%
-  \makeatletter%
-  \providecommand\color[2][]{%
-    \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}%
-    \renewcommand\color[2][]{}%
-  }%
-  \providecommand\transparent[1]{%
-    \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}%
-    \renewcommand\transparent[1]{}%
-  }%
-  \providecommand\rotatebox[2]{#2}%
-  \ifx\svgwidth\undefined%
-    \setlength{\unitlength}{1148.00006104bp}%
-    \ifx\svgscale\undefined%
-      \relax%
-    \else%
-      \setlength{\unitlength}{\unitlength * \real{\svgscale}}%
-    \fi%
-  \else%
-    \setlength{\unitlength}{\svgwidth}%
-  \fi%
-  \global\let\svgwidth\undefined%
-  \global\let\svgscale\undefined%
-  \makeatother%
-  \begin{picture}(1,0.54878046)%
-    \put(0,0){\includegraphics[width=\unitlength,page=1]{GUIstp-1.pdf}}%
-  \end{picture}%
-\endgroup%
diff --git a/docs/source/images/GUIstp-1.png b/docs/source/images/GUIstp-1.png
deleted file mode 100644
index 6f0efcc20738e3f0f55c30a0b3a245bd9e987f62..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp-1.png and /dev/null differ
diff --git a/docs/source/images/GUIstp1.pdf b/docs/source/images/GUIstp1.pdf
deleted file mode 100644
index 7a427376f65ab45abd91baef41e03c770e054f83..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp1.pdf and /dev/null differ
diff --git a/docs/source/images/GUIstp2.pdf b/docs/source/images/GUIstp2.pdf
deleted file mode 100644
index 90383ad597f55bdaf3b6c2853429dd0d6d899e1c..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp2.pdf and /dev/null differ
diff --git a/docs/source/images/GUIstp3.pdf b/docs/source/images/GUIstp3.pdf
deleted file mode 100644
index dde7fea6f86b50d23932ed20967b873d86f18c74..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp3.pdf and /dev/null differ
diff --git a/docs/source/images/GUIstp3.pdf_tex b/docs/source/images/GUIstp3.pdf_tex
deleted file mode 100644
index 00810a30a33f5cd51b028164cd661c04ae702f27..0000000000000000000000000000000000000000
--- a/docs/source/images/GUIstp3.pdf_tex
+++ /dev/null
@@ -1,54 +0,0 @@
-%% Creator: Inkscape inkscape 0.92.2, www.inkscape.org
-%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010
-%% Accompanies image file 'GUIstp3.pdf' (pdf, eps, ps)
-%%
-%% To include the image in your LaTeX document, write
-%%   \input{<filename>.pdf_tex}
-%%  instead of
-%%   \includegraphics{<filename>.pdf}
-%% To scale the image, write
-%%   \def\svgwidth{<desired width>}
-%%   \input{<filename>.pdf_tex}
-%%  instead of
-%%   \includegraphics[width=<desired width>]{<filename>.pdf}
-%%
-%% Images with a different path to the parent latex file can
-%% be accessed with the `import' package (which may need to be
-%% installed) using
-%%   \usepackage{import}
-%% in the preamble, and then including the image with
-%%   \import{<path to file>}{<filename>.pdf_tex}
-%% Alternatively, one can specify
-%%   \graphicspath{{<path to file>/}}
-%% 
-%% For more information, please see info/svg-inkscape on CTAN:
-%%   http://tug.ctan.org/tex-archive/info/svg-inkscape
-%%
-\begingroup%
-  \makeatletter%
-  \providecommand\color[2][]{%
-    \errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}%
-    \renewcommand\color[2][]{}%
-  }%
-  \providecommand\transparent[1]{%
-    \errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}%
-    \renewcommand\transparent[1]{}%
-  }%
-  \providecommand\rotatebox[2]{#2}%
-  \ifx\svgwidth\undefined%
-    \setlength{\unitlength}{1145.00006104bp}%
-    \ifx\svgscale\undefined%
-      \relax%
-    \else%
-      \setlength{\unitlength}{\unitlength * \real{\svgscale}}%
-    \fi%
-  \else%
-    \setlength{\unitlength}{\svgwidth}%
-  \fi%
-  \global\let\svgwidth\undefined%
-  \global\let\svgscale\undefined%
-  \makeatother%
-  \begin{picture}(1,0.54847157)%
-    \put(0,0){\includegraphics[width=\unitlength,page=1]{GUIstp3.pdf}}%
-  \end{picture}%
-\endgroup%
diff --git a/docs/source/images/GUIstp3.png b/docs/source/images/GUIstp3.png
deleted file mode 100644
index 364d2e4fbb1b219aa9596b298183421af3d70791..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp3.png and /dev/null differ
diff --git a/docs/source/images/GUIstp4.png b/docs/source/images/GUIstp4.png
deleted file mode 100644
index 8d4ea94df78805c9a285b7e71bbd6fcc95c373b4..0000000000000000000000000000000000000000
Binary files a/docs/source/images/GUIstp4.png and /dev/null differ
diff --git a/docs/source/images/MT_structure.pdf b/docs/source/images/MT_structure.pdf
deleted file mode 100644
index 0100749a983ebcaf0699c52a432d9dcb0422ef2d..0000000000000000000000000000000000000000
Binary files a/docs/source/images/MT_structure.pdf and /dev/null differ
diff --git a/docs/source/images/MTangle.pdf b/docs/source/images/MTangle.pdf
deleted file mode 100644
index 783a64578aff8215cb41cab4ead6b5268850f473..0000000000000000000000000000000000000000
Binary files a/docs/source/images/MTangle.pdf and /dev/null differ
diff --git a/docs/source/images/Spindle_Image.svg b/docs/source/images/Spindle_Image.svg
deleted file mode 100644
index 30f9d12fee969a87bcaf4003ae3195dc3d0ecf0a..0000000000000000000000000000000000000000
--- a/docs/source/images/Spindle_Image.svg
+++ /dev/null
@@ -1,93831 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="500"
-   height="188.58743"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="Spindle_Image.svg">
-  <metadata
-     id="metadata36910">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <defs
-     id="defs36908">
-    <script
-       id="script36734"
-       type="text/ecmascript"><![CDATA[
-var svgdoc, root; 
-var fTol = 2000.;
-var fBlueTol = 0.05 * fTol;
-var fGreenTol = 0.017 * fTol;
-var fRedTol = 0.032 * fTol;
-var svgnsz="http://www.w3.org/2000/svg";
-var version = 'Viewer unknown';
-try
-{
-version = window.getSVGViewerVersion();
-if(version.search("Adobe") != -1)
-{
-svgnsz = null;
-}
-}
-catch(er)
-{
-}
-function SubDivideTriangle(evt, x1,y1,x2,y2,x3,y3,c1R,c1G,c1B,c2R,c2G,c2B,c3R,c3G,c3B,alpha)
-{
-svgdoc=evt.target.ownerDocument;
-root=evt.target;
-
-if(Math.abs(c2B - c1B) > fBlueTol ||
-Math.abs(c2G - c1G) > fGreenTol ||
-Math.abs(c2R - c1R) > fRedTol ||
-Math.abs(c3B - c1B) > fBlueTol ||
-Math.abs(c3G - c1G) > fGreenTol ||
-Math.abs(c3R - c1R) > fRedTol ||
-Math.abs(c2B - c3B) > fBlueTol ||
-Math.abs(c2G - c3G) > fGreenTol ||
-Math.abs(c2R - c3R) > fRedTol )
-{
-var v1x = 0.5*(x1+x2);
-var v1y = 0.5*(y1+y2);
-var v2x = 0.5*(x1+x3);
-var v2y = 0.5*(y1+y3);
-var v3x = 0.5*(x2+x3);
-var v3y = 0.5*(y2+y3);
-var c1r = 0.5*(c1R+c2R);
-var c1g = 0.5*(c1G+c2G);
-var c1b = 0.5*(c1B+c2B);
-var c2r = 0.5*(c1R+c3R);
-var c2g = 0.5*(c1G+c3G);
-var c2b = 0.5*(c1B+c3B);
-var c3r = 0.5*(c2R+c3R);
-var c3g = 0.5*(c2G+c3G);
-var c3b = 0.5*(c2B+c3B);
-SubDivideTriangle(evt,x1,y1,v1x,v1y,v2x,v2y, c1R,c1G,c1B,c1r,c1g,c1b,c2r,c2g,c2b, alpha);
-SubDivideTriangle(evt,v1x,v1y,v2x,v2y,v3x,v3y, c1r,c1g,c1b,c2r,c2g,c2b,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v1x,v1y,x2,y2,v3x,v3y, c1r,c1g,c1b,c2R,c2G,c2B,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v2x,v2y,v3x,v3y,x3,y3, c2r,c2g,c2b,c3r,c3g,c3b,c3R,c3G,c3B,alpha);
-}
-else
-{
-obj = svgdoc.createElementNS(svgnsz,'polygon');
-str = String(x1) + "," + String(y1) + " " + String(x2) + "," + String(y2) + " " + String(x3) + "," + String(y3) ;
-obj.setAttributeNS(null,'points', str);
-var rc = Math.round((c1R+c2R+c3R)/3.0).toString(16);
-var gc = Math.round((c1G+c2G+c3G)/3.0).toString(16);
-var bc = Math.round((c1B+c2B+c3B)/3.0).toString(16);
-if(rc.length == 1) rc = "0"+rc;
-if(gc.length == 1) gc = "0"+gc;
-if(bc.length == 1) bc = "0"+bc;
-cStr = "#" + rc + gc + bc;
-aStr = String(alpha);
-obj.setAttributeNS(null, "style", "fill:" + cStr + "; stroke:" + cStr + "; opacity:" + aStr );
-aStr = String(alpha);
-obj.setAttributeNS(null,"opacity", aStr);
-root.appendChild(obj);
-}
-}
-]]></script>
-  </defs>
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1151"
-     inkscape:window-height="607"
-     id="namedview36906"
-     showgrid="false"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:zoom="0.17744705"
-     inkscape:cx="808.79765"
-     inkscape:cy="277.91906"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="svg2" />
-  <g
-     id="g36736"
-     onload="SubDivideTriangle(evt,142.02,715.71,135.66,689.33,134.17,690.08,135,0,0,135,0,0,167,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36738"
-     onload="SubDivideTriangle(evt,134.17,690.08,140.52,716.46,142.02,715.71,167,0,0,167,0,0,135,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36740"
-     onload="SubDivideTriangle(evt,140.52,716.46,134.17,690.08,132.39,690.37,167,0,0,167,0,0,183,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36742"
-     onload="SubDivideTriangle(evt,132.39,690.37,138.74,716.76,140.52,716.46,183,0,0,183,0,0,167,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36744"
-     onload="SubDivideTriangle(evt,138.74,716.76,132.39,690.37,131.00,690.09,183,0,0,183,0,0,177,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36746"
-     onload="SubDivideTriangle(evt,131.00,690.09,137.35,716.47,138.74,716.76,177,0,0,177,0,0,183,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36748"
-     onload="SubDivideTriangle(evt,137.35,716.47,131.00,690.09,130.53,689.34,177,0,0,177,0,0,152,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36750"
-     onload="SubDivideTriangle(evt,130.53,689.34,136.88,715.73,137.35,716.47,152,0,0,152,0,0,177,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36752"
-     onload="SubDivideTriangle(evt,142.64,714.79,136.29,688.40,135.66,689.33,127,0,0,127,0,0,135,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36754"
-     onload="SubDivideTriangle(evt,135.66,689.33,142.02,715.71,142.64,714.79,135,0,0,135,0,0,127,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36756"
-     onload="SubDivideTriangle(evt,129.99,674.66,139.41,690.09,141.10,687.62,195,0,0,164,0,0,133,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36758"
-     onload="SubDivideTriangle(evt,129.99,674.66,141.10,687.62,139.84,685.62,195,0,0,133,0,0,127,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36760"
-     onload="SubDivideTriangle(evt,129.99,674.66,125.73,690.13,126.98,692.12,195,0,0,179,0,0,202,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36762"
-     onload="SubDivideTriangle(evt,129.99,674.66,126.98,692.12,130.69,692.87,195,0,0,202,0,0,213,5,5,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36764"
-     onload="SubDivideTriangle(evt,129.99,674.66,130.69,692.87,135.44,692.09,195,0,0,213,5,5,192,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36766"
-     onload="SubDivideTriangle(evt,129.99,674.66,135.44,692.09,139.41,690.09,195,0,0,192,0,0,164,0,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36784"
-     onload="SubDivideTriangle(evt,139.15,712.72,157.92,697.86,156.71,698.08,0,195,0,0,195,0,0,177,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36786"
-     onload="SubDivideTriangle(evt,156.71,698.08,137.95,712.93,139.15,712.72,0,177,0,0,177,0,0,195,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36792"
-     onload="SubDivideTriangle(evt,142.09,716.48,160.86,701.62,160.48,700.05,0,127,0,0,127,0,0,156,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36794"
-     onload="SubDivideTriangle(evt,160.48,700.05,141.71,714.91,142.09,716.48,0,156,0,0,156,0,0,127,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36796"
-     onload="SubDivideTriangle(evt,141.71,714.91,160.48,700.05,159.36,698.61,0,156,0,0,156,0,0,187,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36798"
-     onload="SubDivideTriangle(evt,159.36,698.61,140.59,713.47,141.71,714.91,0,187,0,0,187,0,0,156,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36800"
-     onload="SubDivideTriangle(evt,140.59,713.47,159.36,698.61,157.92,697.86,0,187,0,0,187,0,0,195,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36802"
-     onload="SubDivideTriangle(evt,157.92,697.86,139.15,712.72,140.59,713.47,0,195,0,0,195,0,0,187,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36804"
-     onload="SubDivideTriangle(evt,168.64,692.40,156.90,693.63,160.74,695.64,0,127,0,0,164,0,0,157,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36806"
-     onload="SubDivideTriangle(evt,168.64,692.40,160.74,695.64,163.74,699.46,0,127,0,0,157,0,0,129,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36808"
-     onload="SubDivideTriangle(evt,168.64,692.40,163.74,699.46,164.75,703.65,0,127,0,0,129,0,0,127,0,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36846"
-     onload="SubDivideTriangle(evt,139.15,712.72,115.75,707.96,114.80,709.29,0,0,195,0,0,195,0,0,215,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36848"
-     onload="SubDivideTriangle(evt,114.80,709.29,138.21,714.04,139.15,712.72,0,0,215,0,0,215,0,0,195,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36850"
-     onload="SubDivideTriangle(evt,138.21,714.04,114.80,709.29,114.45,711.08,0,0,215,0,0,215,0,0,201,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36852"
-     onload="SubDivideTriangle(evt,114.45,711.08,137.86,715.83,138.21,714.04,0,0,201,0,0,201,0,0,215,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36854"
-     onload="SubDivideTriangle(evt,137.86,715.83,114.45,711.08,114.83,712.64,0,0,201,0,0,201,0,0,159,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36856"
-     onload="SubDivideTriangle(evt,114.83,712.64,138.23,717.40,137.86,715.83,0,0,159,0,0,159,0,0,201,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36858"
-     onload="SubDivideTriangle(evt,138.23,717.40,114.83,712.64,115.79,713.39,0,0,159,0,0,159,0,0,127,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36860"
-     onload="SubDivideTriangle(evt,115.79,713.39,139.20,718.15,138.23,717.40,0,0,127,0,0,127,0,0,159,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36862"
-     onload="SubDivideTriangle(evt,140.33,712.36,116.92,707.61,115.75,707.96,0,0,149,0,0,149,0,0,195,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36864"
-     onload="SubDivideTriangle(evt,115.75,707.96,139.15,712.72,140.33,712.36,0,0,195,0,0,195,0,0,149,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36866"
-     onload="SubDivideTriangle(evt,103.75,707.95,112.28,716.22,111.27,712.04,0,0,127,0,0,152,0,0,190,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36868"
-     onload="SubDivideTriangle(evt,103.75,707.95,111.27,712.04,112.21,707.27,0,0,127,0,0,190,0,0,203,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <g
-     id="g36870"
-     onload="SubDivideTriangle(evt,103.75,707.95,112.21,707.27,114.73,703.74,0,0,127,0,0,203,0,0,185,1.00)"
-     transform="translate(-64.702355,-482.33163)" />
-  <text
-     id="text36896"
-     style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-     y="154.46835"
-     x="166.40764" />
-  <g
-     id="g59539"
-     transform="matrix(0.30624971,0,0,0.30624971,-19.815078,-16.881341)">
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="454.71,170.38 454.3,170.34 454.38,170.63 "
-       id="polygon8" />
-    <line
-       x1="422.66"
-       y1="185.38"
-       x2="447.42999"
-       y2="174.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="453.63,170.68 453.43,171.03 447.28,175.11 "
-       id="polygon12" />
-    <line
-       x1="454.67001"
-       y1="171.77"
-       x2="447.42999"
-       y2="174.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="455.11,170.55 454.71,170.38 448.56,174.46 "
-       id="polygon16" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="442.79,178.73 443.16,179.02 449.33,174.92 "
-       id="polygon18" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="425.63"
-       y2="192.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="443.44,179.4 443.62,179.84 449.79,175.74 "
-       id="polygon22" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="441.3,178.86 441.11,179.21 434.91,183.32 "
-       id="polygon24" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="443.4,181.05 443.59,180.71 437.4,184.82 "
-       id="polygon26" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="442.39,178.55 441.98,178.52 435.78,182.64 "
-       id="polygon28" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="443.16,179.02 442.79,178.73 436.59,182.84 "
-       id="polygon30" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="443.62,179.84 443.44,179.4 437.24,183.52 "
-       id="polygon32" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="443.44,179.4 443.16,179.02 436.96,183.13 "
-       id="polygon34" />
-    <line
-       x1="321.06"
-       y1="78.230003"
-       x2="320.67001"
-       y2="77.019997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36" />
-    <line
-       x1="321.44"
-       y1="79.43"
-       x2="321.06"
-       y2="78.230003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line38" />
-    <line
-       x1="320.67001"
-       y1="77.019997"
-       x2="320.25"
-       y2="75.830002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line40" />
-    <line
-       x1="321.79999"
-       y1="80.639999"
-       x2="321.44"
-       y2="79.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line42" />
-    <line
-       x1="320.25"
-       y1="75.830002"
-       x2="319.82001"
-       y2="74.660004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line44" />
-    <line
-       x1="322.14001"
-       y1="81.830002"
-       x2="321.79999"
-       y2="80.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line46" />
-    <line
-       x1="319.82001"
-       y1="74.660004"
-       x2="319.38"
-       y2="73.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line48" />
-    <line
-       x1="322.47"
-       y1="83.010002"
-       x2="322.14001"
-       y2="81.830002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line50" />
-    <line
-       x1="319.38"
-       y1="73.5"
-       x2="318.91"
-       y2="72.389999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line52" />
-    <line
-       x1="322.76999"
-       y1="84.160004"
-       x2="322.47"
-       y2="83.010002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line54" />
-    <line
-       x1="323.06"
-       y1="85.269997"
-       x2="322.76999"
-       y2="84.160004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line56" />
-    <line
-       x1="318.42999"
-       y1="71.309998"
-       x2="317.92999"
-       y2="70.279999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line58" />
-    <line
-       x1="323.34"
-       y1="86.349998"
-       x2="323.06"
-       y2="85.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line60" />
-    <line
-       x1="323.59"
-       y1="87.379997"
-       x2="323.34"
-       y2="86.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line62" />
-    <line
-       x1="317.42001"
-       y1="69.300003"
-       x2="316.89001"
-       y2="68.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line64" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="437.48,184.41 437.4,184.82 443.59,180.71 "
-       id="polygon66" />
-    <line
-       x1="350.10001"
-       y1="77.760002"
-       x2="349.70001"
-       y2="76.550003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line68" />
-    <line
-       x1="350.48001"
-       y1="78.970001"
-       x2="350.10001"
-       y2="77.760002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line70" />
-    <line
-       x1="349.70001"
-       y1="76.550003"
-       x2="349.29001"
-       y2="75.360001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line72" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="436.19,182.67 436.59,182.84 442.79,178.73 "
-       id="polygon74" />
-    <line
-       x1="350.84"
-       y1="80.169998"
-       x2="350.48001"
-       y2="78.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line76" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="437.42,183.96 437.48,184.41 443.67,180.29 "
-       id="polygon78" />
-    <line
-       x1="349.29001"
-       y1="75.360001"
-       x2="348.85999"
-       y2="74.18"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line80" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="436.59,182.84 436.96,183.13 443.16,179.02 "
-       id="polygon82" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="437.24,183.52 437.42,183.96 443.62,179.84 "
-       id="polygon84" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="436.96,183.13 437.24,183.52 443.44,179.4 "
-       id="polygon86" />
-    <line
-       x1="351.17999"
-       y1="81.370003"
-       x2="350.84"
-       y2="80.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line88" />
-    <line
-       x1="348.85999"
-       y1="74.18"
-       x2="348.41"
-       y2="73.040001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line90" />
-    <line
-       x1="323.82999"
-       y1="88.360001"
-       x2="323.59"
-       y2="87.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line92" />
-    <line
-       x1="351.51001"
-       y1="82.540001"
-       x2="351.17999"
-       y2="81.370003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line94" />
-    <line
-       x1="348.41"
-       y1="73.040001"
-       x2="347.95001"
-       y2="71.919998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line96" />
-    <line
-       x1="351.82001"
-       y1="83.690002"
-       x2="351.51001"
-       y2="82.540001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line98" />
-    <line
-       x1="347.95001"
-       y1="71.919998"
-       x2="347.47"
-       y2="70.839996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line100" />
-    <line
-       x1="316.35999"
-       y1="67.529999"
-       x2="315.81"
-       y2="66.739998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line102" />
-    <line
-       x1="352.10999"
-       y1="84.809998"
-       x2="351.82001"
-       y2="83.690002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line104" />
-    <line
-       x1="347.47"
-       y1="70.839996"
-       x2="346.97"
-       y2="69.809998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line106" />
-    <line
-       x1="352.38"
-       y1="85.889999"
-       x2="352.10999"
-       y2="84.809998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line108" />
-    <line
-       x1="324.26999"
-       y1="90.129997"
-       x2="324.06"
-       y2="89.279999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line110" />
-    <line
-       x1="346.97"
-       y1="69.809998"
-       x2="346.45999"
-       y2="68.830002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line112" />
-    <line
-       x1="315.81"
-       y1="66.739998"
-       x2="315.25"
-       y2="66.029999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line114" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="436.53,185.51 436.12,185.48 436.13,185.2 "
-       id="polygon116" />
-    <line
-       x1="352.64001"
-       y1="86.919998"
-       x2="352.38"
-       y2="85.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line118" />
-    <line
-       x1="346.45999"
-       y1="68.830002"
-       x2="345.95001"
-       y2="67.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line120" />
-    <line
-       x1="379.16"
-       y1="77.290001"
-       x2="378.76999"
-       y2="76.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line122" />
-    <line
-       x1="379.54001"
-       y1="78.5"
-       x2="379.16"
-       y2="77.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line124" />
-    <line
-       x1="378.76999"
-       y1="76.089996"
-       x2="378.35999"
-       y2="74.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line126" />
-    <line
-       x1="324.47"
-       y1="90.919998"
-       x2="324.26999"
-       y2="90.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line128" />
-    <line
-       x1="379.91"
-       y1="79.699997"
-       x2="379.54001"
-       y2="78.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line130" />
-    <line
-       x1="378.35999"
-       y1="74.889999"
-       x2="377.92999"
-       y2="73.709999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line132" />
-    <line
-       x1="380.25"
-       y1="80.900002"
-       x2="379.91"
-       y2="79.699997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line134" />
-    <line
-       x1="377.92999"
-       y1="73.709999"
-       x2="377.48001"
-       y2="72.559998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line136" />
-    <line
-       x1="352.89001"
-       y1="87.889999"
-       x2="352.64001"
-       y2="86.919998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line138" />
-    <line
-       x1="345.95001"
-       y1="67.910004"
-       x2="345.41"
-       y2="67.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line140" />
-    <line
-       x1="380.57999"
-       y1="82.07"
-       x2="380.25"
-       y2="80.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line142" />
-    <line
-       x1="377.48001"
-       y1="72.559998"
-       x2="377.01999"
-       y2="71.449997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line144" />
-    <line
-       x1="324.66"
-       y1="91.629997"
-       x2="324.47"
-       y2="90.919998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line146" />
-    <line
-       x1="380.89001"
-       y1="83.230003"
-       x2="380.57999"
-       y2="82.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line148" />
-    <line
-       x1="314.67999"
-       y1="65.400002"
-       x2="314.10999"
-       y2="64.849998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line150" />
-    <line
-       x1="353.12"
-       y1="88.82"
-       x2="352.89001"
-       y2="87.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line152" />
-    <line
-       x1="345.41"
-       y1="67.050003"
-       x2="344.87"
-       y2="66.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line154" />
-    <line
-       x1="381.19"
-       y1="84.339996"
-       x2="380.89001"
-       y2="83.230003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line156" />
-    <line
-       x1="376.54001"
-       y1="70.370003"
-       x2="376.04999"
-       y2="69.339996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line158" />
-    <line
-       x1="381.45999"
-       y1="85.419998"
-       x2="381.19"
-       y2="84.339996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line160" />
-    <line
-       x1="353.34"
-       y1="89.669998"
-       x2="353.12"
-       y2="88.82"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line162" />
-    <line
-       x1="381.73001"
-       y1="86.449997"
-       x2="381.45999"
-       y2="85.419998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line164" />
-    <line
-       x1="375.54999"
-       y1="68.360001"
-       x2="375.03"
-       y2="67.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line166" />
-    <line
-       x1="431.76999"
-       y1="91.059998"
-       x2="431.76999"
-       y2="90.190002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line168" />
-    <line
-       x1="431.75"
-       y1="91.93"
-       x2="431.76999"
-       y2="91.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line170" />
-    <line
-       x1="431.73001"
-       y1="89.32"
-       x2="431.66"
-       y2="88.459999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line172" />
-    <line
-       x1="431.70999"
-       y1="92.790001"
-       x2="431.75"
-       y2="91.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line174" />
-    <line
-       x1="353.54001"
-       y1="90.459999"
-       x2="353.34"
-       y2="89.669998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line176" />
-    <line
-       x1="431.66"
-       y1="88.459999"
-       x2="431.57001"
-       y2="87.620003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line178" />
-    <line
-       x1="325"
-       y1="92.809998"
-       x2="324.82999"
-       y2="92.260002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line180" />
-    <line
-       x1="313.51999"
-       y1="64.389999"
-       x2="312.92999"
-       y2="64.019997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line182" />
-    <line
-       x1="344.31"
-       y1="65.559998"
-       x2="343.75"
-       y2="64.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line184" />
-    <line
-       x1="431.57001"
-       y1="87.620003"
-       x2="431.44"
-       y2="86.790001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line186" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="437.2,185.17 437.4,184.82 431.18,188.96 "
-       id="polygon188" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="436.19,182.67 435.78,182.64 429.56,186.77 "
-       id="polygon190" />
-    <line
-       x1="431.44"
-       y1="86.790001"
-       x2="431.28"
-       y2="85.989998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line192" />
-    <line
-       x1="431.44"
-       y1="95.300003"
-       x2="431.54999"
-       y2="94.480003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line194" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="437.4,184.82 437.48,184.41 431.26,188.54 "
-       id="polygon196" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="436.59,182.84 436.19,182.67 429.97,186.8 "
-       id="polygon198" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="437.48,184.41 437.42,183.96 431.2,188.09 "
-       id="polygon200" />
-    <line
-       x1="431.28"
-       y1="85.989998"
-       x2="431.09"
-       y2="85.209999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line202" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="436.96,183.13 436.59,182.84 430.38,186.97 "
-       id="polygon204" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="437.42,183.96 437.24,183.52 431.02,187.65 "
-       id="polygon206" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="437.24,183.52 436.96,183.13 430.74,187.27 "
-       id="polygon208" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="402.42001"
-       y2="82.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line210" />
-    <line
-       x1="382.20999"
-       y1="88.349998"
-       x2="381.98001"
-       y2="87.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="400.68,81.19 400.32,81.32 396.63,89.63 "
-       id="polygon214" />
-    <line
-       x1="431.16"
-       y1="96.860001"
-       x2="431.29999"
-       y2="96.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line216" />
-    <line
-       x1="374.5"
-       y1="66.580002"
-       x2="373.95999"
-       y2="65.790001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line218" />
-    <line
-       x1="430.85999"
-       y1="84.470001"
-       x2="430.60999"
-       y2="83.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line220" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="402,81.44 401.56,81.25 397.88,89.56 "
-       id="polygon222" />
-    <line
-       x1="410.67001"
-       y1="85.620003"
-       x2="403.54999"
-       y2="83.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line224" />
-    <line
-       x1="431"
-       y1="97.599998"
-       x2="431.16"
-       y2="96.860001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line226" />
-    <line
-       x1="430.60999"
-       y1="83.769997"
-       x2="430.32001"
-       y2="83.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line228" />
-    <line
-       x1="353.91"
-       y1="91.800003"
-       x2="353.73001"
-       y2="91.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line230" />
-    <line
-       x1="343.17999"
-       y1="64.379997"
-       x2="342.60001"
-       y2="63.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line232" />
-    <line
-       x1="382.44"
-       y1="89.209999"
-       x2="382.20999"
-       y2="88.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line234" />
-    <line
-       x1="312.34"
-       y1="63.73"
-       x2="311.75"
-       y2="63.549999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line236" />
-    <line
-       x1="325.29999"
-       y1="93.639999"
-       x2="325.14999"
-       y2="93.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line238" />
-    <line
-       x1="291.14999"
-       y1="79.529999"
-       x2="275.62"
-       y2="79.510002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line240" />
-    <line
-       x1="430.32001"
-       y1="83.099998"
-       x2="429.98999"
-       y2="82.480003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line242" />
-    <line
-       x1="430.64001"
-       y1="98.949997"
-       x2="430.82001"
-       y2="98.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line244" />
-    <line
-       x1="342.60001"
-       y1="63.91"
-       x2="342.01999"
-       y2="63.540001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line246" />
-    <line
-       x1="373.41"
-       y1="65.080002"
-       x2="372.85001"
-       y2="64.449997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line248" />
-    <line
-       x1="430.45999"
-       y1="99.550003"
-       x2="430.64001"
-       y2="98.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line250" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="274.60001"
-       y2="81.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="275.66,78.41 275.2,78.52 277.43,86.96 "
-       id="polygon254" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="431.26,188.54 431.18,188.96 437.4,184.82 "
-       id="polygon256" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="398.99,90.35 399.15,90.7 402.83,82.38 "
-       id="polygon258" />
-    <line
-       x1="403.54999"
-       y1="83.059998"
-       x2="402.42001"
-       y2="82.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line260" />
-    <line
-       x1="382.84"
-       y1="90.699997"
-       x2="382.64001"
-       y2="89.989998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line262" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="429.97,186.8 430.38,186.97 436.59,182.84 "
-       id="polygon264" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="431.2,188.09 431.26,188.54 437.48,184.41 "
-       id="polygon266" />
-    <line
-       x1="372.85001"
-       y1="64.449997"
-       x2="372.28"
-       y2="63.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line268" />
-    <line
-       x1="429.26001"
-       y1="81.379997"
-       x2="428.84"
-       y2="80.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line270" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="430.38,186.97 430.74,187.27 436.96,183.13 "
-       id="polygon272" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="431.02,187.65 431.2,188.09 437.42,183.96 "
-       id="polygon274" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="430.74,187.27 431.02,187.65 437.24,183.52 "
-       id="polygon276" />
-    <line
-       x1="354.25"
-       y1="92.809998"
-       x2="354.09"
-       y2="92.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line278" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="398.7,90.02 398.99,90.35 402.67,82.03 "
-       id="polygon280" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="398.32,89.75 398.7,90.02 402.38,81.71 "
-       id="polygon282" />
-    <line
-       x1="410.85999"
-       y1="86.449997"
-       x2="410.81"
-       y2="86.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line284" />
-    <line
-       x1="311.14999"
-       y1="63.450001"
-       x2="310.54999"
-       y2="63.450001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line286" />
-    <line
-       x1="430.07001"
-       y1="100.63"
-       x2="430.26999"
-       y2="100.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line288" />
-    <line
-       x1="325.59"
-       y1="94.110001"
-       x2="325.45001"
-       y2="93.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line290" />
-    <line
-       x1="421.59"
-       y1="192.77"
-       x2="419.57001"
-       y2="192.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line292" />
-    <line
-       x1="419.57001"
-       y1="192.63"
-       x2="417.57001"
-       y2="192.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line294" />
-    <line
-       x1="292.25"
-       y1="80.279999"
-       x2="291.98001"
-       y2="80.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line296" />
-    <line
-       x1="341.42999"
-       y1="63.259998"
-       x2="340.84"
-       y2="63.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line298" />
-    <line
-       x1="428.39999"
-       y1="80.480003"
-       x2="427.94"
-       y2="80.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line300" />
-    <line
-       x1="354.41"
-       y1="93.18"
-       x2="354.25"
-       y2="92.809998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line302" />
-    <line
-       x1="417.57001"
-       y1="192.39"
-       x2="415.57999"
-       y2="192.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line304" />
-    <line
-       x1="310.54999"
-       y1="63.450001"
-       x2="309.95999"
-       y2="63.549999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line306" />
-    <line
-       x1="415.57999"
-       y1="192.08"
-       x2="413.62"
-       y2="191.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line308" />
-    <line
-       x1="383.20999"
-       y1="91.889999"
-       x2="383.03"
-       y2="91.339996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line310" />
-    <line
-       x1="429.69"
-       y1="101.49"
-       x2="429.88"
-       y2="101.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line312" />
-    <line
-       x1="413.62"
-       y1="191.69"
-       x2="411.69"
-       y2="191.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line314" />
-    <line
-       x1="340.84"
-       y1="63.07"
-       x2="340.25"
-       y2="62.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line316" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="430.68,189.54 430.31,189.64 430.23,189.36 "
-       id="polygon318" />
-    <line
-       x1="411.69"
-       y1="191.23"
-       x2="409.79001"
-       y2="190.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line320" />
-    <line
-       x1="293.04999"
-       y1="80.510002"
-       x2="292.79001"
-       y2="80.459999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line322" />
-    <line
-       x1="449.39999"
-       y1="96.93"
-       x2="449.39001"
-       y2="96.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line324" />
-    <line
-       x1="449.38"
-       y1="97.800003"
-       x2="449.39999"
-       y2="96.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line326" />
-    <line
-       x1="449.35999"
-       y1="95.190002"
-       x2="449.29001"
-       y2="94.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line328" />
-    <line
-       x1="449.34"
-       y1="98.669998"
-       x2="449.38"
-       y2="97.800003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line330" />
-    <line
-       x1="449.29001"
-       y1="94.330002"
-       x2="449.20001"
-       y2="93.489998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line332" />
-    <line
-       x1="420.67001"
-       y1="185.75999"
-       x2="422.66"
-       y2="185.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line334" />
-    <line
-       x1="418.66"
-       y1="186.03999"
-       x2="420.67001"
-       y2="185.75999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line336" />
-    <line
-       x1="449.20001"
-       y1="93.489998"
-       x2="449.07001"
-       y2="92.660004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line338" />
-    <line
-       x1="416.63"
-       y1="186.21001"
-       x2="418.66"
-       y2="186.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line340" />
-    <line
-       x1="383.38"
-       y1="92.349998"
-       x2="383.20999"
-       y2="91.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line342" />
-    <line
-       x1="409.79001"
-       y1="190.69"
-       x2="407.92999"
-       y2="190.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line344" />
-    <line
-       x1="414.60999"
-       y1="186.28"
-       x2="416.63"
-       y2="186.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line346" />
-    <line
-       x1="449.17999"
-       y1="100.37"
-       x2="449.26999"
-       y2="99.529999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line348" />
-    <line
-       x1="412.57001"
-       y1="186.25"
-       x2="414.60999"
-       y2="186.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line350" />
-    <line
-       x1="449.07001"
-       y1="92.660004"
-       x2="448.91"
-       y2="91.860001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line352" />
-    <line
-       x1="410.54001"
-       y1="186.12"
-       x2="412.57001"
-       y2="186.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line354" />
-    <line
-       x1="411.44"
-       y1="87.110001"
-       x2="411.35001"
-       y2="87.110001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line356" />
-    <line
-       x1="448.91"
-       y1="91.860001"
-       x2="448.70999"
-       y2="91.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line358" />
-    <line
-       x1="406.51999"
-       y1="185.56"
-       x2="408.53"
-       y2="185.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line360" />
-    <line
-       x1="407.92999"
-       y1="190.08"
-       x2="406.12"
-       y2="189.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line362" />
-    <line
-       x1="309.35999"
-       y1="63.75"
-       x2="308.78"
-       y2="64.029999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line364" />
-    <line
-       x1="448.94"
-       y1="101.98"
-       x2="449.07001"
-       y2="101.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line366" />
-    <line
-       x1="404.54001"
-       y1="185.14"
-       x2="406.51999"
-       y2="185.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line368" />
-    <line
-       x1="402.59"
-       y1="184.64"
-       x2="404.54001"
-       y2="185.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line370" />
-    <line
-       x1="448.79001"
-       y1="102.75"
-       x2="448.94"
-       y2="101.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line372" />
-    <line
-       x1="448.48999"
-       y1="90.339996"
-       x2="448.23001"
-       y2="89.629997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line374" />
-    <line
-       x1="429.16"
-       y1="102.34"
-       x2="429.32999"
-       y2="102.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line376" />
-    <line
-       x1="400.66"
-       y1="184.03999"
-       x2="402.59"
-       y2="184.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line378" />
-    <line
-       x1="339.66"
-       y1="62.98"
-       x2="339.07001"
-       y2="63.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line380" />
-    <line
-       x1="448.63"
-       y1="103.48"
-       x2="448.79001"
-       y2="102.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line382" />
-    <line
-       x1="448.23001"
-       y1="89.629997"
-       x2="447.95001"
-       y2="88.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line384" />
-    <line
-       x1="398.76999"
-       y1="183.36"
-       x2="400.66"
-       y2="184.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line386" />
-    <line
-       x1="448.45999"
-       y1="104.18"
-       x2="448.63"
-       y2="103.48"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line388" />
-    <line
-       x1="404.35001"
-       y1="188.7"
-       x2="402.63"
-       y2="187.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line390" />
-    <line
-       x1="294.38"
-       y1="80.230003"
-       x2="294.12"
-       y2="80.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line392" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="399.18,91.04 399.15,90.7 395.46,99.04 "
-       id="polygon394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="396.99,89.5 396.63,89.63 392.94,97.97 "
-       id="polygon396" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="399.15,90.7 398.99,90.35 395.3,98.69 "
-       id="polygon398" />
-    <line
-       x1="395.12"
-       y1="181.77"
-       x2="396.92001"
-       y2="182.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line400" />
-    <line
-       x1="447.63"
-       y1="88.339996"
-       x2="447.28"
-       y2="87.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line402" />
-    <line
-       x1="424.66"
-       y1="79.25"
-       x2="424.04999"
-       y2="79.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line404" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="398.99,90.35 398.7,90.02 395.01,98.36 "
-       id="polygon406" />
-    <line
-       x1="308.20001"
-       y1="64.410004"
-       x2="307.62"
-       y2="64.879997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line408" />
-    <line
-       x1="402.63"
-       y1="187.92"
-       x2="400.98001"
-       y2="187.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line410" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="398.32,89.75 397.88,89.56 394.19,97.9 "
-       id="polygon412" />
-    <line
-       x1="428.88"
-       y1="102.59"
-       x2="429.01001"
-       y2="102.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line414" />
-    <line
-       x1="412.35999"
-       y1="86.589996"
-       x2="412.20001"
-       y2="86.720001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line416" />
-    <line
-       x1="448.09"
-       y1="105.45"
-       x2="448.28"
-       y2="104.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line418" />
-    <line
-       x1="393.37"
-       y1="180.87"
-       x2="395.12"
-       y2="181.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line420" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="429.97,186.8 429.56,186.77 423.31,190.91 "
-       id="polygon422" />
-    <line
-       x1="447.28"
-       y1="87.769997"
-       x2="446.89001"
-       y2="87.239998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line424" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="431.18,188.96 431.26,188.54 425.02,192.69 "
-       id="polygon426" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="430.38,186.97 429.97,186.8 423.72,190.95 "
-       id="polygon428" />
-    <line
-       x1="326.26001"
-       y1="93.620003"
-       x2="326.13"
-       y2="93.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line430" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="431.26,188.54 431.2,188.09 424.96,192.23 "
-       id="polygon432" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="430.74,187.27 430.38,186.97 424.13,191.12 "
-       id="polygon434" />
-    <line
-       x1="295.19"
-       y1="79.68"
-       x2="294.92001"
-       y2="79.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line436" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="431.2,188.09 431.02,187.65 424.78,191.8 "
-       id="polygon438" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="431.02,187.65 430.74,187.27 424.5,191.41 "
-       id="polygon440" />
-    <line
-       x1="338.48001"
-       y1="63.27"
-       x2="337.89999"
-       y2="63.549999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line442" />
-    <line
-       x1="391.67999"
-       y1="179.91"
-       x2="393.37"
-       y2="180.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line444" />
-    <line
-       x1="400.98001"
-       y1="187.10001"
-       x2="399.38"
-       y2="186.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line446" />
-    <line
-       x1="423.42999"
-       y1="79.449997"
-       x2="422.81"
-       y2="79.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line448" />
-    <line
-       x1="407.91"
-       y1="70.43"
-       x2="407.53"
-       y2="69.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line450" />
-    <line
-       x1="407.14001"
-       y1="69.440002"
-       x2="406.75"
-       y2="68.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line452" />
-    <line
-       x1="390.04001"
-       y1="178.88"
-       x2="391.67999"
-       y2="179.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line454" />
-    <line
-       x1="408.64999"
-       y1="71.43"
-       x2="408.29001"
-       y2="70.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line456" />
-    <line
-       x1="446.48001"
-       y1="86.769997"
-       x2="446.04001"
-       y2="86.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line458" />
-    <line
-       x1="447.70999"
-       y1="106.52"
-       x2="447.89999"
-       y2="106.01"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line460" />
-    <line
-       x1="406.35999"
-       y1="68.459999"
-       x2="405.95001"
-       y2="68"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line462" />
-    <line
-       x1="422.81"
-       y1="79.650002"
-       x2="422.17999"
-       y2="79.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line464" />
-    <line
-       x1="409.38"
-       y1="72.43"
-       x2="409.01999"
-       y2="71.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line466" />
-    <line
-       x1="413.32999"
-       y1="85.699997"
-       x2="413.10999"
-       y2="85.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line468" />
-    <line
-       x1="399.38"
-       y1="186.23"
-       x2="397.85999"
-       y2="185.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line470" />
-    <line
-       x1="405.54999"
-       y1="67.540001"
-       x2="405.14001"
-       y2="67.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line472" />
-    <line
-       x1="337.89999"
-       y1="63.549999"
-       x2="337.32999"
-       y2="63.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line474" />
-    <line
-       x1="307.06"
-       y1="65.43"
-       x2="306.5"
-       y2="66.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line476" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="278.36,86.86 277.89,86.86 280.13,95.34 "
-       id="polygon478" />
-    <line
-       x1="410.41"
-       y1="73.870003"
-       x2="410.07001"
-       y2="73.400002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.69,98.2 392.94,97.97 396.63,89.63 "
-       id="polygon482" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="395.3,98.69 395.46,99.04 399.15,90.7 "
-       id="polygon484" />
-    <line
-       x1="355.26999"
-       y1="93.449997"
-       x2="355.13"
-       y2="93.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line486" />
-    <line
-       x1="410.75"
-       y1="74.32"
-       x2="410.41"
-       y2="73.870003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line488" />
-    <line
-       x1="296.29999"
-       y1="78.529999"
-       x2="296.01999"
-       y2="78.860001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line490" />
-    <line
-       x1="404.29999"
-       y1="66.269997"
-       x2="403.87"
-       y2="65.879997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line492" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="395.01,98.36 395.3,98.69 398.99,90.35 "
-       id="polygon494" />
-    <line
-       x1="306.5"
-       y1="66.07"
-       x2="306.06"
-       y2="66.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line496" />
-    <line
-       x1="414.29999"
-       y1="84.779999"
-       x2="414.04001"
-       y2="85.019997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line498" />
-    <line
-       x1="368.20999"
-       y1="62.59"
-       x2="367.64001"
-       y2="62.790001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="393.3,97.84 393.73,97.82 397.42,89.48 "
-       id="polygon502" />
-    <line
-       x1="421.54001"
-       y1="80.209999"
-       x2="420.91"
-       y2="80.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line504" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="394.63,98.09 395.01,98.36 398.7,90.02 "
-       id="polygon506" />
-    <line
-       x1="445.57999"
-       y1="85.989998"
-       x2="445.09"
-       y2="85.690002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line508" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="393.73,97.82 394.19,97.9 397.88,89.56 "
-       id="polygon510" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="394.19,97.9 394.63,98.09 398.32,89.75 "
-       id="polygon512" />
-    <line
-       x1="326.54999"
-       y1="92.769997"
-       x2="326.39999"
-       y2="93.239998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line514" />
-    <line
-       x1="397.85999"
-       y1="185.34"
-       x2="396.39001"
-       y2="184.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line516" />
-    <line
-       x1="386.95001"
-       y1="176.67999"
-       x2="388.45999"
-       y2="177.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line518" />
-    <line
-       x1="447.32999"
-       y1="107.38"
-       x2="447.51999"
-       y2="106.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line520" />
-    <line
-       x1="411.39999"
-       y1="75.190002"
-       x2="411.07001"
-       y2="74.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line522" />
-    <line
-       x1="403.44"
-       y1="65.510002"
-       x2="403.01001"
-       y2="65.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line524" />
-    <line
-       x1="420.51001"
-       y1="80.699997"
-       x2="420.12"
-       y2="80.839996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line526" />
-    <line
-       x1="415.45999"
-       y1="83.760002"
-       x2="415.16"
-       y2="84.019997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line528" />
-    <line
-       x1="305.63"
-       y1="66.699997"
-       x2="305.20001"
-       y2="67.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line530" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="424.94,193.11 424.74,193.45 430.98,189.3 "
-       id="polygon532" />
-    <line
-       x1="419.34"
-       y1="81.18"
-       x2="418.95999"
-       y2="81.370003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line534" />
-    <line
-       x1="297.17999"
-       y1="77.400002"
-       x2="296.88"
-       y2="77.800003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line536" />
-    <line
-       x1="467.07001"
-       y1="102.82"
-       x2="467.07001"
-       y2="101.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line538" />
-    <line
-       x1="467.07001"
-       y1="101.95"
-       x2="467.03"
-       y2="101.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line540" />
-    <line
-       x1="467.04999"
-       y1="103.7"
-       x2="467.07001"
-       y2="102.82"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line542" />
-    <line
-       x1="418.57999"
-       y1="81.57"
-       x2="418.20999"
-       y2="81.790001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line544" />
-    <line
-       x1="385.51999"
-       y1="175.52"
-       x2="386.95001"
-       y2="176.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line546" />
-    <line
-       x1="416.76999"
-       y1="82.730003"
-       x2="416.42999"
-       y2="82.980003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line548" />
-    <line
-       x1="467.03"
-       y1="101.08"
-       x2="466.95999"
-       y2="100.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line550" />
-    <line
-       x1="417.12"
-       y1="82.480003"
-       x2="416.76999"
-       y2="82.730003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line552" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="425.02,192.69 424.94,193.11 431.18,188.96 "
-       id="polygon554" />
-    <line
-       x1="367.64001"
-       y1="62.790001"
-       x2="367.06"
-       y2="63.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line556" />
-    <line
-       x1="297.48001"
-       y1="76.980003"
-       x2="297.17999"
-       y2="77.400002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line558" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="423.72,190.95 424.13,191.12 430.38,186.97 "
-       id="polygon560" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="424.96,192.23 425.02,192.69 431.26,188.54 "
-       id="polygon562" />
-    <line
-       x1="396.39001"
-       y1="184.41"
-       x2="395"
-       y2="183.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line564" />
-    <line
-       x1="336.76001"
-       y1="64.400002"
-       x2="336.20001"
-       y2="64.959999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line566" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="424.13,191.12 424.5,191.41 430.74,187.27 "
-       id="polygon568" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="424.78,191.8 424.96,192.23 431.2,188.09 "
-       id="polygon570" />
-    <line
-       x1="466.87"
-       y1="99.379997"
-       x2="466.73999"
-       y2="98.550003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line572" />
-    <line
-       x1="412.34"
-       y1="76.349998"
-       x2="412.04001"
-       y2="75.980003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line574" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="424.5,191.41 424.78,191.8 431.02,187.65 "
-       id="polygon576" />
-    <line
-       x1="402.13"
-       y1="64.559998"
-       x2="401.67999"
-       y2="64.300003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line578" />
-    <line
-       x1="444.57001"
-       y1="85.449997"
-       x2="444.03"
-       y2="85.279999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line580" />
-    <line
-       x1="466.85001"
-       y1="106.26"
-       x2="466.94"
-       y2="105.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line582" />
-    <line
-       x1="304.35001"
-       y1="67.830002"
-       x2="303.92999"
-       y2="68.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line584" />
-    <line
-       x1="466.73999"
-       y1="98.550003"
-       x2="466.57999"
-       y2="97.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line586" />
-    <line
-       x1="401.67999"
-       y1="64.300003"
-       x2="401.23999"
-       y2="64.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line588" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="280.6,95.34 281.02,95.45 278.78,86.97 "
-       id="polygon590" />
-    <line
-       x1="384.14999"
-       y1="174.32001"
-       x2="385.51999"
-       y2="175.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line592" />
-    <line
-       x1="466.57999"
-       y1="97.75"
-       x2="466.39001"
-       y2="96.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line594" />
-    <line
-       x1="298.42001"
-       y1="75.620003"
-       x2="298.10001"
-       y2="76.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="278.66,96.25 278.89,95.92 276.65,87.45 "
-       id="polygon598" />
-    <line
-       x1="303.51999"
-       y1="68.68"
-       x2="303.12"
-       y2="69.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line600" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="280.13,95.34 280.6,95.34 278.36,86.86 "
-       id="polygon602" />
-    <line
-       x1="355.56"
-       y1="92.779999"
-       x2="355.41"
-       y2="93.160004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="279.66,95.44 280.13,95.34 277.89,86.86 "
-       id="polygon606" />
-    <line
-       x1="466.39001"
-       y1="96.970001"
-       x2="466.17001"
-       y2="96.230003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line608" />
-    <line
-       x1="326.85999"
-       y1="91.57"
-       x2="326.70001"
-       y2="92.209999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line610" />
-    <line
-       x1="428.5"
-       y1="101.88"
-       x2="428.5"
-       y2="102.15"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line612" />
-    <line
-       x1="302.70999"
-       y1="69.610001"
-       x2="302.32001"
-       y2="70.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line614" />
-    <line
-       x1="466.47"
-       y1="108.65"
-       x2="466.60999"
-       y2="107.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line616" />
-    <line
-       x1="299.41"
-       y1="74.139999"
-       x2="299.07001"
-       y2="74.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line618" />
-    <line
-       x1="302.32001"
-       y1="70.089996"
-       x2="301.94"
-       y2="70.580002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line620" />
-    <line
-       x1="413.25"
-       y1="77.290001"
-       x2="412.95001"
-       y2="77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line622" />
-    <line
-       x1="299.75"
-       y1="73.639999"
-       x2="299.41"
-       y2="74.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line624" />
-    <line
-       x1="300.45001"
-       y1="72.610001"
-       x2="300.10001"
-       y2="73.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line626" />
-    <line
-       x1="443.47"
-       y1="85.160004"
-       x2="442.89999"
-       y2="85.110001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line628" />
-    <line
-       x1="301.17999"
-       y1="71.589996"
-       x2="300.82001"
-       y2="72.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line630" />
-    <line
-       x1="382.85999"
-       y1="173.09"
-       x2="384.14999"
-       y2="174.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line632" />
-    <line
-       x1="466.31"
-       y1="109.39"
-       x2="466.47"
-       y2="108.65"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line634" />
-    <line
-       x1="400.34"
-       y1="63.68"
-       x2="399.89001"
-       y2="63.540001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line636" />
-    <line
-       x1="465.91"
-       y1="95.519997"
-       x2="465.63"
-       y2="94.849998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line638" />
-    <line
-       x1="335.64999"
-       y1="65.599998"
-       x2="335.10999"
-       y2="66.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line640" />
-    <line
-       x1="366.48999"
-       y1="63.450001"
-       x2="365.92999"
-       y2="63.919998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line642" />
-    <line
-       x1="442.89999"
-       y1="85.110001"
-       x2="442.31"
-       y2="85.120003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line644" />
-    <line
-       x1="446.67001"
-       y1="108.4"
-       x2="446.82001"
-       y2="108.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line646" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="424.98001"
-       y2="77.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line648" />
-    <line
-       x1="393.69"
-       y1="182.49001"
-       x2="392.45001"
-       y2="181.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line650" />
-    <line
-       x1="381.64999"
-       y1="171.84"
-       x2="382.85999"
-       y2="173.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line652" />
-    <line
-       x1="399.42999"
-       y1="63.43"
-       x2="398.98001"
-       y2="63.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line654" />
-    <line
-       x1="465.95999"
-       y1="110.74"
-       x2="466.14001"
-       y2="110.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line656" />
-    <line
-       x1="384.60001"
-       y1="92.699997"
-       x2="384.45001"
-       y2="92.989998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line658" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="424.74,193.45 424.44,193.69 424.29,193.42 "
-       id="polygon660" />
-    <line
-       x1="465.31"
-       y1="94.230003"
-       x2="464.95999"
-       y2="93.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line662" />
-    <line
-       x1="335.10999"
-       y1="66.32"
-       x2="334.57999"
-       y2="67.110001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line664" />
-    <line
-       x1="327.20999"
-       y1="90.059998"
-       x2="327.03"
-       y2="90.860001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line666" />
-    <line
-       x1="465.78"
-       y1="111.36"
-       x2="465.95999"
-       y2="110.74"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line668" />
-    <line
-       x1="428.67999"
-       y1="100.75"
-       x2="428.59"
-       y2="101.18"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line670" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="424.56,191.91 424.33,191.6 424.5,191.41 "
-       id="polygon672" />
-    <line
-       x1="441.70001"
-       y1="85.190002"
-       x2="441.09"
-       y2="85.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line674" />
-    <line
-       x1="398.51999"
-       y1="63.299999"
-       x2="398.07001"
-       y2="63.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line676" />
-    <line
-       x1="380.51999"
-       y1="170.57001"
-       x2="381.64999"
-       y2="171.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line678" />
-    <line
-       x1="392.45001"
-       y1="181.50999"
-       x2="391.29999"
-       y2="180.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line680" />
-    <line
-       x1="334.57999"
-       y1="67.110001"
-       x2="334.07001"
-       y2="67.980003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line682" />
-    <line
-       x1="327.39999"
-       y1="89.190002"
-       x2="327.20999"
-       y2="90.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line684" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="395.48,99.38 395.46,99.04 391.76,107.41 "
-       id="polygon686" />
-    <line
-       x1="464.57999"
-       y1="93.129997"
-       x2="464.17001"
-       y2="92.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line688" />
-    <line
-       x1="356.04001"
-       y1="91.110001"
-       x2="355.87"
-       y2="91.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line690" />
-    <line
-       x1="365.38"
-       y1="64.480003"
-       x2="364.82999"
-       y2="65.120003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="393.3,97.84 392.94,97.97 389.23,106.34 "
-       id="polygon694" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="394.19,97.9 393.73,97.82 390.02,106.18 "
-       id="polygon696" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="395.01,98.36 394.63,98.09 390.93,106.46 "
-       id="polygon698" />
-    <line
-       x1="464.17001"
-       y1="92.650002"
-       x2="463.73001"
-       y2="92.230003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line700" />
-    <line
-       x1="465.39999"
-       y1="112.43"
-       x2="465.59"
-       y2="111.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line702" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="394.63,98.09 394.19,97.9 390.48,106.27 "
-       id="polygon704" />
-    <line
-       x1="327.60999"
-       y1="88.260002"
-       x2="327.39999"
-       y2="89.190002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line706" />
-    <line
-       x1="440.45999"
-       y1="85.519997"
-       x2="439.82999"
-       y2="85.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line708" />
-    <line
-       x1="379.45999"
-       y1="169.3"
-       x2="380.51999"
-       y2="170.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line710" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="430,77.55 429.94,77.22 424.96,85.81 "
-       id="polygon712" />
-    <line
-       x1="397.16"
-       y1="63.369999"
-       x2="396.70999"
-       y2="63.450001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line714" />
-    <line
-       x1="391.29999"
-       y1="180.53"
-       x2="390.23001"
-       y2="179.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line716" />
-    <line
-       x1="356.20999"
-       y1="90.389999"
-       x2="356.04001"
-       y2="91.110001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line718" />
-    <line
-       x1="364.82999"
-       y1="65.120003"
-       x2="364.29001"
-       y2="65.839996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line720" />
-    <polygon
-       style="opacity:1;fill:#00e800"
-       points="281.51,96.61 281.6,96.27 283.85,104.77 "
-       id="polygon722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="428.2,75.96 427.8,75.96 422.82,84.55 "
-       id="polygon724" />
-    <line
-       x1="413.25"
-       y1="77.290001"
-       x2="424.98001"
-       y2="77.099998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line726" />
-    <line
-       x1="463.73001"
-       y1="92.230003"
-       x2="463.26999"
-       y2="91.879997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line728" />
-    <line
-       x1="439.82999"
-       y1="85.769997"
-       x2="439.20001"
-       y2="86.080002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line730" />
-    <line
-       x1="262.19"
-       y1="101.37"
-       x2="274.60001"
-       y2="81.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line732" />
-    <line
-       x1="429.13"
-       y1="99.199997"
-       x2="428.95001"
-       y2="99.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line734" />
-    <line
-       x1="333.56"
-       y1="68.910004"
-       x2="333.07999"
-       y2="69.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line736" />
-    <line
-       x1="327.82001"
-       y1="87.269997"
-       x2="327.60999"
-       y2="88.260002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line738" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="429.07,76.27 428.63,76.07 423.66,84.66 "
-       id="polygon740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="371.66,55.96 371.25,56.04 368.93,65.58 "
-       id="polygon742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="372.13,55.96 371.66,55.96 369.34,65.5 "
-       id="polygon744" />
-    <line
-       x1="396.26001"
-       y1="63.57"
-       x2="395.81"
-       y2="63.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line746" />
-    <line
-       x1="429.34"
-       y1="98.599998"
-       x2="429.13"
-       y2="99.199997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line748" />
-    <line
-       x1="378.5"
-       y1="168.03"
-       x2="379.45999"
-       y2="169.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line750" />
-    <line
-       x1="333.07999"
-       y1="69.900002"
-       x2="332.60999"
-       y2="70.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line752" />
-    <line
-       x1="356.39999"
-       y1="89.589996"
-       x2="356.20999"
-       y2="90.389999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line754" />
-    <line
-       x1="328.04999"
-       y1="86.220001"
-       x2="327.82001"
-       y2="87.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line756" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="281.34,95.65 281.02,95.45 283.26,103.95 "
-       id="polygon758" />
-    <line
-       x1="385.07001"
-       y1="91.290001"
-       x2="384.91"
-       y2="91.849998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line760" />
-    <line
-       x1="395.81"
-       y1="63.73"
-       x2="395.35999"
-       y2="63.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line762" />
-    <line
-       x1="438.56"
-       y1="86.449997"
-       x2="437.92999"
-       y2="86.860001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line764" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="281.02,95.45 280.6,95.34 282.85,103.84 "
-       id="polygon766" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="423.72,190.95 423.31,190.91 417.04,195.07 "
-       id="polygon768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="279.23,95.64 278.89,95.92 281.13,104.43 "
-       id="polygon770" />
-    <line
-       x1="390.23001"
-       y1="179.55"
-       x2="389.23001"
-       y2="178.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line772" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="280.6,95.34 280.13,95.34 282.38,103.84 "
-       id="polygon774" />
-    <line
-       x1="332.60999"
-       y1="70.949997"
-       x2="332.14999"
-       y2="72.040001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="279.66,95.44 279.23,95.64 281.48,104.14 "
-       id="polygon778" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="424.94,193.11 425.02,192.69 418.75,196.85 "
-       id="polygon780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="280.13,95.34 279.66,95.44 281.91,103.94 "
-       id="polygon782" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="424.13,191.12 423.72,190.95 417.45,195.11 "
-       id="polygon784" />
-    <line
-       x1="328.29999"
-       y1="85.129997"
-       x2="328.04999"
-       y2="86.220001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line786" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="425.02,192.69 424.96,192.23 418.69,196.4 "
-       id="polygon788" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="424.5,191.41 424.13,191.12 417.86,195.28 "
-       id="polygon790" />
-    <line
-       x1="464.85001"
-       y1="113.64"
-       x2="465.03"
-       y2="113.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line792" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="424.96,192.23 424.78,191.8 418.51,195.96 "
-       id="polygon794" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="424.78,191.8 424.5,191.41 418.23,195.57 "
-       id="polygon796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="388.98,106.57 389.23,106.34 392.94,97.97 "
-       id="polygon798" />
-    <line
-       x1="363.76999"
-       y1="66.639999"
-       x2="363.26001"
-       y2="67.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line800" />
-    <line
-       x1="429.87"
-       y1="97.309998"
-       x2="429.59"
-       y2="97.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line802" />
-    <line
-       x1="356.59"
-       y1="88.730003"
-       x2="356.39999"
-       y2="89.589996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line804" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="391.6,107.05 391.76,107.41 395.46,99.04 "
-       id="polygon806" />
-    <line
-       x1="332.14999"
-       y1="72.040001"
-       x2="331.70999"
-       y2="73.18"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line808" />
-    <line
-       x1="328.57001"
-       y1="83.989998"
-       x2="328.29999"
-       y2="85.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line810" />
-    <line
-       x1="385.25"
-       y1="90.650002"
-       x2="385.07001"
-       y2="91.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line812" />
-    <line
-       x1="437.29999"
-       y1="87.32"
-       x2="436.67999"
-       y2="87.830002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line814" />
-    <line
-       x1="462.26001"
-       y1="91.339996"
-       x2="461.73001"
-       y2="91.160004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line816" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="391.31,106.73 391.6,107.05 395.3,98.69 "
-       id="polygon818" />
-    <line
-       x1="377.60999"
-       y1="166.75999"
-       x2="378.5"
-       y2="168.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line820" />
-    <line
-       x1="430.19"
-       y1="96.629997"
-       x2="429.87"
-       y2="97.309998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.59,106.21 390.02,106.18 393.73,97.82 "
-       id="polygon824" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="424.96,85.81 425.02,86.14 430,77.55 "
-       id="polygon826" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="390.93,106.46 391.31,106.73 395.01,98.36 "
-       id="polygon828" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="390.02,106.18 390.48,106.27 394.19,97.9 "
-       id="polygon830" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="390.48,106.27 390.93,106.46 394.63,98.09 "
-       id="polygon832" />
-    <line
-       x1="394.48001"
-       y1="64.370003"
-       x2="394.04001"
-       y2="64.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line834" />
-    <line
-       x1="331.70999"
-       y1="73.18"
-       x2="331.29001"
-       y2="74.339996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line836" />
-    <line
-       x1="328.84"
-       y1="82.82"
-       x2="328.57001"
-       y2="83.989998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line838" />
-    <line
-       x1="436.67999"
-       y1="87.830002"
-       x2="436.06"
-       y2="88.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line840" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="424.78,85.46 424.96,85.81 429.94,77.22 "
-       id="polygon842" />
-    <line
-       x1="363.26001"
-       y1="67.5"
-       x2="362.76001"
-       y2="68.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line844" />
-    <line
-       x1="430.53"
-       y1="95.93"
-       x2="430.19"
-       y2="96.629997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line846" />
-    <line
-       x1="331.29001"
-       y1="74.339996"
-       x2="330.89001"
-       y2="75.540001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line848" />
-    <line
-       x1="329.14001"
-       y1="81.629997"
-       x2="328.84"
-       y2="82.82"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line850" />
-    <line
-       x1="461.73001"
-       y1="91.160004"
-       x2="461.17001"
-       y2="91.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line852" />
-    <line
-       x1="436.06"
-       y1="88.379997"
-       x2="435.45999"
-       y2="88.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line854" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="424.48,85.14 424.78,85.46 429.75,76.88 "
-       id="polygon856" />
-    <line
-       x1="389.23001"
-       y1="178.58"
-       x2="388.32999"
-       y2="177.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line858" />
-    <line
-       x1="330.89001"
-       y1="75.540001"
-       x2="330.5"
-       y2="76.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line860" />
-    <line
-       x1="329.45001"
-       y1="80.419998"
-       x2="329.14001"
-       y2="81.629997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line862" />
-    <line
-       x1="385.42999"
-       y1="89.93"
-       x2="385.25"
-       y2="90.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line864" />
-    <line
-       x1="330.5"
-       y1="76.75"
-       x2="330.14001"
-       y2="77.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line866" />
-    <line
-       x1="329.79001"
-       y1="79.199997"
-       x2="329.45001"
-       y2="80.419998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line868" />
-    <line
-       x1="330.14001"
-       y1="77.970001"
-       x2="329.79001"
-       y2="79.199997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line870" />
-    <line
-       x1="431.31"
-       y1="94.5"
-       x2="430.91"
-       y2="95.220001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.93,65.58 369.34,65.5 371.66,55.96 "
-       id="polygon874" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="370.28,65.6 370.71,65.79 373.03,56.25 "
-       id="polygon876" />
-    <line
-       x1="434.87"
-       y1="89.589996"
-       x2="434.29999"
-       y2="90.239998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="369.34,65.5 369.81,65.5 372.13,55.96 "
-       id="polygon880" />
-    <line
-       x1="362.76001"
-       y1="68.43"
-       x2="362.28"
-       y2="69.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line882" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="369.81,65.5 370.28,65.6 372.6,56.06 "
-       id="polygon884" />
-    <line
-       x1="464.51999"
-       y1="114.15"
-       x2="464.67999"
-       y2="113.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line886" />
-    <line
-       x1="357.01999"
-       y1="86.800003"
-       x2="356.79999"
-       y2="87.790001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line888" />
-    <line
-       x1="434.29999"
-       y1="90.239998"
-       x2="433.73999"
-       y2="90.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line890" />
-    <line
-       x1="432.20999"
-       y1="93.040001"
-       x2="431.75"
-       y2="93.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line892" />
-    <line
-       x1="432.70001"
-       y1="92.32"
-       x2="432.20999"
-       y2="93.040001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line894" />
-    <line
-       x1="433.20999"
-       y1="91.610001"
-       x2="432.70001"
-       y2="92.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line896" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="283.26,103.95 283.59,104.15 281.34,95.65 "
-       id="polygon898" />
-    <line
-       x1="446.20999"
-       y1="107.46"
-       x2="446.17999"
-       y2="107.79"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line900" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="280.81,105.1 280.9,104.75 278.66,96.25 "
-       id="polygon902" />
-    <line
-       x1="362.28"
-       y1="69.43"
-       x2="361.81"
-       y2="70.470001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line904" />
-    <line
-       x1="393.51001"
-       y1="65.360001"
-       x2="392.98999"
-       y2="66.160004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line906" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="282.85,103.84 283.26,103.95 281.02,95.45 "
-       id="polygon908" />
-    <line
-       x1="357.26001"
-       y1="85.75"
-       x2="357.01999"
-       y2="86.800003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="280.9,104.75 281.13,104.43 278.89,95.92 "
-       id="polygon912" />
-    <line
-       x1="460.59"
-       y1="90.989998"
-       x2="460"
-       y2="91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line914" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="282.38,103.84 282.85,103.84 280.6,95.34 "
-       id="polygon916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.13,104.43 281.48,104.14 279.23,95.64 "
-       id="polygon918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.91,103.94 282.38,103.84 280.13,95.34 "
-       id="polygon920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.48,104.14 281.91,103.94 279.66,95.44 "
-       id="polygon922" />
-    <line
-       x1="388.32999"
-       y1="177.62"
-       x2="387.51001"
-       y2="176.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line924" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="391.49,107.66 391.47,107.39 391.76,107.41 "
-       id="polygon926" />
-    <line
-       x1="361.81"
-       y1="70.470001"
-       x2="361.35999"
-       y2="71.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line928" />
-    <line
-       x1="357.51001"
-       y1="84.660004"
-       x2="357.26001"
-       y2="85.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line930" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="418.67,197.27 418.47,197.62 424.74,193.45 "
-       id="polygon932" />
-    <line
-       x1="460"
-       y1="91"
-       x2="459.39999"
-       y2="91.080002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line934" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="418.75,196.85 418.67,197.27 424.94,193.11 "
-       id="polygon936" />
-    <line
-       x1="392.98999"
-       y1="66.160004"
-       x2="392.48999"
-       y2="67.029999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line938" />
-    <line
-       x1="385.82001"
-       y1="88.260002"
-       x2="385.62"
-       y2="89.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line940" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="417.45,195.11 417.86,195.28 424.13,191.12 "
-       id="polygon942" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="418.69,196.4 418.75,196.85 425.02,192.69 "
-       id="polygon944" />
-    <line
-       x1="361.35999"
-       y1="71.57"
-       x2="360.92001"
-       y2="72.699997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line946" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="417.86,195.28 418.23,195.57 424.5,191.41 "
-       id="polygon948" />
-    <line
-       x1="357.76999"
-       y1="83.519997"
-       x2="357.51001"
-       y2="84.660004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line950" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="418.51,195.96 418.69,196.4 424.96,192.23 "
-       id="polygon952" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="418.23,195.57 418.51,195.96 424.78,191.8 "
-       id="polygon954" />
-    <line
-       x1="446.35999"
-       y1="106.66"
-       x2="446.26999"
-       y2="107.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line956" />
-    <line
-       x1="358.04999"
-       y1="82.360001"
-       x2="357.76999"
-       y2="83.519997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line958" />
-    <line
-       x1="392.48999"
-       y1="67.029999"
-       x2="391.98999"
-       y2="67.959999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line960" />
-    <line
-       x1="386.03"
-       y1="87.330002"
-       x2="385.82001"
-       y2="88.260002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line962" />
-    <line
-       x1="360.5"
-       y1="73.870003"
-       x2="360.10001"
-       y2="75.059998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line964" />
-    <line
-       x1="358.35001"
-       y1="81.160004"
-       x2="358.04999"
-       y2="82.360001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line966" />
-    <line
-       x1="360.10001"
-       y1="75.059998"
-       x2="359.72"
-       y2="76.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line968" />
-    <line
-       x1="387.51001"
-       y1="176.67999"
-       x2="386.76999"
-       y2="175.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line970" />
-    <line
-       x1="358.67001"
-       y1="79.949997"
-       x2="358.35001"
-       y2="81.160004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line972" />
-    <line
-       x1="359.72"
-       y1="76.269997"
-       x2="359.35001"
-       y2="77.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line974" />
-    <line
-       x1="359"
-       y1="78.730003"
-       x2="358.67001"
-       y2="79.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line976" />
-    <line
-       x1="359.35001"
-       y1="77.5"
-       x2="359"
-       y2="78.730003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line978" />
-    <line
-       x1="375.47"
-       y1="163.05"
-       x2="376.10001"
-       y2="164.25999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line980" />
-    <line
-       x1="386.26001"
-       y1="86.330002"
-       x2="386.03"
-       y2="87.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line982" />
-    <line
-       x1="446.63"
-       y1="105.66"
-       x2="446.48001"
-       y2="106.18"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line984" />
-    <line
-       x1="458.16"
-       y1="91.410004"
-       x2="457.54001"
-       y2="91.660004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line986" />
-    <polygon
-       style="opacity:1;fill:#00ee00"
-       points="371.16,67.16 371.35,66.91 369.03,76.48 "
-       id="polygon988" />
-    <line
-       x1="391.51999"
-       y1="68.949997"
-       x2="391.04999"
-       y2="70"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line990" />
-    <line
-       x1="386.5"
-       y1="85.290001"
-       x2="386.26001"
-       y2="86.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line992" />
-    <line
-       x1="457.54001"
-       y1="91.660004"
-       x2="456.89999"
-       y2="91.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line994" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="391.78,107.75 391.76,107.41 388.04,115.8 "
-       id="polygon996" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="425.02,86.14 424.96,85.81 419.98,94.43 "
-       id="polygon998" />
-    <line
-       x1="391.04999"
-       y1="70"
-       x2="390.60001"
-       y2="71.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="416.67,195.18 416.37,195.41 416.58,195.63 "
-       id="polygon1002" />
-    <line
-       x1="386.75"
-       y1="84.190002"
-       x2="386.5"
-       y2="85.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1004" />
-    <line
-       x1="386.76999"
-       y1="175.77"
-       x2="386.13"
-       y2="174.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.59,106.21 389.23,106.34 385.51,114.73 "
-       id="polygon1008" />
-    <line
-       x1="374.92999"
-       y1="161.86"
-       x2="375.47"
-       y2="163.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1010" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="424.96,85.81 424.78,85.46 419.79,94.08 "
-       id="polygon1012" />
-    <line
-       x1="447.04001"
-       y1="104.51"
-       x2="446.82001"
-       y2="105.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="390.02,106.18 389.59,106.21 385.87,114.6 "
-       id="polygon1016" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="418.67,197.27 418.47,197.62 418.26,197.39 "
-       id="polygon1018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.93,65.58 368.62,65.75 366.29,75.32 "
-       id="polygon1020" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="371.3,66.33 371.07,66.04 368.74,75.6 "
-       id="polygon1022" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="424.78,85.46 424.48,85.14 419.49,93.75 "
-       id="polygon1024" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="423.66,84.66 423.22,84.55 418.23,93.16 "
-       id="polygon1026" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="390.48,106.27 390.02,106.18 386.3,114.58 "
-       id="polygon1028" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="391.31,106.73 390.93,106.46 387.21,114.85 "
-       id="polygon1030" />
-    <line
-       x1="390.60001"
-       y1="71.089996"
-       x2="390.17001"
-       y2="72.230003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1032" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="390.93,106.46 390.48,106.27 386.76,114.66 "
-       id="polygon1034" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="424.48,85.14 424.09,84.86 419.1,93.47 "
-       id="polygon1036" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="424.09,84.86 423.66,84.66 418.67,93.27 "
-       id="polygon1038" />
-    <line
-       x1="387.01999"
-       y1="83.050003"
-       x2="386.75"
-       y2="84.190002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="369.34,65.5 368.93,65.58 366.61,75.15 "
-       id="polygon1042" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="371.07,66.04 370.71,65.79 368.39,75.35 "
-       id="polygon1044" />
-    <line
-       x1="456.26999"
-       y1="92.339996"
-       x2="455.63"
-       y2="92.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1046" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="418.48,196.79 418.44,196.42 418.69,196.4 "
-       id="polygon1048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="369.81,65.5 369.34,65.5 367.02,75.06 "
-       id="polygon1050" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="370.71,65.79 370.28,65.6 367.96,75.17 "
-       id="polygon1052" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="370.28,65.6 369.81,65.5 367.48,75.07 "
-       id="polygon1054" />
-    <line
-       x1="390.17001"
-       y1="72.230003"
-       x2="389.75"
-       y2="73.389999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1056" />
-    <line
-       x1="387.29999"
-       y1="81.889999"
-       x2="387.01999"
-       y2="83.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1058" />
-    <line
-       x1="455.63"
-       y1="92.75"
-       x2="455"
-       y2="93.220001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1060" />
-    <line
-       x1="389.75"
-       y1="73.389999"
-       x2="389.35001"
-       y2="74.589996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1062" />
-    <line
-       x1="447.57001"
-       y1="103.22"
-       x2="447.29001"
-       y2="103.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1064" />
-    <line
-       x1="387.60001"
-       y1="80.699997"
-       x2="387.29999"
-       y2="81.889999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1066" />
-    <line
-       x1="389.35001"
-       y1="74.589996"
-       x2="388.95999"
-       y2="75.800003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1068" />
-    <line
-       x1="387.91"
-       y1="79.480003"
-       x2="387.60001"
-       y2="80.699997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1070" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="283.79,104.44 283.59,104.15 285.84,112.68 "
-       id="polygon1072" />
-    <line
-       x1="388.95999"
-       y1="75.800003"
-       x2="388.60001"
-       y2="77.029999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1074" />
-    <line
-       x1="388.25"
-       y1="78.25"
-       x2="387.91"
-       y2="79.480003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1076" />
-    <line
-       x1="374.47"
-       y1="160.72"
-       x2="374.92999"
-       y2="161.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1078" />
-    <line
-       x1="388.60001"
-       y1="77.029999"
-       x2="388.25"
-       y2="78.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1080" />
-    <line
-       x1="447.88"
-       y1="102.54"
-       x2="447.57001"
-       y2="103.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1082" />
-    <line
-       x1="386.13"
-       y1="174.89999"
-       x2="385.57001"
-       y2="174.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1084" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="283.32,114.25 283.12,113.96 280.87,105.43 "
-       id="polygon1086" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="280.9,104.75 280.81,105.1 283.06,113.63 "
-       id="polygon1088" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="283.59,104.15 283.26,103.95 285.52,112.48 "
-       id="polygon1090" />
-    <line
-       x1="454.38"
-       y1="93.730003"
-       x2="453.76999"
-       y2="94.279999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.13,104.43 280.9,104.75 283.15,113.29 "
-       id="polygon1094" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="283.26,103.95 282.85,103.84 285.1,112.37 "
-       id="polygon1096" />
-    <line
-       x1="453.76999"
-       y1="94.279999"
-       x2="453.16"
-       y2="94.870003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.48,104.14 281.13,104.43 283.38,112.95 "
-       id="polygon1100" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="282.85,103.84 282.38,103.84 284.63,112.36 "
-       id="polygon1102" />
-    <line
-       x1="448.60999"
-       y1="101.13"
-       x2="448.23001"
-       y2="101.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1104" />
-    <line
-       x1="483.25"
-       y1="103.48"
-       x2="483.07999"
-       y2="103.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1106" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="419.98,94.43 420.04,94.75 425.02,86.14 "
-       id="polygon1108" />
-    <line
-       x1="483.54999"
-       y1="104.29"
-       x2="483.39999"
-       y2="103.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="281.91,103.94 281.48,104.14 283.73,112.68 "
-       id="polygon1112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="282.38,103.84 281.91,103.94 284.16,112.47 "
-       id="polygon1114" />
-    <line
-       x1="482.70999"
-       y1="102.31"
-       x2="482.51001"
-       y2="101.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1116" />
-    <line
-       x1="483.92999"
-       y1="105.52"
-       x2="483.82001"
-       y2="105.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.51,93.27 417.83,93.16 422.82,84.55 "
-       id="polygon1120" />
-    <line
-       x1="449.01999"
-       y1="100.4"
-       x2="448.60999"
-       y2="101.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1122" />
-    <line
-       x1="482.29001"
-       y1="101.57"
-       x2="482.07001"
-       y2="101.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1124" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="419.79,94.08 419.98,94.43 424.96,85.81 "
-       id="polygon1126" />
-    <line
-       x1="452.57001"
-       y1="95.489998"
-       x2="452"
-       y2="96.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="385.26,114.96 385.51,114.73 389.23,106.34 "
-       id="polygon1130" />
-    <line
-       x1="449.45001"
-       y1="99.669998"
-       x2="449.01999"
-       y2="100.4"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1132" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="368.74,75.6 368.98,75.89 371.3,66.33 "
-       id="polygon1134" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="387.88,115.45 388.04,115.8 391.76,107.41 "
-       id="polygon1136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.83,93.16 418.23,93.16 423.22,84.55 "
-       id="polygon1138" />
-    <line
-       x1="484.23999"
-       y1="106.72"
-       x2="484.14999"
-       y2="106.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1140" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="419.49,93.75 419.79,94.08 424.78,85.46 "
-       id="polygon1142" />
-    <line
-       x1="451.45001"
-       y1="96.82"
-       x2="450.91"
-       y2="97.510002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1144" />
-    <line
-       x1="450.39999"
-       y1="98.220001"
-       x2="449.91"
-       y2="98.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.29,75.32 366.61,75.15 368.93,65.58 "
-       id="polygon1148" />
-    <line
-       x1="450.91"
-       y1="97.510002"
-       x2="450.39999"
-       y2="98.220001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1150" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="418.23,93.16 418.67,93.27 423.66,84.66 "
-       id="polygon1152" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="419.1,93.47 419.49,93.75 424.48,85.14 "
-       id="polygon1154" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="387.59,115.13 387.88,115.45 391.6,107.05 "
-       id="polygon1156" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="418.67,93.27 419.1,93.47 424.09,84.86 "
-       id="polygon1158" />
-    <line
-       x1="481.34"
-       y1="100.25"
-       x2="481.07001"
-       y2="99.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="385.87,114.6 386.3,114.58 390.02,106.18 "
-       id="polygon1162" />
-    <line
-       x1="484.41"
-       y1="107.49"
-       x2="484.32999"
-       y2="107.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1164" />
-    <line
-       x1="463.92999"
-       y1="113.39"
-       x2="463.89999"
-       y2="113.71"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.61,75.15 367.02,75.06 369.34,65.5 "
-       id="polygon1168" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="387.21,114.85 387.59,115.13 391.31,106.73 "
-       id="polygon1170" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="367.96,75.17 368.39,75.35 370.71,65.79 "
-       id="polygon1172" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="386.3,114.58 386.76,114.66 390.48,106.27 "
-       id="polygon1174" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="386.76,114.66 387.21,114.85 390.93,106.46 "
-       id="polygon1176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.02,75.06 367.48,75.07 369.81,65.5 "
-       id="polygon1178" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="367.48,75.07 367.96,75.17 370.28,65.6 "
-       id="polygon1180" />
-    <line
-       x1="385.57001"
-       y1="174.06"
-       x2="385.09"
-       y2="173.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1182" />
-    <line
-       x1="484.54999"
-       y1="108.23"
-       x2="484.48001"
-       y2="107.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1184" />
-    <line
-       x1="480.5"
-       y1="99.410004"
-       x2="480.20001"
-       y2="99.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1186" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="417.45,195.11 417.04,195.07 410.75,199.25 "
-       id="polygon1188" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="418.67,197.27 418.75,196.85 412.46,201.03 "
-       id="polygon1190" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="417.86,195.28 417.45,195.11 411.16,199.28 "
-       id="polygon1192" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="418.75,196.85 418.69,196.4 412.4,200.58 "
-       id="polygon1194" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="418.23,195.57 417.86,195.28 411.57,199.46 "
-       id="polygon1196" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="418.69,196.4 418.51,195.96 412.22,200.14 "
-       id="polygon1198" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="418.51,195.96 418.23,195.57 411.93,199.75 "
-       id="polygon1200" />
-    <line
-       x1="484.73999"
-       y1="109.25"
-       x2="484.67999"
-       y2="108.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1202" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="285.52,112.48 285.84,112.68 283.59,104.15 "
-       id="polygon1204" />
-    <line
-       x1="479.25"
-       y1="98.559998"
-       x2="478.91"
-       y2="98.400002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1206" />
-    <line
-       x1="464.09"
-       y1="112.58"
-       x2="464"
-       y2="113.01"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1208" />
-    <line
-       x1="373.79999"
-       y1="158.57001"
-       x2="374.09"
-       y2="159.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1210" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="285.1,112.37 285.52,112.48 283.26,103.95 "
-       id="polygon1212" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="284.63,112.36 285.1,112.37 282.85,103.84 "
-       id="polygon1214" />
-    <line
-       x1="478.57001"
-       y1="98.260002"
-       x2="478.20999"
-       y2="98.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="283.38,112.95 283.73,112.68 281.48,104.14 "
-       id="polygon1218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="284.16,112.47 284.63,112.36 282.38,103.84 "
-       id="polygon1220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="283.73,112.68 284.16,112.47 281.91,103.94 "
-       id="polygon1222" />
-    <line
-       x1="477.48999"
-       y1="97.959999"
-       x2="477.12"
-       y2="97.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1224" />
-    <line
-       x1="464.37"
-       y1="111.59"
-       x2="464.20999"
-       y2="112.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1226" />
-    <line
-       x1="476.73999"
-       y1="97.879997"
-       x2="476.35999"
-       y2="97.870003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1228" />
-    <line
-       x1="373.57999"
-       y1="157.57001"
-       x2="373.79999"
-       y2="158.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1230" />
-    <line
-       x1="475.59"
-       y1="97.910004"
-       x2="475.20001"
-       y2="97.970001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1232" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="419.74,95.23 419.95,95.03 414.95,103.67 "
-       id="polygon1234" />
-    <line
-       x1="384.70001"
-       y1="172.52"
-       x2="384.39001"
-       y2="171.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1236" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="412.38,201.45 412.18,201.8 418.47,197.62 "
-       id="polygon1238" />
-    <line
-       x1="464.78"
-       y1="110.43"
-       x2="464.54999"
-       y2="111.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1240" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="489.92999"
-       y2="111.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1242" />
-    <line
-       x1="474.41"
-       y1="98.129997"
-       x2="474.01999"
-       y2="98.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1244" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="285.59,112.84 285.33,112.67 285.52,112.48 "
-       id="polygon1246" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="411.16,199.28 411.57,199.46 417.86,195.28 "
-       id="polygon1248" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="412.4,200.58 412.46,201.03 418.75,196.85 "
-       id="polygon1250" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="420.04,94.75 419.98,94.43 414.98,103.06 "
-       id="polygon1252" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="412.22,200.14 412.4,200.58 418.69,196.4 "
-       id="polygon1254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.83,93.16 417.51,93.27 412.5,101.9 "
-       id="polygon1256" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="411.93,199.75 412.22,200.14 418.51,195.96 "
-       id="polygon1258" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="419.98,94.43 419.79,94.08 414.79,102.72 "
-       id="polygon1260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="418.23,93.16 417.83,93.16 412.82,101.8 "
-       id="polygon1262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.61,75.15 366.29,75.32 363.96,84.91 "
-       id="polygon1264" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="368.98,75.89 368.74,75.6 366.41,85.2 "
-       id="polygon1266" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="419.79,94.08 419.49,93.75 414.48,102.39 "
-       id="polygon1268" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="418.67,93.27 418.23,93.16 413.22,101.8 "
-       id="polygon1270" />
-    <line
-       x1="473.39001"
-       y1="98.660004"
-       x2="472.76001"
-       y2="99.129997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1272" />
-    <line
-       x1="373.44"
-       y1="156.64"
-       x2="373.57999"
-       y2="157.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1274" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="419.49,93.75 419.1,93.47 414.1,102.11 "
-       id="polygon1276" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="419.1,93.47 418.67,93.27 413.66,101.91 "
-       id="polygon1278" />
-    <line
-       x1="465.31"
-       y1="109.14"
-       x2="465.03"
-       y2="109.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.02,75.06 366.61,75.15 364.28,84.74 "
-       id="polygon1282" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="368.74,75.6 368.39,75.35 366.06,84.95 "
-       id="polygon1284" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="388.07,116.14 388.04,115.8 384.32,124.23 "
-       id="polygon1286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.48,75.07 367.02,75.06 364.69,84.65 "
-       id="polygon1288" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="368.39,75.35 367.96,75.17 365.63,84.76 "
-       id="polygon1290" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="367.96,75.17 367.48,75.07 365.15,84.66 "
-       id="polygon1292" />
-    <line
-       x1="472.76001"
-       y1="99.129997"
-       x2="472.13"
-       y2="99.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="385.87,114.6 385.51,114.73 381.78,123.16 "
-       id="polygon1296" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="388.04,115.8 387.88,115.45 384.15,123.88 "
-       id="polygon1298" />
-    <line
-       x1="465.63"
-       y1="108.46"
-       x2="465.31"
-       y2="109.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1300" />
-    <line
-       x1="384.39001"
-       y1="171.84"
-       x2="384.17001"
-       y2="171.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.3,114.58 385.87,114.6 382.14,123.02 "
-       id="polygon1304" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="387.88,115.45 387.59,115.13 383.86,123.55 "
-       id="polygon1306" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="386.76,114.66 386.3,114.58 382.57,123 "
-       id="polygon1308" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="387.59,115.13 387.21,114.85 383.48,123.28 "
-       id="polygon1310" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="387.21,114.85 386.76,114.66 383.03,123.09 "
-       id="polygon1312" />
-    <line
-       x1="471.51999"
-       y1="100.19"
-       x2="470.92001"
-       y2="100.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1314" />
-    <line
-       x1="466.35999"
-       y1="107.05"
-       x2="465.98001"
-       y2="107.76"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1316" />
-    <line
-       x1="466.76999"
-       y1="106.32"
-       x2="466.35999"
-       y2="107.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1318" />
-    <line
-       x1="470.32999"
-       y1="101.4"
-       x2="469.76001"
-       y2="102.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1320" />
-    <line
-       x1="467.20001"
-       y1="105.59"
-       x2="466.76999"
-       y2="106.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1322" />
-    <line
-       x1="469.76001"
-       y1="102.05"
-       x2="469.20001"
-       y2="102.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1324" />
-    <line
-       x1="373.38"
-       y1="155.78"
-       x2="373.44"
-       y2="156.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1326" />
-    <line
-       x1="468.14999"
-       y1="104.14"
-       x2="467.66"
-       y2="104.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1328" />
-    <line
-       x1="468.67001"
-       y1="103.43"
-       x2="468.14999"
-       y2="104.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1330" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="366.65,85.48 366.75,85.79 369.08,76.2 "
-       id="polygon1332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="412.5,101.9 412.82,101.8 417.83,93.16 "
-       id="polygon1334" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="410.82,199.54 410.52,199.62 410.37,199.36 "
-       id="polygon1336" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="414.79,102.72 414.98,103.06 419.98,94.43 "
-       id="polygon1338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.77,85.15 363.96,84.91 366.29,75.32 "
-       id="polygon1340" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="366.41,85.2 366.65,85.48 368.98,75.89 "
-       id="polygon1342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="412.82,101.8 413.22,101.8 418.23,93.16 "
-       id="polygon1344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="283.38,112.95 283.15,113.29 285.41,121.84 "
-       id="polygon1346" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="285.52,112.48 285.1,112.37 287.36,120.92 "
-       id="polygon1348" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="414.48,102.39 414.79,102.72 419.79,94.08 "
-       id="polygon1350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.96,84.91 364.28,84.74 366.61,75.15 "
-       id="polygon1352" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="413.22,101.8 413.66,101.91 418.67,93.27 "
-       id="polygon1354" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="414.1,102.11 414.48,102.39 419.49,93.75 "
-       id="polygon1356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="283.73,112.68 283.38,112.95 285.64,121.51 "
-       id="polygon1358" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="285.1,112.37 284.63,112.36 286.89,120.92 "
-       id="polygon1360" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="413.66,101.91 414.1,102.11 419.1,93.47 "
-       id="polygon1362" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="366.06,84.95 366.41,85.2 368.74,75.6 "
-       id="polygon1364" />
-    <line
-       x1="262.19"
-       y1="101.37"
-       x2="260.53"
-       y2="101.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1366" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="492.10999"
-       y2="113.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1368" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="494.06,112.1 493.71,111.98 485.61,118.88 "
-       id="polygon1370" />
-    <line
-       x1="484.89999"
-       y1="110.13"
-       x2="489.92999"
-       y2="111.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="284.16,112.47 283.73,112.68 285.99,121.23 "
-       id="polygon1374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="284.63,112.36 284.16,112.47 286.42,121.03 "
-       id="polygon1376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="364.28,84.74 364.69,84.65 367.02,75.06 "
-       id="polygon1378" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="365.63,84.76 366.06,84.95 368.39,75.35 "
-       id="polygon1380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="364.69,84.65 365.15,84.66 367.48,75.07 "
-       id="polygon1382" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="365.15,84.66 365.63,84.76 367.96,75.17 "
-       id="polygon1384" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="494.77,112.66 494.43,112.33 486.33,119.24 "
-       id="polygon1386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="381.53,123.38 381.78,123.16 385.51,114.73 "
-       id="polygon1388" />
-    <line
-       x1="260.53"
-       y1="101.86"
-       x2="258.85001"
-       y2="102.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1390" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="384.15,123.88 384.32,124.23 388.04,115.8 "
-       id="polygon1392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="381.78,123.16 382.14,123.02 385.87,114.6 "
-       id="polygon1394" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="383.86,123.55 384.15,123.88 387.88,115.45 "
-       id="polygon1396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.14,123.02 382.57,123 386.3,114.58 "
-       id="polygon1398" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="383.48,123.28 383.86,123.55 387.59,115.13 "
-       id="polygon1400" />
-    <line
-       x1="258.85001"
-       y1="102.28"
-       x2="257.17001"
-       y2="102.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1402" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="382.57,123 383.03,123.09 386.76,114.66 "
-       id="polygon1404" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="383.03,123.09 383.48,123.28 387.21,114.85 "
-       id="polygon1406" />
-    <line
-       x1="257.17001"
-       y1="102.61"
-       x2="255.48"
-       y2="102.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1408" />
-    <line
-       x1="384.01999"
-       y1="170.64999"
-       x2="383.95001"
-       y2="170.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1410" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="288.11,121.24 288.31,121.52 286.05,112.96 "
-       id="polygon1412" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="287.78,121.03 288.11,121.24 285.84,112.68 "
-       id="polygon1414" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="366.41,85.2 366.65,85.48 366.37,85.51 "
-       id="polygon1416" />
-    <line
-       x1="255.48"
-       y1="102.86"
-       x2="253.8"
-       y2="103.04"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1418" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="285.32,122.19 285.41,121.84 283.15,113.29 "
-       id="polygon1420" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="287.36,120.92 287.78,121.03 285.52,112.48 "
-       id="polygon1422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="285.41,121.84 285.64,121.51 283.38,112.95 "
-       id="polygon1424" />
-    <line
-       x1="373.45999"
-       y1="154.27"
-       x2="373.39001"
-       y2="154.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1426" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="286.89,120.92 287.36,120.92 285.1,112.37 "
-       id="polygon1428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="285.64,121.51 285.99,121.23 283.73,112.68 "
-       id="polygon1430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="286.42,121.03 286.89,120.92 284.63,112.36 "
-       id="polygon1432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="285.99,121.23 286.42,121.03 284.16,112.47 "
-       id="polygon1434" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="381.53,123.38 381.41,123.68 381.7,123.77 "
-       id="polygon1436" />
-    <line
-       x1="253.8"
-       y1="103.04"
-       x2="252.14"
-       y2="103.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1438" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="411.16,199.28 410.75,199.25 404.43,203.44 "
-       id="polygon1440" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="412.38,201.45 412.46,201.03 406.14,205.23 "
-       id="polygon1442" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="411.57,199.46 411.16,199.28 404.84,203.48 "
-       id="polygon1444" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="412.46,201.03 412.4,200.58 406.09,204.78 "
-       id="polygon1446" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="411.93,199.75 411.57,199.46 405.25,203.65 "
-       id="polygon1448" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="412.4,200.58 412.22,200.14 405.91,204.33 "
-       id="polygon1450" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="412.22,200.14 411.93,199.75 405.62,203.95 "
-       id="polygon1452" />
-    <line
-       x1="252.14"
-       y1="103.14"
-       x2="250.49001"
-       y2="103.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="412.5,101.9 412.29,102.1 407.27,110.77 "
-       id="polygon1456" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="409.93,112.33 409.72,112.53 414.73,103.87 "
-       id="polygon1458" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="415.03,103.39 414.98,103.06 409.96,111.73 "
-       id="polygon1460" />
-    <line
-       x1="373.60999"
-       y1="153.64"
-       x2="373.45999"
-       y2="154.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="412.82,101.8 412.5,101.9 407.48,110.57 "
-       id="polygon1464" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="285.58,122.8 285.38,122.52 285.67,122.42 "
-       id="polygon1466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.96,84.91 363.77,85.15 361.43,94.77 "
-       id="polygon1468" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="366.75,85.79 366.65,85.48 364.32,95.11 "
-       id="polygon1470" />
-    <line
-       x1="250.49001"
-       y1="103.17"
-       x2="248.86"
-       y2="103.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1472" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="414.98,103.06 414.79,102.72 409.77,111.38 "
-       id="polygon1474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="413.22,101.8 412.82,101.8 407.8,110.46 "
-       id="polygon1476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="364.28,84.74 363.96,84.91 361.62,94.54 "
-       id="polygon1478" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="366.65,85.48 366.41,85.2 364.08,94.82 "
-       id="polygon1480" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="414.79,102.72 414.48,102.39 409.46,111.05 "
-       id="polygon1482" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="413.66,101.91 413.22,101.8 408.2,110.46 "
-       id="polygon1484" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="414.48,102.39 414.1,102.11 409.08,110.78 "
-       id="polygon1486" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="414.1,102.11 413.66,101.91 408.64,110.57 "
-       id="polygon1488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="364.69,84.65 364.28,84.74 361.94,94.36 "
-       id="polygon1490" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="366.41,85.2 366.06,84.95 363.72,94.57 "
-       id="polygon1492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="365.15,84.66 364.69,84.65 362.35,94.28 "
-       id="polygon1494" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="366.06,84.95 365.63,84.76 363.29,94.38 "
-       id="polygon1496" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="365.63,84.76 365.15,84.66 362.82,94.29 "
-       id="polygon1498" />
-    <line
-       x1="248.86"
-       y1="103.12"
-       x2="247.25999"
-       y2="103"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1500" />
-    <polygon
-       style="opacity:1;fill:#00ef00"
-       points="383.96,125.09 384.22,124.87 380.48,133.32 "
-       id="polygon1502" />
-    <line
-       x1="383.95999"
-       y1="169.75"
-       x2="384.04001"
-       y2="169.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1504" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="384.34,124.57 384.32,124.23 380.58,132.68 "
-       id="polygon1506" />
-    <line
-       x1="247.25999"
-       y1="103"
-       x2="245.69"
-       y2="102.82"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1508" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="406.07,205.65 405.87,206 412.18,201.8 "
-       id="polygon1510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.14,123.02 381.78,123.16 378.04,131.61 "
-       id="polygon1512" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="384.32,124.23 384.15,123.88 380.41,132.32 "
-       id="polygon1514" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="476.87,126.16 476.98,125.93 485.11,119.01 "
-       id="polygon1516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.61,118.88 485.32,118.88 477.2,125.8 "
-       id="polygon1518" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="406.14,205.23 406.07,205.65 412.38,201.45 "
-       id="polygon1520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.57,123 382.14,123.02 378.4,131.47 "
-       id="polygon1522" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="384.15,123.88 383.86,123.55 380.13,132 "
-       id="polygon1524" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="404.84,203.48 405.25,203.65 411.57,199.46 "
-       id="polygon1526" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="406.09,204.78 406.14,205.23 412.46,201.03 "
-       id="polygon1528" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="383.03,123.09 382.57,123 378.83,131.45 "
-       id="polygon1530" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="383.86,123.55 383.48,123.28 379.74,131.73 "
-       id="polygon1532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.27,110.77 407.48,110.57 412.5,101.9 "
-       id="polygon1534" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="383.48,123.28 383.03,123.09 379.29,131.54 "
-       id="polygon1536" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="405.25,203.65 405.62,203.95 411.93,199.75 "
-       id="polygon1538" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="405.91,204.33 406.09,204.78 412.4,200.58 "
-       id="polygon1540" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="405.62,203.95 405.91,204.33 412.22,200.14 "
-       id="polygon1542" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="487.29,120.72 487.18,120.34 479.06,127.27 "
-       id="polygon1544" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="364.32,95.11 364.42,95.41 366.75,85.79 "
-       id="polygon1546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.48,110.57 407.8,110.46 412.82,101.8 "
-       id="polygon1548" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="486.67,119.56 486.33,119.24 478.21,126.16 "
-       id="polygon1550" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="409.77,111.38 409.96,111.73 414.98,103.06 "
-       id="polygon1552" />
-    <line
-       x1="245.69"
-       y1="102.82"
-       x2="244.16"
-       y2="102.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1554" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="364.08,94.82 364.32,95.11 366.65,85.48 "
-       id="polygon1556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.8,110.46 408.2,110.46 413.22,101.8 "
-       id="polygon1558" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="409.46,111.05 409.77,111.38 414.79,102.72 "
-       id="polygon1560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.62,94.54 361.94,94.36 364.28,84.74 "
-       id="polygon1562" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="408.2,110.46 408.64,110.57 413.66,101.91 "
-       id="polygon1564" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="409.08,110.78 409.46,111.05 414.48,102.39 "
-       id="polygon1566" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="363.72,94.57 364.08,94.82 366.41,85.2 "
-       id="polygon1568" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="288.31,121.52 288.11,121.24 290.38,129.82 "
-       id="polygon1570" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="408.64,110.57 409.08,110.78 414.1,102.11 "
-       id="polygon1572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.94,94.36 362.35,94.28 364.69,84.65 "
-       id="polygon1574" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="363.29,94.38 363.72,94.57 366.06,84.95 "
-       id="polygon1576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.35,94.28 362.82,94.29 365.15,84.66 "
-       id="polygon1578" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="362.82,94.29 363.29,94.38 365.63,84.76 "
-       id="polygon1580" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="287.85,131.39 287.64,131.11 285.38,122.52 "
-       id="polygon1582" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="285.41,121.84 285.32,122.19 287.59,130.77 "
-       id="polygon1584" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="288.11,121.24 287.78,121.03 290.05,129.62 "
-       id="polygon1586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="285.64,121.51 285.41,121.84 287.68,130.43 "
-       id="polygon1588" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="287.78,121.03 287.36,120.92 289.63,129.51 "
-       id="polygon1590" />
-    <line
-       x1="244.16"
-       y1="102.57"
-       x2="242.67999"
-       y2="102.26"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="285.99,121.23 285.64,121.51 287.91,130.1 "
-       id="polygon1594" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="287.36,120.92 286.89,120.92 289.16,129.5 "
-       id="polygon1596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="286.42,121.03 285.99,121.23 288.25,129.82 "
-       id="polygon1598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="286.89,120.92 286.42,121.03 288.69,129.61 "
-       id="polygon1600" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="479.18,127.65 479.18,127.97 487.29,121.05 "
-       id="polygon1602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.79,131.83 378.04,131.61 381.78,123.16 "
-       id="polygon1604" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="479.06,127.27 479.18,127.65 487.29,120.72 "
-       id="polygon1606" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="380.41,132.32 380.58,132.68 384.32,124.23 "
-       id="polygon1608" />
-    <line
-       x1="242.67999"
-       y1="102.26"
-       x2="241.25"
-       y2="101.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.04,131.61 378.4,131.47 382.14,123.02 "
-       id="polygon1612" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="477.84,125.93 478.21,126.16 486.33,119.24 "
-       id="polygon1614" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="478.85,126.87 479.06,127.27 487.18,120.34 "
-       id="polygon1616" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="380.13,132 380.41,132.32 384.15,123.88 "
-       id="polygon1618" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="478.21,126.16 478.55,126.48 486.67,119.56 "
-       id="polygon1620" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="478.55,126.48 478.85,126.87 486.97,119.94 "
-       id="polygon1622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.4,131.47 378.83,131.45 382.57,123 "
-       id="polygon1624" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="379.74,131.73 380.13,132 383.86,123.55 "
-       id="polygon1626" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="378.83,131.45 379.29,131.54 383.03,123.09 "
-       id="polygon1628" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="379.29,131.54 379.74,131.73 383.48,123.28 "
-       id="polygon1630" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="404.84,203.76 404.5,203.73 404.43,203.44 "
-       id="polygon1632" />
-    <line
-       x1="374.39001"
-       y1="152.27"
-       x2="374.07999"
-       y2="152.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1634" />
-    <line
-       x1="241.25"
-       y1="101.89"
-       x2="239.87"
-       y2="101.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1636" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="289.63,129.51 290.05,129.62 287.78,121.03 "
-       id="polygon1638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="287.68,130.43 287.91,130.1 285.64,121.51 "
-       id="polygon1640" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="289.16,129.5 289.63,129.51 287.36,120.92 "
-       id="polygon1642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="287.91,130.1 288.25,129.82 285.99,121.23 "
-       id="polygon1644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="288.69,129.61 289.16,129.5 286.89,120.92 "
-       id="polygon1646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="288.25,129.82 288.69,129.61 286.42,121.03 "
-       id="polygon1648" />
-    <line
-       x1="384.39999"
-       y1="168.98"
-       x2="384.67001"
-       y2="168.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1650" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="409.72,112.53 409.93,112.33 404.9,121.02 "
-       id="polygon1652" />
-    <line
-       x1="239.87"
-       y1="101.47"
-       x2="238.55"
-       y2="101"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1654" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="410.01,112.05 409.96,111.73 404.93,120.42 "
-       id="polygon1656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.8,110.46 407.48,110.57 402.45,119.25 "
-       id="polygon1658" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="364.42,95.41 364.32,95.11 361.98,104.76 "
-       id="polygon1660" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="378.83,131.45 378.4,131.47 378.54,131.7 "
-       id="polygon1662" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="409.96,111.73 409.77,111.38 404.73,120.07 "
-       id="polygon1664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408.2,110.46 407.8,110.46 402.77,119.15 "
-       id="polygon1666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.94,94.36 361.62,94.54 359.27,104.18 "
-       id="polygon1668" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="364.32,95.11 364.08,94.82 361.73,104.47 "
-       id="polygon1670" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="409.77,111.38 409.46,111.05 404.43,119.75 "
-       id="polygon1672" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="408.64,110.57 408.2,110.46 403.17,119.15 "
-       id="polygon1674" />
-    <line
-       x1="238.55"
-       y1="101"
-       x2="237.28999"
-       y2="100.48"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1676" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="409.46,111.05 409.08,110.78 404.04,119.46 "
-       id="polygon1678" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="409.08,110.78 408.64,110.57 403.61,119.26 "
-       id="polygon1680" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.35,94.28 361.94,94.36 359.59,104.01 "
-       id="polygon1682" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="364.08,94.82 363.72,94.57 361.38,104.22 "
-       id="polygon1684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.82,94.29 362.35,94.28 360,103.93 "
-       id="polygon1686" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="363.72,94.57 363.29,94.38 360.95,104.04 "
-       id="polygon1688" />
-    <line
-       x1="456.48001"
-       y1="121.44"
-       x2="492.10999"
-       y2="113.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1690" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="363.29,94.38 362.82,94.29 360.47,103.93 "
-       id="polygon1692" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="479.06,128.21 479.18,127.97 471.04,134.91 "
-       id="polygon1694" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="404.84,203.48 404.43,203.44 398.09,207.65 "
-       id="polygon1696" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="468.73,133.11 468.84,132.87 476.98,125.93 "
-       id="polygon1698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="477.49,125.8 477.2,125.8 469.05,132.74 "
-       id="polygon1700" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="406.07,205.65 406.14,205.23 399.8,209.44 "
-       id="polygon1702" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="405.25,203.65 404.84,203.48 398.5,207.69 "
-       id="polygon1704" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="479.18,127.97 479.18,127.65 471.04,134.59 "
-       id="polygon1706" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="406.14,205.23 406.09,204.78 399.75,208.99 "
-       id="polygon1708" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="405.62,203.95 405.25,203.65 398.91,207.86 "
-       id="polygon1710" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="477.84,125.93 477.49,125.8 469.35,132.74 "
-       id="polygon1712" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="406.09,204.78 405.91,204.33 399.57,208.54 "
-       id="polygon1714" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="405.91,204.33 405.62,203.95 399.28,208.16 "
-       id="polygon1716" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="479.18,127.65 479.06,127.27 470.92,134.21 "
-       id="polygon1718" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="478.21,126.16 477.84,125.93 469.7,132.87 "
-       id="polygon1720" />
-    <line
-       x1="237.28999"
-       y1="100.48"
-       x2="236.09"
-       y2="99.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1722" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="479.06,127.27 478.85,126.87 470.71,133.81 "
-       id="polygon1724" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="478.55,126.48 478.21,126.16 470.06,133.1 "
-       id="polygon1726" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="478.85,126.87 478.55,126.48 470.41,133.43 "
-       id="polygon1728" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="404.93,120.42 404.98,120.75 410.01,112.05 "
-       id="polygon1730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.04,131.61 377.79,131.83 374.03,140.31 "
-       id="polygon1732" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="380.6,133.02 380.58,132.68 376.82,141.16 "
-       id="polygon1734" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="404.73,120.07 404.93,120.42 409.96,111.73 "
-       id="polygon1736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.4,131.47 378.04,131.61 374.28,140.08 "
-       id="polygon1738" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="380.58,132.68 380.41,132.32 376.66,140.8 "
-       id="polygon1740" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="361.73,104.47 361.98,104.76 364.32,95.11 "
-       id="polygon1742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="402.77,119.15 403.17,119.15 408.2,110.46 "
-       id="polygon1744" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="404.43,119.75 404.73,120.07 409.77,111.38 "
-       id="polygon1746" />
-    <line
-       x1="236.09"
-       y1="99.93"
-       x2="234.97"
-       y2="99.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1748" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="380.41,132.32 380.13,132 376.37,140.48 "
-       id="polygon1750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.27,104.18 359.59,104.01 361.94,94.36 "
-       id="polygon1752" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="403.17,119.15 403.61,119.26 408.64,110.57 "
-       id="polygon1754" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="404.04,119.46 404.43,119.75 409.46,111.05 "
-       id="polygon1756" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="361.38,104.22 361.73,104.47 364.08,94.82 "
-       id="polygon1758" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="403.61,119.26 404.04,119.46 409.08,110.78 "
-       id="polygon1760" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="379.29,131.54 378.83,131.45 375.07,139.93 "
-       id="polygon1762" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="380.13,132 379.74,131.73 375.98,140.2 "
-       id="polygon1764" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="379.74,131.73 379.29,131.54 375.54,140.02 "
-       id="polygon1766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.59,104.01 360,103.93 362.35,94.28 "
-       id="polygon1768" />
-    <polygon
-       style="opacity:1;fill:#00e800"
-       points="290.55,130.78 290.64,130.43 292.91,139.05 "
-       id="polygon1770" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="360.95,104.04 361.38,104.22 363.72,94.57 "
-       id="polygon1772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="360,103.93 360.47,103.93 362.82,94.29 "
-       id="polygon1774" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="360.47,103.93 360.95,104.04 363.29,94.38 "
-       id="polygon1776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.05,132.74 469.35,132.74 477.49,125.8 "
-       id="polygon1778" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="471.04,134.59 471.04,134.91 479.18,127.97 "
-       id="polygon1780" />
-    <line
-       x1="375.62"
-       y1="151.75"
-       x2="375.17001"
-       y2="151.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1782" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="469.35,132.74 469.7,132.87 477.84,125.93 "
-       id="polygon1784" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="470.92,134.21 471.04,134.59 479.18,127.65 "
-       id="polygon1786" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="469.7,132.87 470.06,133.1 478.21,126.16 "
-       id="polygon1788" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="470.71,133.81 470.92,134.21 479.06,127.27 "
-       id="polygon1790" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="470.06,133.1 470.41,133.43 478.55,126.48 "
-       id="polygon1792" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="470.41,133.43 470.71,133.81 478.85,126.87 "
-       id="polygon1794" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="290.38,129.82 290.05,129.62 292.32,138.23 "
-       id="polygon1796" />
-    <line
-       x1="234.97"
-       y1="99.330002"
-       x2="233.92"
-       y2="98.709999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1798" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="399.73,209.86 399.53,210.21 405.87,206 "
-       id="polygon1800" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="398.09,207.65 398.5,207.69 404.84,203.48 "
-       id="polygon1802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="287.91,130.1 287.68,130.43 289.95,139.04 "
-       id="polygon1804" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="290.05,129.62 289.63,129.51 291.91,138.12 "
-       id="polygon1806" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="399.8,209.44 399.73,209.86 406.07,205.65 "
-       id="polygon1808" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="398.5,207.69 398.91,207.86 405.25,203.65 "
-       id="polygon1810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="288.25,129.82 287.91,130.1 290.18,138.71 "
-       id="polygon1812" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="399.75,208.99 399.8,209.44 406.14,205.23 "
-       id="polygon1814" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="289.63,129.51 289.16,129.5 291.44,138.12 "
-       id="polygon1816" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="398.91,207.86 399.28,208.16 405.62,203.95 "
-       id="polygon1818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="288.69,129.61 288.25,129.82 290.53,138.43 "
-       id="polygon1820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="289.16,129.5 288.69,129.61 290.96,138.22 "
-       id="polygon1822" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="399.57,208.54 399.75,208.99 406.09,204.78 "
-       id="polygon1824" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="399.28,208.16 399.57,208.54 405.91,204.33 "
-       id="polygon1826" />
-    <line
-       x1="385.39001"
-       y1="169.02"
-       x2="385.82001"
-       y2="169.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1828" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="376.82,141.16 376.85,141.5 380.6,133.02 "
-       id="polygon1830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.03,140.31 374.28,140.08 378.04,131.61 "
-       id="polygon1832" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="376.66,140.8 376.82,141.16 380.58,132.68 "
-       id="polygon1834" />
-    <line
-       x1="233.92"
-       y1="98.709999"
-       x2="232.95"
-       y2="98.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.28,140.08 374.64,139.95 378.4,131.47 "
-       id="polygon1838" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="376.37,140.48 376.66,140.8 380.41,132.32 "
-       id="polygon1840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.64,139.95 375.07,139.93 378.83,131.45 "
-       id="polygon1842" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="375.98,140.2 376.37,140.48 380.13,132 "
-       id="polygon1844" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="375.07,139.93 375.54,140.02 379.29,131.54 "
-       id="polygon1846" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="375.54,140.02 375.98,140.2 379.74,131.73 "
-       id="polygon1848" />
-    <line
-       x1="342.78"
-       y1="273.73999"
-       x2="339.19"
-       y2="271.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1850" />
-    <line
-       x1="346.45999"
-       y1="275.60001"
-       x2="342.78"
-       y2="273.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1852" />
-    <line
-       x1="350.23001"
-       y1="277.25"
-       x2="346.45999"
-       y2="275.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1854" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="292.32,138.23 292.65,138.43 290.38,129.82 "
-       id="polygon1856" />
-    <line
-       x1="232.95"
-       y1="98.050003"
-       x2="232.05"
-       y2="97.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1858" />
-    <polygon
-       style="opacity:1;fill:#00ee00"
-       points="361.83,105.59 362.03,105.35 359.68,115.02 "
-       id="polygon1860" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="289.86,139.39 289.95,139.04 287.68,130.43 "
-       id="polygon1862" />
-    <line
-       x1="354.07001"
-       y1="278.66"
-       x2="350.23001"
-       y2="277.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1864" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="291.91,138.12 292.32,138.23 290.05,129.62 "
-       id="polygon1866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="402.45,119.25 402.23,119.45 397.18,128.17 "
-       id="polygon1868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="289.95,139.04 290.18,138.71 287.91,130.1 "
-       id="polygon1870" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="291.44,138.12 291.91,138.12 289.63,129.51 "
-       id="polygon1872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.18,138.71 290.53,138.43 288.25,129.82 "
-       id="polygon1874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.96,138.22 291.44,138.12 289.16,129.5 "
-       id="polygon1876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.53,138.43 290.96,138.22 288.69,129.61 "
-       id="polygon1878" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="399.85,129.74 399.64,129.94 404.69,121.22 "
-       id="polygon1880" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="404.98,120.75 404.93,120.42 399.88,129.14 "
-       id="polygon1882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="402.77,119.15 402.45,119.25 397.39,127.97 "
-       id="polygon1884" />
-    <line
-       x1="357.95001"
-       y1="279.84"
-       x2="354.07001"
-       y2="278.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1886" />
-    <line
-       x1="332.39001"
-       y1="267.01999"
-       x2="329.20999"
-       y2="264.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1888" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="470.92,135.15 471.04,134.91 462.88,141.88 "
-       id="polygon1890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.35,132.74 469.05,132.74 460.89,139.7 "
-       id="polygon1892" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="404.93,120.42 404.73,120.07 399.69,128.79 "
-       id="polygon1894" />
-    <line
-       x1="378.38"
-       y1="151.7"
-       x2="376.10999"
-       y2="151.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="403.17,119.15 402.77,119.15 397.71,127.86 "
-       id="polygon1898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.59,104.01 359.27,104.18 356.92,113.86 "
-       id="polygon1900" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="361.98,104.76 361.73,104.47 359.39,114.15 "
-       id="polygon1902" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="471.04,134.91 471.04,134.59 462.88,141.55 "
-       id="polygon1904" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="399.28,208.16 399.57,208.54 399.34,208.66 "
-       id="polygon1906" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="404.73,120.07 404.43,119.75 399.38,128.46 "
-       id="polygon1908" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="403.61,119.26 403.17,119.15 398.12,127.87 "
-       id="polygon1910" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="469.7,132.87 469.35,132.74 461.19,139.7 "
-       id="polygon1912" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="404.43,119.75 404.04,119.46 398.99,128.18 "
-       id="polygon1914" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="404.04,119.46 403.61,119.26 398.56,127.98 "
-       id="polygon1916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="360,103.93 359.59,104.01 357.24,113.69 "
-       id="polygon1918" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="361.73,104.47 361.38,104.22 359.03,113.9 "
-       id="polygon1920" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="471.04,134.59 470.92,134.21 462.76,141.17 "
-       id="polygon1922" />
-    <line
-       x1="361.85001"
-       y1="280.76001"
-       x2="357.95001"
-       y2="279.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1924" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="470.06,133.1 469.7,132.87 461.54,139.82 "
-       id="polygon1926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="360.47,103.93 360,103.93 357.65,113.61 "
-       id="polygon1928" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="361.38,104.22 360.95,104.04 358.59,113.71 "
-       id="polygon1930" />
-    <line
-       x1="329.20999"
-       y1="264.45001"
-       x2="326.19"
-       y2="261.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1932" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="360.95,104.04 360.47,103.93 358.12,113.61 "
-       id="polygon1934" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="470.92,134.21 470.71,133.81 462.55,140.77 "
-       id="polygon1936" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="470.41,133.43 470.06,133.1 461.9,140.06 "
-       id="polygon1938" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="470.71,133.81 470.41,133.43 462.25,140.39 "
-       id="polygon1940" />
-    <line
-       x1="386.29001"
-       y1="169.52"
-       x2="386.79999"
-       y2="169.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1942" />
-    <line
-       x1="365.76001"
-       y1="281.42999"
-       x2="361.85001"
-       y2="280.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1944" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="292.32,138.23 292.65,138.43 292.4,138.59 "
-       id="polygon1946" />
-    <line
-       x1="231.24001"
-       y1="96.68"
-       x2="230.52"
-       y2="95.980003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1948" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="399.88,129.14 399.93,129.46 404.98,120.75 "
-       id="polygon1950" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="359.63,114.44 359.73,114.74 362.07,105.06 "
-       id="polygon1952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.89,139.7 461.19,139.7 469.35,132.74 "
-       id="polygon1954" />
-    <line
-       x1="369.66"
-       y1="281.82001"
-       x2="365.76001"
-       y2="281.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1956" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="462.88,141.55 462.88,141.88 471.04,134.91 "
-       id="polygon1958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="397.39,127.97 397.71,127.86 402.77,119.15 "
-       id="polygon1960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.73,114.1 356.92,113.86 359.27,104.18 "
-       id="polygon1962" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="399.69,128.79 399.88,129.14 404.93,120.42 "
-       id="polygon1964" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="359.39,114.15 359.63,114.44 361.98,104.76 "
-       id="polygon1966" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="461.19,139.7 461.54,139.82 469.7,132.87 "
-       id="polygon1968" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="462.76,141.17 462.88,141.55 471.04,134.59 "
-       id="polygon1970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="397.71,127.86 398.12,127.87 403.17,119.15 "
-       id="polygon1972" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="399.38,128.46 399.69,128.79 404.73,120.07 "
-       id="polygon1974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.92,113.86 357.24,113.69 359.59,104.01 "
-       id="polygon1976" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="461.54,139.82 461.9,140.06 470.06,133.1 "
-       id="polygon1978" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="462.55,140.77 462.76,141.17 470.92,134.21 "
-       id="polygon1980" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="398.12,127.87 398.56,127.98 403.61,119.26 "
-       id="polygon1982" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="359.03,113.9 359.39,114.15 361.73,104.47 "
-       id="polygon1984" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="398.99,128.18 399.38,128.46 404.43,119.75 "
-       id="polygon1986" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="398.56,127.98 398.99,128.18 404.04,119.46 "
-       id="polygon1988" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="461.9,140.06 462.25,140.39 470.41,133.43 "
-       id="polygon1990" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="462.25,140.39 462.55,140.77 470.71,133.81 "
-       id="polygon1992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="357.24,113.69 357.65,113.61 360,103.93 "
-       id="polygon1994" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="358.59,113.71 359.03,113.9 361.38,104.22 "
-       id="polygon1996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="357.65,113.61 358.12,113.61 360.47,103.93 "
-       id="polygon1998" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="358.12,113.61 358.59,113.71 360.95,104.04 "
-       id="polygon2000" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="376.85,141.5 376.82,141.16 373.06,149.66 "
-       id="polygon2002" />
-    <line
-       x1="380.73001"
-       y1="151.91"
-       x2="378.38"
-       y2="151.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2004" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="398.5,207.69 398.09,207.65 391.72,211.88 "
-       id="polygon2006" />
-    <line
-       x1="230.52"
-       y1="95.980003"
-       x2="229.87"
-       y2="95.269997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2008" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="399.73,209.86 399.8,209.44 393.44,213.67 "
-       id="polygon2010" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="398.91,207.86 398.5,207.69 392.13,211.91 "
-       id="polygon2012" />
-    <line
-       x1="373.51999"
-       y1="281.94"
-       x2="369.66"
-       y2="281.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.64,139.95 374.28,140.08 370.51,148.59 "
-       id="polygon2016" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="376.82,141.16 376.66,140.8 372.89,149.31 "
-       id="polygon2018" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="399.8,209.44 399.75,208.99 393.38,213.22 "
-       id="polygon2020" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="399.28,208.16 398.91,207.86 392.54,212.09 "
-       id="polygon2022" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="399.75,208.99 399.57,208.54 393.2,212.77 "
-       id="polygon2024" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="399.57,208.54 399.28,208.16 392.91,212.38 "
-       id="polygon2026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="375.07,139.93 374.64,139.95 370.88,148.46 "
-       id="polygon2028" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="376.66,140.8 376.37,140.48 372.61,148.98 "
-       id="polygon2030" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="375.54,140.02 375.07,139.93 371.3,148.43 "
-       id="polygon2032" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="376.37,140.48 375.98,140.2 372.22,148.71 "
-       id="polygon2034" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="375.98,140.2 375.54,140.02 371.77,148.52 "
-       id="polygon2036" />
-    <line
-       x1="431.63"
-       y1="116.43"
-       x2="433.29001"
-       y2="117.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2038" />
-    <line
-       x1="433.29001"
-       y1="117.33"
-       x2="434.97"
-       y2="118.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2040" />
-    <line
-       x1="430.01999"
-       y1="115.46"
-       x2="431.63"
-       y2="116.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2042" />
-    <line
-       x1="434.97"
-       y1="118.16"
-       x2="436.69"
-       y2="118.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2044" />
-    <line
-       x1="428.44"
-       y1="114.44"
-       x2="430.01999"
-       y2="115.46"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2046" />
-    <line
-       x1="436.69"
-       y1="118.92"
-       x2="438.42999"
-       y2="119.6"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2048" />
-    <line
-       x1="387.35001"
-       y1="170.39999"
-       x2="387.92001"
-       y2="171"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2050" />
-    <line
-       x1="426.91"
-       y1="113.36"
-       x2="428.44"
-       y2="114.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2052" />
-    <line
-       x1="438.42999"
-       y1="119.6"
-       x2="440.20001"
-       y2="120.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2054" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="292.86,138.71 292.65,138.43 294.93,147.07 "
-       id="polygon2056" />
-    <line
-       x1="440.20001"
-       y1="120.2"
-       x2="441.98999"
-       y2="120.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2058" />
-    <line
-       x1="425.42001"
-       y1="112.23"
-       x2="426.91"
-       y2="113.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2060" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="289.95,139.04 289.86,139.39 292.14,148.03 "
-       id="polygon2062" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="292.65,138.43 292.32,138.23 294.61,146.87 "
-       id="polygon2064" />
-    <line
-       x1="441.98999"
-       y1="120.7"
-       x2="443.79001"
-       y2="121.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2066" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="359.42,114.7 359.34,114.46 359.63,114.44 "
-       id="polygon2068" />
-    <line
-       x1="423.98001"
-       y1="111.05"
-       x2="425.42001"
-       y2="112.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.18,138.71 289.95,139.04 292.23,147.68 "
-       id="polygon2072" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="292.32,138.23 291.91,138.12 294.19,146.76 "
-       id="polygon2074" />
-    <line
-       x1="443.79001"
-       y1="121.13"
-       x2="445.60001"
-       y2="121.46"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.53,138.43 290.18,138.71 292.46,147.35 "
-       id="polygon2078" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="291.91,138.12 291.44,138.12 293.72,146.76 "
-       id="polygon2080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="290.96,138.22 290.53,138.43 292.81,147.07 "
-       id="polygon2082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="291.44,138.12 290.96,138.22 293.24,146.86 "
-       id="polygon2084" />
-    <line
-       x1="422.59"
-       y1="109.84"
-       x2="423.98001"
-       y2="111.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2086" />
-    <line
-       x1="445.60001"
-       y1="121.46"
-       x2="447.42001"
-       y2="121.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2088" />
-    <line
-       x1="318.25"
-       y1="253.05"
-       x2="316.01999"
-       y2="250.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2090" />
-    <line
-       x1="421.26001"
-       y1="108.59"
-       x2="422.59"
-       y2="109.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2092" />
-    <line
-       x1="447.42001"
-       y1="121.7"
-       x2="449.23999"
-       y2="121.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2094" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="462.25,142.23 462.55,142.23 454.37,149.21 "
-       id="polygon2096" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="373.06,149.66 373.09,150 376.85,141.5 "
-       id="polygon2098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.26,148.81 370.51,148.59 374.28,140.08 "
-       id="polygon2100" />
-    <line
-       x1="449.23999"
-       y1="121.84"
-       x2="451.06"
-       y2="121.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2102" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="372.89,149.31 373.06,149.66 376.82,141.16 "
-       id="polygon2104" />
-    <line
-       x1="419.98001"
-       y1="107.32"
-       x2="421.26001"
-       y2="108.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2106" />
-    <line
-       x1="229.32001"
-       y1="94.559998"
-       x2="228.86"
-       y2="93.849998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2108" />
-    <line
-       x1="383.12"
-       y1="152.42999"
-       x2="380.73001"
-       y2="151.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.51,148.59 370.88,148.46 374.64,139.95 "
-       id="polygon2112" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="372.61,148.98 372.89,149.31 376.66,140.8 "
-       id="polygon2114" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="393.36,214.09 393.16,214.44 399.53,210.21 "
-       id="polygon2116" />
-    <line
-       x1="451.06"
-       y1="121.89"
-       x2="452.88"
-       y2="121.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.88,148.46 371.3,148.43 375.07,139.93 "
-       id="polygon2120" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="372.22,148.71 372.61,148.98 376.37,140.48 "
-       id="polygon2122" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="391.72,211.88 392.13,211.91 398.5,207.69 "
-       id="polygon2124" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="393.44,213.67 393.36,214.09 399.73,209.86 "
-       id="polygon2126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="461.19,139.7 460.89,139.7 452.71,146.68 "
-       id="polygon2128" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="371.3,148.43 371.77,148.52 375.54,140.02 "
-       id="polygon2130" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="399.64,129.94 399.85,129.74 394.79,138.48 "
-       id="polygon2132" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="371.77,148.52 372.22,148.71 375.98,140.2 "
-       id="polygon2134" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="392.13,211.91 392.54,212.09 398.91,207.86 "
-       id="polygon2136" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="393.38,213.22 393.44,213.67 399.8,209.44 "
-       id="polygon2138" />
-    <line
-       x1="418.75"
-       y1="106.02"
-       x2="419.98001"
-       y2="107.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2140" />
-    <line
-       x1="452.88"
-       y1="121.84"
-       x2="454.69"
-       y2="121.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2142" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="392.54,212.09 392.91,212.38 399.28,208.16 "
-       id="polygon2144" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="462.88,141.88 462.88,141.55 454.69,148.53 "
-       id="polygon2146" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="393.2,212.77 393.38,213.22 399.75,208.99 "
-       id="polygon2148" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="392.91,212.38 393.2,212.77 399.57,208.54 "
-       id="polygon2150" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="461.54,139.82 461.19,139.7 453,146.68 "
-       id="polygon2152" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="462.88,141.55 462.76,141.17 454.58,148.14 "
-       id="polygon2154" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="461.9,140.06 461.54,139.82 453.35,146.8 "
-       id="polygon2156" />
-    <line
-       x1="454.69"
-       y1="121.69"
-       x2="456.48001"
-       y2="121.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2158" />
-    <line
-       x1="316.01999"
-       y1="250.02"
-       x2="314.01001"
-       y2="246.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2160" />
-    <line
-       x1="384.73999"
-       y1="280.63"
-       x2="381.07999"
-       y2="281.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2162" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="462.76,141.17 462.55,140.77 454.36,147.75 "
-       id="polygon2164" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="392.09,137.51 392.04,137.18 397.1,128.45 "
-       id="polygon2166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="397.71,127.86 397.39,127.97 392.33,136.71 "
-       id="polygon2168" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="462.25,140.39 461.9,140.06 453.72,147.04 "
-       id="polygon2170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.92,113.86 356.73,114.1 354.37,123.81 "
-       id="polygon2172" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="294.61,146.87 294.93,147.07 292.65,138.43 "
-       id="polygon2174" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="462.55,140.77 462.25,140.39 454.07,147.36 "
-       id="polygon2176" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="359.73,114.74 359.63,114.44 357.27,124.14 "
-       id="polygon2178" />
-    <line
-       x1="417.59"
-       y1="104.71"
-       x2="418.75"
-       y2="106.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2180" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="399.88,129.14 399.69,128.79 394.63,137.53 "
-       id="polygon2182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.12,127.87 397.71,127.86 392.65,136.61 "
-       id="polygon2184" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="294.19,146.76 294.61,146.87 292.32,138.23 "
-       id="polygon2186" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="359.63,114.44 359.39,114.15 357.03,123.86 "
-       id="polygon2188" />
-    <line
-       x1="388.51999"
-       y1="171.67999"
-       x2="389.13"
-       y2="172.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2190" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="399.69,128.79 399.38,128.46 394.32,137.2 "
-       id="polygon2192" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="398.56,127.98 398.12,127.87 393.05,136.61 "
-       id="polygon2194" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="293.72,146.76 294.19,146.76 291.91,138.12 "
-       id="polygon2196" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="399.38,128.46 398.99,128.18 393.93,136.92 "
-       id="polygon2198" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="398.99,128.18 398.56,127.98 393.49,136.72 "
-       id="polygon2200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="357.65,113.61 357.24,113.69 354.88,123.4 "
-       id="polygon2202" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="359.39,114.15 359.03,113.9 356.67,123.61 "
-       id="polygon2204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="292.46,147.35 292.81,147.07 290.53,138.43 "
-       id="polygon2206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="293.24,146.86 293.72,146.76 291.44,138.12 "
-       id="polygon2208" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="292.81,147.07 293.24,146.86 290.96,138.22 "
-       id="polygon2210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="358.12,113.61 357.65,113.61 355.29,123.31 "
-       id="polygon2212" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="359.03,113.9 358.59,113.71 356.23,123.42 "
-       id="polygon2214" />
-    <line
-       x1="416.48999"
-       y1="103.4"
-       x2="417.59"
-       y2="104.71"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2216" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="358.59,113.71 358.12,113.61 355.76,123.32 "
-       id="polygon2218" />
-    <line
-       x1="388.29001"
-       y1="279.63"
-       x2="384.73999"
-       y2="280.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2220" />
-    <line
-       x1="415.44"
-       y1="102.08"
-       x2="416.48999"
-       y2="103.4"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="452.71,146.68 453,146.68 461.19,139.7 "
-       id="polygon2224" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="454.69,148.53 454.7,148.85 462.88,141.88 "
-       id="polygon2226" />
-    <line
-       x1="314.01001"
-       y1="246.96001"
-       x2="312.23001"
-       y2="243.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2228" />
-    <line
-       x1="228.48"
-       y1="93.160004"
-       x2="228.19"
-       y2="92.470001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2230" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="453,146.68 453.35,146.8 461.54,139.82 "
-       id="polygon2232" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="454.58,148.14 454.69,148.53 462.88,141.55 "
-       id="polygon2234" />
-    <line
-       x1="389.13"
-       y1="172.47"
-       x2="389.75"
-       y2="173.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2236" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="453.35,146.8 453.72,147.04 461.9,140.06 "
-       id="polygon2238" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="454.36,147.75 454.58,148.14 462.76,141.17 "
-       id="polygon2240" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="453.72,147.04 454.07,147.36 462.25,140.39 "
-       id="polygon2242" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="454.07,147.36 454.36,147.75 462.55,140.77 "
-       id="polygon2244" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="394.82,137.88 394.87,138.2 399.93,129.46 "
-       id="polygon2246" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="357.27,124.14 357.37,124.45 359.73,114.74 "
-       id="polygon2248" />
-    <line
-       x1="414.45999"
-       y1="100.77"
-       x2="415.44"
-       y2="102.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.33,136.71 392.65,136.61 397.71,127.86 "
-       id="polygon2252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="354.37,123.81 354.56,123.57 356.92,113.86 "
-       id="polygon2254" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="394.63,137.53 394.82,137.88 399.88,129.14 "
-       id="polygon2256" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="357.03,123.86 357.27,124.14 359.63,114.44 "
-       id="polygon2258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.65,136.61 393.05,136.61 398.12,127.87 "
-       id="polygon2260" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="394.32,137.2 394.63,137.53 399.69,128.79 "
-       id="polygon2262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="354.56,123.57 354.88,123.4 357.24,113.69 "
-       id="polygon2264" />
-    <line
-       x1="391.70999"
-       y1="278.35999"
-       x2="388.29001"
-       y2="279.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2266" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="393.05,136.61 393.49,136.72 398.56,127.98 "
-       id="polygon2268" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="356.67,123.61 357.03,123.86 359.39,114.15 "
-       id="polygon2270" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="393.93,136.92 394.32,137.2 399.38,128.46 "
-       id="polygon2272" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="393.49,136.72 393.93,136.92 398.99,128.18 "
-       id="polygon2274" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="292.52,147.71 292.7,147.45 292.46,147.35 "
-       id="polygon2276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="354.88,123.4 355.29,123.31 357.65,113.61 "
-       id="polygon2278" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="356.23,123.42 356.67,123.61 359.03,113.9 "
-       id="polygon2280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.29,123.31 355.76,123.32 358.12,113.61 "
-       id="polygon2282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="355.76,123.32 356.23,123.42 358.59,113.71 "
-       id="polygon2284" />
-    <line
-       x1="413.54001"
-       y1="99.470001"
-       x2="414.45999"
-       y2="100.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2286" />
-    <line
-       x1="228.19"
-       y1="92.470001"
-       x2="227.99001"
-       y2="91.809998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2288" />
-    <line
-       x1="312.23001"
-       y1="243.89999"
-       x2="310.70001"
-       y2="240.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2290" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="373.09,150 373.06,149.66 369.29,158.2 "
-       id="polygon2292" />
-    <line
-       x1="389.75"
-       y1="173.36"
-       x2="392.25"
-       y2="175.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2294" />
-    <line
-       x1="412.67999"
-       y1="98.190002"
-       x2="413.54001"
-       y2="99.470001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.88,148.46 370.51,148.59 366.73,157.12 "
-       id="polygon2298" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="373.06,149.66 372.89,149.31 369.12,157.84 "
-       id="polygon2300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="371.3,148.43 370.88,148.46 367.09,156.99 "
-       id="polygon2302" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="372.89,149.31 372.61,148.98 368.83,157.52 "
-       id="polygon2304" />
-    <line
-       x1="387.97"
-       y1="154.36"
-       x2="385.54001"
-       y2="153.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2306" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="371.77,148.52 371.3,148.43 367.53,156.97 "
-       id="polygon2308" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="372.61,148.98 372.22,148.71 368.44,157.24 "
-       id="polygon2310" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="372.22,148.71 371.77,148.52 367.99,157.05 "
-       id="polygon2312" />
-    <line
-       x1="227.99001"
-       y1="91.809998"
-       x2="227.88"
-       y2="91.169998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2314" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="454.07,149.21 454.37,149.21 446.16,156.21 "
-       id="polygon2316" />
-    <line
-       x1="411.89001"
-       y1="96.93"
-       x2="412.67999"
-       y2="98.190002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2318" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="392.13,211.91 391.72,211.88 385.33,216.12 "
-       id="polygon2320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="292.46,147.35 292.23,147.68 294.52,156.35 "
-       id="polygon2322" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="393.36,214.09 393.44,213.67 387.05,217.92 "
-       id="polygon2324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="453,146.68 452.71,146.68 444.5,153.67 "
-       id="polygon2326" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="294.61,146.87 294.19,146.76 296.48,155.43 "
-       id="polygon2328" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="392.54,212.09 392.13,211.91 385.74,216.15 "
-       id="polygon2330" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="393.44,213.67 393.38,213.22 386.99,217.46 "
-       id="polygon2332" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="392.91,212.38 392.54,212.09 386.15,216.33 "
-       id="polygon2334" />
-    <line
-       x1="310.70001"
-       y1="240.85001"
-       x2="309.39999"
-       y2="237.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="292.81,147.07 292.46,147.35 294.75,156.02 "
-       id="polygon2338" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="294.19,146.76 293.72,146.76 296.01,155.43 "
-       id="polygon2340" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="393.38,213.22 393.2,212.77 386.81,217.02 "
-       id="polygon2342" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="393.2,212.77 392.91,212.38 386.52,216.63 "
-       id="polygon2344" />
-    <line
-       x1="398.12"
-       y1="275"
-       x2="394.98999"
-       y2="276.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2346" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="454.7,148.85 454.69,148.53 446.49,155.52 "
-       id="polygon2348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="293.24,146.86 292.81,147.07 295.1,155.74 "
-       id="polygon2350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="293.72,146.76 293.24,146.86 295.53,155.53 "
-       id="polygon2352" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="453.35,146.8 453,146.68 444.8,153.67 "
-       id="polygon2354" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="454.69,148.53 454.58,148.14 446.38,155.14 "
-       id="polygon2356" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="453.72,147.04 453.35,146.8 445.14,153.8 "
-       id="polygon2358" />
-    <line
-       x1="411.14999"
-       y1="95.699997"
-       x2="411.89001"
-       y2="96.93"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2360" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="454.58,148.14 454.36,147.75 446.16,154.74 "
-       id="polygon2362" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="454.07,147.36 453.72,147.04 445.51,154.03 "
-       id="polygon2364" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="454.36,147.75 454.07,147.36 445.86,154.36 "
-       id="polygon2366" />
-    <line
-       x1="392.25"
-       y1="175.02"
-       x2="394.75"
-       y2="176.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2368" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="369.29,158.2 369.31,158.54 373.09,150 "
-       id="polygon2370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.33,136.71 392.11,136.91 387.04,145.67 "
-       id="polygon2372" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="369.12,157.84 369.29,158.2 373.06,149.66 "
-       id="polygon2374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.73,157.12 367.09,156.99 370.88,148.46 "
-       id="polygon2376" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="368.83,157.52 369.12,157.84 372.89,149.31 "
-       id="polygon2378" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="394.87,138.2 394.82,137.88 389.74,146.64 "
-       id="polygon2380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.65,136.61 392.33,136.71 387.25,145.47 "
-       id="polygon2382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="354.56,123.57 354.37,123.81 352,133.54 "
-       id="polygon2384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.09,156.99 367.53,156.97 371.3,148.43 "
-       id="polygon2386" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="357.37,124.45 357.27,124.14 354.91,133.88 "
-       id="polygon2388" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="368.44,157.24 368.83,157.52 372.61,148.98 "
-       id="polygon2390" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="367.53,156.97 367.99,157.05 371.77,148.52 "
-       id="polygon2392" />
-    <line
-       x1="390.39001"
-       y1="155.77"
-       x2="387.97"
-       y2="154.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2394" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="367.99,157.05 368.44,157.24 372.22,148.71 "
-       id="polygon2396" />
-    <line
-       x1="410.48001"
-       y1="94.510002"
-       x2="411.14999"
-       y2="95.699997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2398" />
-    <line
-       x1="401.07001"
-       y1="272.92001"
-       x2="398.12"
-       y2="275"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2400" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="394.82,137.88 394.63,137.53 389.55,146.3 "
-       id="polygon2402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="393.05,136.61 392.65,136.61 387.57,145.37 "
-       id="polygon2404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="354.88,123.4 354.56,123.57 352.2,133.3 "
-       id="polygon2406" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="357.27,124.14 357.03,123.86 354.66,133.59 "
-       id="polygon2408" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="294.69,157.31 294.48,157.03 292.2,148.36 "
-       id="polygon2410" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="394.63,137.53 394.32,137.2 389.24,145.97 "
-       id="polygon2412" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="393.49,136.72 393.05,136.61 387.97,145.38 "
-       id="polygon2414" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="297.23,155.74 297.43,156.02 295.14,147.36 "
-       id="polygon2416" />
-    <line
-       x1="227.86"
-       y1="90.559998"
-       x2="227.92999"
-       y2="89.989998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2418" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="394.32,137.2 393.93,136.92 388.85,145.69 "
-       id="polygon2420" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="393.93,136.92 393.49,136.72 388.41,145.48 "
-       id="polygon2422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.29,123.31 354.88,123.4 352.51,133.13 "
-       id="polygon2424" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="357.03,123.86 356.67,123.61 354.31,133.34 "
-       id="polygon2426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="444.5,153.67 444.8,153.67 453,146.68 "
-       id="polygon2428" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="446.49,155.52 446.49,155.85 454.7,148.85 "
-       id="polygon2430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.76,123.32 355.29,123.31 352.93,133.05 "
-       id="polygon2432" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="356.67,123.61 356.23,123.42 353.87,133.16 "
-       id="polygon2434" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="356.23,123.42 355.76,123.32 353.39,133.05 "
-       id="polygon2436" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="296.9,155.54 297.23,155.74 294.93,147.07 "
-       id="polygon2438" />
-    <line
-       x1="309.39999"
-       y1="237.84"
-       x2="308.35001"
-       y2="234.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2440" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="294.43,156.7 294.52,156.35 292.23,147.68 "
-       id="polygon2442" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="444.8,153.67 445.14,153.8 453.35,146.8 "
-       id="polygon2444" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="446.38,155.14 446.49,155.52 454.69,148.53 "
-       id="polygon2446" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="296.48,155.43 296.9,155.54 294.61,146.87 "
-       id="polygon2448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="294.52,156.35 294.75,156.02 292.46,147.35 "
-       id="polygon2450" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="445.14,153.8 445.51,154.03 453.72,147.04 "
-       id="polygon2452" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="446.16,154.74 446.38,155.14 454.58,148.14 "
-       id="polygon2454" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="296.01,155.43 296.48,155.43 294.19,146.76 "
-       id="polygon2456" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="445.51,154.03 445.86,154.36 454.07,147.36 "
-       id="polygon2458" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="445.86,154.36 446.16,154.74 454.36,147.75 "
-       id="polygon2460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="294.75,156.02 295.1,155.74 292.81,147.07 "
-       id="polygon2462" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="386.97,218.34 386.77,218.69 393.16,214.44 "
-       id="polygon2464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="295.53,155.53 296.01,155.43 293.72,146.76 "
-       id="polygon2466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="295.1,155.74 295.53,155.53 293.24,146.86 "
-       id="polygon2468" />
-    <line
-       x1="409.85999"
-       y1="93.360001"
-       x2="410.48001"
-       y2="94.510002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2470" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="385.33,216.12 385.74,216.15 392.13,211.91 "
-       id="polygon2472" />
-    <line
-       x1="394.75"
-       y1="176.94"
-       x2="397.22"
-       y2="179.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2474" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="387.05,217.92 386.97,218.34 393.36,214.09 "
-       id="polygon2476" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="386.99,217.46 387.05,217.92 393.44,213.67 "
-       id="polygon2478" />
-    <line
-       x1="403.84"
-       y1="270.60001"
-       x2="401.07001"
-       y2="272.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2480" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="386.15,216.33 386.52,216.63 392.91,212.38 "
-       id="polygon2482" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="386.81,217.02 386.99,217.46 393.38,213.22 "
-       id="polygon2484" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="386.52,216.63 386.81,217.02 393.2,212.77 "
-       id="polygon2486" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="366.36,157.64 366.48,157.34 366.75,157.5 "
-       id="polygon2488" />
-    <line
-       x1="322.29001"
-       y1="245.55"
-       x2="325.42001"
-       y2="248.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2490" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="389.74,146.64 389.8,146.97 394.87,138.2 "
-       id="polygon2492" />
-    <line
-       x1="328.70999"
-       y1="250.85001"
-       x2="332.14001"
-       y2="253.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2494" />
-    <line
-       x1="319.32001"
-       y1="242.64"
-       x2="322.29001"
-       y2="245.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="387.25,145.47 387.57,145.37 392.65,136.61 "
-       id="polygon2498" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="389.55,146.3 389.74,146.64 394.82,137.88 "
-       id="polygon2500" />
-    <line
-       x1="332.14001"
-       y1="253.19"
-       x2="335.69"
-       y2="255.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2502" />
-    <line
-       x1="409.31"
-       y1="92.260002"
-       x2="409.85999"
-       y2="93.360001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="387.57,145.37 387.97,145.38 393.05,136.61 "
-       id="polygon2506" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="389.24,145.97 389.55,146.3 394.63,137.53 "
-       id="polygon2508" />
-    <line
-       x1="392.79001"
-       y1="157.47"
-       x2="390.39001"
-       y2="155.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.2,133.3 352.51,133.13 354.88,123.4 "
-       id="polygon2512" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="354.31,133.34 354.66,133.59 357.03,123.86 "
-       id="polygon2514" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="387.97,145.38 388.41,145.48 393.49,136.72 "
-       id="polygon2516" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="388.85,145.69 389.24,145.97 394.32,137.2 "
-       id="polygon2518" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="388.41,145.48 388.85,145.69 393.93,136.92 "
-       id="polygon2520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.51,133.13 352.93,133.05 355.29,123.31 "
-       id="polygon2522" />
-    <line
-       x1="335.69"
-       y1="255.31"
-       x2="339.34"
-       y2="257.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2524" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="353.87,133.16 354.31,133.34 356.67,123.61 "
-       id="polygon2526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.93,133.05 353.39,133.05 355.76,123.32 "
-       id="polygon2528" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="353.39,133.05 353.87,133.16 356.23,123.42 "
-       id="polygon2530" />
-    <line
-       x1="313.95001"
-       y1="236.37"
-       x2="316.54001"
-       y2="239.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2532" />
-    <line
-       x1="406.41"
-       y1="268.04001"
-       x2="403.84"
-       y2="270.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2534" />
-    <line
-       x1="308.35001"
-       y1="234.88"
-       x2="307.54999"
-       y2="232"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2536" />
-    <line
-       x1="228.08"
-       y1="89.449997"
-       x2="228.31"
-       y2="88.959999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2538" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="294.43,156.7 294.52,156.35 294.8,156.38 "
-       id="polygon2540" />
-    <line
-       x1="339.34"
-       y1="257.20001"
-       x2="343.07999"
-       y2="258.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2542" />
-    <line
-       x1="397.22"
-       y1="179.12"
-       x2="399.66"
-       y2="181.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2544" />
-    <line
-       x1="311.56"
-       y1="233.06"
-       x2="313.95001"
-       y2="236.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2546" />
-    <line
-       x1="408.81"
-       y1="91.209999"
-       x2="409.31"
-       y2="92.260002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2548" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="444.29,153.79 444.18,154.03 435.95,161.04 "
-       id="polygon2550" />
-    <line
-       x1="343.07999"
-       y1="258.82001"
-       x2="346.89001"
-       y2="260.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2552" />
-    <line
-       x1="309.39001"
-       y1="229.67"
-       x2="311.56"
-       y2="233.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2554" />
-    <line
-       x1="408.76999"
-       y1="265.23999"
-       x2="406.41"
-       y2="268.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="444.8,153.67 444.5,153.67 436.28,160.68 "
-       id="polygon2558" />
-    <line
-       x1="346.89001"
-       y1="260.19"
-       x2="350.75"
-       y2="261.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2560" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="446.49,155.85 446.49,155.52 438.26,162.54 "
-       id="polygon2562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.09,156.99 366.73,157.12 362.94,165.68 "
-       id="polygon2564" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="445.14,153.8 444.8,153.67 436.57,160.68 "
-       id="polygon2566" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="369.29,158.2 369.12,157.84 365.33,166.41 "
-       id="polygon2568" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="446.49,155.52 446.38,155.14 438.15,162.16 "
-       id="polygon2570" />
-    <line
-       x1="395.14001"
-       y1="159.45"
-       x2="392.79001"
-       y2="157.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.53,156.97 367.09,156.99 363.3,165.55 "
-       id="polygon2574" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="369.12,157.84 368.83,157.52 365.04,166.08 "
-       id="polygon2576" />
-    <line
-       x1="408.38"
-       y1="90.220001"
-       x2="408.81"
-       y2="91.209999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2578" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="445.51,154.03 445.14,153.8 436.92,160.81 "
-       id="polygon2580" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="367.99,157.05 367.53,156.97 363.73,165.53 "
-       id="polygon2582" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="368.83,157.52 368.44,157.24 364.65,165.8 "
-       id="polygon2584" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="446.38,155.14 446.16,154.74 437.93,161.75 "
-       id="polygon2586" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="445.86,154.36 445.51,154.03 437.29,161.05 "
-       id="polygon2588" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="368.44,157.24 367.99,157.05 364.2,165.62 "
-       id="polygon2590" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="446.16,154.74 445.86,154.36 437.63,161.37 "
-       id="polygon2592" />
-    <line
-       x1="399.66"
-       y1="181.55"
-       x2="402.01999"
-       y2="184.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2594" />
-    <line
-       x1="307.45001"
-       y1="226.21001"
-       x2="309.39001"
-       y2="229.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2596" />
-    <line
-       x1="307.54999"
-       y1="232"
-       x2="307"
-       y2="229.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2598" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="297.43,156.02 297.23,155.74 299.53,164.43 "
-       id="polygon2600" />
-    <line
-       x1="350.75"
-       y1="261.28"
-       x2="354.64999"
-       y2="262.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2602" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="294.52,156.35 294.43,156.7 296.72,165.39 "
-       id="polygon2604" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="297.23,155.74 296.9,155.54 299.2,164.23 "
-       id="polygon2606" />
-    <line
-       x1="410.91"
-       y1="262.23999"
-       x2="408.76999"
-       y2="265.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2608" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="294.75,156.02 294.52,156.35 296.81,165.05 "
-       id="polygon2610" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="296.9,155.54 296.48,155.43 298.78,164.12 "
-       id="polygon2612" />
-    <line
-       x1="228.63"
-       y1="88.519997"
-       x2="229.02"
-       y2="88.139999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2614" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="389.5,147.45 389.71,147.25 384.62,156.04 "
-       id="polygon2616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="295.1,155.74 294.75,156.02 297.04,164.71 "
-       id="polygon2618" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="296.48,155.43 296.01,155.43 298.3,164.12 "
-       id="polygon2620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="295.53,155.53 295.1,155.74 297.39,164.43 "
-       id="polygon2622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="296.01,155.43 295.53,155.53 297.83,164.23 "
-       id="polygon2624" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="438.27,162.86 438.16,163.1 446.38,156.09 "
-       id="polygon2626" />
-    <line
-       x1="407.98999"
-       y1="89.290001"
-       x2="408.38"
-       y2="90.220001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2628" />
-    <line
-       x1="354.64999"
-       y1="262.07999"
-       x2="358.54999"
-       y2="262.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2630" />
-    <line
-       x1="305.73001"
-       y1="222.7"
-       x2="307.45001"
-       y2="226.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2632" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="438.26,162.54 438.27,162.86 446.49,155.85 "
-       id="polygon2634" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="436.57,160.68 436.92,160.81 445.14,153.8 "
-       id="polygon2636" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="438.15,162.16 438.26,162.54 446.49,155.52 "
-       id="polygon2638" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="365.5,166.76 365.52,167.1 369.31,158.54 "
-       id="polygon2640" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="389.74,146.64 389.55,146.3 384.45,155.09 "
-       id="polygon2642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="387.97,145.38 387.57,145.37 382.47,154.16 "
-       id="polygon2644" />
-    <line
-       x1="402.01999"
-       y1="184.22"
-       x2="404.29999"
-       y2="187.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.51,133.13 352.2,133.3 349.82,143.07 "
-       id="polygon2648" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="354.91,133.88 354.66,133.59 352.3,143.36 "
-       id="polygon2650" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="436.92,160.81 437.29,161.05 445.51,154.03 "
-       id="polygon2652" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="437.93,161.75 438.15,162.16 446.38,155.14 "
-       id="polygon2654" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="389.55,146.3 389.24,145.97 384.15,154.77 "
-       id="polygon2656" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="437.29,161.05 437.63,161.37 445.86,154.36 "
-       id="polygon2658" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="388.41,145.48 387.97,145.38 382.88,154.17 "
-       id="polygon2660" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="437.63,161.37 437.93,161.75 446.16,154.74 "
-       id="polygon2662" />
-    <line
-       x1="412.82001"
-       y1="259.04001"
-       x2="410.91"
-       y2="262.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2664" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="365.33,166.41 365.5,166.76 369.29,158.2 "
-       id="polygon2666" />
-    <line
-       x1="397.42001"
-       y1="161.7"
-       x2="395.14001"
-       y2="159.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.93,133.05 352.51,133.13 350.14,142.9 "
-       id="polygon2670" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="385.74,216.15 385.33,216.12 378.91,220.38 "
-       id="polygon2672" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="389.24,145.97 388.85,145.69 383.75,154.48 "
-       id="polygon2674" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="354.66,133.59 354.31,133.34 351.94,143.11 "
-       id="polygon2676" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="388.85,145.69 388.41,145.48 383.32,154.28 "
-       id="polygon2678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.94,165.68 363.3,165.55 367.09,156.99 "
-       id="polygon2680" />
-    <line
-       x1="358.54999"
-       y1="262.60001"
-       x2="362.45001"
-       y2="262.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="353.39,133.05 352.93,133.05 350.55,142.81 "
-       id="polygon2684" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="354.31,133.34 353.87,133.16 351.5,142.92 "
-       id="polygon2686" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="386.97,218.34 387.05,217.92 380.63,222.18 "
-       id="polygon2688" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="386.15,216.33 385.74,216.15 379.32,220.41 "
-       id="polygon2690" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="365.04,166.08 365.33,166.41 369.12,157.84 "
-       id="polygon2692" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="353.87,133.16 353.39,133.05 351.02,142.82 "
-       id="polygon2694" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="387.05,217.92 386.99,217.46 380.58,221.72 "
-       id="polygon2696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.3,165.55 363.73,165.53 367.53,156.97 "
-       id="polygon2698" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="386.52,216.63 386.15,216.33 379.74,220.59 "
-       id="polygon2700" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="364.65,165.8 365.04,166.08 368.83,157.52 "
-       id="polygon2702" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="386.99,217.46 386.81,217.02 380.39,221.28 "
-       id="polygon2704" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="386.81,217.02 386.52,216.63 380.11,220.89 "
-       id="polygon2706" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="363.73,165.53 364.2,165.62 367.99,157.05 "
-       id="polygon2708" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="364.2,165.62 364.65,165.8 368.44,157.24 "
-       id="polygon2710" />
-    <line
-       x1="407.66"
-       y1="88.440002"
-       x2="407.98999"
-       y2="89.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2712" />
-    <line
-       x1="304.25"
-       y1="219.17999"
-       x2="305.73001"
-       y2="222.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2714" />
-    <line
-       x1="307"
-       y1="229.22"
-       x2="306.70001"
-       y2="226.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2716" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="381.91,155.07 381.86,154.74 386.95,145.95 "
-       id="polygon2718" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="384.62,156.04 384.41,156.24 389.5,147.45 "
-       id="polygon2720" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="298.78,164.12 299.2,164.23 296.9,155.54 "
-       id="polygon2722" />
-    <line
-       x1="414.48001"
-       y1="255.66"
-       x2="412.82001"
-       y2="259.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2724" />
-    <line
-       x1="362.45001"
-       y1="262.82001"
-       x2="366.32999"
-       y2="262.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="296.81,165.05 297.04,164.71 294.75,156.02 "
-       id="polygon2728" />
-    <line
-       x1="404.29999"
-       y1="187.11"
-       x2="406.48999"
-       y2="190.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2730" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="298.3,164.12 298.78,164.12 296.48,155.43 "
-       id="polygon2732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.04,164.71 297.39,164.43 295.1,155.74 "
-       id="polygon2734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.83,164.23 298.3,164.12 296.01,155.43 "
-       id="polygon2736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.39,164.43 297.83,164.23 295.53,155.53 "
-       id="polygon2738" />
-    <line
-       x1="229.48"
-       y1="87.800003"
-       x2="230.02"
-       y2="87.529999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2740" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="384.64,155.44 384.7,155.77 389.8,146.97 "
-       id="polygon2742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.15,154.27 382.47,154.16 387.57,145.37 "
-       id="polygon2744" />
-    <line
-       x1="407.38"
-       y1="87.650002"
-       x2="407.66"
-       y2="88.440002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2746" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="384.45,155.09 384.64,155.44 389.74,146.64 "
-       id="polygon2748" />
-    <line
-       x1="303.01999"
-       y1="215.66"
-       x2="304.25"
-       y2="219.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2750" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="352.3,143.36 352.54,143.64 354.91,133.88 "
-       id="polygon2752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.47,154.16 382.88,154.17 387.97,145.38 "
-       id="polygon2754" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="384.15,154.77 384.45,155.09 389.55,146.3 "
-       id="polygon2756" />
-    <line
-       x1="399.60999"
-       y1="164.21001"
-       x2="397.42001"
-       y2="161.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2758" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="351.94,143.11 352.3,143.36 354.66,133.59 "
-       id="polygon2760" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="382.88,154.17 383.32,154.28 388.41,145.48 "
-       id="polygon2762" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="383.75,154.48 384.15,154.77 389.24,145.97 "
-       id="polygon2764" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="383.32,154.28 383.75,154.48 388.85,145.69 "
-       id="polygon2766" />
-    <line
-       x1="366.32999"
-       y1="262.73001"
-       x2="370.16"
-       y2="262.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.14,142.9 350.55,142.81 352.93,133.05 "
-       id="polygon2770" />
-    <line
-       x1="415.91"
-       y1="252.11"
-       x2="414.48001"
-       y2="255.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2772" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="351.5,142.92 351.94,143.11 354.31,133.34 "
-       id="polygon2774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.55,142.81 351.02,142.82 353.39,133.05 "
-       id="polygon2776" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="351.02,142.82 351.5,142.92 353.87,133.16 "
-       id="polygon2778" />
-    <line
-       x1="406.48999"
-       y1="190.2"
-       x2="408.54999"
-       y2="193.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2780" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="380.56,222.61 380.36,222.95 386.77,218.69 "
-       id="polygon2782" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="378.91,220.38 379.32,220.41 385.74,216.15 "
-       id="polygon2784" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="380.63,222.18 380.56,222.61 386.97,218.34 "
-       id="polygon2786" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="438.16,163.1 438.27,162.86 430.02,169.9 "
-       id="polygon2788" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="299.73,164.71 299.53,164.43 299.27,164.59 "
-       id="polygon2790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.57,160.68 436.28,160.68 428.03,167.71 "
-       id="polygon2792" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="380.58,221.72 380.63,222.18 387.05,217.92 "
-       id="polygon2794" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="379.74,220.59 380.11,220.89 386.52,216.63 "
-       id="polygon2796" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="380.39,221.28 380.58,221.72 386.99,217.46 "
-       id="polygon2798" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="380.11,220.89 380.39,221.28 386.81,217.02 "
-       id="polygon2800" />
-    <line
-       x1="306.70001"
-       y1="226.56"
-       x2="306.64001"
-       y2="224.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2802" />
-    <line
-       x1="417.09"
-       y1="248.42"
-       x2="415.91"
-       y2="252.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2804" />
-    <line
-       x1="370.16"
-       y1="262.35001"
-       x2="373.92001"
-       y2="261.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2806" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="438.27,162.86 438.26,162.54 430.02,169.57 "
-       id="polygon2808" />
-    <line
-       x1="302.01999"
-       y1="212.17"
-       x2="303.01999"
-       y2="215.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2810" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="436.92,160.81 436.57,160.68 428.32,167.71 "
-       id="polygon2812" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="438.26,162.54 438.15,162.16 429.9,169.19 "
-       id="polygon2814" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="437.29,161.05 436.92,160.81 428.67,167.84 "
-       id="polygon2816" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="438.15,162.16 437.93,161.75 429.68,168.79 "
-       id="polygon2818" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="437.63,161.37 437.29,161.05 429.04,168.08 "
-       id="polygon2820" />
-    <line
-       x1="408.54999"
-       y1="193.49001"
-       x2="410.48001"
-       y2="196.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2822" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="437.93,161.75 437.63,161.37 429.39,168.41 "
-       id="polygon2824" />
-    <line
-       x1="230.63"
-       y1="87.32"
-       x2="231.3"
-       y2="87.190002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2826" />
-    <line
-       x1="401.70001"
-       y1="166.96001"
-       x2="399.60999"
-       y2="164.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2828" />
-    <line
-       x1="418.01001"
-       y1="244.60001"
-       x2="417.09"
-       y2="248.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2830" />
-    <line
-       x1="373.92001"
-       y1="261.66"
-       x2="377.60999"
-       y2="260.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2832" />
-    <line
-       x1="406.95001"
-       y1="86.32"
-       x2="407.14001"
-       y2="86.940002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.94,165.68 362.68,165.91 358.88,174.5 "
-       id="polygon2836" />
-    <line
-       x1="410.48001"
-       y1="196.95"
-       x2="412.25"
-       y2="200.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2838" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="430.02,169.9 429.91,170.13 438.16,163.1 "
-       id="polygon2840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.3,165.55 362.94,165.68 359.13,174.27 "
-       id="polygon2842" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="365.5,166.76 365.33,166.41 361.53,175 "
-       id="polygon2844" />
-    <line
-       x1="301.28"
-       y1="208.73"
-       x2="302.01999"
-       y2="212.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2846" />
-    <line
-       x1="418.67999"
-       y1="240.67999"
-       x2="418.01001"
-       y2="244.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="363.73,165.53 363.3,165.55 359.5,174.14 "
-       id="polygon2850" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="365.33,166.41 365.04,166.08 361.23,174.67 "
-       id="polygon2852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="428.03,167.71 428.32,167.71 436.57,160.68 "
-       id="polygon2854" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="430.02,169.57 430.02,169.9 438.27,162.86 "
-       id="polygon2856" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="364.2,165.62 363.73,165.53 359.93,174.12 "
-       id="polygon2858" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="365.04,166.08 364.65,165.8 360.84,174.4 "
-       id="polygon2860" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="364.65,165.8 364.2,165.62 360.39,174.21 "
-       id="polygon2862" />
-    <line
-       x1="231.3"
-       y1="87.190002"
-       x2="232.03"
-       y2="87.120003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2864" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="428.32,167.71 428.67,167.84 436.92,160.81 "
-       id="polygon2866" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="429.9,169.19 430.02,169.57 438.26,162.54 "
-       id="polygon2868" />
-    <line
-       x1="377.60999"
-       y1="260.67999"
-       x2="381.19"
-       y2="259.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2870" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="428.67,167.84 429.04,168.08 437.29,161.05 "
-       id="polygon2872" />
-    <line
-       x1="412.25"
-       y1="200.57001"
-       x2="413.85001"
-       y2="204.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2874" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="429.68,168.79 429.9,169.19 438.15,162.16 "
-       id="polygon2876" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="429.04,168.08 429.39,168.41 437.63,161.37 "
-       id="polygon2878" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="429.39,168.41 429.68,168.79 437.93,161.75 "
-       id="polygon2880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="380.37,222.11 380.3,222.45 380.56,222.61 "
-       id="polygon2882" />
-    <line
-       x1="419.10001"
-       y1="236.67999"
-       x2="418.67999"
-       y2="240.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2884" />
-    <line
-       x1="306.64001"
-       y1="224.03999"
-       x2="306.82999"
-       y2="221.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2886" />
-    <line
-       x1="403.66"
-       y1="169.94"
-       x2="401.70001"
-       y2="166.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2888" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="379.32,220.41 379.74,220.59 379.65,220.84 "
-       id="polygon2890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.04,164.71 296.81,165.05 299.11,173.77 "
-       id="polygon2892" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="299.2,164.23 298.78,164.12 301.09,172.85 "
-       id="polygon2894" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="384.7,155.77 384.64,155.44 379.54,164.26 "
-       id="polygon2896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.47,154.16 382.15,154.27 377.04,163.08 "
-       id="polygon2898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.39,164.43 297.04,164.71 299.35,173.44 "
-       id="polygon2900" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="298.78,164.12 298.3,164.12 300.61,172.85 "
-       id="polygon2902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="297.83,164.23 297.39,164.43 299.7,173.16 "
-       id="polygon2904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="298.3,164.12 297.83,164.23 300.13,172.95 "
-       id="polygon2906" />
-    <line
-       x1="413.85001"
-       y1="204.32001"
-       x2="415.26999"
-       y2="208.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2908" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="384.64,155.44 384.45,155.09 379.35,163.91 "
-       id="polygon2910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="382.88,154.17 382.47,154.16 377.36,162.98 "
-       id="polygon2912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.14,142.9 349.82,143.07 347.44,152.86 "
-       id="polygon2914" />
-    <line
-       x1="419.26999"
-       y1="232.61"
-       x2="419.10001"
-       y2="236.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2916" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="384.45,155.09 384.15,154.77 379.04,163.58 "
-       id="polygon2918" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="383.32,154.28 382.88,154.17 377.77,162.98 "
-       id="polygon2920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.55,142.81 350.14,142.9 347.76,152.69 "
-       id="polygon2922" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="352.3,143.36 351.94,143.11 349.56,152.9 "
-       id="polygon2924" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="384.15,154.77 383.75,154.48 378.65,163.3 "
-       id="polygon2926" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="383.75,154.48 383.32,154.28 378.21,163.09 "
-       id="polygon2928" />
-    <line
-       x1="232.03"
-       y1="87.120003"
-       x2="232.81"
-       y2="87.120003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.02,142.82 350.55,142.81 348.17,152.61 "
-       id="polygon2932" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="351.94,143.11 351.5,142.92 349.12,152.71 "
-       id="polygon2934" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="351.5,142.92 351.02,142.82 348.64,152.61 "
-       id="polygon2936" />
-    <line
-       x1="381.19"
-       y1="259.39001"
-       x2="384.64999"
-       y2="257.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2938" />
-    <line
-       x1="415.26999"
-       y1="208.19"
-       x2="416.48999"
-       y2="212.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2940" />
-    <line
-       x1="300.78"
-       y1="205.36"
-       x2="301.28"
-       y2="208.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2942" />
-    <line
-       x1="419.19"
-       y1="228.50999"
-       x2="419.26999"
-       y2="232.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2944" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="361.7,175.35 361.72,175.69 365.52,167.1 "
-       id="polygon2946" />
-    <line
-       x1="416.48999"
-       y1="212.14999"
-       x2="417.5"
-       y2="216.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2948" />
-    <line
-       x1="418.85999"
-       y1="224.39"
-       x2="419.19"
-       y2="228.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2950" />
-    <line
-       x1="417.5"
-       y1="216.17999"
-       x2="418.29999"
-       y2="220.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2952" />
-    <line
-       x1="418.29999"
-       y1="220.27"
-       x2="418.85999"
-       y2="224.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2954" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="361.53,175 361.7,175.35 365.5,166.76 "
-       id="polygon2956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.13,174.27 359.5,174.14 363.3,165.55 "
-       id="polygon2958" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="361.23,174.67 361.53,175 365.33,166.41 "
-       id="polygon2960" />
-    <line
-       x1="406.70001"
-       y1="85.32"
-       x2="406.79999"
-       y2="85.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.5,174.14 359.93,174.12 363.73,165.53 "
-       id="polygon2964" />
-    <line
-       x1="405.48999"
-       y1="173.13"
-       x2="403.66"
-       y2="169.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2966" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="360.84,174.4 361.23,174.67 365.04,166.08 "
-       id="polygon2968" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="359.93,174.12 360.39,174.21 364.2,165.62 "
-       id="polygon2970" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="360.39,174.21 360.84,174.4 364.65,165.8 "
-       id="polygon2972" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="301.83,173.16 302.04,173.44 299.73,164.71 "
-       id="polygon2974" />
-    <line
-       x1="384.64999"
-       y1="257.82001"
-       x2="387.98001"
-       y2="255.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="376.83,163.28 377.04,163.08 382.15,154.27 "
-       id="polygon2978" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="301.5,172.95 301.83,173.16 299.53,164.43 "
-       id="polygon2980" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="379.54,164.26 379.6,164.58 384.7,155.77 "
-       id="polygon2982" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="350.16,153.44 350.26,153.74 352.64,143.95 "
-       id="polygon2984" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="299.02,174.12 299.11,173.77 296.81,165.05 "
-       id="polygon2986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.25,153.1 347.44,152.86 349.82,143.07 "
-       id="polygon2988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.04,163.08 377.36,162.98 382.47,154.16 "
-       id="polygon2990" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="301.09,172.85 301.5,172.95 299.2,164.23 "
-       id="polygon2992" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="379.35,163.91 379.54,164.26 384.64,155.44 "
-       id="polygon2994" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="378.91,220.38 378.53,220.48 372.09,224.76 "
-       id="polygon2996" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="349.92,153.15 350.16,153.44 352.54,143.64 "
-       id="polygon2998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="299.11,173.77 299.35,173.44 297.04,164.71 "
-       id="polygon3000" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="300.61,172.85 301.09,172.85 298.78,164.12 "
-       id="polygon3002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.36,162.98 377.77,162.98 382.88,154.17 "
-       id="polygon3004" />
-    <line
-       x1="306.82999"
-       y1="221.67999"
-       x2="307.25"
-       y2="219.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.44,152.86 347.76,152.69 350.14,142.9 "
-       id="polygon3008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="299.35,173.44 299.7,173.16 297.39,164.43 "
-       id="polygon3010" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="379.04,163.58 379.35,163.91 384.45,155.09 "
-       id="polygon3012" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="379.32,220.41 378.91,220.38 372.47,224.65 "
-       id="polygon3014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="300.13,172.95 300.61,172.85 298.3,164.12 "
-       id="polygon3016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="299.7,173.16 300.13,172.95 297.83,164.23 "
-       id="polygon3018" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="349.56,152.9 349.92,153.15 352.3,143.36 "
-       id="polygon3020" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="377.77,162.98 378.21,163.09 383.32,154.28 "
-       id="polygon3022" />
-    <line
-       x1="300.51999"
-       y1="202.09"
-       x2="300.78"
-       y2="205.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3024" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="378.65,163.3 379.04,163.58 384.15,154.77 "
-       id="polygon3026" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="378.21,163.09 378.65,163.3 383.75,154.48 "
-       id="polygon3028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.76,152.69 348.17,152.61 350.55,142.81 "
-       id="polygon3030" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="379.74,220.59 379.32,220.41 372.88,224.69 "
-       id="polygon3032" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="349.12,152.71 349.56,152.9 351.94,143.11 "
-       id="polygon3034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="348.17,152.61 348.64,152.61 351.02,142.82 "
-       id="polygon3036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="428.32,167.71 428.03,167.71 419.76,174.76 "
-       id="polygon3038" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="380.63,222.18 380.58,221.72 374.14,226 "
-       id="polygon3040" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="380.11,220.89 379.74,220.59 373.3,224.86 "
-       id="polygon3042" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="348.64,152.61 349.12,152.71 351.5,142.92 "
-       id="polygon3044" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="380.58,221.72 380.39,221.28 373.96,225.55 "
-       id="polygon3046" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="380.39,221.28 380.11,220.89 373.66,225.16 "
-       id="polygon3048" />
-    <line
-       x1="387.98001"
-       y1="255.96001"
-       x2="391.14999"
-       y2="253.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3050" />
-    <line
-       x1="233.64999"
-       y1="87.199997"
-       x2="234.53"
-       y2="87.349998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3052" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="430.02,169.9 430.02,169.57 421.75,176.63 "
-       id="polygon3054" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="428.67,167.84 428.32,167.71 420.05,174.76 "
-       id="polygon3056" />
-    <line
-       x1="407.16"
-       y1="176.52"
-       x2="405.48999"
-       y2="173.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3058" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="430.02,169.57 429.9,169.19 421.63,176.24 "
-       id="polygon3060" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="429.04,168.08 428.67,167.84 420.4,174.89 "
-       id="polygon3062" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="429.9,169.19 429.68,168.79 421.41,175.84 "
-       id="polygon3064" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="361.42,175.6 361.4,175.33 361.7,175.35 "
-       id="polygon3066" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="429.39,168.41 429.04,168.08 420.77,175.13 "
-       id="polygon3068" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="429.68,168.79 429.39,168.41 421.12,175.45 "
-       id="polygon3070" />
-    <line
-       x1="391.14999"
-       y1="253.83"
-       x2="394.16"
-       y2="251.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3072" />
-    <line
-       x1="234.53"
-       y1="87.349998"
-       x2="235.45"
-       y2="87.589996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3074" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="379.27,164.22 379.31,164.48 379.6,164.58 "
-       id="polygon3076" />
-    <line
-       x1="406.59"
-       y1="84.68"
-       x2="406.63"
-       y2="84.949997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3078" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="421.75,176.95 421.64,177.18 429.91,170.13 "
-       id="polygon3080" />
-    <line
-       x1="408.66"
-       y1="180.09"
-       x2="407.16"
-       y2="176.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3082" />
-    <line
-       x1="300.51001"
-       y1="198.94"
-       x2="300.51999"
-       y2="202.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3084" />
-    <line
-       x1="241.72"
-       y1="185.99001"
-       x2="238.13"
-       y2="186.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3086" />
-    <line
-       x1="245.25999"
-       y1="185.32001"
-       x2="241.72"
-       y2="185.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3088" />
-    <line
-       x1="238.13"
-       y1="186.42999"
-       x2="234.52"
-       y2="186.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="419.76,174.76 420.05,174.76 428.32,167.71 "
-       id="polygon3092" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="421.75,176.63 421.75,176.95 430.02,169.9 "
-       id="polygon3094" />
-    <line
-       x1="248.73"
-       y1="184.42"
-       x2="245.25999"
-       y2="185.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3096" />
-    <line
-       x1="234.52"
-       y1="186.63"
-       x2="230.88"
-       y2="186.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3098" />
-    <line
-       x1="394.16"
-       y1="251.44"
-       x2="396.98999"
-       y2="248.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3100" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="420.05,174.76 420.4,174.89 428.67,167.84 "
-       id="polygon3102" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="421.63,176.24 421.75,176.63 430.02,169.57 "
-       id="polygon3104" />
-    <line
-       x1="252.11"
-       y1="183.28999"
-       x2="248.73"
-       y2="184.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3106" />
-    <line
-       x1="235.45"
-       y1="87.589996"
-       x2="236.41"
-       y2="87.900002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3108" />
-    <line
-       x1="307.25"
-       y1="219.49001"
-       x2="307.91"
-       y2="217.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3110" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="372.09,224.76 372.47,224.65 378.91,220.38 "
-       id="polygon3112" />
-    <line
-       x1="230.88"
-       y1="186.61"
-       x2="227.25999"
-       y2="186.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3114" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="420.4,174.89 420.77,175.13 429.04,168.08 "
-       id="polygon3116" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="421.41,175.84 421.63,176.24 429.9,169.19 "
-       id="polygon3118" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="374.12,226.88 373.92,227.23 380.36,222.95 "
-       id="polygon3120" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="420.77,175.13 421.12,175.45 429.39,168.41 "
-       id="polygon3122" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="421.12,175.45 421.41,175.84 429.68,168.79 "
-       id="polygon3124" />
-    <line
-       x1="255.38"
-       y1="181.92999"
-       x2="252.11"
-       y2="183.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3126" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="372.47,224.65 372.88,224.69 379.32,220.41 "
-       id="polygon3128" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="374.2,226.46 374.12,226.88 380.56,222.61 "
-       id="polygon3130" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="372.88,224.69 373.3,224.86 379.74,220.59 "
-       id="polygon3132" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="374.14,226 374.2,226.46 380.63,222.18 "
-       id="polygon3134" />
-    <line
-       x1="227.25999"
-       y1="186.36"
-       x2="223.67"
-       y2="185.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3136" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="373.3,224.86 373.66,225.16 380.11,220.89 "
-       id="polygon3138" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="373.96,225.55 374.14,226 380.58,221.72 "
-       id="polygon3140" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="373.66,225.16 373.96,225.55 380.39,221.28 "
-       id="polygon3142" />
-    <line
-       x1="258.51999"
-       y1="180.35001"
-       x2="255.38"
-       y2="181.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3144" />
-    <line
-       x1="409.98001"
-       y1="183.81"
-       x2="408.66"
-       y2="180.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3146" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="379.3,165.06 379.52,164.86 374.39,173.71 "
-       id="polygon3148" />
-    <line
-       x1="396.98999"
-       y1="248.78999"
-       x2="399.63"
-       y2="245.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.5,174.14 359.13,174.27 355.31,182.89 "
-       id="polygon3152" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="361.7,175.35 361.53,175 357.71,183.62 "
-       id="polygon3154" />
-    <line
-       x1="223.67"
-       y1="185.89"
-       x2="220.13"
-       y2="185.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3156" />
-    <line
-       x1="261.51999"
-       y1="178.55"
-       x2="258.51999"
-       y2="180.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.93,174.12 359.5,174.14 355.68,182.76 "
-       id="polygon3160" />
-    <line
-       x1="236.41"
-       y1="87.900002"
-       x2="237.39"
-       y2="88.290001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3162" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="360.39,174.21 359.93,174.12 356.11,182.74 "
-       id="polygon3164" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="361.23,174.67 360.84,174.4 357.03,183.02 "
-       id="polygon3166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.44,152.86 347.25,153.1 344.86,162.92 "
-       id="polygon3168" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="360.84,174.4 360.39,174.21 356.58,182.82 "
-       id="polygon3170" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="350.26,153.74 350.16,153.44 347.77,163.26 "
-       id="polygon3172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.36,162.98 377.04,163.08 371.91,171.93 "
-       id="polygon3174" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="302.04,173.44 301.83,173.16 304.15,181.91 "
-       id="polygon3176" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="379.54,164.26 379.35,163.91 374.22,172.76 "
-       id="polygon3178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.77,162.98 377.36,162.98 372.24,171.82 "
-       id="polygon3180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.76,152.69 347.44,152.86 345.05,162.68 "
-       id="polygon3182" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="350.16,153.44 349.92,153.15 347.53,162.97 "
-       id="polygon3184" />
-    <line
-       x1="264.35999"
-       y1="176.55"
-       x2="261.51999"
-       y2="178.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3186" />
-    <line
-       x1="220.13"
-       y1="185.2"
-       x2="216.66"
-       y2="184.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3188" />
-    <line
-       x1="300.73001"
-       y1="195.92999"
-       x2="300.51001"
-       y2="198.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3190" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="299.11,173.77 299.02,174.12 301.33,182.88 "
-       id="polygon3192" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="301.83,173.16 301.5,172.95 303.82,181.71 "
-       id="polygon3194" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="379.35,163.91 379.04,163.58 373.91,172.43 "
-       id="polygon3196" />
-    <line
-       x1="399.63"
-       y1="245.91"
-       x2="402.04999"
-       y2="242.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3198" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="378.21,163.09 377.77,162.98 372.64,171.83 "
-       id="polygon3200" />
-    <line
-       x1="411.09"
-       y1="187.67"
-       x2="409.98001"
-       y2="183.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="348.17,152.61 347.76,152.69 345.37,162.51 "
-       id="polygon3204" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="349.92,153.15 349.56,152.9 347.17,162.72 "
-       id="polygon3206" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="379.04,163.58 378.65,163.3 373.52,172.15 "
-       id="polygon3208" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="378.65,163.3 378.21,163.09 373.08,171.94 "
-       id="polygon3210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="299.35,173.44 299.11,173.77 301.42,182.53 "
-       id="polygon3212" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="301.5,172.95 301.09,172.85 303.4,181.6 "
-       id="polygon3214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="348.64,152.61 348.17,152.61 345.79,162.43 "
-       id="polygon3216" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="349.56,152.9 349.12,152.71 346.73,162.54 "
-       id="polygon3218" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="349.12,152.71 348.64,152.61 346.25,162.44 "
-       id="polygon3220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="299.7,173.16 299.35,173.44 301.66,182.2 "
-       id="polygon3222" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="301.09,172.85 300.61,172.85 302.93,181.6 "
-       id="polygon3224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="300.13,172.95 299.7,173.16 302.01,181.91 "
-       id="polygon3226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="300.61,172.85 300.13,172.95 302.45,181.71 "
-       id="polygon3228" />
-    <line
-       x1="267.03"
-       y1="174.35001"
-       x2="264.35999"
-       y2="176.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3230" />
-    <line
-       x1="237.39"
-       y1="88.290001"
-       x2="238.41"
-       y2="88.769997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3232" />
-    <line
-       x1="216.66"
-       y1="184.31"
-       x2="213.27"
-       y2="183.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3234" />
-    <line
-       x1="402.04999"
-       y1="242.81"
-       x2="404.26999"
-       y2="239.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="373.24,227.58 373.62,227.47 373.46,227.2 "
-       id="polygon3238" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="421.14,177.3 421.43,177.3 413.14,184.38 "
-       id="polygon3240" />
-    <line
-       x1="412"
-       y1="191.64"
-       x2="411.09"
-       y2="187.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3242" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="374.39,173.71 374.18,173.9 379.3,165.06 "
-       id="polygon3244" />
-    <line
-       x1="269.5"
-       y1="171.96001"
-       x2="267.03"
-       y2="174.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3246" />
-    <line
-       x1="307.91"
-       y1="217.5"
-       x2="308.79001"
-       y2="215.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3248" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="357.88,183.97 357.9,184.31 361.72,175.69 "
-       id="polygon3250" />
-    <line
-       x1="213.27"
-       y1="183.21001"
-       x2="209.99001"
-       y2="181.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3252" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="357.71,183.62 357.88,183.97 361.7,175.35 "
-       id="polygon3254" />
-    <line
-       x1="404.26999"
-       y1="239.50999"
-       x2="406.25"
-       y2="236.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3256" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="411.14,182.18 411.25,181.95 419.55,174.88 "
-       id="polygon3258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="420.05,174.76 419.76,174.76 411.46,181.83 "
-       id="polygon3260" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="374.41,173.11 374.48,173.43 379.6,164.58 "
-       id="polygon3262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.31,182.89 355.68,182.76 359.5,174.14 "
-       id="polygon3264" />
-    <line
-       x1="238.41"
-       y1="88.769997"
-       x2="241.34"
-       y2="89.389999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3266" />
-    <line
-       x1="271.78"
-       y1="169.39999"
-       x2="269.5"
-       y2="171.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3268" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="357.42,183.29 357.71,183.62 361.53,175 "
-       id="polygon3270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="344.86,162.92 345.05,162.68 347.44,152.86 "
-       id="polygon3272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="371.91,171.93 372.24,171.82 377.36,162.98 "
-       id="polygon3274" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="421.75,176.95 421.75,176.63 413.46,183.7 "
-       id="polygon3276" />
-    <line
-       x1="412.69"
-       y1="195.7"
-       x2="412"
-       y2="191.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.68,182.76 356.11,182.74 359.93,174.12 "
-       id="polygon3280" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="374.22,172.76 374.41,173.11 379.54,164.26 "
-       id="polygon3282" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="357.03,183.02 357.42,183.29 361.23,174.67 "
-       id="polygon3284" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="420.4,174.89 420.05,174.76 411.76,181.83 "
-       id="polygon3286" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="347.53,162.97 347.77,163.26 350.16,153.44 "
-       id="polygon3288" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="356.11,182.74 356.58,182.82 360.39,174.21 "
-       id="polygon3290" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="356.58,182.82 357.03,183.02 360.84,174.4 "
-       id="polygon3292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="372.24,171.82 372.64,171.83 377.77,162.98 "
-       id="polygon3294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.05,162.68 345.37,162.51 347.76,152.69 "
-       id="polygon3296" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="421.75,176.63 421.63,176.24 413.34,183.31 "
-       id="polygon3298" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="373.91,172.43 374.22,172.76 379.35,163.91 "
-       id="polygon3300" />
-    <line
-       x1="301.19"
-       y1="193.07001"
-       x2="300.73001"
-       y2="195.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3302" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="420.77,175.13 420.4,174.89 412.11,181.96 "
-       id="polygon3304" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="347.17,162.72 347.53,162.97 349.92,153.15 "
-       id="polygon3306" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="372.64,171.83 373.08,171.94 378.21,163.09 "
-       id="polygon3308" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="373.52,172.15 373.91,172.43 379.04,163.58 "
-       id="polygon3310" />
-    <line
-       x1="406.25"
-       y1="236.02"
-       x2="408.01001"
-       y2="232.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3312" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="421.63,176.24 421.41,175.84 413.12,182.91 "
-       id="polygon3314" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="303.82,181.71 304.15,181.91 301.83,173.16 "
-       id="polygon3316" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="421.12,175.45 420.77,175.13 412.47,182.2 "
-       id="polygon3318" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="373.08,171.94 373.52,172.15 378.65,163.3 "
-       id="polygon3320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.37,162.51 345.79,162.43 348.17,152.61 "
-       id="polygon3322" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="421.41,175.84 421.12,175.45 412.82,182.52 "
-       id="polygon3324" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="346.73,162.54 347.17,162.72 349.56,152.9 "
-       id="polygon3326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.79,162.43 346.25,162.44 348.64,152.61 "
-       id="polygon3328" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="346.25,162.44 346.73,162.54 349.12,152.71 "
-       id="polygon3330" />
-    <line
-       x1="209.99001"
-       y1="181.92999"
-       x2="206.83"
-       y2="180.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3332" />
-    <line
-       x1="273.84"
-       y1="166.67"
-       x2="271.78"
-       y2="169.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3334" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="303.4,181.6 303.82,181.71 301.5,172.95 "
-       id="polygon3336" />
-    <line
-       x1="413.14999"
-       y1="199.83"
-       x2="412.69"
-       y2="195.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3338" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="302.93,181.6 303.4,181.6 301.09,172.85 "
-       id="polygon3340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="301.66,182.2 302.01,181.91 299.7,173.16 "
-       id="polygon3342" />
-    <line
-       x1="408.01001"
-       y1="232.37"
-       x2="409.51999"
-       y2="228.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="302.45,181.71 302.93,181.6 300.61,172.85 "
-       id="polygon3346" />
-    <line
-       x1="407.91"
-       y1="84.239998"
-       x2="406.59"
-       y2="84.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="302.01,181.91 302.45,181.71 300.13,172.95 "
-       id="polygon3350" />
-    <line
-       x1="413.37"
-       y1="204"
-       x2="413.14999"
-       y2="199.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3352" />
-    <line
-       x1="241.34"
-       y1="89.389999"
-       x2="244.3"
-       y2="90.239998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3354" />
-    <line
-       x1="275.67001"
-       y1="163.78999"
-       x2="273.84"
-       y2="166.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3356" />
-    <line
-       x1="409.51999"
-       y1="228.57001"
-       x2="410.79001"
-       y2="224.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3358" />
-    <line
-       x1="413.35001"
-       y1="208.19"
-       x2="413.37"
-       y2="204"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3360" />
-    <line
-       x1="410.79001"
-       y1="224.64999"
-       x2="411.79999"
-       y2="220.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3362" />
-    <line
-       x1="206.83"
-       y1="180.47"
-       x2="203.82001"
-       y2="178.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3364" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="413.46,183.7 413.46,184.02 421.75,176.95 "
-       id="polygon3366" />
-    <line
-       x1="413.09"
-       y1="212.37"
-       x2="413.35001"
-       y2="208.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3368" />
-    <line
-       x1="411.79999"
-       y1="220.63"
-       x2="412.57001"
-       y2="216.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3370" />
-    <line
-       x1="412.57001"
-       y1="216.53"
-       x2="413.09"
-       y2="212.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3372" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="411.76,181.83 412.11,181.96 420.4,174.89 "
-       id="polygon3374" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="413.34,183.31 413.46,183.7 421.75,176.63 "
-       id="polygon3376" />
-    <line
-       x1="277.26999"
-       y1="160.77"
-       x2="275.67001"
-       y2="163.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3378" />
-    <line
-       x1="308.79001"
-       y1="215.72"
-       x2="309.89001"
-       y2="214.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3380" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="372.47,224.65 372.09,224.76 365.63,229.05 "
-       id="polygon3382" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="412.11,181.96 412.47,182.2 420.77,175.13 "
-       id="polygon3384" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="413.12,182.91 413.34,183.31 421.63,176.24 "
-       id="polygon3386" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="357.42,183.29 357.71,183.62 357.45,183.67 "
-       id="polygon3388" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="372.88,224.69 372.47,224.65 366,228.95 "
-       id="polygon3390" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="412.47,182.2 412.82,182.52 421.12,175.45 "
-       id="polygon3392" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="412.82,182.52 413.12,182.91 421.41,175.84 "
-       id="polygon3394" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="373.3,224.86 372.88,224.69 366.42,228.98 "
-       id="polygon3396" />
-    <line
-       x1="244.3"
-       y1="90.239998"
-       x2="247.28"
-       y2="91.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3398" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="374.2,226.46 374.14,226 367.67,230.3 "
-       id="polygon3400" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="373.66,225.16 373.3,224.86 366.83,229.16 "
-       id="polygon3402" />
-    <line
-       x1="301.88"
-       y1="190.39999"
-       x2="301.19"
-       y2="193.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3404" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="374.14,226 373.96,225.55 367.49,229.85 "
-       id="polygon3406" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="373.96,225.55 373.66,225.16 367.2,229.46 "
-       id="polygon3408" />
-    <line
-       x1="278.62"
-       y1="157.63"
-       x2="277.26999"
-       y2="160.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3410" />
-    <line
-       x1="203.82001"
-       y1="178.85001"
-       x2="200.96001"
-       y2="177.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3412" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="301.9,182.3 301.71,182.56 301.42,182.53 "
-       id="polygon3414" />
-    <line
-       x1="279.73001"
-       y1="154.38"
-       x2="278.62"
-       y2="157.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3416" />
-    <line
-       x1="247.28"
-       y1="91.32"
-       x2="250.25"
-       y2="92.639999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3418" />
-    <line
-       x1="409.26999"
-       y1="84.330002"
-       x2="407.91"
-       y2="84.239998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3420" />
-    <polygon
-       style="opacity:1;fill:#00ef00"
-       points="357.53,184.84 357.78,184.61 353.96,193.26 "
-       id="polygon3422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="371.91,171.93 371.7,172.13 366.56,180.99 "
-       id="polygon3424" />
-    <line
-       x1="200.96001"
-       y1="177.07001"
-       x2="198.28"
-       y2="175.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.05,162.68 344.86,162.92 342.46,172.77 "
-       id="polygon3428" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="374.48,173.43 374.41,173.11 369.28,181.98 "
-       id="polygon3430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="372.24,171.82 371.91,171.93 366.77,180.8 "
-       id="polygon3432" />
-    <line
-       x1="280.57999"
-       y1="151.03999"
-       x2="279.73001"
-       y2="154.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.31,182.89 355.06,183.11 351.23,191.76 "
-       id="polygon3436" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="357.9,184.31 357.88,183.97 354.05,192.62 "
-       id="polygon3438" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="374.41,173.11 374.22,172.76 369.09,181.63 "
-       id="polygon3440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.37,162.51 345.05,162.68 342.66,172.54 "
-       id="polygon3442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="372.64,171.83 372.24,171.82 367.1,180.7 "
-       id="polygon3444" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="347.77,163.26 347.53,162.97 345.14,172.82 "
-       id="polygon3446" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="357.88,183.97 357.71,183.62 353.89,192.27 "
-       id="polygon3448" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="374.22,172.76 373.91,172.43 368.78,181.3 "
-       id="polygon3450" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="373.08,171.94 372.64,171.83 367.5,180.7 "
-       id="polygon3452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="345.79,162.43 345.37,162.51 342.98,172.36 "
-       id="polygon3454" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="347.53,162.97 347.17,162.72 344.78,172.57 "
-       id="polygon3456" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="373.91,172.43 373.52,172.15 368.38,181.02 "
-       id="polygon3458" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="373.52,172.15 373.08,171.94 367.94,180.81 "
-       id="polygon3460" />
-    <line
-       x1="250.25"
-       y1="92.639999"
-       x2="253.19"
-       y2="94.18"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.11,182.74 355.68,182.76 351.84,191.41 "
-       id="polygon3464" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="357.71,183.62 357.42,183.29 353.59,191.94 "
-       id="polygon3466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.25,162.44 345.79,162.43 343.39,172.28 "
-       id="polygon3468" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="347.17,162.72 346.73,162.54 344.34,172.39 "
-       id="polygon3470" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="411.25,181.95 411.14,182.18 402.83,189.27 "
-       id="polygon3472" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="346.73,162.54 346.25,162.44 343.86,172.29 "
-       id="polygon3474" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="356.58,182.82 356.11,182.74 352.28,191.38 "
-       id="polygon3476" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="357.42,183.29 357.03,183.02 353.2,191.66 "
-       id="polygon3478" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="357.03,183.02 356.58,182.82 352.75,191.47 "
-       id="polygon3480" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="365.63,229.05 366,228.95 372.47,224.65 "
-       id="polygon3482" />
-    <line
-       x1="281.17001"
-       y1="147.63"
-       x2="280.57999"
-       y2="151.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3484" />
-    <line
-       x1="302.76999"
-       y1="187.92999"
-       x2="301.88"
-       y2="190.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3486" />
-    <polygon
-       style="opacity:1;fill:#00d500"
-       points="367.66,231.18 367.46,231.53 373.92,227.23 "
-       id="polygon3488" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="366,228.95 366.42,228.98 372.88,224.69 "
-       id="polygon3490" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="301.42,182.53 301.33,182.88 303.65,191.66 "
-       id="polygon3492" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="367.73,230.75 367.66,231.18 374.12,226.88 "
-       id="polygon3494" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="304.15,181.91 303.82,181.71 306.14,190.49 "
-       id="polygon3496" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="366.42,228.98 366.83,229.16 373.3,224.86 "
-       id="polygon3498" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="367.67,230.3 367.73,230.75 374.2,226.46 "
-       id="polygon3500" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="366.83,229.16 367.2,229.46 373.66,225.16 "
-       id="polygon3502" />
-    <line
-       x1="302.76999"
-       y1="187.92999"
-       x2="303.41"
-       y2="186.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="301.66,182.2 301.42,182.53 303.74,191.31 "
-       id="polygon3506" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="367.49,229.85 367.67,230.3 374.14,226 "
-       id="polygon3508" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="303.82,181.71 303.4,181.6 305.72,190.38 "
-       id="polygon3510" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="367.2,229.46 367.49,229.85 373.96,225.55 "
-       id="polygon3512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="411.76,181.83 411.46,181.83 403.15,188.91 "
-       id="polygon3514" />
-    <line
-       x1="198.28"
-       y1="175.14999"
-       x2="195.78999"
-       y2="173.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="302.01,181.91 301.66,182.2 303.98,190.98 "
-       id="polygon3518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="304.33,190.7 304.77,190.49 302.45,181.71 "
-       id="polygon3520" />
-    <line
-       x1="303.62"
-       y1="186.2"
-       x2="303.62"
-       y2="186.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3522" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="303.4,181.6 302.93,181.6 305.25,190.38 "
-       id="polygon3524" />
-    <line
-       x1="281.5"
-       y1="144.17"
-       x2="281.17001"
-       y2="147.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3526" />
-    <line
-       x1="253.19"
-       y1="94.18"
-       x2="256.07999"
-       y2="95.940002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3528" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="413.46,184.02 413.46,183.7 405.14,190.78 "
-       id="polygon3530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="302.45,181.71 302.01,181.91 304.33,190.7 "
-       id="polygon3532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="302.93,181.6 302.45,181.71 304.77,190.49 "
-       id="polygon3534" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="412.11,181.96 411.76,181.83 403.45,188.91 "
-       id="polygon3536" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="413.46,183.7 413.34,183.31 405.03,190.4 "
-       id="polygon3538" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="412.47,182.2 412.11,181.96 403.79,189.04 "
-       id="polygon3540" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="413.34,183.31 413.12,182.91 404.81,190 "
-       id="polygon3542" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="412.82,182.52 412.47,182.2 404.16,189.29 "
-       id="polygon3544" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="413.12,182.91 412.82,182.52 404.51,189.61 "
-       id="polygon3546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.56,180.99 366.77,180.8 371.91,171.93 "
-       id="polygon3548" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="369.28,181.98 369.34,182.3 374.48,173.43 "
-       id="polygon3550" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="366.77,180.8 367.1,180.7 372.24,171.82 "
-       id="polygon3552" />
-    <line
-       x1="256.07999"
-       y1="95.940002"
-       x2="258.89999"
-       y2="97.910004"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3554" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="369.09,181.63 369.28,181.98 374.41,173.11 "
-       id="polygon3556" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="345.14,172.82 345.38,173.11 347.77,163.26 "
-       id="polygon3558" />
-    <line
-       x1="410.67999"
-       y1="84.709999"
-       x2="409.26999"
-       y2="84.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.1,180.7 367.5,180.7 372.64,171.83 "
-       id="polygon3562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.66,172.54 342.98,172.36 345.37,162.51 "
-       id="polygon3564" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="368.78,181.3 369.09,181.63 374.22,172.76 "
-       id="polygon3566" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="344.78,172.57 345.14,172.82 347.53,162.97 "
-       id="polygon3568" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="367.5,180.7 367.94,180.81 373.08,171.94 "
-       id="polygon3570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.23,191.76 351.48,191.54 355.31,182.89 "
-       id="polygon3572" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="368.38,181.02 368.78,181.3 373.91,172.43 "
-       id="polygon3574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.98,172.36 343.39,172.28 345.79,162.43 "
-       id="polygon3576" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="367.94,180.81 368.38,181.02 373.52,172.15 "
-       id="polygon3578" />
-    <line
-       x1="281.39001"
-       y1="137.14999"
-       x2="281.57001"
-       y2="140.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3580" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="353.89,192.27 354.05,192.62 357.88,183.97 "
-       id="polygon3582" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="344.34,172.39 344.78,172.57 347.17,162.72 "
-       id="polygon3584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.39,172.28 343.86,172.29 346.25,162.44 "
-       id="polygon3586" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="343.86,172.29 344.34,172.39 346.73,162.54 "
-       id="polygon3588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.48,191.54 351.84,191.41 355.68,182.76 "
-       id="polygon3590" />
-    <line
-       x1="195.78999"
-       y1="173.11"
-       x2="193.49001"
-       y2="170.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3592" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="353.59,191.94 353.89,192.27 357.71,183.62 "
-       id="polygon3594" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="405.15,191.11 405.04,191.34 413.35,184.25 "
-       id="polygon3596" />
-    <line
-       x1="258.89999"
-       y1="97.910004"
-       x2="261.63"
-       y2="100.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.84,191.41 352.28,191.38 356.11,182.74 "
-       id="polygon3600" />
-    <line
-       x1="304.14999"
-       y1="185.25"
-       x2="304.14999"
-       y2="185.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3602" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="306.47,190.69 306.67,190.97 304.35,182.19 "
-       id="polygon3604" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="353.2,191.66 353.59,191.94 357.42,183.29 "
-       id="polygon3606" />
-    <line
-       x1="340.22"
-       y1="154.63"
-       x2="342.29999"
-       y2="157.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3608" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="352.28,191.38 352.75,191.47 356.58,182.82 "
-       id="polygon3610" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="352.75,191.47 353.2,191.66 357.03,183.02 "
-       id="polygon3612" />
-    <line
-       x1="342.29999"
-       y1="157.87"
-       x2="344.51999"
-       y2="161.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3614" />
-    <line
-       x1="280.95001"
-       y1="133.64"
-       x2="281.39001"
-       y2="137.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3616" />
-    <line
-       x1="338.29999"
-       y1="151.3"
-       x2="340.22"
-       y2="154.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="304.77,190.49 305.25,190.38 302.93,181.6 "
-       id="polygon3620" />
-    <line
-       x1="303.88"
-       y1="185.67"
-       x2="303.88"
-       y2="185.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3622" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="405.14,190.78 405.15,191.11 413.46,184.02 "
-       id="polygon3624" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="306.14,190.49 306.47,190.69 304.15,181.91 "
-       id="polygon3626" />
-    <line
-       x1="344.51999"
-       y1="161.00999"
-       x2="346.88"
-       y2="164.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3628" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="303.65,191.66 303.74,191.31 301.42,182.53 "
-       id="polygon3630" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="403.45,188.91 403.79,189.04 412.11,181.96 "
-       id="polygon3632" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="405.03,190.4 405.14,190.78 413.46,183.7 "
-       id="polygon3634" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="305.72,190.38 306.14,190.49 303.82,181.71 "
-       id="polygon3636" />
-    <line
-       x1="336.54999"
-       y1="147.92"
-       x2="338.29999"
-       y2="151.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3638" />
-    <line
-       x1="261.63"
-       y1="100.08"
-       x2="264.26001"
-       y2="102.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="303.74,191.31 303.98,190.98 301.66,182.2 "
-       id="polygon3642" />
-    <line
-       x1="346.88"
-       y1="164.03"
-       x2="349.38"
-       y2="166.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3644" />
-    <line
-       x1="280.26001"
-       y1="130.14"
-       x2="280.95001"
-       y2="133.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3646" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="403.79,189.04 404.16,189.29 412.47,182.2 "
-       id="polygon3648" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="404.81,190 405.03,190.4 413.34,183.31 "
-       id="polygon3650" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="305.25,190.38 305.72,190.38 303.4,181.6 "
-       id="polygon3652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="303.98,190.98 304.33,190.7 302.01,181.91 "
-       id="polygon3654" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="404.16,189.29 404.51,189.61 412.82,182.52 "
-       id="polygon3656" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="404.51,189.61 404.81,190 413.12,182.91 "
-       id="polygon3658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.42,230.32 367.46,230.69 367.73,230.75 "
-       id="polygon3660" />
-    <line
-       x1="334.95999"
-       y1="144.49001"
-       x2="336.54999"
-       y2="147.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3662" />
-    <line
-       x1="264.26001"
-       y1="102.45"
-       x2="266.75"
-       y2="104.99"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3664" />
-    <line
-       x1="279.32001"
-       y1="126.68"
-       x2="280.26001"
-       y2="130.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3666" />
-    <line
-       x1="349.38"
-       y1="166.89999"
-       x2="351.98999"
-       y2="169.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3668" />
-    <line
-       x1="278.14999"
-       y1="123.28"
-       x2="279.32001"
-       y2="126.68"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3670" />
-    <line
-       x1="266.75"
-       y1="104.99"
-       x2="269.10999"
-       y2="107.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3672" />
-    <line
-       x1="193.49001"
-       y1="170.95"
-       x2="191.41"
-       y2="168.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3674" />
-    <line
-       x1="276.75"
-       y1="119.95"
-       x2="278.14999"
-       y2="123.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3676" />
-    <line
-       x1="269.10999"
-       y1="107.7"
-       x2="271.29999"
-       y2="110.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3678" />
-    <line
-       x1="333.54001"
-       y1="141.05"
-       x2="334.95999"
-       y2="144.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3680" />
-    <line
-       x1="275.13"
-       y1="116.71"
-       x2="276.75"
-       y2="119.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3682" />
-    <line
-       x1="351.98999"
-       y1="169.62"
-       x2="354.70999"
-       y2="172.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3684" />
-    <line
-       x1="271.29999"
-       y1="110.57"
-       x2="273.31"
-       y2="113.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3686" />
-    <line
-       x1="273.31"
-       y1="113.57"
-       x2="275.13"
-       y2="116.71"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3688" />
-    <line
-       x1="412.10001"
-       y1="85.379997"
-       x2="410.67999"
-       y2="84.709999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3690" />
-    <line
-       x1="332.29999"
-       y1="137.62"
-       x2="333.54001"
-       y2="141.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3692" />
-    <line
-       x1="354.70999"
-       y1="172.14999"
-       x2="357.54001"
-       y2="174.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3694" />
-    <line
-       x1="305.17999"
-       y1="183.64999"
-       x2="304.14999"
-       y2="185.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3696" />
-    <polygon
-       style="opacity:1;fill:#00ee00"
-       points="345.25,173.94 345.44,173.7 343.04,183.58 "
-       id="polygon3698" />
-    <line
-       x1="191.41"
-       y1="168.71001"
-       x2="189.56"
-       y2="166.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3700" />
-    <polygon
-       style="opacity:1;fill:#00d400"
-       points="366.78,231.88 367.16,231.77 360.66,236.08 "
-       id="polygon3702" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="358.63,233.95 358.83,233.6 365.32,229.29 "
-       id="polygon3704" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="366,228.95 365.63,229.05 359.13,233.36 "
-       id="polygon3706" />
-    <line
-       x1="312.67001"
-       y1="211.75999"
-       x2="314.32999"
-       y2="210.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3708" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="364.11,191.48 363.89,191.67 369.04,182.78 "
-       id="polygon3710" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="369.34,182.3 369.28,181.98 364.13,190.88 "
-       id="polygon3712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.1,180.7 366.77,180.8 361.62,189.69 "
-       id="polygon3714" />
-    <line
-       x1="357.54001"
-       y1="174.49001"
-       x2="360.45999"
-       y2="176.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3716" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="366.42,228.98 366,228.95 359.51,233.25 "
-       id="polygon3718" />
-    <line
-       x1="331.23001"
-       y1="134.21001"
-       x2="332.29999"
-       y2="137.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.98,172.36 342.66,172.54 340.25,182.41 "
-       id="polygon3722" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="369.28,181.98 369.09,181.63 363.93,190.53 "
-       id="polygon3724" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="345.38,173.11 345.14,172.82 342.74,182.71 "
-       id="polygon3726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="367.5,180.7 367.1,180.7 361.94,189.59 "
-       id="polygon3728" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="366.83,229.16 366.42,228.98 359.93,233.29 "
-       id="polygon3730" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="367.73,230.75 367.67,230.3 361.18,234.61 "
-       id="polygon3732" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="367.2,229.46 366.83,229.16 360.34,233.47 "
-       id="polygon3734" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="369.09,181.63 368.78,181.3 363.62,190.2 "
-       id="polygon3736" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="367.94,180.81 367.5,180.7 362.34,189.6 "
-       id="polygon3738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.39,172.28 342.98,172.36 340.57,182.25 "
-       id="polygon3740" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="345.14,172.82 344.78,172.57 342.38,182.46 "
-       id="polygon3742" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="367.67,230.3 367.49,229.85 361,234.16 "
-       id="polygon3744" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="367.49,229.85 367.2,229.46 360.71,233.77 "
-       id="polygon3746" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="368.78,181.3 368.38,181.02 363.23,189.92 "
-       id="polygon3748" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="368.38,181.02 367.94,180.81 362.79,189.71 "
-       id="polygon3750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="403.45,188.91 403.15,188.91 394.82,196.02 "
-       id="polygon3752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.86,172.29 343.39,172.28 340.99,182.16 "
-       id="polygon3754" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="344.78,172.57 344.34,172.39 341.94,182.27 "
-       id="polygon3756" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="344.34,172.39 343.86,172.29 341.46,182.17 "
-       id="polygon3758" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="405.15,191.11 405.14,190.78 396.81,197.89 "
-       id="polygon3760" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="403.79,189.04 403.45,188.91 395.11,196.02 "
-       id="polygon3762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.48,191.54 351.23,191.76 347.38,200.44 "
-       id="polygon3764" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="354.08,192.96 354.05,192.62 350.21,201.3 "
-       id="polygon3766" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="405.14,190.78 405.03,190.4 396.7,197.51 "
-       id="polygon3768" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="404.16,189.29 403.79,189.04 395.46,196.15 "
-       id="polygon3770" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="405.03,190.4 404.81,190 396.48,197.11 "
-       id="polygon3772" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="354.05,192.62 353.89,192.27 350.05,200.94 "
-       id="polygon3774" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="404.51,189.61 404.16,189.29 395.82,196.39 "
-       id="polygon3776" />
-    <line
-       x1="360.45999"
-       y1="176.62"
-       x2="363.45001"
-       y2="178.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3778" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="404.81,190 404.51,189.61 396.18,196.72 "
-       id="polygon3780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.28,191.38 351.84,191.41 348,200.08 "
-       id="polygon3782" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="353.89,192.27 353.59,191.94 349.75,200.61 "
-       id="polygon3784" />
-    <line
-       x1="330.34"
-       y1="130.85001"
-       x2="331.23001"
-       y2="134.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3786" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="306.67,190.97 306.47,190.69 308.8,199.5 "
-       id="polygon3788" />
-    <line
-       x1="189.56"
-       y1="166.39"
-       x2="187.92999"
-       y2="164.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3790" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="352.75,191.47 352.28,191.38 348.44,200.06 "
-       id="polygon3792" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="353.59,191.94 353.2,191.66 349.36,200.34 "
-       id="polygon3794" />
-    <line
-       x1="413.53"
-       y1="86.32"
-       x2="412.10001"
-       y2="85.379997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3796" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="353.2,191.66 352.75,191.47 348.91,200.15 "
-       id="polygon3798" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="303.74,191.31 303.65,191.66 305.97,200.47 "
-       id="polygon3800" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="306.47,190.69 306.14,190.49 308.47,199.3 "
-       id="polygon3802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="303.98,190.98 303.74,191.31 306.07,200.12 "
-       id="polygon3804" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="306.14,190.49 305.72,190.38 308.05,199.19 "
-       id="polygon3806" />
-    <line
-       x1="306.67001"
-       y1="181.87"
-       x2="305.17999"
-       y2="183.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3808" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="342.98,183 343.09,183.3 345.48,173.41 "
-       id="polygon3810" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="364.13,190.88 364.18,191.2 369.34,182.3 "
-       id="polygon3812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="304.33,190.7 303.98,190.98 306.3,199.79 "
-       id="polygon3814" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="305.72,190.38 305.25,190.38 307.57,199.19 "
-       id="polygon3816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="304.77,190.49 304.33,190.7 306.65,199.51 "
-       id="polygon3818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="305.25,190.38 304.77,190.49 307.09,199.3 "
-       id="polygon3820" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="396.82,198.21 396.71,198.45 405.04,191.34 "
-       id="polygon3822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.62,189.69 361.94,189.59 367.1,180.7 "
-       id="polygon3824" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="363.93,190.53 364.13,190.88 369.28,181.98 "
-       id="polygon3826" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="342.74,182.71 342.98,183 345.38,173.11 "
-       id="polygon3828" />
-    <line
-       x1="363.45001"
-       y1="178.53"
-       x2="366.5"
-       y2="180.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3830" />
-    <polygon
-       style="opacity:1;fill:#00d400"
-       points="360.66,236.08 360.29,236.19 366.78,231.88 "
-       id="polygon3832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.94,189.59 362.34,189.6 367.5,180.7 "
-       id="polygon3834" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="363.62,190.2 363.93,190.53 369.09,181.63 "
-       id="polygon3836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="394.82,196.02 395.11,196.02 403.45,188.91 "
-       id="polygon3838" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="396.81,197.89 396.82,198.21 405.15,191.11 "
-       id="polygon3840" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="342.38,182.46 342.74,182.71 345.14,172.82 "
-       id="polygon3842" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="362.34,189.6 362.79,189.71 367.94,180.81 "
-       id="polygon3844" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="363.23,189.92 363.62,190.2 368.78,181.3 "
-       id="polygon3846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.57,182.25 340.99,182.16 343.39,172.28 "
-       id="polygon3848" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="362.79,189.71 363.23,189.92 368.38,181.02 "
-       id="polygon3850" />
-    <line
-       x1="329.62"
-       y1="127.56"
-       x2="330.34"
-       y2="130.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3852" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="341.94,182.27 342.38,182.46 344.78,172.57 "
-       id="polygon3854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.99,182.16 341.46,182.17 343.86,172.29 "
-       id="polygon3856" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="341.46,182.17 341.94,182.27 344.34,172.39 "
-       id="polygon3858" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="395.11,196.02 395.46,196.15 403.79,189.04 "
-       id="polygon3860" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="396.7,197.51 396.81,197.89 405.14,190.78 "
-       id="polygon3862" />
-    <line
-       x1="314.32999"
-       y1="210.95"
-       x2="316.16"
-       y2="210.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3864" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="395.46,196.15 395.82,196.39 404.16,189.29 "
-       id="polygon3866" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="396.48,197.11 396.7,197.51 405.03,190.4 "
-       id="polygon3868" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="359.51,233.25 359.93,233.29 366.42,228.98 "
-       id="polygon3870" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="361.24,235.07 361.17,235.49 367.66,231.18 "
-       id="polygon3872" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="395.82,196.39 396.18,196.72 404.51,189.61 "
-       id="polygon3874" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="396.18,196.72 396.48,197.11 404.81,190 "
-       id="polygon3876" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="359.93,233.29 360.34,233.47 366.83,229.16 "
-       id="polygon3878" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="361.18,234.61 361.24,235.07 367.73,230.75 "
-       id="polygon3880" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="350.21,201.3 350.24,201.64 354.08,192.96 "
-       id="polygon3882" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="360.34,233.47 360.71,233.77 367.2,229.46 "
-       id="polygon3884" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="361,234.16 361.18,234.61 367.67,230.3 "
-       id="polygon3886" />
-    <line
-       x1="187.92999"
-       y1="164.02"
-       x2="186.55"
-       y2="161.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3888" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="360.71,233.77 361,234.16 367.49,229.85 "
-       id="polygon3890" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="350.05,200.94 350.21,201.3 354.05,192.62 "
-       id="polygon3892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.64,200.21 348,200.08 351.84,191.41 "
-       id="polygon3894" />
-    <line
-       x1="366.5"
-       y1="180.19"
-       x2="369.60999"
-       y2="181.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3896" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="349.75,200.61 350.05,200.94 353.89,192.27 "
-       id="polygon3898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="348,200.08 348.44,200.06 352.28,191.38 "
-       id="polygon3900" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="349.36,200.34 349.75,200.61 353.59,191.94 "
-       id="polygon3902" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="348.44,200.06 348.91,200.15 352.75,191.47 "
-       id="polygon3904" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="348.91,200.15 349.36,200.34 353.2,191.66 "
-       id="polygon3906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="396.5,198.57 396.71,198.45 396.5,198.22 "
-       id="polygon3908" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="308.47,199.3 308.8,199.5 306.47,190.69 "
-       id="polygon3910" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="305.97,200.47 306.07,200.12 303.74,191.31 "
-       id="polygon3912" />
-    <line
-       x1="414.95999"
-       y1="87.550003"
-       x2="413.53"
-       y2="86.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3914" />
-    <line
-       x1="329.09"
-       y1="124.36"
-       x2="329.62"
-       y2="127.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3916" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="308.05,199.19 308.47,199.3 306.14,190.49 "
-       id="polygon3918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="306.07,200.12 306.3,199.79 303.98,190.98 "
-       id="polygon3920" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="307.57,199.19 308.05,199.19 305.72,190.38 "
-       id="polygon3922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="306.3,199.79 306.65,199.51 304.33,190.7 "
-       id="polygon3924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="307.09,199.3 307.57,199.19 305.25,190.38 "
-       id="polygon3926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="306.65,199.51 307.09,199.3 304.77,190.49 "
-       id="polygon3928" />
-    <line
-       x1="308.32999"
-       y1="180.35001"
-       x2="306.67001"
-       y2="181.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3930" />
-    <line
-       x1="369.60999"
-       y1="181.61"
-       x2="372.76001"
-       y2="182.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3932" />
-    <line
-       x1="186.55"
-       y1="161.61"
-       x2="185.42"
-       y2="159.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3934" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="359.13,233.36 359.51,233.25 359.59,233.55 "
-       id="polygon3936" />
-    <line
-       x1="316.16"
-       y1="210.39999"
-       x2="318.14001"
-       y2="210.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3938" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="347.64,200.21 347.38,200.44 347.66,200.59 "
-       id="polygon3940" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="363.89,191.67 364.11,191.48 358.94,200.4 "
-       id="polygon3942" />
-    <line
-       x1="328.72"
-       y1="121.28"
-       x2="329.09"
-       y2="124.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3944" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="356.21,199.41 356.15,199.09 361.32,190.16 "
-       id="polygon3946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.62,189.69 361.4,189.89 356.23,198.81 "
-       id="polygon3948" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="386.14,203.49 386.25,203.26 394.61,196.14 "
-       id="polygon3950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.11,196.02 394.82,196.02 386.46,203.14 "
-       id="polygon3952" />
-    <line
-       x1="372.76001"
-       y1="182.77"
-       x2="375.92001"
-       y2="183.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3954" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="396.82,198.21 396.81,197.89 388.46,205.02 "
-       id="polygon3956" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="364.18,191.2 364.13,190.88 358.96,199.8 "
-       id="polygon3958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.94,189.59 361.62,189.69 356.45,198.62 "
-       id="polygon3960" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="395.46,196.15 395.11,196.02 386.75,203.14 "
-       id="polygon3962" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="396.81,197.89 396.7,197.51 388.34,204.63 "
-       id="polygon3964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.57,182.25 340.25,182.41 337.84,192.32 "
-       id="polygon3966" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="364.13,190.88 363.93,190.53 358.76,199.45 "
-       id="polygon3968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="362.34,189.6 361.94,189.59 356.77,198.52 "
-       id="polygon3970" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="395.82,196.39 395.46,196.15 387.1,203.27 "
-       id="polygon3972" />
-    <line
-       x1="416.37"
-       y1="89.050003"
-       x2="414.95999"
-       y2="87.550003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3974" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="396.7,197.51 396.48,197.11 388.12,204.23 "
-       id="polygon3976" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="396.18,196.72 395.82,196.39 387.47,203.52 "
-       id="polygon3978" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="363.93,190.53 363.62,190.2 358.45,199.13 "
-       id="polygon3980" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="362.79,189.71 362.34,189.6 357.17,198.52 "
-       id="polygon3982" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="396.48,197.11 396.18,196.72 387.82,203.84 "
-       id="polygon3984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.99,182.16 340.57,182.25 338.16,192.16 "
-       id="polygon3986" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="342.74,182.71 342.38,182.46 339.98,192.37 "
-       id="polygon3988" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="363.62,190.2 363.23,189.92 358.06,198.84 "
-       id="polygon3990" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="363.23,189.92 362.79,189.71 357.62,198.63 "
-       id="polygon3992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.46,182.17 340.99,182.16 338.58,192.07 "
-       id="polygon3994" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="342.38,182.46 341.94,182.27 339.53,192.18 "
-       id="polygon3996" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="341.94,182.27 341.46,182.17 339.05,192.08 "
-       id="polygon3998" />
-    <line
-       x1="185.42"
-       y1="159.17"
-       x2="184.53999"
-       y2="156.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4000" />
-    <line
-       x1="310.14001"
-       y1="179.11"
-       x2="308.32999"
-       y2="180.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4002" />
-    <line
-       x1="328.53"
-       y1="118.32"
-       x2="328.72"
-       y2="121.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4004" />
-    <line
-       x1="375.92001"
-       y1="183.66"
-       x2="379.10001"
-       y2="184.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4006" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="388.46,205.34 388.36,205.57 396.71,198.45 "
-       id="polygon4008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="347.64,200.21 347.38,200.44 343.53,209.14 "
-       id="polygon4010" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="350.24,201.64 350.21,201.3 346.36,210 "
-       id="polygon4012" />
-    <polygon
-       style="opacity:1;fill:#00d400"
-       points="360.29,236.19 360.66,236.08 354.15,240.41 "
-       id="polygon4014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.46,203.14 386.75,203.14 395.11,196.02 "
-       id="polygon4016" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="388.46,205.02 388.46,205.34 396.82,198.21 "
-       id="polygon4018" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="350.21,201.3 350.05,200.94 346.19,209.65 "
-       id="polygon4020" />
-    <line
-       x1="318.14001"
-       y1="210.13"
-       x2="320.23999"
-       y2="210.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4022" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="386.75,203.14 387.1,203.27 395.46,196.15 "
-       id="polygon4024" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="340.58,192.91 340.68,193.21 343.09,183.3 "
-       id="polygon4026" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="388.34,204.63 388.46,205.02 396.81,197.89 "
-       id="polygon4028" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="358.96,199.8 359.02,200.13 364.18,191.2 "
-       id="polygon4030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="348.44,200.06 348,200.08 344.14,208.79 "
-       id="polygon4032" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="350.05,200.94 349.75,200.61 345.9,209.32 "
-       id="polygon4034" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="348.91,200.15 348.44,200.06 344.58,208.77 "
-       id="polygon4036" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="349.75,200.61 349.36,200.34 345.5,209.05 "
-       id="polygon4038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="337.65,192.56 337.84,192.32 340.25,182.41 "
-       id="polygon4040" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="387.1,203.27 387.47,203.52 395.82,196.39 "
-       id="polygon4042" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="388.12,204.23 388.34,204.63 396.7,197.51 "
-       id="polygon4044" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="349.36,200.34 348.91,200.15 345.05,208.86 "
-       id="polygon4046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.45,198.62 356.77,198.52 361.94,189.59 "
-       id="polygon4048" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="361.17,235.49 361.24,235.07 354.73,239.4 "
-       id="polygon4050" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="340.34,192.62 340.58,192.91 342.98,183 "
-       id="polygon4052" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="360.34,233.47 359.93,233.29 353.41,237.62 "
-       id="polygon4054" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="358.76,199.45 358.96,199.8 364.13,190.88 "
-       id="polygon4056" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="387.47,203.52 387.82,203.84 396.18,196.72 "
-       id="polygon4058" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="387.82,203.84 388.12,204.23 396.48,197.11 "
-       id="polygon4060" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="361.24,235.07 361.18,234.61 354.67,238.94 "
-       id="polygon4062" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="360.71,233.77 360.34,233.47 353.82,237.79 "
-       id="polygon4064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="337.84,192.32 338.16,192.16 340.57,182.25 "
-       id="polygon4066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.77,198.52 357.17,198.52 362.34,189.6 "
-       id="polygon4068" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="361.18,234.61 361,234.16 354.48,238.49 "
-       id="polygon4070" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="361,234.16 360.71,233.77 354.2,238.09 "
-       id="polygon4072" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="358.45,199.13 358.76,199.45 363.93,190.53 "
-       id="polygon4074" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="339.98,192.37 340.34,192.62 342.74,182.71 "
-       id="polygon4076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="306.3,199.79 306.07,200.12 308.4,208.96 "
-       id="polygon4078" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="308.47,199.3 308.05,199.19 310.38,208.03 "
-       id="polygon4080" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="357.17,198.52 357.62,198.63 362.79,189.71 "
-       id="polygon4082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="338.16,192.16 338.58,192.07 340.99,182.16 "
-       id="polygon4084" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="358.06,198.84 358.45,199.13 363.62,190.2 "
-       id="polygon4086" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="357.62,198.63 358.06,198.84 363.23,189.92 "
-       id="polygon4088" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="339.53,192.18 339.98,192.37 342.38,182.46 "
-       id="polygon4090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="306.65,199.51 306.3,199.79 308.63,208.63 "
-       id="polygon4092" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="308.05,199.19 307.57,199.19 309.91,208.03 "
-       id="polygon4094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="338.58,192.07 339.05,192.08 341.46,182.17 "
-       id="polygon4096" />
-    <line
-       x1="184.53999"
-       y1="156.73"
-       x2="183.92"
-       y2="154.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4098" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="339.05,192.08 339.53,192.18 341.94,182.27 "
-       id="polygon4100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="307.09,199.3 306.65,199.51 308.99,208.35 "
-       id="polygon4102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="307.57,199.19 307.09,199.3 309.43,208.14 "
-       id="polygon4104" />
-    <line
-       x1="417.73999"
-       y1="90.809998"
-       x2="416.37"
-       y2="89.050003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4106" />
-    <line
-       x1="379.10001"
-       y1="184.27"
-       x2="382.26999"
-       y2="184.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4108" />
-    <line
-       x1="328.51001"
-       y1="115.52"
-       x2="328.53"
-       y2="118.32"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4110" />
-    <line
-       x1="312.09"
-       y1="178.14"
-       x2="310.14001"
-       y2="179.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4112" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="340.44,193.73 340.64,193.49 340.34,193.4 "
-       id="polygon4114" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="346.19,209.65 346.36,210 350.21,201.3 "
-       id="polygon4116" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="308.57,209.93 308.36,209.64 306.03,200.8 "
-       id="polygon4118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.78,208.91 344.14,208.79 348,200.08 "
-       id="polygon4120" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="311.14,208.34 311.34,208.63 309,199.79 "
-       id="polygon4122" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="345.9,209.32 346.19,209.65 350.05,200.94 "
-       id="polygon4124" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="352.11,238.27 352.31,237.93 358.83,233.6 "
-       id="polygon4126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="344.14,208.79 344.58,208.77 348.44,200.06 "
-       id="polygon4128" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="345.5,209.05 345.9,209.32 349.75,200.61 "
-       id="polygon4130" />
-    <line
-       x1="382.26999"
-       y1="184.60001"
-       x2="385.42999"
-       y2="184.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4132" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="344.58,208.77 345.05,208.86 348.91,200.15 "
-       id="polygon4134" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="345.05,208.86 345.5,209.05 349.36,200.34 "
-       id="polygon4136" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="310.8,208.14 311.14,208.34 308.8,199.5 "
-       id="polygon4138" />
-    <line
-       x1="320.23999"
-       y1="210.14"
-       x2="322.45999"
-       y2="210.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4140" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="387.85,205.69 388.14,205.7 379.77,212.84 "
-       id="polygon4142" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="310.38,208.03 310.8,208.14 308.47,199.3 "
-       id="polygon4144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="308.4,208.96 308.63,208.63 306.3,199.79 "
-       id="polygon4146" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="352.99,237.58 353.41,237.62 359.93,233.29 "
-       id="polygon4148" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="309.91,208.03 310.38,208.03 308.05,199.19 "
-       id="polygon4150" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="354.73,239.4 354.65,239.82 361.17,235.49 "
-       id="polygon4152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="308.63,208.63 308.99,208.35 306.65,199.51 "
-       id="polygon4154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="309.43,208.14 309.91,208.03 307.57,199.19 "
-       id="polygon4156" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="353.41,237.62 353.82,237.79 360.34,233.47 "
-       id="polygon4158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="308.99,208.35 309.43,208.14 307.09,199.3 "
-       id="polygon4160" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="354.67,238.94 354.73,239.4 361.24,235.07 "
-       id="polygon4162" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="353.82,237.79 354.2,238.09 360.71,233.77 "
-       id="polygon4164" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="354.48,238.49 354.67,238.94 361.18,234.61 "
-       id="polygon4166" />
-    <line
-       x1="328.64999"
-       y1="112.89"
-       x2="328.51001"
-       y2="115.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4168" />
-    <line
-       x1="419.06"
-       y1="92.830002"
-       x2="417.73999"
-       y2="90.809998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4170" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="354.2,238.09 354.48,238.49 361,234.16 "
-       id="polygon4172" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="388.46,205.34 388.46,205.02 380.08,212.16 "
-       id="polygon4174" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="387.1,203.27 386.75,203.14 378.38,210.29 "
-       id="polygon4176" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="388.46,205.02 388.34,204.63 379.96,211.78 "
-       id="polygon4178" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="387.47,203.52 387.1,203.27 378.72,210.41 "
-       id="polygon4180" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="343.43,209.78 343.41,209.44 343.7,209.53 "
-       id="polygon4182" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="388.34,204.63 388.12,204.23 379.74,211.38 "
-       id="polygon4184" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="387.82,203.84 387.47,203.52 379.09,210.66 "
-       id="polygon4186" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="388.12,204.23 387.82,203.84 379.44,210.99 "
-       id="polygon4188" />
-    <line
-       x1="284.63"
-       y1="316.10001"
-       x2="281"
-       y2="314.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4190" />
-    <line
-       x1="288.37"
-       y1="317.98999"
-       x2="284.63"
-       y2="316.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4192" />
-    <line
-       x1="385.42999"
-       y1="184.64999"
-       x2="388.54999"
-       y2="184.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4194" />
-    <line
-       x1="314.17001"
-       y1="177.47"
-       x2="312.09"
-       y2="178.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4196" />
-    <line
-       x1="281"
-       y1="314.01001"
-       x2="277.48001"
-       y2="311.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4198" />
-    <line
-       x1="292.17999"
-       y1="319.66"
-       x2="288.37"
-       y2="317.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="337.84,192.32 337.65,192.56 335.23,202.5 "
-       id="polygon4202" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="340.68,193.21 340.58,192.91 338.17,202.85 "
-       id="polygon4204" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="353.75,209.35 353.54,209.55 358.72,200.6 "
-       id="polygon4206" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="359.02,200.13 358.96,199.8 353.77,208.75 "
-       id="polygon4208" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.77,198.52 356.45,198.62 351.26,207.57 "
-       id="polygon4210" />
-    <line
-       x1="277.48001"
-       y1="311.73001"
-       x2="274.09"
-       y2="309.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4212" />
-    <line
-       x1="296.06"
-       y1="321.09"
-       x2="292.17999"
-       y2="319.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="338.16,192.16 337.84,192.32 335.43,202.27 "
-       id="polygon4216" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="340.58,192.91 340.34,192.62 337.92,202.56 "
-       id="polygon4218" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="358.96,199.8 358.76,199.45 353.58,208.41 "
-       id="polygon4220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="357.17,198.52 356.77,198.52 351.58,207.46 "
-       id="polygon4222" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="308.3,209.31 308.36,209.64 308.66,209.54 "
-       id="polygon4224" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="377.76,210.64 377.87,210.4 386.25,203.26 "
-       id="polygon4226" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="358.76,199.45 358.45,199.13 353.27,208.08 "
-       id="polygon4228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="338.58,192.07 338.16,192.16 335.75,202.1 "
-       id="polygon4230" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="357.62,198.63 357.17,198.52 351.98,207.47 "
-       id="polygon4232" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="340.34,192.62 339.98,192.37 337.56,202.31 "
-       id="polygon4234" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="358.45,199.13 358.06,198.84 352.87,207.79 "
-       id="polygon4236" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="358.06,198.84 357.62,198.63 352.43,207.59 "
-       id="polygon4238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="339.05,192.08 338.58,192.07 336.16,202.01 "
-       id="polygon4240" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="339.98,192.37 339.53,192.18 337.12,202.13 "
-       id="polygon4242" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="339.53,192.18 339.05,192.08 336.64,202.02 "
-       id="polygon4244" />
-    <line
-       x1="299.98001"
-       y1="322.29001"
-       x2="296.06"
-       y2="321.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4246" />
-    <line
-       x1="274.09"
-       y1="309.29001"
-       x2="270.85999"
-       y2="306.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4248" />
-    <line
-       x1="322.45999"
-       y1="210.42999"
-       x2="324.78"
-       y2="211"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.08,210.28 378.38,210.29 386.75,203.14 "
-       id="polygon4252" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="380.08,212.16 380.09,212.48 388.46,205.34 "
-       id="polygon4254" />
-    <line
-       x1="328.94"
-       y1="110.45"
-       x2="328.64999"
-       y2="112.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4256" />
-    <line
-       x1="420.32001"
-       y1="95.089996"
-       x2="419.06"
-       y2="92.830002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4258" />
-    <line
-       x1="303.92999"
-       y1="323.23001"
-       x2="299.98001"
-       y2="322.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4260" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="378.38,210.29 378.72,210.41 387.1,203.27 "
-       id="polygon4262" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="379.96,211.78 380.08,212.16 388.46,205.02 "
-       id="polygon4264" />
-    <line
-       x1="270.85999"
-       y1="306.69"
-       x2="267.79001"
-       y2="303.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4266" />
-    <line
-       x1="388.54999"
-       y1="184.41"
-       x2="391.63"
-       y2="183.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4268" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="354.4,239.67 354.46,239.33 354.73,239.4 "
-       id="polygon4270" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="378.72,210.41 379.09,210.66 387.47,203.52 "
-       id="polygon4272" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="379.74,211.38 379.96,211.78 388.34,204.63 "
-       id="polygon4274" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="379.09,210.66 379.44,210.99 387.82,203.84 "
-       id="polygon4276" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="379.44,210.99 379.74,211.38 388.12,204.23 "
-       id="polygon4278" />
-    <line
-       x1="307.89001"
-       y1="323.91"
-       x2="303.92999"
-       y2="323.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.23,202.5 335.43,202.27 337.84,192.32 "
-       id="polygon4282" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="337.92,202.56 338.17,202.85 340.58,192.91 "
-       id="polygon4284" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="353.58,208.41 353.77,208.75 358.96,199.8 "
-       id="polygon4286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.78,208.91 343.53,209.14 339.66,217.87 "
-       id="polygon4288" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="346.39,210.34 346.36,210 342.5,218.73 "
-       id="polygon4290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.43,202.27 335.75,202.1 338.16,192.16 "
-       id="polygon4292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.58,207.46 351.98,207.47 357.17,198.52 "
-       id="polygon4294" />
-    <line
-       x1="316.35001"
-       y1="177.10001"
-       x2="314.17001"
-       y2="177.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4296" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="353.27,208.08 353.58,208.41 358.76,199.45 "
-       id="polygon4298" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="337.56,202.31 337.92,202.56 340.34,192.62 "
-       id="polygon4300" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="351.98,207.47 352.43,207.59 357.62,198.63 "
-       id="polygon4302" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="346.36,210 346.19,209.65 342.33,218.38 "
-       id="polygon4304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.75,202.1 336.16,202.01 338.58,192.07 "
-       id="polygon4306" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="352.87,207.79 353.27,208.08 358.45,199.13 "
-       id="polygon4308" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="352.43,207.59 352.87,207.79 358.06,198.84 "
-       id="polygon4310" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="337.12,202.13 337.56,202.31 339.98,192.37 "
-       id="polygon4312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.16,202.01 336.64,202.02 339.05,192.08 "
-       id="polygon4314" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="311.34,208.63 311.14,208.34 313.48,217.21 "
-       id="polygon4316" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="336.64,202.02 337.12,202.13 339.53,192.18 "
-       id="polygon4318" />
-    <line
-       x1="311.82999"
-       y1="324.32001"
-       x2="307.89001"
-       y2="323.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="344.58,208.77 344.14,208.79 340.28,217.52 "
-       id="polygon4322" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="346.19,209.65 345.9,209.32 342.03,218.05 "
-       id="polygon4324" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="345.05,208.86 344.58,208.77 340.71,217.5 "
-       id="polygon4326" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="345.9,209.32 345.5,209.05 341.64,217.78 "
-       id="polygon4328" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="345.5,209.05 345.05,208.86 341.18,217.59 "
-       id="polygon4330" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="308.4,208.96 308.3,209.31 310.65,218.18 "
-       id="polygon4332" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="311.14,208.34 310.8,208.14 313.15,217.01 "
-       id="polygon4334" />
-    <line
-       x1="391.63"
-       y1="183.89"
-       x2="394.64001"
-       y2="183.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4336" />
-    <line
-       x1="264.89001"
-       y1="301.12"
-       x2="262.20001"
-       y2="298.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="308.63,208.63 308.4,208.96 310.74,217.83 "
-       id="polygon4340" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="310.8,208.14 310.38,208.03 312.73,216.9 "
-       id="polygon4342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="308.99,208.35 308.63,208.63 310.98,217.5 "
-       id="polygon4344" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="310.38,208.03 309.91,208.03 312.25,216.9 "
-       id="polygon4346" />
-    <line
-       x1="329.39001"
-       y1="108.21"
-       x2="328.94"
-       y2="110.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="309.43,208.14 308.99,208.35 311.33,217.22 "
-       id="polygon4350" />
-    <line
-       x1="421.51001"
-       y1="97.580002"
-       x2="420.32001"
-       y2="95.089996"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="309.91,208.03 309.43,208.14 311.77,217.01 "
-       id="polygon4354" />
-    <line
-       x1="324.78"
-       y1="211"
-       x2="327.17001"
-       y2="211.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4356" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="352.31,237.93 352.11,238.27 345.57,242.62 "
-       id="polygon4358" />
-    <line
-       x1="315.73001"
-       y1="324.45999"
-       x2="311.82999"
-       y2="324.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4360" />
-    <polygon
-       style="opacity:1;fill:#00d400"
-       points="353.77,240.52 354.15,240.41 347.61,244.76 "
-       id="polygon4362" />
-    <line
-       x1="262.20001"
-       y1="298.17999"
-       x2="259.70001"
-       y2="295.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4364" />
-    <polygon
-       style="opacity:1;fill:#00bd00"
-       points="351.26,207.57 351.58,207.46 351.74,207.68 "
-       id="polygon4366" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="354.73,239.4 354.67,238.94 348.13,243.28 "
-       id="polygon4368" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="354.2,238.09 353.82,237.79 347.28,242.14 "
-       id="polygon4370" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="354.67,238.94 354.48,238.49 347.95,242.83 "
-       id="polygon4372" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="354.48,238.49 354.2,238.09 347.65,242.44 "
-       id="polygon4374" />
-    <line
-       x1="394.64001"
-       y1="183.08"
-       x2="397.57999"
-       y2="181.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4376" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="342.5,218.73 342.52,219.08 346.39,210.34 "
-       id="polygon4378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="378.38,210.29 378.08,210.28 369.68,217.44 "
-       id="polygon4380" />
-    <line
-       x1="319.57999"
-       y1="324.31"
-       x2="315.73001"
-       y2="324.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4382" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="380.09,212.48 380.08,212.16 371.68,219.32 "
-       id="polygon4384" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="342.33,218.38 342.5,218.73 346.36,210 "
-       id="polygon4386" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="378.72,210.41 378.38,210.29 369.97,217.45 "
-       id="polygon4388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="339.91,217.65 340.28,217.52 344.14,208.79 "
-       id="polygon4390" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="380.08,212.16 379.96,211.78 371.56,218.94 "
-       id="polygon4392" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="342.03,218.05 342.33,218.38 346.19,209.65 "
-       id="polygon4394" />
-    <line
-       x1="318.62"
-       y1="177.02"
-       x2="316.35001"
-       y2="177.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4396" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="379.09,210.66 378.72,210.41 370.32,217.58 "
-       id="polygon4398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.28,217.52 340.71,217.5 344.58,208.77 "
-       id="polygon4400" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="313.15,217.01 313.48,217.21 311.14,208.34 "
-       id="polygon4402" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="379.96,211.78 379.74,211.38 371.34,218.54 "
-       id="polygon4404" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="341.64,217.78 342.03,218.05 345.9,209.32 "
-       id="polygon4406" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="379.44,210.99 379.09,210.66 370.69,217.82 "
-       id="polygon4408" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="340.71,217.5 341.18,217.59 345.05,208.86 "
-       id="polygon4410" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="379.74,211.38 379.44,210.99 371.04,218.15 "
-       id="polygon4412" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="341.18,217.59 341.64,217.78 345.5,209.05 "
-       id="polygon4414" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="310.65,218.18 310.74,217.83 308.4,208.96 "
-       id="polygon4416" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="312.73,216.9 313.15,217.01 310.8,208.14 "
-       id="polygon4418" />
-    <line
-       x1="259.70001"
-       y1="295.17999"
-       x2="257.42001"
-       y2="292.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4420" />
-    <line
-       x1="422.60999"
-       y1="100.29"
-       x2="421.51001"
-       y2="97.580002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="310.74,217.83 310.98,217.5 308.63,208.63 "
-       id="polygon4424" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="312.25,216.9 312.73,216.9 310.38,208.03 "
-       id="polygon4426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="310.98,217.5 311.33,217.22 308.99,208.35 "
-       id="polygon4428" />
-    <polygon
-       style="opacity:1;fill:#00ee00"
-       points="338.03,203.67 338.22,203.43 335.8,213.4 "
-       id="polygon4430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="311.77,217.01 312.25,216.9 309.91,208.03 "
-       id="polygon4432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="311.33,217.22 311.77,217.01 309.43,208.14 "
-       id="polygon4434" />
-    <line
-       x1="323.35999"
-       y1="323.88"
-       x2="319.57999"
-       y2="324.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4436" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="353.54,209.55 353.75,209.35 348.55,218.33 "
-       id="polygon4438" />
-    <line
-       x1="329.97"
-       y1="106.19"
-       x2="329.39001"
-       y2="108.21"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4440" />
-    <line
-       x1="327.17001"
-       y1="211.87"
-       x2="329.62"
-       y2="213.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.26,207.57 351.04,207.76 345.84,216.74 "
-       id="polygon4444" />
-    <line
-       x1="397.57999"
-       y1="181.99001"
-       x2="400.42999"
-       y2="180.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4446" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="371.69,219.65 371.58,219.88 379.98,212.72 "
-       id="polygon4448" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="345.57,242.62 345.77,242.27 352.31,237.93 "
-       id="polygon4450" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="353.83,209.08 353.77,208.75 348.57,217.73 "
-       id="polygon4452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.58,207.46 351.26,207.57 346.05,216.54 "
-       id="polygon4454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.75,202.1 335.43,202.27 333,212.23 "
-       id="polygon4456" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="338.17,202.85 337.92,202.56 335.5,212.53 "
-       id="polygon4458" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="353.77,208.75 353.58,208.41 348.38,217.39 "
-       id="polygon4460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="369.68,217.44 369.97,217.45 378.38,210.29 "
-       id="polygon4462" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="371.68,219.32 371.69,219.65 380.09,212.48 "
-       id="polygon4464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.16,202.01 335.75,202.1 333.32,212.07 "
-       id="polygon4466" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="353.58,208.41 353.27,208.08 348.07,217.05 "
-       id="polygon4468" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="337.92,202.56 337.56,202.31 335.14,212.28 "
-       id="polygon4470" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="352.43,207.59 351.98,207.47 346.78,216.45 "
-       id="polygon4472" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="369.97,217.45 370.32,217.58 378.72,210.41 "
-       id="polygon4474" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="353.27,208.08 352.87,207.79 347.67,216.77 "
-       id="polygon4476" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="371.56,218.94 371.68,219.32 380.08,212.16 "
-       id="polygon4478" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="352.87,207.79 352.43,207.59 347.23,216.56 "
-       id="polygon4480" />
-    <line
-       x1="184.03"
-       y1="145.11"
-       x2="184.7"
-       y2="143.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4482" />
-    <line
-       x1="257.42001"
-       y1="292.12"
-       x2="255.36"
-       y2="289.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.64,202.02 336.16,202.01 333.74,211.98 "
-       id="polygon4486" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="337.56,202.31 337.12,202.13 334.7,212.09 "
-       id="polygon4488" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="337.12,202.13 336.64,202.02 334.21,211.99 "
-       id="polygon4490" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="346.45,241.92 346.86,241.96 353.41,237.62 "
-       id="polygon4492" />
-    <line
-       x1="327.04999"
-       y1="323.16"
-       x2="323.35999"
-       y2="323.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4494" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="348.19,243.74 348.11,244.17 354.65,239.82 "
-       id="polygon4496" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="370.32,217.58 370.69,217.82 379.09,210.66 "
-       id="polygon4498" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="371.34,218.54 371.56,218.94 379.96,211.78 "
-       id="polygon4500" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="346.86,241.96 347.28,242.14 353.82,237.79 "
-       id="polygon4502" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="348.13,243.28 348.19,243.74 354.73,239.4 "
-       id="polygon4504" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="370.69,217.82 371.04,218.15 379.44,210.99 "
-       id="polygon4506" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="371.04,218.15 371.34,218.54 379.74,211.38 "
-       id="polygon4508" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="347.28,242.14 347.65,242.44 354.2,238.09 "
-       id="polygon4510" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="347.95,242.83 348.13,243.28 354.67,238.94 "
-       id="polygon4512" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="347.65,242.44 347.95,242.83 354.48,238.49 "
-       id="polygon4514" />
-    <line
-       x1="423.60999"
-       y1="103.21"
-       x2="422.60999"
-       y2="100.29"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4516" />
-    <line
-       x1="400.42999"
-       y1="180.63"
-       x2="403.19"
-       y2="178.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4518" />
-    <line
-       x1="320.95999"
-       y1="177.25999"
-       x2="318.62"
-       y2="177.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4520" />
-    <line
-       x1="330.63"
-       y1="322.16"
-       x2="327.04999"
-       y2="323.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4522" />
-    <line
-       x1="329.62"
-       y1="213.02"
-       x2="332.10999"
-       y2="214.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4524" />
-    <line
-       x1="330.69"
-       y1="104.4"
-       x2="329.97"
-       y2="106.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4526" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="348.57,217.73 348.63,218.05 353.83,209.08 "
-       id="polygon4528" />
-    <line
-       x1="255.36"
-       y1="289.04001"
-       x2="253.53999"
-       y2="285.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.05,216.54 346.38,216.44 351.58,207.46 "
-       id="polygon4532" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="335.5,212.53 335.75,212.82 338.17,202.85 "
-       id="polygon4534" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="348.38,217.39 348.57,217.73 353.77,208.75 "
-       id="polygon4536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333,212.23 333.32,212.07 335.75,202.1 "
-       id="polygon4538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.38,216.44 346.78,216.45 351.98,207.47 "
-       id="polygon4540" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="335.14,212.28 335.5,212.53 337.92,202.56 "
-       id="polygon4542" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="348.07,217.05 348.38,217.39 353.58,208.41 "
-       id="polygon4544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.32,212.07 333.74,211.98 336.16,202.01 "
-       id="polygon4546" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="346.78,216.45 347.23,216.56 352.43,207.59 "
-       id="polygon4548" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="347.67,216.77 348.07,217.05 353.27,208.08 "
-       id="polygon4550" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="334.7,212.09 335.14,212.28 337.56,202.31 "
-       id="polygon4552" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="347.23,216.56 347.67,216.77 352.87,207.79 "
-       id="polygon4554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.74,211.98 334.21,211.99 336.64,202.02 "
-       id="polygon4556" />
-    <line
-       x1="184.7"
-       y1="143.03"
-       x2="185.61"
-       y2="141.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4558" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="334.21,211.99 334.7,212.09 337.12,202.13 "
-       id="polygon4560" />
-    <line
-       x1="403.19"
-       y1="178.99001"
-       x2="405.84"
-       y2="177.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4562" />
-    <line
-       x1="424.48999"
-       y1="106.3"
-       x2="423.60999"
-       y2="103.21"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="339.91,217.65 339.66,217.87 335.77,226.64 "
-       id="polygon4566" />
-    <line
-       x1="334.09"
-       y1="320.88"
-       x2="330.63"
-       y2="322.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4568" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="342.5,218.73 342.33,218.38 338.45,227.15 "
-       id="polygon4570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.71,217.5 340.28,217.52 336.39,226.28 "
-       id="polygon4572" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="342.33,218.38 342.03,218.05 338.15,226.82 "
-       id="polygon4574" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="347.28,242.14 347.65,242.44 347.49,242.63 "
-       id="polygon4576" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="313.48,217.21 313.15,217.01 315.5,225.91 "
-       id="polygon4578" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="341.18,217.59 340.71,217.5 336.83,226.26 "
-       id="polygon4580" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="342.03,218.05 341.64,217.78 337.76,226.54 "
-       id="polygon4582" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="341.64,217.78 341.18,217.59 337.3,226.35 "
-       id="polygon4584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="310.98,217.5 310.74,217.83 313.09,226.73 "
-       id="polygon4586" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="313.15,217.01 312.73,216.9 315.08,225.8 "
-       id="polygon4588" />
-    <line
-       x1="253.53999"
-       y1="285.95001"
-       x2="251.95"
-       y2="282.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="369.97,217.45 369.68,217.44 361.25,224.62 "
-       id="polygon4592" />
-    <line
-       x1="323.35001"
-       y1="177.8"
-       x2="320.95999"
-       y2="177.25999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="311.33,217.22 310.98,217.5 313.32,226.4 "
-       id="polygon4596" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="312.73,216.9 312.25,216.9 314.6,225.8 "
-       id="polygon4598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="311.77,217.01 311.33,217.22 313.68,226.12 "
-       id="polygon4600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="312.25,216.9 311.77,217.01 314.12,225.91 "
-       id="polygon4602" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="371.69,219.65 371.68,219.32 363.26,226.51 "
-       id="polygon4604" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="370.32,217.58 369.97,217.45 361.55,224.63 "
-       id="polygon4606" />
-    <line
-       x1="405.84"
-       y1="177.09"
-       x2="408.37"
-       y2="174.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4608" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="371.68,219.32 371.56,218.94 363.14,226.13 "
-       id="polygon4610" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="370.69,217.82 370.32,217.58 361.89,224.76 "
-       id="polygon4612" />
-    <line
-       x1="337.39001"
-       y1="319.32999"
-       x2="334.09"
-       y2="320.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4614" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="371.56,218.94 371.34,218.54 362.91,225.72 "
-       id="polygon4616" />
-    <line
-       x1="331.53"
-       y1="102.86"
-       x2="330.69"
-       y2="104.4"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4618" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="371.04,218.15 370.69,217.82 362.26,225 "
-       id="polygon4620" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="371.34,218.54 371.04,218.15 362.61,225.33 "
-       id="polygon4622" />
-    <line
-       x1="425.25"
-       y1="109.57"
-       x2="424.48999"
-       y2="106.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4624" />
-    <line
-       x1="185.61"
-       y1="141.07001"
-       x2="186.75999"
-       y2="139.24001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4626" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="338.62,227.5 338.64,227.84 342.52,219.08 "
-       id="polygon4628" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="345.77,242.27 345.57,242.62 339,246.98 "
-       id="polygon4630" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="345.76,217.02 345.82,217.34 340.61,226.34 "
-       id="polygon4632" />
-    <line
-       x1="408.37"
-       y1="174.95"
-       x2="410.76001"
-       y2="172.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4634" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="363.27,226.83 363.16,227.06 371.58,219.88 "
-       id="polygon4636" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="315.83,226.11 316.04,226.39 313.68,217.49 "
-       id="polygon4638" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="338.45,227.15 338.62,227.5 342.5,218.73 "
-       id="polygon4640" />
-    <polygon
-       style="opacity:1;fill:#00d400"
-       points="347.23,244.87 347.61,244.76 341.04,249.13 "
-       id="polygon4642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.03,226.41 336.39,226.28 340.28,217.52 "
-       id="polygon4644" />
-    <line
-       x1="251.95"
-       y1="282.88"
-       x2="250.61"
-       y2="279.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4646" />
-    <line
-       x1="340.54999"
-       y1="317.5"
-       x2="337.39001"
-       y2="319.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4648" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="338.15,226.82 338.45,227.15 342.33,218.38 "
-       id="polygon4650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.25,224.62 361.55,224.63 369.97,217.45 "
-       id="polygon4652" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="315.5,225.91 315.83,226.11 313.48,217.21 "
-       id="polygon4654" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="363.26,226.51 363.27,226.83 371.69,219.65 "
-       id="polygon4656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.39,226.28 336.83,226.26 340.71,217.5 "
-       id="polygon4658" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="337.76,226.54 338.15,226.82 342.03,218.05 "
-       id="polygon4660" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="313,227.08 313.09,226.73 310.74,217.83 "
-       id="polygon4662" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="336.83,226.26 337.3,226.35 341.18,217.59 "
-       id="polygon4664" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="337.3,226.35 337.76,226.54 341.64,217.78 "
-       id="polygon4666" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="315.08,225.8 315.5,225.91 313.15,217.01 "
-       id="polygon4668" />
-    <line
-       x1="425.87"
-       y1="112.98"
-       x2="425.25"
-       y2="109.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4670" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="361.55,224.63 361.89,224.76 370.32,217.58 "
-       id="polygon4672" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="363.14,226.13 363.26,226.51 371.68,219.32 "
-       id="polygon4674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="313.09,226.73 313.32,226.4 310.98,217.5 "
-       id="polygon4676" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="348.11,244.17 348.19,243.74 341.62,248.11 "
-       id="polygon4678" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="314.6,225.8 315.08,225.8 312.73,216.9 "
-       id="polygon4680" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="347.28,242.14 346.86,241.96 340.3,246.32 "
-       id="polygon4682" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="361.89,224.76 362.26,225 370.69,217.82 "
-       id="polygon4684" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="362.91,225.72 363.14,226.13 371.56,218.94 "
-       id="polygon4686" />
-    <line
-       x1="335.60999"
-       y1="216.92999"
-       x2="335.60999"
-       y2="216.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="313.32,226.4 313.68,226.12 311.33,217.22 "
-       id="polygon4690" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="343.34,227.34 343.13,227.53 348.34,218.53 "
-       id="polygon4692" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="348.63,218.05 348.57,217.73 343.36,226.73 "
-       id="polygon4694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="314.12,225.91 314.6,225.8 312.25,216.9 "
-       id="polygon4696" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="348.19,243.74 348.13,243.28 341.56,247.64 "
-       id="polygon4698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.38,216.44 346.05,216.54 340.84,225.55 "
-       id="polygon4700" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="347.65,242.44 347.28,242.14 340.71,246.5 "
-       id="polygon4702" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="362.26,225 362.61,225.33 371.04,218.15 "
-       id="polygon4704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="313.68,226.12 314.12,225.91 311.77,217.01 "
-       id="polygon4706" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="362.61,225.33 362.91,225.72 371.34,218.54 "
-       id="polygon4708" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="348.13,243.28 347.95,242.83 341.38,247.2 "
-       id="polygon4710" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="347.95,242.83 347.65,242.44 341.09,246.8 "
-       id="polygon4712" />
-    <line
-       x1="325.76999"
-       y1="178.64"
-       x2="323.35001"
-       y2="177.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.32,212.07 333,212.23 330.57,222.23 "
-       id="polygon4716" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="335.75,212.82 335.5,212.53 333.07,222.53 "
-       id="polygon4718" />
-    <line
-       x1="337.12"
-       y1="218.12"
-       x2="335.60999"
-       y2="216.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4720" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="348.57,217.73 348.38,217.39 343.16,226.39 "
-       id="polygon4722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.78,216.45 346.38,216.44 341.16,225.45 "
-       id="polygon4724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.74,211.98 333.32,212.07 330.89,222.07 "
-       id="polygon4726" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="335.5,212.53 335.14,212.28 332.71,222.28 "
-       id="polygon4728" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="348.38,217.39 348.07,217.05 342.85,226.06 "
-       id="polygon4730" />
-    <line
-       x1="410.76001"
-       y1="172.57001"
-       x2="413.01001"
-       y2="169.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4732" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="347.23,216.56 346.78,216.45 341.56,225.45 "
-       id="polygon4734" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="348.07,217.05 347.67,216.77 342.45,225.78 "
-       id="polygon4736" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="347.67,216.77 347.23,216.56 342.01,225.57 "
-       id="polygon4738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="334.21,211.99 333.74,211.98 331.31,221.98 "
-       id="polygon4740" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="335.14,212.28 334.7,212.09 332.27,222.09 "
-       id="polygon4742" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="334.7,212.09 334.21,211.99 331.79,221.99 "
-       id="polygon4744" />
-    <line
-       x1="186.75999"
-       y1="139.24001"
-       x2="188.14"
-       y2="137.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4746" />
-    <line
-       x1="332.48001"
-       y1="101.57"
-       x2="331.53"
-       y2="102.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4748" />
-    <line
-       x1="343.51999"
-       y1="315.41"
-       x2="340.54999"
-       y2="317.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4750" />
-    <line
-       x1="426.35001"
-       y1="116.52"
-       x2="425.87"
-       y2="112.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4752" />
-    <line
-       x1="250.61"
-       y1="279.84"
-       x2="249.52"
-       y2="276.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4754" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="338.64,227.84 338.62,227.5 338.32,227.48 "
-       id="polygon4756" />
-    <line
-       x1="413.01001"
-       y1="169.96001"
-       x2="415.10999"
-       y2="167.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4758" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="333.32,222.82 333.43,223.12 335.85,213.12 "
-       id="polygon4760" />
-    <line
-       x1="337.12"
-       y1="218.12"
-       x2="339.60001"
-       y2="220.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4762" />
-    <line
-       x1="346.31"
-       y1="313.07001"
-       x2="343.51999"
-       y2="315.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.84,225.55 341.16,225.45 346.38,216.44 "
-       id="polygon4766" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="333.07,222.53 333.32,222.82 335.75,212.82 "
-       id="polygon4768" />
-    <line
-       x1="426.67999"
-       y1="120.17"
-       x2="426.35001"
-       y2="116.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4770" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="343.16,226.39 343.36,226.73 348.57,217.73 "
-       id="polygon4772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="330.57,222.23 330.89,222.07 333.32,212.07 "
-       id="polygon4774" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="332.71,222.28 333.07,222.53 335.5,212.53 "
-       id="polygon4776" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="342.85,226.06 343.16,226.39 348.38,217.39 "
-       id="polygon4778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="330.89,222.07 331.31,221.98 333.74,211.98 "
-       id="polygon4780" />
-    <line
-       x1="415.10999"
-       y1="167.14"
-       x2="417.06"
-       y2="164.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4782" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="341.56,225.45 342.01,225.57 347.23,216.56 "
-       id="polygon4784" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="339.88,246.28 340.3,246.32 346.86,241.96 "
-       id="polygon4786" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="342.45,225.78 342.85,226.06 348.07,217.05 "
-       id="polygon4788" />
-    <line
-       x1="328.20999"
-       y1="179.78999"
-       x2="325.76999"
-       y2="178.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4790" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="332.27,222.09 332.71,222.28 335.14,212.28 "
-       id="polygon4792" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="341.62,248.11 341.55,248.54 348.11,244.17 "
-       id="polygon4794" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="342.01,225.57 342.45,225.78 347.67,216.77 "
-       id="polygon4796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="331.31,221.98 331.79,221.99 334.21,211.99 "
-       id="polygon4798" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="331.79,221.99 332.27,222.09 334.7,212.09 "
-       id="polygon4800" />
-    <line
-       x1="188.14"
-       y1="137.57001"
-       x2="189.74001"
-       y2="136.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4802" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="340.3,246.32 340.71,246.5 347.28,242.14 "
-       id="polygon4804" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="341.56,247.64 341.62,248.11 348.19,243.74 "
-       id="polygon4806" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="340.71,246.5 341.09,246.8 347.65,242.44 "
-       id="polygon4808" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="341.38,247.2 341.56,247.64 348.13,243.28 "
-       id="polygon4810" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="341.09,246.8 341.38,247.2 347.95,242.83 "
-       id="polygon4812" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="363.16,227.06 363.27,226.83 354.82,234.03 "
-       id="polygon4814" />
-    <line
-       x1="426.85001"
-       y1="123.91"
-       x2="426.67999"
-       y2="120.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4816" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="363.27,226.83 363.26,226.51 354.81,233.71 "
-       id="polygon4818" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="361.89,224.76 361.55,224.63 353.1,231.82 "
-       id="polygon4820" />
-    <line
-       x1="333.54001"
-       y1="100.55"
-       x2="332.48001"
-       y2="101.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4822" />
-    <line
-       x1="417.06"
-       y1="164.14"
-       x2="418.84"
-       y2="160.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4824" />
-    <line
-       x1="348.89001"
-       y1="310.48001"
-       x2="346.31"
-       y2="313.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4826" />
-    <line
-       x1="249.52"
-       y1="276.85999"
-       x2="248.67999"
-       y2="273.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4828" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="363.26,226.51 363.14,226.13 354.69,233.32 "
-       id="polygon4830" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="362.26,225 361.89,224.76 353.45,231.96 "
-       id="polygon4832" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="363.14,226.13 362.91,225.72 354.47,232.92 "
-       id="polygon4834" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="362.61,225.33 362.26,225 353.82,232.2 "
-       id="polygon4836" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="362.91,225.72 362.61,225.33 354.17,232.53 "
-       id="polygon4838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.03,226.41 335.77,226.64 331.88,235.43 "
-       id="polygon4840" />
-    <line
-       x1="339.60001"
-       y1="220.35001"
-       x2="342.04001"
-       y2="222.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4842" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="316.04,226.39 315.83,226.11 318.19,235.04 "
-       id="polygon4844" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="338.62,227.5 338.45,227.15 334.55,235.94 "
-       id="polygon4846" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="330.57,222.23 330.38,222.47 330.68,222.56 "
-       id="polygon4848" />
-    <line
-       x1="426.85001"
-       y1="127.7"
-       x2="426.85001"
-       y2="123.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4850" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="313.09,226.73 313,227.08 315.35,236.01 "
-       id="polygon4852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.83,226.26 336.39,226.28 332.5,235.07 "
-       id="polygon4854" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="338.45,227.15 338.15,226.82 334.26,235.61 "
-       id="polygon4856" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="315.83,226.11 315.5,225.91 317.86,234.83 "
-       id="polygon4858" />
-    <line
-       x1="418.84"
-       y1="160.95"
-       x2="420.45001"
-       y2="157.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4860" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="337.3,226.35 336.83,226.26 332.94,235.05 "
-       id="polygon4862" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="338.15,226.82 337.76,226.54 333.86,235.34 "
-       id="polygon4864" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="337.76,226.54 337.3,226.35 333.41,235.14 "
-       id="polygon4866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="313.32,226.4 313.09,226.73 315.45,235.66 "
-       id="polygon4868" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="315.5,225.91 315.08,225.8 317.44,234.73 "
-       id="polygon4870" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="352.49,232.17 352.6,231.94 361.05,224.74 "
-       id="polygon4872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="313.68,226.12 313.32,226.4 315.68,235.33 "
-       id="polygon4874" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="315.08,225.8 314.6,225.8 316.96,234.73 "
-       id="polygon4876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="314.12,225.91 313.68,226.12 316.04,235.04 "
-       id="polygon4878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="314.6,225.8 314.12,225.91 316.48,234.84 "
-       id="polygon4880" />
-    <line
-       x1="189.74001"
-       y1="136.05"
-       x2="191.55"
-       y2="134.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4882" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="354.82,234.03 354.71,234.27 363.16,227.06 "
-       id="polygon4884" />
-    <line
-       x1="426.67999"
-       y1="131.53999"
-       x2="426.85001"
-       y2="127.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4886" />
-    <line
-       x1="351.26999"
-       y1="307.67001"
-       x2="348.89001"
-       y2="310.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4888" />
-    <line
-       x1="420.45001"
-       y1="157.61"
-       x2="421.88"
-       y2="154.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4890" />
-    <line
-       x1="330.63"
-       y1="181.23"
-       x2="328.20999"
-       y2="179.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.81,231.82 353.1,231.82 361.55,224.63 "
-       id="polygon4894" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="354.81,233.71 354.82,234.03 363.27,226.83 "
-       id="polygon4896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.35,248.04 341.29,248.38 341.55,248.54 "
-       id="polygon4898" />
-    <line
-       x1="426.34"
-       y1="135.39"
-       x2="426.67999"
-       y2="131.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4900" />
-    <line
-       x1="421.88"
-       y1="154.13"
-       x2="423.14001"
-       y2="150.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4902" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="353.1,231.82 353.45,231.96 361.89,224.76 "
-       id="polygon4904" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="354.69,233.32 354.81,233.71 363.26,226.51 "
-       id="polygon4906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.71,246.5 340.3,246.32 340.29,246.61 "
-       id="polygon4908" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="353.45,231.96 353.82,232.2 362.26,225 "
-       id="polygon4910" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="354.47,232.92 354.69,233.32 363.14,226.13 "
-       id="polygon4912" />
-    <polygon
-       style="opacity:1;fill:#3aff3a"
-       points="341.38,247.2 341.56,247.64 341.3,247.67 "
-       id="polygon4914" />
-    <line
-       x1="342.04001"
-       y1="222.83"
-       x2="344.41"
-       y2="225.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4916" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="353.82,232.2 354.17,232.53 362.61,225.33 "
-       id="polygon4918" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="354.17,232.53 354.47,232.92 362.91,225.72 "
-       id="polygon4920" />
-    <line
-       x1="423.14001"
-       y1="150.52"
-       x2="424.20999"
-       y2="146.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4922" />
-    <line
-       x1="425.81"
-       y1="139.24001"
-       x2="426.34"
-       y2="135.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4924" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="343.13,227.53 343.34,227.34 338.11,236.37 "
-       id="polygon4926" />
-    <line
-       x1="248.67999"
-       y1="273.95999"
-       x2="248.09"
-       y2="271.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4928" />
-    <line
-       x1="424.20999"
-       y1="146.83"
-       x2="425.10001"
-       y2="143.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4930" />
-    <line
-       x1="425.10001"
-       y1="143.06"
-       x2="425.81"
-       y2="139.24001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4932" />
-    <polygon
-       style="opacity:1;fill:#00d800"
-       points="334.73,236.29 334.75,236.64 338.64,227.84 "
-       id="polygon4934" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="334.55,235.94 334.73,236.29 338.62,227.5 "
-       id="polygon4936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="340.84,225.55 340.62,225.74 335.39,234.77 "
-       id="polygon4938" />
-    <line
-       x1="353.42001"
-       y1="304.64001"
-       x2="351.26999"
-       y2="307.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4940" />
-    <line
-       x1="334.67999"
-       y1="99.800003"
-       x2="333.54001"
-       y2="100.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4942" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="333.43,223.12 333.32,222.82 330.89,232.85 "
-       id="polygon4944" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="343.42,227.06 343.36,226.73 338.13,235.77 "
-       id="polygon4946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.16,225.45 340.84,225.55 335.6,234.58 "
-       id="polygon4948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.13,235.2 332.5,235.07 336.39,226.28 "
-       id="polygon4950" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="317.86,234.83 318.19,235.04 315.83,226.11 "
-       id="polygon4952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="330.89,222.07 330.57,222.23 328.13,232.26 "
-       id="polygon4954" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="333.32,222.82 333.07,222.53 330.64,232.56 "
-       id="polygon4956" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="334.26,235.61 334.55,235.94 338.45,227.15 "
-       id="polygon4958" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="343.36,226.73 343.16,226.39 337.93,235.43 "
-       id="polygon4960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.56,225.45 341.16,225.45 335.93,234.48 "
-       id="polygon4962" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="315.35,236.01 315.45,235.66 313.09,226.73 "
-       id="polygon4964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.5,235.07 332.94,235.05 336.83,226.26 "
-       id="polygon4966" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="333.86,235.34 334.26,235.61 338.15,226.82 "
-       id="polygon4968" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="317.44,234.73 317.86,234.83 315.5,225.91 "
-       id="polygon4970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="331.31,221.98 330.89,222.07 328.45,232.09 "
-       id="polygon4972" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="332.94,235.05 333.41,235.14 337.3,226.35 "
-       id="polygon4974" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="333.07,222.53 332.71,222.28 330.28,232.31 "
-       id="polygon4976" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="333.41,235.14 333.86,235.34 337.76,226.54 "
-       id="polygon4978" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="343.16,226.39 342.85,226.06 337.62,235.09 "
-       id="polygon4980" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="342.01,225.57 341.56,225.45 336.33,234.48 "
-       id="polygon4982" />
-    <line
-       x1="264.70001"
-       y1="275.10999"
-       x2="268.04001"
-       y2="277.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4984" />
-    <line
-       x1="191.55"
-       y1="134.71001"
-       x2="193.55"
-       y2="133.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="315.45,235.66 315.68,235.33 313.32,226.4 "
-       id="polygon4988" />
-    <line
-       x1="261.51999"
-       y1="272.32999"
-       x2="264.70001"
-       y2="275.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4990" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="342.85,226.06 342.45,225.78 337.22,234.81 "
-       id="polygon4992" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="342.45,225.78 342.01,225.57 336.78,234.6 "
-       id="polygon4994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="331.79,221.99 331.31,221.98 328.88,232.01 "
-       id="polygon4996" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="332.71,222.28 332.27,222.09 329.83,232.13 "
-       id="polygon4998" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="316.96,234.73 317.44,234.73 315.08,225.8 "
-       id="polygon5000" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="332.27,222.09 331.79,221.99 329.35,232.02 "
-       id="polygon5002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="315.68,235.33 316.04,235.04 313.68,226.12 "
-       id="polygon5004" />
-    <line
-       x1="258.5"
-       y1="269.38"
-       x2="261.51999"
-       y2="272.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="316.48,234.84 316.96,234.73 314.6,225.8 "
-       id="polygon5008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="316.04,235.04 316.48,234.84 314.12,225.91 "
-       id="polygon5010" />
-    <line
-       x1="271.51001"
-       y1="280.09"
-       x2="275.10999"
-       y2="282.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5012" />
-    <line
-       x1="344.41"
-       y1="225.55"
-       x2="346.70999"
-       y2="228.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5014" />
-    <line
-       x1="255.67999"
-       y1="266.26999"
-       x2="258.5"
-       y2="269.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5016" />
-    <line
-       x1="333.03"
-       y1="182.97"
-       x2="330.63"
-       y2="181.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5018" />
-    <line
-       x1="355.34"
-       y1="301.41"
-       x2="353.42001"
-       y2="304.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5020" />
-    <line
-       x1="275.10999"
-       y1="282.23999"
-       x2="278.79999"
-       y2="284.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5022" />
-    <line
-       x1="253.03999"
-       y1="263.01999"
-       x2="255.67999"
-       y2="266.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5024" />
-    <line
-       x1="278.79999"
-       y1="284.14999"
-       x2="282.59"
-       y2="285.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5026" />
-    <line
-       x1="352.91"
-       y1="238.5"
-       x2="352.91"
-       y2="238.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5028" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="354.21,234.38 354.5,234.38 346.04,241.61 "
-       id="polygon5030" />
-    <line
-       x1="248.09"
-       y1="271.17001"
-       x2="247.75"
-       y2="268.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5032" />
-    <line
-       x1="250.61"
-       y1="259.67001"
-       x2="253.03999"
-       y2="263.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5034" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="341.62,248.11 341.56,247.64 334.97,252.03 "
-       id="polygon5036" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="341.09,246.8 340.71,246.5 334.12,250.88 "
-       id="polygon5038" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="338.13,235.77 338.19,236.09 343.42,227.06 "
-       id="polygon5040" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="341.56,247.64 341.38,247.2 334.79,251.57 "
-       id="polygon5042" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="341.38,247.2 341.09,246.8 334.49,251.18 "
-       id="polygon5044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.94,232.5 328.13,232.26 330.57,222.23 "
-       id="polygon5046" />
-    <line
-       x1="357.01001"
-       y1="297.98999"
-       x2="355.34"
-       y2="301.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5048" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="330.64,232.56 330.89,232.85 333.32,222.82 "
-       id="polygon5050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.6,234.58 335.93,234.48 341.16,225.45 "
-       id="polygon5052" />
-    <line
-       x1="282.59"
-       y1="285.81"
-       x2="286.45001"
-       y2="287.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5054" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="337.93,235.43 338.13,235.77 343.36,226.73 "
-       id="polygon5056" />
-    <line
-       x1="346.70999"
-       y1="228.49001"
-       x2="348.89999"
-       y2="231.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.13,232.26 328.45,232.09 330.89,222.07 "
-       id="polygon5060" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="354.17,232.53 353.82,232.2 345.35,239.42 "
-       id="polygon5062" />
-    <line
-       x1="350.98001"
-       y1="234.98"
-       x2="350.98001"
-       y2="234.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="353.1,231.82 352.81,231.82 344.34,239.04 "
-       id="polygon5066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.93,234.48 336.33,234.48 341.56,225.45 "
-       id="polygon5068" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="330.28,232.31 330.64,232.56 333.07,222.53 "
-       id="polygon5070" />
-    <line
-       x1="193.55"
-       y1="133.57001"
-       x2="195.73"
-       y2="132.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5072" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="337.62,235.09 337.93,235.43 343.16,226.39 "
-       id="polygon5074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.45,232.09 328.88,232.01 331.31,221.98 "
-       id="polygon5076" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="336.33,234.48 336.78,234.6 342.01,225.57 "
-       id="polygon5078" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="354.69,233.32 354.47,232.92 346,240.14 "
-       id="polygon5080" />
-    <line
-       x1="351.32001"
-       y1="235.61"
-       x2="351.32001"
-       y2="235.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5082" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="354.82,234.03 354.81,233.71 346.35,240.93 "
-       id="polygon5084" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="329.83,232.13 330.28,232.31 332.71,222.28 "
-       id="polygon5086" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="337.22,234.81 337.62,235.09 342.85,226.06 "
-       id="polygon5088" />
-    <line
-       x1="335.89999"
-       y1="99.330002"
-       x2="334.67999"
-       y2="99.800003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5090" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="336.78,234.6 337.22,234.81 342.45,225.78 "
-       id="polygon5092" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="353.45,231.96 353.1,231.82 344.63,239.04 "
-       id="polygon5094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.88,232.01 329.35,232.02 331.79,221.99 "
-       id="polygon5096" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="329.35,232.02 329.83,232.13 332.27,222.09 "
-       id="polygon5098" />
-    <line
-       x1="248.39"
-       y1="256.23001"
-       x2="250.61"
-       y2="259.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5100" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="354.81,233.71 354.69,233.32 346.23,240.55 "
-       id="polygon5102" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="353.82,232.2 353.45,231.96 344.98,239.18 "
-       id="polygon5104" />
-    <line
-       x1="286.45001"
-       y1="287.20001"
-       x2="290.35999"
-       y2="288.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5106" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="354.47,232.92 354.17,232.53 345.7,239.75 "
-       id="polygon5108" />
-    <line
-       x1="335.38"
-       y1="184.99001"
-       x2="333.03"
-       y2="182.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5110" />
-    <line
-       x1="358.44"
-       y1="294.39999"
-       x2="357.01001"
-       y2="297.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="344.34,239.04 344.63,239.04 353.1,231.82 "
-       id="polygon5114" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="344.63,239.04 344.98,239.18 353.45,231.96 "
-       id="polygon5116" />
-    <line
-       x1="348.89999"
-       y1="231.64"
-       x2="350.72"
-       y2="234.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5118" />
-    <line
-       x1="246.41"
-       y1="252.72"
-       x2="248.39"
-       y2="256.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5120" />
-    <line
-       x1="290.35999"
-       y1="288.31"
-       x2="294.29999"
-       y2="289.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5122" />
-    <line
-       x1="247.75"
-       y1="268.5"
-       x2="247.66"
-       y2="265.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5124" />
-    <line
-       x1="359.62"
-       y1="290.67001"
-       x2="358.44"
-       y2="294.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5126" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="346.35,240.93 346.36,241.25 354.82,234.03 "
-       id="polygon5128" />
-    <line
-       x1="195.73"
-       y1="132.62"
-       x2="198.08"
-       y2="131.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.13,235.2 331.88,235.43 327.97,244.25 "
-       id="polygon5132" />
-    <line
-       x1="294.29999"
-       y1="289.13"
-       x2="298.25"
-       y2="289.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5134" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="335.03,252.49 334.95,252.92 341.55,248.54 "
-       id="polygon5136" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="346.23,240.55 346.35,240.93 354.81,233.71 "
-       id="polygon5138" />
-    <line
-       x1="244.64999"
-       y1="249.17999"
-       x2="246.41"
-       y2="252.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5140" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="346,240.14 346.23,240.55 354.69,233.32 "
-       id="polygon5142" />
-    <line
-       x1="352.56"
-       y1="237.86"
-       x2="351.32001"
-       y2="235.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5144" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="334.97,252.03 335.03,252.49 341.62,248.11 "
-       id="polygon5146" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="344.98,239.18 345.35,239.42 353.82,232.2 "
-       id="polygon5148" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="334.12,250.88 334.49,251.18 341.09,246.8 "
-       id="polygon5150" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="334.79,251.57 334.97,252.03 341.56,247.64 "
-       id="polygon5152" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="315.45,235.66 315.35,236.01 317.71,244.97 "
-       id="polygon5154" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="334.49,251.18 334.79,251.57 341.38,247.2 "
-       id="polygon5156" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="318.19,235.04 317.86,234.83 320.23,243.79 "
-       id="polygon5158" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="345.35,239.42 345.7,239.75 354.17,232.53 "
-       id="polygon5160" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="345.7,239.75 346,240.14 354.47,232.92 "
-       id="polygon5162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.94,235.05 332.5,235.07 328.59,243.89 "
-       id="polygon5164" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="334.55,235.94 334.26,235.61 330.35,244.43 "
-       id="polygon5166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="315.68,235.33 315.45,235.66 317.81,244.62 "
-       id="polygon5168" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="333.41,235.14 332.94,235.05 329.03,243.88 "
-       id="polygon5170" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="334.26,235.61 333.86,235.34 329.96,244.16 "
-       id="polygon5172" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="317.86,234.83 317.44,234.73 319.8,243.68 "
-       id="polygon5174" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="333.86,235.34 333.41,235.14 329.5,243.97 "
-       id="polygon5176" />
-    <line
-       x1="360.54999"
-       y1="286.81"
-       x2="359.62"
-       y2="290.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="316.04,235.04 315.68,235.33 318.04,244.29 "
-       id="polygon5180" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="317.44,234.73 316.96,234.73 319.33,243.69 "
-       id="polygon5182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="316.48,234.84 316.04,235.04 318.4,244 "
-       id="polygon5184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="316.96,234.73 316.48,234.84 318.84,243.8 "
-       id="polygon5186" />
-    <line
-       x1="337.66"
-       y1="187.28999"
-       x2="335.38"
-       y2="184.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5188" />
-    <line
-       x1="337.17999"
-       y1="99.150002"
-       x2="335.89999"
-       y2="99.330002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5190" />
-    <line
-       x1="298.25"
-       y1="289.66"
-       x2="302.20001"
-       y2="289.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5192" />
-    <line
-       x1="352.91"
-       y1="238.5"
-       x2="354.70001"
-       y2="242.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5194" />
-    <line
-       x1="243.13"
-       y1="245.61"
-       x2="244.64999"
-       y2="249.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5196" />
-    <line
-       x1="361.22"
-       y1="282.85001"
-       x2="360.54999"
-       y2="286.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.13,232.26 327.94,232.5 325.49,242.56 "
-       id="polygon5200" />
-    <line
-       x1="198.08"
-       y1="131.88"
-       x2="200.58"
-       y2="131.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5202" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="330.99,233.14 330.89,232.85 328.45,242.91 "
-       id="polygon5204" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="332.86,245.43 332.65,245.63 337.9,236.57 "
-       id="polygon5206" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="338.19,236.09 338.13,235.77 332.88,244.83 "
-       id="polygon5208" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="329.96,244.16 330.35,244.43 334.26,235.61 "
-       id="polygon5210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.93,234.48 335.6,234.58 330.35,243.63 "
-       id="polygon5212" />
-    <line
-       x1="302.20001"
-       y1="289.88"
-       x2="306.10999"
-       y2="289.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.45,232.09 328.13,232.26 325.69,242.32 "
-       id="polygon5216" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="330.89,232.85 330.64,232.56 328.2,242.62 "
-       id="polygon5218" />
-    <line
-       x1="354.70001"
-       y1="242.17999"
-       x2="356.31"
-       y2="245.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5220" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="338.13,235.77 337.93,235.43 332.68,244.48 "
-       id="polygon5222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.33,234.48 335.93,234.48 330.68,243.54 "
-       id="polygon5224" />
-    <line
-       x1="361.63"
-       y1="278.79001"
-       x2="361.22"
-       y2="282.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.88,232.01 328.45,232.09 326.01,242.15 "
-       id="polygon5228" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="330.64,232.56 330.28,232.31 327.83,242.37 "
-       id="polygon5230" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="337.93,235.43 337.62,235.09 332.37,244.15 "
-       id="polygon5232" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="336.78,234.6 336.33,234.48 331.08,243.54 "
-       id="polygon5234" />
-    <line
-       x1="247.66"
-       y1="265.97"
-       x2="247.81"
-       y2="263.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.35,232.02 328.88,232.01 326.43,242.07 "
-       id="polygon5238" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="337.62,235.09 337.22,234.81 331.97,243.87 "
-       id="polygon5240" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="330.28,232.31 329.83,232.13 327.39,242.18 "
-       id="polygon5242" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="337.22,234.81 336.78,234.6 331.53,243.66 "
-       id="polygon5244" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="320.56,243.99 320.77,244.27 318.4,235.32 "
-       id="polygon5246" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="329.83,232.13 329.35,232.02 326.9,242.08 "
-       id="polygon5248" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="320.23,243.79 320.56,243.99 318.19,235.04 "
-       id="polygon5250" />
-    <line
-       x1="241.86"
-       y1="242.05"
-       x2="243.13"
-       y2="245.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5252" />
-    <line
-       x1="356.31"
-       y1="245.99001"
-       x2="357.73999"
-       y2="249.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.23,244.02 328.59,243.89 332.5,235.07 "
-       id="polygon5256" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="317.71,244.97 317.81,244.62 315.45,235.66 "
-       id="polygon5258" />
-    <line
-       x1="361.79999"
-       y1="274.67999"
-       x2="361.63"
-       y2="278.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5260" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="319.8,243.68 320.23,243.79 317.86,234.83 "
-       id="polygon5262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.59,243.89 329.03,243.88 332.94,235.05 "
-       id="polygon5264" />
-    <line
-       x1="339.85999"
-       y1="189.84"
-       x2="337.66"
-       y2="187.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5266" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="329.03,243.88 329.5,243.97 333.41,235.14 "
-       id="polygon5268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="317.81,244.62 318.04,244.29 315.68,235.33 "
-       id="polygon5270" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="329.5,243.97 329.96,244.16 333.86,235.34 "
-       id="polygon5272" />
-    <line
-       x1="306.10999"
-       y1="289.79999"
-       x2="309.98001"
-       y2="289.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5274" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="319.33,243.69 319.8,243.68 317.44,234.73 "
-       id="polygon5276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.04,244.29 318.4,244 316.04,235.04 "
-       id="polygon5278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.84,243.8 319.33,243.69 316.96,234.73 "
-       id="polygon5280" />
-    <line
-       x1="357.73999"
-       y1="249.91"
-       x2="358.98001"
-       y2="253.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.4,244 318.84,243.8 316.48,234.84 "
-       id="polygon5284" />
-    <line
-       x1="361.70999"
-       y1="270.51999"
-       x2="361.79999"
-       y2="274.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5286" />
-    <line
-       x1="358.98001"
-       y1="253.94"
-       x2="360"
-       y2="258.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="344.63,239.04 344.34,239.04 335.85,246.27 "
-       id="polygon5290" />
-    <line
-       x1="361.38"
-       y1="266.34"
-       x2="361.70999"
-       y2="270.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5292" />
-    <line
-       x1="200.58"
-       y1="131.36"
-       x2="203.2"
-       y2="131.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5294" />
-    <line
-       x1="360"
-       y1="258.03"
-       x2="360.79999"
-       y2="262.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5296" />
-    <line
-       x1="360.79999"
-       y1="262.17999"
-       x2="361.38"
-       y2="266.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5298" />
-    <line
-       x1="338.51999"
-       y1="99.25"
-       x2="337.17999"
-       y2="99.150002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5300" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="346.36,241.25 346.35,240.93 337.86,248.17 "
-       id="polygon5302" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="344.98,239.18 344.63,239.04 336.14,246.28 "
-       id="polygon5304" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="346.35,240.93 346.23,240.55 337.73,247.79 "
-       id="polygon5306" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="345.35,239.42 344.98,239.18 336.49,246.41 "
-       id="polygon5308" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="328.2,242.62 328.45,242.91 330.89,232.85 "
-       id="polygon5310" />
-    <line
-       x1="309.98001"
-       y1="289.42001"
-       x2="313.79001"
-       y2="288.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="330.35,243.63 330.68,243.54 335.93,234.48 "
-       id="polygon5314" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="346.23,240.55 346,240.14 337.51,247.38 "
-       id="polygon5316" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="345.7,239.75 345.35,239.42 336.86,246.66 "
-       id="polygon5318" />
-    <line
-       x1="240.83"
-       y1="238.52"
-       x2="241.86"
-       y2="242.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5320" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="332.68,244.48 332.88,244.83 338.13,235.77 "
-       id="polygon5322" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="346,240.14 345.7,239.75 337.21,246.99 "
-       id="polygon5324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="325.69,242.32 326.01,242.15 328.45,232.09 "
-       id="polygon5326" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="327.83,242.37 328.2,242.62 330.64,232.56 "
-       id="polygon5328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="330.68,243.54 331.08,243.54 336.33,234.48 "
-       id="polygon5330" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="332.37,244.15 332.68,244.48 337.93,235.43 "
-       id="polygon5332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.01,242.15 326.43,242.07 328.88,232.01 "
-       id="polygon5334" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="331.08,243.54 331.53,243.66 336.78,234.6 "
-       id="polygon5336" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="327.39,242.18 327.83,242.37 330.28,232.31 "
-       id="polygon5338" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="331.97,243.87 332.37,244.15 337.62,235.09 "
-       id="polygon5340" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="331.53,243.66 331.97,243.87 337.22,234.81 "
-       id="polygon5342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.43,242.07 326.9,242.08 329.35,232.02 "
-       id="polygon5344" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="326.9,242.08 327.39,242.18 329.83,232.13 "
-       id="polygon5346" />
-    <line
-       x1="341.95001"
-       y1="192.64"
-       x2="339.85999"
-       y2="189.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5348" />
-    <line
-       x1="247.81"
-       y1="263.60001"
-       x2="248.21001"
-       y2="261.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5350" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="337.87,248.49 337.76,248.73 346.25,241.48 "
-       id="polygon5352" />
-    <line
-       x1="313.79001"
-       y1="288.73001"
-       x2="317.51001"
-       y2="287.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5354" />
-    <line
-       x1="203.2"
-       y1="131.07001"
-       x2="205.95"
-       y2="131"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="335.85,246.27 336.14,246.28 344.63,239.04 "
-       id="polygon5358" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="337.86,248.17 337.87,248.49 346.36,241.25 "
-       id="polygon5360" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="336.14,246.28 336.49,246.41 344.98,239.18 "
-       id="polygon5362" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="337.73,247.79 337.86,248.17 346.35,240.93 "
-       id="polygon5364" />
-    <line
-       x1="240.05"
-       y1="235.03999"
-       x2="240.83"
-       y2="238.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5366" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="334.95,252.92 335.03,252.49 328.41,256.89 "
-       id="polygon5368" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="335.03,252.49 334.97,252.03 328.35,256.42 "
-       id="polygon5370" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="336.49,246.41 336.86,246.66 345.35,239.42 "
-       id="polygon5372" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="337.51,247.38 337.73,247.79 346.23,240.55 "
-       id="polygon5374" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="334.97,252.03 334.79,251.57 328.16,255.97 "
-       id="polygon5376" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="336.86,246.66 337.21,246.99 345.7,239.75 "
-       id="polygon5378" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="337.21,246.99 337.51,247.38 346,240.14 "
-       id="polygon5380" />
-    <line
-       x1="215.07001"
-       y1="230.07001"
-       x2="211.42999"
-       y2="230.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5382" />
-    <line
-       x1="218.66"
-       y1="229.39"
-       x2="215.07001"
-       y2="230.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5384" />
-    <line
-       x1="211.42999"
-       y1="230.50999"
-       x2="207.77"
-       y2="230.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5386" />
-    <line
-       x1="222.17"
-       y1="228.48"
-       x2="218.66"
-       y2="229.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5388" />
-    <line
-       x1="317.51001"
-       y1="287.73999"
-       x2="321.13"
-       y2="286.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5390" />
-    <line
-       x1="207.77"
-       y1="230.72"
-       x2="204.09"
-       y2="230.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5392" />
-    <line
-       x1="225.59"
-       y1="227.33"
-       x2="222.17"
-       y2="228.48"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5394" />
-    <line
-       x1="339.89001"
-       y1="99.650002"
-       x2="338.51999"
-       y2="99.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5396" />
-    <line
-       x1="204.09"
-       y1="230.7"
-       x2="200.41"
-       y2="230.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5398" />
-    <line
-       x1="343.92001"
-       y1="195.67999"
-       x2="341.95001"
-       y2="192.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5400" />
-    <line
-       x1="228.89999"
-       y1="225.96001"
-       x2="225.59"
-       y2="227.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5402" />
-    <line
-       x1="205.95"
-       y1="131"
-       x2="208.78"
-       y2="131.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5404" />
-    <line
-       x1="200.41"
-       y1="230.45"
-       x2="196.77"
-       y2="229.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5406" />
-    <line
-       x1="232.09"
-       y1="224.36"
-       x2="228.89999"
-       y2="225.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5408" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="320.77,244.27 320.56,243.99 322.94,252.98 "
-       id="polygon5410" />
-    <line
-       x1="268.67001"
-       y1="170.33"
-       x2="270.76999"
-       y2="173.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5412" />
-    <line
-       x1="270.76999"
-       y1="173.61"
-       x2="273.01001"
-       y2="176.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5414" />
-    <line
-       x1="266.73001"
-       y1="166.97"
-       x2="268.67001"
-       y2="170.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5416" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="317.81,244.62 317.71,244.97 320.09,253.96 "
-       id="polygon5418" />
-    <line
-       x1="273.01001"
-       y1="176.78999"
-       x2="275.39001"
-       y2="179.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5420" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="320.56,243.99 320.23,243.79 322.61,252.78 "
-       id="polygon5422" />
-    <line
-       x1="321.13"
-       y1="286.44"
-       x2="324.63"
-       y2="284.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5424" />
-    <line
-       x1="239.50999"
-       y1="231.63"
-       x2="240.05"
-       y2="235.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5426" />
-    <line
-       x1="196.77"
-       y1="229.98"
-       x2="193.17999"
-       y2="229.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.03,243.88 328.59,243.89 324.67,252.75 "
-       id="polygon5430" />
-    <line
-       x1="235.13"
-       y1="222.55"
-       x2="232.09"
-       y2="224.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.04,244.29 317.81,244.62 320.18,253.61 "
-       id="polygon5434" />
-    <line
-       x1="248.21001"
-       y1="261.41"
-       x2="248.84"
-       y2="259.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5436" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="320.23,243.79 319.8,243.68 322.18,252.67 "
-       id="polygon5438" />
-    <line
-       x1="264.94"
-       y1="163.55"
-       x2="266.73001"
-       y2="166.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.58,251.62 329.55,251.71 336.14,246.28 "
-       id="polygon5442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="336.14,246.28 335.85,246.27 329.58,251.62 "
-       id="polygon5444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.55,251.71 329.43,252 336.14,246.28 "
-       id="polygon5446" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="332.65,245.63 332.86,245.43 327.6,254.52 "
-       id="polygon5448" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="329.5,243.97 329.03,243.88 325.11,252.73 "
-       id="polygon5450" />
-    <line
-       x1="275.39001"
-       y1="179.84"
-       x2="277.91"
-       y2="182.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5452" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="329.96,244.16 329.5,243.97 325.58,252.82 "
-       id="polygon5454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.4,244 318.04,244.29 320.42,253.27 "
-       id="polygon5456" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="319.8,243.68 319.33,243.69 321.7,252.67 "
-       id="polygon5458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="318.84,243.8 318.4,244 320.77,252.99 "
-       id="polygon5460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="319.33,243.69 318.84,243.8 321.21,252.78 "
-       id="polygon5462" />
-    <line
-       x1="238"
-       y1="220.53"
-       x2="235.13"
-       y2="222.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5464" />
-    <line
-       x1="193.17999"
-       y1="229.28999"
-       x2="189.64999"
-       y2="228.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5466" />
-    <line
-       x1="263.32001"
-       y1="160.09"
-       x2="264.94"
-       y2="163.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5468" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="327.42,253.57 327.62,253.92 332.88,244.83 "
-       id="polygon5470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.87,253.09 327.91,253.05 327.34,253.53 "
-       id="polygon5472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.34,253.53 327.51,253.54 327.77,253.21 "
-       id="polygon5474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.87,253.09 327.34,253.53 327.77,253.21 "
-       id="polygon5476" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="332.94,245.16 332.88,244.83 327.62,253.92 "
-       id="polygon5478" />
-    <line
-       x1="277.91"
-       y1="182.75"
-       x2="280.54001"
-       y2="185.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5480" />
-    <line
-       x1="345.75"
-       y1="198.92999"
-       x2="343.92001"
-       y2="195.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.01,242.15 325.69,242.32 323.23,252.41 "
-       id="polygon5484" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="332.88,244.83 332.68,244.48 327.42,253.57 "
-       id="polygon5486" />
-    <line
-       x1="208.78"
-       y1="131.17"
-       x2="211.69"
-       y2="131.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5488" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="328.41,256.89 328.34,257.32 334.95,252.92 "
-       id="polygon5490" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="325.11,252.73 325.58,252.82 329.5,243.97 "
-       id="polygon5492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.13,251.38 326.68,250.1 325.08,252.72 "
-       id="polygon5494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="325.08,252.72 325.41,252.62 326.13,251.38 "
-       id="polygon5496" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="326.89,249.31 326.07,251.53 325.75,252.71 "
-       id="polygon5498" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="325.75,252.71 326,253 326.89,249.31 "
-       id="polygon5500" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="325.63,252.63 325.75,252.71 325.96,251.84 "
-       id="polygon5502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="331.08,243.54 330.68,243.54 325.41,252.62 "
-       id="polygon5504" />
-    <line
-       x1="324.63"
-       y1="284.85999"
-       x2="327.98001"
-       y2="282.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.43,242.07 326.01,242.15 323.55,252.24 "
-       id="polygon5508" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="328.2,242.62 327.83,242.37 325.38,252.46 "
-       id="polygon5510" />
-    <polygon
-       style="opacity:1;fill:#00c000"
-       points="328.35,256.42 328.41,256.89 335.03,252.49 "
-       id="polygon5512" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="332.68,244.48 332.37,244.15 327.11,253.24 "
-       id="polygon5514" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="331.53,243.66 331.08,243.54 325.82,252.63 "
-       id="polygon5516" />
-    <line
-       x1="240.7"
-       y1="218.3"
-       x2="238"
-       y2="220.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5518" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="328.16,255.97 328.35,256.42 334.97,252.03 "
-       id="polygon5520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.9,242.08 326.43,242.07 323.98,252.16 "
-       id="polygon5522" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="327.83,242.37 327.39,242.18 324.94,252.27 "
-       id="polygon5524" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="332.37,244.15 331.97,243.87 326.71,252.96 "
-       id="polygon5526" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="331.97,243.87 331.53,243.66 326.26,252.75 "
-       id="polygon5528" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="327.39,242.18 326.9,242.08 324.45,252.17 "
-       id="polygon5530" />
-    <line
-       x1="261.88"
-       y1="156.62"
-       x2="263.32001"
-       y2="160.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5532" />
-    <line
-       x1="189.64999"
-       y1="228.39"
-       x2="186.21001"
-       y2="227.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5534" />
-    <line
-       x1="280.54001"
-       y1="185.5"
-       x2="283.29001"
-       y2="188.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5536" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="327.62,253.92 327.68,254.24 332.94,245.16 "
-       id="polygon5538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.55,251.71 329.58,251.62 327.91,253.05 "
-       id="polygon5540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.87,253.09 329.55,251.71 327.91,253.05 "
-       id="polygon5542" />
-    <line
-       x1="341.29001"
-       y1="100.33"
-       x2="339.89001"
-       y2="99.650002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5544" />
-    <line
-       x1="243.2"
-       y1="215.89"
-       x2="240.7"
-       y2="218.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5546" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="337.87,248.49 337.86,248.17 329.35,255.43 "
-       id="polygon5548" />
-    <line
-       x1="239.23"
-       y1="228.32001"
-       x2="239.50999"
-       y2="231.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5550" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="336.49,246.41 336.14,246.28 327.63,253.54 "
-       id="polygon5552" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="337.86,248.17 337.73,247.79 329.22,255.04 "
-       id="polygon5554" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="336.86,246.66 336.49,246.41 327.98,253.67 "
-       id="polygon5556" />
-    <line
-       x1="327.98001"
-       y1="282.98001"
-       x2="331.19"
-       y2="280.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5558" />
-    <line
-       x1="260.60999"
-       y1="153.14999"
-       x2="261.88"
-       y2="156.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5560" />
-    <line
-       x1="186.21001"
-       y1="227.28999"
-       x2="182.89"
-       y2="226"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5562" />
-    <line
-       x1="283.29001"
-       y1="188.06"
-       x2="286.13"
-       y2="190.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5564" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="337.73,247.79 337.51,247.38 329,254.64 "
-       id="polygon5566" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="337.21,246.99 336.86,246.66 328.34,253.92 "
-       id="polygon5568" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="337.51,247.38 337.21,246.99 328.7,254.25 "
-       id="polygon5570" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="320.09,253.96 320.18,253.61 317.81,244.62 "
-       id="polygon5572" />
-    <line
-       x1="347.42999"
-       y1="202.38"
-       x2="345.75"
-       y2="198.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5574" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="322.18,252.67 322.61,252.78 320.23,243.79 "
-       id="polygon5576" />
-    <line
-       x1="211.69"
-       y1="131.57001"
-       x2="214.64999"
-       y2="132.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5578" />
-    <line
-       x1="245.5"
-       y1="213.3"
-       x2="243.2"
-       y2="215.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="320.18,253.61 320.42,253.27 318.04,244.29 "
-       id="polygon5582" />
-    <polygon
-       style="opacity:1;fill:#008600"
-       points="321.7,252.67 322.18,252.67 319.8,243.68 "
-       id="polygon5584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="320.42,253.27 320.77,252.99 318.4,244 "
-       id="polygon5586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="321.21,252.78 321.7,252.67 319.33,243.69 "
-       id="polygon5588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="320.77,252.99 321.21,252.78 318.84,243.8 "
-       id="polygon5590" />
-    <line
-       x1="248.84"
-       y1="259.42001"
-       x2="249.69"
-       y2="257.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5592" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="326.07,251.53 326.89,249.31 328.45,242.91 "
-       id="polygon5594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="326.68,250.1 326.13,251.38 330.68,243.54 "
-       id="polygon5596" />
-    <line
-       x1="286.13"
-       y1="190.42999"
-       x2="289.06"
-       y2="192.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5598" />
-    <line
-       x1="182.89"
-       y1="226"
-       x2="179.67999"
-       y2="224.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5600" />
-    <line
-       x1="259.51001"
-       y1="149.71001"
-       x2="260.60999"
-       y2="153.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5602" />
-    <line
-       x1="247.59"
-       y1="210.53999"
-       x2="245.5"
-       y2="213.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="325.41,252.62 325.82,252.63 331.08,243.54 "
-       id="polygon5606" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="325.38,252.46 325.96,251.84 328.2,242.62 "
-       id="polygon5608" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="325.38,252.46 325.63,252.63 325.96,251.84 "
-       id="polygon5610" />
-    <line
-       x1="331.19"
-       y1="280.82001"
-       x2="334.23001"
-       y2="278.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5612" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="327.11,253.24 327.42,253.57 332.68,244.48 "
-       id="polygon5614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.55,252.24 323.98,252.16 326.43,242.07 "
-       id="polygon5616" />
-    <polygon
-       style="opacity:1;fill:#00cf00"
-       points="329.36,255.75 329.25,255.98 337.76,248.73 "
-       id="polygon5618" />
-    <polygon
-       style="opacity:1;fill:#008d00"
-       points="324.94,252.27 325.38,252.46 327.83,242.37 "
-       id="polygon5620" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="325.82,252.63 326.26,252.75 331.53,243.66 "
-       id="polygon5622" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="326.71,252.96 327.11,253.24 332.37,244.15 "
-       id="polygon5624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.98,252.16 324.45,252.17 326.9,242.08 "
-       id="polygon5626" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="326.26,252.75 326.71,252.96 331.97,243.87 "
-       id="polygon5628" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="324.45,252.17 324.94,252.27 327.39,242.18 "
-       id="polygon5630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.51,253.54 327.63,253.54 329.43,252 "
-       id="polygon5632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="327.77,253.21 327.51,253.54 329.43,252 "
-       id="polygon5634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.55,251.71 327.77,253.21 329.43,252 "
-       id="polygon5636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="329.55,251.71 327.87,253.09 327.77,253.21 "
-       id="polygon5638" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="329.35,255.43 329.36,255.75 337.87,248.49 "
-       id="polygon5640" />
-    <line
-       x1="348.92999"
-       y1="206.00999"
-       x2="347.42999"
-       y2="202.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5642" />
-    <line
-       x1="214.64999"
-       y1="132.21001"
-       x2="217.64999"
-       y2="133.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5644" />
-    <line
-       x1="239.17999"
-       y1="225.14"
-       x2="239.23"
-       y2="228.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5646" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="327.63,253.54 327.98,253.67 336.49,246.41 "
-       id="polygon5648" />
-    <line
-       x1="249.44"
-       y1="207.62"
-       x2="247.59"
-       y2="210.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5650" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="329.22,255.04 329.35,255.43 337.86,248.17 "
-       id="polygon5652" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="327.98,253.67 328.34,253.92 336.86,246.66 "
-       id="polygon5654" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="329,254.64 329.22,255.04 337.73,247.79 "
-       id="polygon5656" />
-    <line
-       x1="289.06"
-       y1="192.59"
-       x2="292.07001"
-       y2="194.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5658" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="328.34,253.92 328.7,254.25 337.21,246.99 "
-       id="polygon5660" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="328.7,254.25 329,254.64 337.51,247.38 "
-       id="polygon5662" />
-    <line
-       x1="334.23001"
-       y1="278.39999"
-       x2="337.09"
-       y2="275.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5664" />
-    <line
-       x1="179.67999"
-       y1="224.53"
-       x2="176.62"
-       y2="222.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5666" />
-    <line
-       x1="258.59"
-       y1="146.31"
-       x2="259.51001"
-       y2="149.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5668" />
-    <line
-       x1="342.69"
-       y1="101.3"
-       x2="341.29001"
-       y2="100.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5670" />
-    <line
-       x1="251.05"
-       y1="204.57001"
-       x2="249.44"
-       y2="207.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5672" />
-    <line
-       x1="350.25"
-       y1="209.78999"
-       x2="348.92999"
-       y2="206.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5674" />
-    <line
-       x1="217.64999"
-       y1="133.09"
-       x2="220.66"
-       y2="134.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5676" />
-    <line
-       x1="337.09"
-       y1="275.72"
-       x2="339.75"
-       y2="272.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5678" />
-    <line
-       x1="292.07001"
-       y1="194.52"
-       x2="295.14001"
-       y2="196.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5680" />
-    <line
-       x1="252.42"
-       y1="201.39"
-       x2="251.05"
-       y2="204.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5682" />
-    <line
-       x1="176.62"
-       y1="222.89"
-       x2="173.72"
-       y2="221.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5684" />
-    <line
-       x1="249.69"
-       y1="257.64001"
-       x2="250.75999"
-       y2="256.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5686" />
-    <line
-       x1="257.84"
-       y1="142.99001"
-       x2="258.59"
-       y2="146.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5688" />
-    <line
-       x1="239.38"
-       y1="222.09"
-       x2="239.17999"
-       y2="225.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5690" />
-    <line
-       x1="339.75"
-       y1="272.81"
-       x2="342.20001"
-       y2="269.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5692" />
-    <line
-       x1="253.53999"
-       y1="198.11"
-       x2="252.42"
-       y2="201.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5694" />
-    <line
-       x1="351.37"
-       y1="213.71001"
-       x2="350.25"
-       y2="209.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5696" />
-    <line
-       x1="220.66"
-       y1="134.2"
-       x2="223.66"
-       y2="135.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5698" />
-    <line
-       x1="295.14001"
-       y1="196.21001"
-       x2="298.26001"
-       y2="197.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5700" />
-    <line
-       x1="173.72"
-       y1="221.10001"
-       x2="170.99001"
-       y2="219.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5702" />
-    <line
-       x1="254.39"
-       y1="194.74001"
-       x2="253.53999"
-       y2="198.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5704" />
-    <line
-       x1="342.20001"
-       y1="269.67001"
-       x2="344.42999"
-       y2="266.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5706" />
-    <line
-       x1="352.28"
-       y1="217.75"
-       x2="351.37"
-       y2="213.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5708" />
-    <line
-       x1="344.09"
-       y1="102.55"
-       x2="342.69"
-       y2="101.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5710" />
-    <line
-       x1="257.26999"
-       y1="139.77"
-       x2="257.84"
-       y2="142.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5712" />
-    <line
-       x1="223.66"
-       y1="135.55"
-       x2="226.64"
-       y2="137.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5714" />
-    <line
-       x1="254.99001"
-       y1="191.28999"
-       x2="254.39"
-       y2="194.74001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5716" />
-    <line
-       x1="352.95999"
-       y1="221.88"
-       x2="352.28"
-       y2="217.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5718" />
-    <line
-       x1="298.26001"
-       y1="197.64"
-       x2="301.41"
-       y2="198.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5720" />
-    <line
-       x1="170.99001"
-       y1="219.17"
-       x2="168.45"
-       y2="217.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5722" />
-    <line
-       x1="329.20001"
-       y1="254.67999"
-       x2="329.14001"
-       y2="254.66"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5724" />
-    <line
-       x1="239.81"
-       y1="219.21001"
-       x2="239.38"
-       y2="222.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5726" />
-    <line
-       x1="255.32001"
-       y1="187.78999"
-       x2="254.99001"
-       y2="191.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5728" />
-    <line
-       x1="226.64"
-       y1="137.12"
-       x2="229.56"
-       y2="138.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5730" />
-    <line
-       x1="346.44"
-       y1="262.79001"
-       x2="348.20999"
-       y2="259.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5732" />
-    <line
-       x1="250.75999"
-       y1="256.09"
-       x2="252.03"
-       y2="254.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5734" />
-    <line
-       x1="353.42001"
-       y1="226.07001"
-       x2="352.95999"
-       y2="221.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5736" />
-    <line
-       x1="325.42999"
-       y1="251.94"
-       x2="325.54999"
-       y2="251.99001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5738" />
-    <line
-       x1="329.48001"
-       y1="263.16"
-       x2="329.63"
-       y2="262.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5740" />
-    <line
-       x1="348.20999"
-       y1="259.07999"
-       x2="349.73999"
-       y2="255.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5742" />
-    <line
-       x1="255.39"
-       y1="184.25"
-       x2="255.32001"
-       y2="187.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5744" />
-    <line
-       x1="256.88"
-       y1="136.64999"
-       x2="257.26999"
-       y2="139.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5746" />
-    <line
-       x1="330.28"
-       y1="256.67001"
-       x2="330.35001"
-       y2="256.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5748" />
-    <line
-       x1="229.56"
-       y1="138.91"
-       x2="232.41"
-       y2="140.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5750" />
-    <line
-       x1="353.64001"
-       y1="230.3"
-       x2="353.42001"
-       y2="226.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5752" />
-    <line
-       x1="349.73999"
-       y1="255.23"
-       x2="351.01999"
-       y2="251.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5754" />
-    <line
-       x1="301.41"
-       y1="198.82001"
-       x2="304.59"
-       y2="199.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5756" />
-    <line
-       x1="255.2"
-       y1="180.69"
-       x2="255.39"
-       y2="184.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5758" />
-    <line
-       x1="353.62"
-       y1="234.55"
-       x2="353.64001"
-       y2="230.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5760" />
-    <line
-       x1="322.82001"
-       y1="251.58"
-       x2="322.98999"
-       y2="251.59"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5762" />
-    <line
-       x1="351.01999"
-       y1="251.25"
-       x2="352.04999"
-       y2="247.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5764" />
-    <line
-       x1="168.45"
-       y1="217.12"
-       x2="166.12"
-       y2="214.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5766" />
-    <line
-       x1="328.09"
-       y1="253.48"
-       x2="327.92999"
-       y2="253.36"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5768" />
-    <line
-       x1="353.35001"
-       y1="238.8"
-       x2="353.62"
-       y2="234.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5770" />
-    <line
-       x1="330.41"
-       y1="257.26001"
-       x2="330.34"
-       y2="257.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5772" />
-    <line
-       x1="232.41"
-       y1="140.91"
-       x2="235.17999"
-       y2="143.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5774" />
-    <line
-       x1="345.47"
-       y1="104.07"
-       x2="344.09"
-       y2="102.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5776" />
-    <line
-       x1="352.04999"
-       y1="247.17"
-       x2="352.82001"
-       y2="243.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5778" />
-    <line
-       x1="319.57001"
-       y1="252.46001"
-       x2="319.82001"
-       y2="252.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5780" />
-    <line
-       x1="352.82001"
-       y1="243.00999"
-       x2="353.35001"
-       y2="238.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5782" />
-    <line
-       x1="254.75"
-       y1="177.13"
-       x2="255.2"
-       y2="180.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5784" />
-    <line
-       x1="329.35001"
-       y1="255.17999"
-       x2="329.35999"
-       y2="255.11"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5786" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="320.71,252.41 320.46,252.57 320.43,252.46 "
-       id="polygon5788" />
-    <line
-       x1="324.48001"
-       y1="251.86"
-       x2="324.63"
-       y2="251.89999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5790" />
-    <line
-       x1="235.17999"
-       y1="143.12"
-       x2="237.84"
-       y2="145.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5792" />
-    <line
-       x1="254.05"
-       y1="173.59"
-       x2="254.75"
-       y2="177.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5794" />
-    <line
-       x1="240.47"
-       y1="216.52"
-       x2="239.81"
-       y2="219.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5796" />
-    <line
-       x1="321.51999"
-       y1="251.91"
-       x2="321.54001"
-       y2="251.99001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5798" />
-    <line
-       x1="256.64999"
-       y1="133.67"
-       x2="256.88"
-       y2="136.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5800" />
-    <line
-       x1="320.45999"
-       y1="266.29999"
-       x2="320.20999"
-       y2="266.20999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5802" />
-    <line
-       x1="237.84"
-       y1="145.52"
-       x2="240.36"
-       y2="148.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5804" />
-    <line
-       x1="323.54999"
-       y1="251.92"
-       x2="323.70999"
-       y2="251.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5806" />
-    <line
-       x1="330.38"
-       y1="258.88"
-       x2="330.32001"
-       y2="259"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5808" />
-    <line
-       x1="253.10001"
-       y1="170.09"
-       x2="254.05"
-       y2="173.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5810" />
-    <line
-       x1="304.59"
-       y1="199.72"
-       x2="307.78"
-       y2="200.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5812" />
-    <line
-       x1="327.31"
-       y1="253.38"
-       x2="327.13"
-       y2="253.22"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5814" />
-    <line
-       x1="317.62"
-       y1="254.2"
-       x2="317.63"
-       y2="254.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5816" />
-    <line
-       x1="326.26999"
-       y1="252.7"
-       x2="325.98001"
-       y2="252.64"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5818" />
-    <line
-       x1="327.54999"
-       y1="264.98001"
-       x2="327.54999"
-       y2="264.98001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5820" />
-    <line
-       x1="251.91"
-       y1="166.64"
-       x2="253.10001"
-       y2="170.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5822" />
-    <line
-       x1="240.36"
-       y1="148.11"
-       x2="242.74001"
-       y2="150.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5824" />
-    <line
-       x1="166.12"
-       y1="214.95"
-       x2="164"
-       y2="212.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5826" />
-    <line
-       x1="316.73999"
-       y1="255.37"
-       x2="316.85001"
-       y2="255.21001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5828" />
-    <line
-       x1="328.29999"
-       y1="254.45"
-       x2="328.14001"
-       y2="254.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5830" />
-    <line
-       x1="328.26001"
-       y1="264.25"
-       x2="328.39001"
-       y2="264.09"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5832" />
-    <line
-       x1="252.03"
-       y1="254.77"
-       x2="253.5"
-       y2="253.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5834" />
-    <line
-       x1="329"
-       y1="263.19"
-       x2="329"
-       y2="263.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5836" />
-    <line
-       x1="250.49001"
-       y1="163.27"
-       x2="251.91"
-       y2="166.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5838" />
-    <line
-       x1="242.74001"
-       y1="150.86"
-       x2="244.96001"
-       y2="153.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5840" />
-    <line
-       x1="315.63"
-       y1="259.14001"
-       x2="315.70001"
-       y2="259.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5842" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="325.37,253.38 325.63,253.51 325.32,253.5 "
-       id="polygon5844" />
-    <line
-       x1="329.39999"
-       y1="256.41"
-       x2="329.29999"
-       y2="256.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5846" />
-    <line
-       x1="318.54001"
-       y1="265.10999"
-       x2="318.48001"
-       y2="265"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5848" />
-    <line
-       x1="329.59"
-       y1="261.82999"
-       x2="329.59"
-       y2="261.82999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5850" />
-    <line
-       x1="248.85001"
-       y1="159.98"
-       x2="250.49001"
-       y2="163.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5852" />
-    <line
-       x1="325.10999"
-       y1="252.52"
-       x2="324.81"
-       y2="252.50999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5854" />
-    <line
-       x1="244.96001"
-       y1="153.77"
-       x2="247"
-       y2="156.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5856" />
-    <line
-       x1="329.70999"
-       y1="257.37"
-       x2="329.64001"
-       y2="257.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5858" />
-    <polygon
-       style="opacity:1;fill:#00fb00"
-       points="318.39,254.63 318.54,254.44 318.64,254.53 "
-       id="polygon5860" />
-    <line
-       x1="247"
-       y1="156.81"
-       x2="248.85001"
-       y2="159.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5862" />
-    <line
-       x1="329.92999"
-       y1="258.60001"
-       x2="329.89999"
-       y2="258.35001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5864" />
-    <line
-       x1="318.51001"
-       y1="253.75"
-       x2="318.28"
-       y2="253.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5866" />
-    <line
-       x1="319.69"
-       y1="265.76001"
-       x2="319.79001"
-       y2="265.73999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5868" />
-    <polygon
-       style="opacity:1;fill:#00b100"
-       points="327.55,255.71 327.48,255.47 327.69,255.55 "
-       id="polygon5870" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="327.62,263.34 327.5,263.51 327.43,263.4 "
-       id="polygon5872" />
-    <line
-       x1="324.22"
-       y1="252.52"
-       x2="323.92001"
-       y2="252.53999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5874" />
-    <line
-       x1="317.01999"
-       y1="255.59"
-       x2="317.10999"
-       y2="255.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5876" />
-    <line
-       x1="319.23999"
-       y1="253.45"
-       x2="318.98999"
-       y2="253.53999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5878" />
-    <polygon
-       style="opacity:1;fill:#00b100"
-       points="321.41,265.44 321.58,265.52 321.48,265.6 "
-       id="polygon5880" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="328.62,257.48 328.47,257.65 328.41,257.4 "
-       id="polygon5882" />
-    <line
-       x1="322.29999"
-       y1="266.31"
-       x2="322.13"
-       y2="266.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5884" />
-    <line
-       x1="328.39999"
-       y1="255.28"
-       x2="328.20999"
-       y2="255.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.55,265.44 323.32,265.86 332.28,268.36 "
-       id="polygon5888" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="323.33,265.5 323.52,265.38 323.59,265.54 "
-       id="polygon5890" />
-    <line
-       x1="328.73001"
-       y1="256.26999"
-       x2="328.84"
-       y2="256.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5892" />
-    <polygon
-       style="opacity:1;fill:#04fd04"
-       points="319.4,254.56 319.55,254.38 319.68,254.5 "
-       id="polygon5894" />
-    <line
-       x1="323.31"
-       y1="252.63"
-       x2="323"
-       y2="252.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5896" />
-    <line
-       x1="346.81"
-       y1="105.86"
-       x2="345.47"
-       y2="104.07"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5898" />
-    <line
-       x1="321.60001"
-       y1="266.09"
-       x2="321.42999"
-       y2="266.01999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5900" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="316.79,263.19 316.82,262.96 305.28,267.31 "
-       id="polygon5902" />
-    <line
-       x1="321.67999"
-       y1="252.71001"
-       x2="321.70999"
-       y2="252.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5904" />
-    <line
-       x1="326.32999"
-       y1="265.06"
-       x2="326.32999"
-       y2="265.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5906" />
-    <line
-       x1="320.57001"
-       y1="253.14"
-       x2="320.29999"
-       y2="253.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5908" />
-    <line
-       x1="324.51001"
-       y1="265.85001"
-       x2="324.51001"
-       y2="265.85001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5910" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="327.63,256.62 327.41,256.54 327.56,256.37 "
-       id="polygon5912" />
-    <line
-       x1="307.78"
-       y1="200.35001"
-       x2="310.95999"
-       y2="200.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5914" />
-    <line
-       x1="327.42999"
-       y1="264.14001"
-       x2="327.60999"
-       y2="264.07999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5916" />
-    <line
-       x1="326.17999"
-       y1="253.67"
-       x2="326.13"
-       y2="253.78999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5918" />
-    <line
-       x1="322.38"
-       y1="252.85001"
-       x2="322.06"
-       y2="252.95"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5920" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="316.82,262.96 316.8,262.62 305.25,266.97 "
-       id="polygon5922" />
-    <line
-       x1="256.59"
-       y1="130.85001"
-       x2="256.64999"
-       y2="133.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5924" />
-    <line
-       x1="327.42001"
-       y1="254.84"
-       x2="327.20999"
-       y2="254.77"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5926" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="332.52,267.95 332.82,267.62 323.86,265.12 "
-       id="polygon5928" />
-    <line
-       x1="325.04999"
-       y1="265.45999"
-       x2="325.04999"
-       y2="265.45999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5930" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="324.29,254.4 324.55,254.52 324.35,254.62 "
-       id="polygon5932" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="316.8,262.62 316.71,262.2 305.16,266.55 "
-       id="polygon5934" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="323.37,267.63 323.63,267.88 332.59,270.38 "
-       id="polygon5936" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="321.48,254.33 321.54,254.53 321.32,254.5 "
-       id="polygon5938" />
-    <line
-       x1="164"
-       y1="212.7"
-       x2="162.11"
-       y2="210.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5940" />
-    <line
-       x1="322.53"
-       y1="253.17"
-       x2="322.26999"
-       y2="253.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5942" />
-    <line
-       x1="241.35001"
-       y1="214.02"
-       x2="240.47"
-       y2="216.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5944" />
-    <polygon
-       style="opacity:1;fill:#00e000"
-       points="323.37,254.41 323.63,254.51 323.43,254.63 "
-       id="polygon5946" />
-    <line
-       x1="322.67999"
-       y1="265.67999"
-       x2="322.75"
-       y2="265.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5948" />
-    <polygon
-       style="opacity:1;fill:#00cc00"
-       points="325.32,255.46 325.52,255.36 325.6,255.59 "
-       id="polygon5950" />
-    <line
-       x1="323.31"
-       y1="253.35001"
-       x2="323.04999"
-       y2="253.28"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5952" />
-    <line
-       x1="328.26001"
-       y1="262.26999"
-       x2="328.17999"
-       y2="262.16"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.2,267.27 323.37,267.63 332.33,270.14 "
-       id="polygon5956" />
-    <line
-       x1="319.04999"
-       y1="264.39999"
-       x2="319.04999"
-       y2="264.39999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5958" />
-    <line
-       x1="320.70001"
-       y1="265.32999"
-       x2="320.79001"
-       y2="265.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5960" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="323.86,265.12 323.55,265.44 332.52,267.95 "
-       id="polygon5962" />
-    <line
-       x1="324.32999"
-       y1="253.7"
-       x2="324.07001"
-       y2="253.60001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5964" />
-    <line
-       x1="326.06"
-       y1="264.45999"
-       x2="325.89999"
-       y2="264.64999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5966" />
-    <line
-       x1="326.07001"
-       y1="254.48"
-       x2="325.82999"
-       y2="254.45"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.13,266.82 323.2,267.27 332.16,269.77 "
-       id="polygon5970" />
-    <polygon
-       style="opacity:1;fill:#02ff02"
-       points="318.43,257.45 318.64,257.42 318.46,257.62 "
-       id="polygon5972" />
-    <line
-       x1="325.82001"
-       y1="264.48001"
-       x2="326.06"
-       y2="264.45999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5974" />
-    <line
-       x1="321.89001"
-       y1="253.53999"
-       x2="321.94"
-       y2="253.7"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5976" />
-    <line
-       x1="316.76999"
-       y1="259.54999"
-       x2="316.76999"
-       y2="259.54999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5978" />
-    <line
-       x1="326.60001"
-       y1="263.87"
-       x2="326.47"
-       y2="264.01999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5980" />
-    <line
-       x1="316.92999"
-       y1="258.48001"
-       x2="316.92999"
-       y2="258.48001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5982" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="326.57,261.33 326.62,261.55 326.45,261.56 "
-       id="polygon5984" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="324.61,263.6 324.35,263.57 324.56,263.44 "
-       id="polygon5986" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="305.28,267.31 305.25,267.54 316.79,263.19 "
-       id="polygon5988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.17,266.33 323.13,266.82 332.09,269.32 "
-       id="polygon5990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="323.32,265.86 323.17,266.33 332.13,268.84 "
-       id="polygon5992" />
-    <polygon
-       style="opacity:1;fill:#00c400"
-       points="320.54,263.54 320.37,263.37 320.62,263.38 "
-       id="polygon5994" />
-    <polygon
-       style="opacity:1;fill:#00c500"
-       points="325.41,256.53 325.61,256.42 325.67,256.67 "
-       id="polygon5996" />
-    <line
-       x1="320.41"
-       y1="254.22"
-       x2="320.56"
-       y2="254.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5998" />
-    <polygon
-       style="opacity:1;fill:#1dfa1d"
-       points="319.5,262.61 319.34,262.42 319.58,262.46 "
-       id="polygon6000" />
-    <line
-       x1="327.42001"
-       y1="262.72"
-       x2="327.31"
-       y2="262.89001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6002" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="328.69,261.94 328.95,262.19 338.05,264.73 "
-       id="polygon6004" />
-    <line
-       x1="327.79001"
-       y1="257.39999"
-       x2="327.95001"
-       y2="257.23001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6006" />
-    <polygon
-       style="opacity:1;fill:#00f800"
-       points="318.35,259.45 318.55,259.41 318.53,259.6 "
-       id="polygon6008" />
-    <line
-       x1="326.19"
-       y1="255.32001"
-       x2="326.10999"
-       y2="255.10001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6010" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="305.25,266.97 305.28,267.31 316.82,262.96 "
-       id="polygon6012" />
-    <polygon
-       style="opacity:1;fill:#14ff14"
-       points="320.36,256.41 320.57,256.44 320.4,256.58 "
-       id="polygon6014" />
-    <line
-       x1="324.85001"
-       y1="264.48999"
-       x2="325.09"
-       y2="264.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6016" />
-    <line
-       x1="317.25"
-       y1="259.51999"
-       x2="317.25"
-       y2="259.51999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6018" />
-    <line
-       x1="325.25"
-       y1="254.67999"
-       x2="325.06"
-       y2="254.77"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="328.52,261.57 328.69,261.94 337.79,264.48 "
-       id="polygon6022" />
-    <line
-       x1="318.95001"
-       y1="255.46001"
-       x2="319.09"
-       y2="255.58"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6024" />
-    <line
-       x1="327.48001"
-       y1="261.89001"
-       x2="327.32999"
-       y2="261.91"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6026" />
-    <line
-       x1="319.41"
-       y1="263.85999"
-       x2="319.63"
-       y2="263.89999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6028" />
-    <line
-       x1="318.26001"
-       y1="256.64001"
-       x2="318.26001"
-       y2="256.64001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6030" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="305.16,266.55 305.25,266.97 316.8,262.62 "
-       id="polygon6032" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="321.47,262.7 321.3,262.53 321.5,262.46 "
-       id="polygon6034" />
-    <polygon
-       style="opacity:1;fill:#00b400"
-       points="323.63,262.55 323.42,262.68 323.46,262.43 "
-       id="polygon6036" />
-    <line
-       x1="326.48001"
-       y1="256.26999"
-       x2="326.42001"
-       y2="256.01999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6038" />
-    <line
-       x1="319.23001"
-       y1="255.71001"
-       x2="319.03"
-       y2="255.89"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6040" />
-    <line
-       x1="310.95999"
-       y1="200.69"
-       x2="314.12"
-       y2="200.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6042" />
-    <polygon
-       style="opacity:1;fill:#13e013"
-       points="324.57,257.52 324.3,257.64 324.3,257.39 "
-       id="polygon6044" />
-    <line
-       x1="323.85999"
-       y1="264.41"
-       x2="324.10999"
-       y2="264.44"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6046" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="305.02,266.09 305.16,266.55 316.71,262.2 "
-       id="polygon6048" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="304.84,265.63 305.02,266.09 316.57,261.73 "
-       id="polygon6050" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="320.51,261.62 320.36,261.42 320.55,261.36 "
-       id="polygon6052" />
-    <line
-       x1="320.32001"
-       y1="263.98999"
-       x2="320.56"
-       y2="264.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6054" />
-    <polygon
-       style="opacity:1;fill:#2bff2b"
-       points="323.75,257.38 323.75,257.63 323.47,257.5 "
-       id="polygon6056" />
-    <line
-       x1="317.70001"
-       y1="258.66"
-       x2="317.89001"
-       y2="258.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6058" />
-    <line
-       x1="325.78"
-       y1="263.35001"
-       x2="325.73001"
-       y2="263.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6060" />
-    <line
-       x1="322.20999"
-       y1="254.64"
-       x2="322.26001"
-       y2="254.84"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6062" />
-    <polygon
-       style="opacity:1;fill:#01e701"
-       points="321.53,257.42 321.53,257.66 321.35,257.55 "
-       id="polygon6064" />
-    <line
-       x1="253.5"
-       y1="253.71001"
-       x2="255.14999"
-       y2="252.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6066" />
-    <line
-       x1="324.47"
-       y1="255.07001"
-       x2="324.26999"
-       y2="255.17"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6068" />
-    <polygon
-       style="opacity:1;fill:#22ea22"
-       points="324.57,258.54 324.3,258.65 324.3,258.4 "
-       id="polygon6070" />
-    <line
-       x1="326.70999"
-       y1="257.26001"
-       x2="326.66"
-       y2="257.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6072" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="324.54,260.54 324.36,260.41 324.64,260.3 "
-       id="polygon6074" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="323.61,261.41 323.57,261.67 323.4,261.55 "
-       id="polygon6076" />
-    <polygon
-       style="opacity:1;fill:#00cc00"
-       points="321.66,261.46 321.45,261.54 321.49,261.28 "
-       id="polygon6078" />
-    <polygon
-       style="opacity:1;fill:#00e700"
-       points="320.58,259.42 320.56,259.61 320.38,259.49 "
-       id="polygon6080" />
-    <line
-       x1="318.88"
-       y1="262.32999"
-       x2="318.88"
-       y2="262.32999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6082" />
-    <line
-       x1="319.32999"
-       y1="256.32001"
-       x2="319.29999"
-       y2="256.17001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6084" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="318.62,264.41 318.91,264.36 310.5,270.81 "
-       id="polygon6086" />
-    <polygon
-       style="opacity:1;fill:#4fff4f"
-       points="323.75,258.38 323.76,258.63 323.48,258.49 "
-       id="polygon6088" />
-    <line
-       x1="322.57999"
-       y1="264.14999"
-       x2="322.84"
-       y2="264.20999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6090" />
-    <line
-       x1="326.39001"
-       y1="262.01001"
-       x2="326.39001"
-       y2="262.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6092" />
-    <line
-       x1="321.29999"
-       y1="264.04001"
-       x2="321.54999"
-       y2="264.03"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6094" />
-    <polygon
-       style="opacity:1;fill:#02e502"
-       points="321.53,258.41 321.54,258.66 321.36,258.55 "
-       id="polygon6096" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="318.8,260.53 318.65,260.06 309.71,262.56 "
-       id="polygon6098" />
-    <line
-       x1="318.26999"
-       y1="260.39001"
-       x2="318.26999"
-       y2="260.39001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6100" />
-    <line
-       x1="320.45001"
-       y1="255.78999"
-       x2="320.23999"
-       y2="255.77"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6102" />
-    <line
-       x1="321.70999"
-       y1="263.70999"
-       x2="321.89001"
-       y2="263.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6104" />
-    <line
-       x1="323.45999"
-       y1="255.64"
-       x2="323.25"
-       y2="255.77"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6106" />
-    <line
-       x1="319.5"
-       y1="257.13"
-       x2="319.45999"
-       y2="256.95999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6108" />
-    <line
-       x1="321.51001"
-       y1="255.95"
-       x2="321.29001"
-       y2="255.91"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6110" />
-    <line
-       x1="256.70001"
-       y1="128.2"
-       x2="256.59"
-       y2="130.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6112" />
-    <line
-       x1="348.10999"
-       y1="107.91"
-       x2="346.81"
-       y2="105.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6114" />
-    <line
-       x1="322.5"
-       y1="255.71001"
-       x2="322.56"
-       y2="255.95"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6116" />
-    <line
-       x1="325.63"
-       y1="257.56"
-       x2="325.63"
-       y2="257.56"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6118" />
-    <line
-       x1="325.35999"
-       y1="262.04999"
-       x2="325.35999"
-       y2="262.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6120" />
-    <line
-       x1="323.53"
-       y1="263.28"
-       x2="323.73999"
-       y2="263.16"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6122" />
-    <line
-       x1="318.91"
-       y1="258.44"
-       x2="319.13"
-       y2="258.39999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6124" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="318.14,256.45 317.98,256.11 308.16,253.13 "
-       id="polygon6126" />
-    <line
-       x1="324.76001"
-       y1="262.5"
-       x2="324.76001"
-       y2="262.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6128" />
-    <line
-       x1="325.82001"
-       y1="261.14001"
-       x2="325.82001"
-       y2="261.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6130" />
-    <line
-       x1="322.16"
-       y1="263.35001"
-       x2="322.19"
-       y2="263.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6132" />
-    <line
-       x1="320.70999"
-       y1="262.72"
-       x2="320.87"
-       y2="262.89001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6134" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="319.12,264.17 319.22,263.87 310.81,270.33 "
-       id="polygon6136" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="316.92,258.94 317.24,258.84 307.41,255.87 "
-       id="polygon6138" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="332.82,267.62 333.16,267.43 324.2,264.92 "
-       id="polygon6140" />
-    <line
-       x1="319.79999"
-       y1="261.60999"
-       x2="319.94"
-       y2="261.79999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6142" />
-    <line
-       x1="324.29999"
-       y1="256.89001"
-       x2="324.57001"
-       y2="257.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6144" />
-    <line
-       x1="323.75"
-       y1="256.64001"
-       x2="324.03"
-       y2="256.76001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6146" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="318.54,262.27 318.18,261.95 309.77,268.41 "
-       id="polygon6148" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="317.79,262.25 318.36,262.11 318.62,261.84 "
-       id="polygon6150" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="317.8,261.75 317.45,261.68 309.04,268.13 "
-       id="polygon6152" />
-    <line
-       x1="319.51999"
-       y1="260.85001"
-       x2="319.51999"
-       y2="261.03"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6154" />
-    <line
-       x1="322.07001"
-       y1="256.54999"
-       x2="321.89001"
-       y2="256.67001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6156" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="318.2,256.87 318.14,256.45 308.32,253.46 "
-       id="polygon6158" />
-    <line
-       x1="324.70001"
-       y1="261.60001"
-       x2="324.70001"
-       y2="261.60001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6160" />
-    <line
-       x1="319.60001"
-       y1="259.76999"
-       x2="319.57999"
-       y2="259.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6162" />
-    <line
-       x1="319.76001"
-       y1="258.67001"
-       x2="319.73001"
-       y2="258.85001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6164" />
-    <line
-       x1="321.53"
-       y1="256.92999"
-       x2="321.35001"
-       y2="257.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6166" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="319.22,263.87 319.21,263.5 310.8,269.95 "
-       id="polygon6168" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="304.99,267.57 305.14,267.63 293.59,271.99 "
-       id="polygon6170" />
-    <line
-       x1="320.48999"
-       y1="257.73001"
-       x2="320.32001"
-       y2="257.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6172" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="317.24,258.84 317.55,258.61 307.73,255.63 "
-       id="polygon6174" />
-    <line
-       x1="320.16"
-       y1="258.51999"
-       x2="319.98999"
-       y2="258.41"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6176" />
-    <line
-       x1="322.62"
-       y1="257.13"
-       x2="322.62"
-       y2="256.89001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6178" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="318.18,261.95 317.8,261.75 309.39,268.2 "
-       id="polygon6180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.33,270.14 332.16,269.77 323.2,267.27 "
-       id="polygon6182" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="318.17,257.34 318.2,256.87 308.38,253.88 "
-       id="polygon6184" />
-    <line
-       x1="322.32999"
-       y1="262.17999"
-       x2="322.35999"
-       y2="261.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="324.38,259.03 324.34,259.51 333.52,262.07 "
-       id="polygon6188" />
-    <line
-       x1="324.57999"
-       y1="259.32001"
-       x2="324.57999"
-       y2="259.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6190" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="317.55,258.61 317.82,258.26 308,255.28 "
-       id="polygon6192" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="319.21,263.5 319.08,263.07 310.67,269.53 "
-       id="polygon6194" />
-    <line
-       x1="320.63"
-       y1="260.82999"
-       x2="320.82999"
-       y2="260.76999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6196" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="318.04,257.82 318.17,257.34 308.35,254.36 "
-       id="polygon6198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.28,268.36 332.52,267.95 323.55,265.44 "
-       id="polygon6200" />
-    <line
-       x1="242.44"
-       y1="211.75"
-       x2="241.35001"
-       y2="214.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6202" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="317.82,258.26 318.04,257.82 308.21,254.84 "
-       id="polygon6204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.16,269.77 332.09,269.32 323.13,266.82 "
-       id="polygon6206" />
-    <line
-       x1="323.51999"
-       y1="260.75"
-       x2="323.69"
-       y2="260.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6208" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="319.08,263.07 318.85,262.65 310.44,269.11 "
-       id="polygon6210" />
-    <line
-       x1="322.62"
-       y1="258.35001"
-       x2="322.62"
-       y2="258.10999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6212" />
-    <line
-       x1="323.76999"
-       y1="259.64999"
-       x2="324.04001"
-       y2="259.54001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6214" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="318.85,262.65 318.54,262.27 310.13,268.72 "
-       id="polygon6216" />
-    <line
-       x1="322.48001"
-       y1="261.17001"
-       x2="322.51999"
-       y2="260.91"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.13,268.84 332.28,268.36 323.32,265.86 "
-       id="polygon6220" />
-    <line
-       x1="321.37"
-       y1="259.31"
-       x2="321.19"
-       y2="259.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.09,269.32 332.13,268.84 323.17,266.33 "
-       id="polygon6224" />
-    <line
-       x1="321.82001"
-       y1="260.41"
-       x2="322.03"
-       y2="260.32999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6226" />
-    <line
-       x1="322.63"
-       y1="259.34"
-       x2="322.63"
-       y2="259.09"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6228" />
-    <line
-       x1="322.64999"
-       y1="260.10001"
-       x2="322.45999"
-       y2="259.98001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6230" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="317.75,259.16 317.4,259.13 308.45,261.63 "
-       id="polygon6232" />
-    <line
-       x1="314.12"
-       y1="200.75"
-       x2="317.25"
-       y2="200.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6234" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="338.05,264.73 337.79,264.48 328.69,261.94 "
-       id="polygon6236" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="326.34,257.92 326.09,257.67 335.26,260.23 "
-       id="polygon6238" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="305.25,267.54 305.28,267.31 293.72,271.68 "
-       id="polygon6240" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="309.04,268.13 309.39,268.2 317.8,261.75 "
-       id="polygon6242" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="309.39,268.2 309.77,268.41 318.18,261.95 "
-       id="polygon6244" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="317.79,262.25 309.67,264.35 318.62,261.84 "
-       id="polygon6246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="337.79,264.48 337.62,264.11 328.52,261.57 "
-       id="polygon6248" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="318.41,259.64 318.1,259.34 309.15,261.84 "
-       id="polygon6250" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="318.62,261.84 318.79,261.47 309.84,263.97 "
-       id="polygon6252" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="305.28,267.31 305.25,266.97 293.69,271.33 "
-       id="polygon6254" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="318.65,260.06 318.41,259.64 309.46,262.15 "
-       id="polygon6256" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="318.79,261.47 318.85,261.02 309.9,263.52 "
-       id="polygon6258" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="305.25,266.97 305.16,266.55 293.6,270.91 "
-       id="polygon6260" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="318.85,261.02 318.8,260.53 309.86,263.03 "
-       id="polygon6262" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="305.02,266.09 304.84,265.63 293.27,269.99 "
-       id="polygon6264" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="305.16,266.55 305.02,266.09 293.46,270.45 "
-       id="polygon6266" />
-    <line
-       x1="160.45"
-       y1="207.98"
-       x2="159.03999"
-       y2="205.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6268" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="324.58,260.32 324.84,260.57 334.02,263.13 "
-       id="polygon6270" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="333.71,267.77 333.45,267.69 333.52,267.38 "
-       id="polygon6272" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="307.93,252.93 308.16,253.13 317.98,256.11 "
-       id="polygon6274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="324.41,259.96 324.58,260.32 333.76,262.88 "
-       id="polygon6276" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="325.07,257.81 324.77,258.13 333.95,260.68 "
-       id="polygon6278" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="293.72,271.68 293.68,271.9 305.25,267.54 "
-       id="polygon6280" />
-    <line
-       x1="256.95001"
-       y1="125.73"
-       x2="256.70001"
-       y2="128.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6282" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="307.41,255.87 307.1,255.96 316.92,258.94 "
-       id="polygon6284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="324.34,259.51 324.41,259.96 333.59,262.52 "
-       id="polygon6286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="324.77,258.13 324.53,258.55 333.71,261.11 "
-       id="polygon6288" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="308.16,253.13 308.32,253.46 318.14,256.45 "
-       id="polygon6290" />
-    <line
-       x1="255.14999"
-       y1="252.91"
-       x2="256.95999"
-       y2="252.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6292" />
-    <line
-       x1="349.35001"
-       y1="110.2"
-       x2="348.10999"
-       y2="107.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="324.53,258.55 324.38,259.03 333.56,261.58 "
-       id="polygon6296" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="310.8,269.95 310.81,270.33 319.22,263.87 "
-       id="polygon6298" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="293.69,271.33 293.72,271.68 305.28,267.31 "
-       id="polygon6300" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="308.32,253.46 308.38,253.88 318.2,256.87 "
-       id="polygon6302" />
-    <line
-       x1="317.25"
-       y1="200.50999"
-       x2="320.32999"
-       y2="199.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6304" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="308,255.28 307.73,255.63 317.55,258.61 "
-       id="polygon6306" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="308.38,253.88 308.35,254.36 318.17,257.34 "
-       id="polygon6308" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="310.67,269.53 310.8,269.95 319.21,263.5 "
-       id="polygon6310" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="293.6,270.91 293.69,271.33 305.25,266.97 "
-       id="polygon6312" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="308.21,254.84 308,255.28 317.82,258.26 "
-       id="polygon6314" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="308.35,254.36 308.21,254.84 318.04,257.82 "
-       id="polygon6316" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="293.07,269.58 293.27,269.99 304.84,265.63 "
-       id="polygon6318" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="310.44,269.11 310.67,269.53 319.08,263.07 "
-       id="polygon6320" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="309.77,268.41 310.13,268.72 318.54,262.27 "
-       id="polygon6322" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="293.46,270.45 293.6,270.91 305.16,266.55 "
-       id="polygon6324" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="310.13,268.72 310.44,269.11 318.85,262.65 "
-       id="polygon6326" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="293.27,269.99 293.46,270.45 305.02,266.09 "
-       id="polygon6328" />
-    <line
-       x1="243.72"
-       y1="209.71001"
-       x2="242.44"
-       y2="211.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6330" />
-    <line
-       x1="159.03999"
-       y1="205.55"
-       x2="157.88"
-       y2="203.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6332" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="308.8,261.66 309.15,261.84 318.1,259.34 "
-       id="polygon6334" />
-    <polygon
-       style="opacity:1;fill:#09df09"
-       points="308.44,268.66 308.54,268.37 308.76,268.59 "
-       id="polygon6336" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="309.84,263.97 309.67,264.35 318.62,261.84 "
-       id="polygon6338" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="334.25,260.36 334.59,260.17 325.42,257.61 "
-       id="polygon6340" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="309.15,261.84 309.46,262.15 318.41,259.64 "
-       id="polygon6342" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="309.9,263.52 309.84,263.97 318.79,261.47 "
-       id="polygon6344" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="309.46,262.15 309.71,262.56 318.65,260.06 "
-       id="polygon6346" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="309.86,263.03 309.9,263.52 318.85,261.02 "
-       id="polygon6348" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="309.71,262.56 309.86,263.03 318.8,260.53 "
-       id="polygon6350" />
-    <line
-       x1="320.32999"
-       y1="199.98"
-       x2="323.35001"
-       y2="199.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6352" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="333.95,260.68 334.25,260.36 325.07,257.81 "
-       id="polygon6354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.76,262.88 333.59,262.52 324.41,259.96 "
-       id="polygon6356" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="332.33,270.14 332.59,270.38 341.58,272.9 "
-       id="polygon6358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.71,261.11 333.95,260.68 324.77,258.13 "
-       id="polygon6360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.59,262.52 333.52,262.07 324.34,259.51 "
-       id="polygon6362" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="333.16,267.43 332.82,267.62 341.81,270.13 "
-       id="polygon6364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.56,261.58 333.71,261.11 324.53,258.55 "
-       id="polygon6366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.52,262.07 333.56,261.58 324.38,259.03 "
-       id="polygon6368" />
-    <line
-       x1="257.35999"
-       y1="123.48"
-       x2="256.95001"
-       y2="125.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6370" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="280.81,273.68 280.84,273.46 292.42,269.09 "
-       id="polygon6372" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="292.86,269.26 292.67,269.06 281.09,273.43 "
-       id="polygon6374" />
-    <line
-       x1="350.51001"
-       y1="112.73"
-       x2="349.35001"
-       y2="110.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.16,269.77 332.33,270.14 341.32,272.65 "
-       id="polygon6378" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="332.82,267.62 332.52,267.95 341.5,270.46 "
-       id="polygon6380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.09,269.32 332.16,269.77 341.15,272.29 "
-       id="polygon6382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.52,267.95 332.28,268.36 341.27,270.88 "
-       id="polygon6384" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="293.07,269.58 292.86,269.26 281.28,273.63 "
-       id="polygon6386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.13,268.84 332.09,269.32 341.08,271.84 "
-       id="polygon6388" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="293.72,271.68 293.69,271.33 282.11,275.7 "
-       id="polygon6390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="332.28,268.36 332.13,268.84 341.12,271.36 "
-       id="polygon6392" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="293.27,269.99 293.07,269.58 281.48,273.95 "
-       id="polygon6394" />
-    <line
-       x1="256.95999"
-       y1="252.39"
-       x2="258.92999"
-       y2="252.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6396" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="337.79,264.48 338.05,264.73 347.19,267.27 "
-       id="polygon6398" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="293.69,271.33 293.6,270.91 282.02,275.28 "
-       id="polygon6400" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="293.46,270.45 293.27,269.99 281.69,274.36 "
-       id="polygon6402" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="293.6,270.91 293.46,270.45 281.88,274.81 "
-       id="polygon6404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="337.62,264.11 337.79,264.48 346.93,267.02 "
-       id="polygon6406" />
-    <line
-       x1="157.88"
-       y1="203.10001"
-       x2="156.98"
-       y2="200.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6408" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="282.14,276.04 282.11,276.27 293.68,271.9 "
-       id="polygon6410" />
-    <line
-       x1="245.19"
-       y1="207.92"
-       x2="243.72"
-       y2="209.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6412" />
-    <line
-       x1="323.35001"
-       y1="199.17999"
-       x2="326.29999"
-       y2="198.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6414" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="281.09,273.43 281.28,273.63 292.86,269.26 "
-       id="polygon6416" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="306.58,255.7 306.81,255.9 296.96,252.91 "
-       id="polygon6418" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="282.11,275.7 282.14,276.04 293.72,271.68 "
-       id="polygon6420" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="281.28,273.63 281.48,273.95 293.07,269.58 "
-       id="polygon6422" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="342.16,269.94 342.5,269.89 333.52,267.38 "
-       id="polygon6424" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="308.16,253.13 307.93,252.93 298.08,249.94 "
-       id="polygon6426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="309.41,264.61 309.67,264.35 309.49,264.12 "
-       id="polygon6428" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="282.02,275.28 282.11,275.7 293.69,271.33 "
-       id="polygon6430" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="281.48,273.95 281.69,274.36 293.27,269.99 "
-       id="polygon6432" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="281.88,274.81 282.02,275.28 293.6,270.91 "
-       id="polygon6434" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="281.69,274.36 281.88,274.81 293.46,270.45 "
-       id="polygon6436" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="341.81,270.13 342.16,269.94 333.16,267.43 "
-       id="polygon6438" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="308.32,253.46 308.16,253.13 298.31,250.14 "
-       id="polygon6440" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="341.58,272.9 341.32,272.65 332.33,270.14 "
-       id="polygon6442" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="307.1,255.96 307.41,255.87 297.56,252.88 "
-       id="polygon6444" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="310.71,270.63 310.81,270.33 302.38,276.8 "
-       id="polygon6446" />
-    <line
-       x1="351.59"
-       y1="115.48"
-       x2="350.51001"
-       y2="112.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6448" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="341.5,270.46 341.81,270.13 332.82,267.62 "
-       id="polygon6450" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="308.38,253.88 308.32,253.46 298.47,250.47 "
-       id="polygon6452" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="300,275.14 300.1,274.84 308.54,268.37 "
-       id="polygon6454" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="309.39,268.2 309.04,268.13 300.6,274.6 "
-       id="polygon6456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.32,272.65 341.15,272.29 332.16,269.77 "
-       id="polygon6458" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="307.41,255.87 307.73,255.63 297.87,252.64 "
-       id="polygon6460" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="310.81,270.33 310.8,269.95 302.36,276.43 "
-       id="polygon6462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.27,270.88 341.5,270.46 332.52,267.95 "
-       id="polygon6464" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="308.35,254.36 308.38,253.88 298.53,250.89 "
-       id="polygon6466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.15,272.29 341.08,271.84 332.09,269.32 "
-       id="polygon6468" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="309.77,268.41 309.39,268.2 300.95,274.68 "
-       id="polygon6470" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="307.73,255.63 308,255.28 298.15,252.29 "
-       id="polygon6472" />
-    <line
-       x1="257.91"
-       y1="121.44"
-       x2="257.35999"
-       y2="123.48"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.12,271.36 341.27,270.88 332.28,268.36 "
-       id="polygon6476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.08,271.84 341.12,271.36 332.13,268.84 "
-       id="polygon6478" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="308.21,254.84 308.35,254.36 298.49,251.37 "
-       id="polygon6480" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="308,255.28 308.21,254.84 298.36,251.85 "
-       id="polygon6482" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="310.8,269.95 310.67,269.53 302.23,276 "
-       id="polygon6484" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="310.13,268.72 309.77,268.41 301.33,274.88 "
-       id="polygon6486" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="310.67,269.53 310.44,269.11 302,275.58 "
-       id="polygon6488" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="310.44,269.11 310.13,268.72 301.69,275.19 "
-       id="polygon6490" />
-    <line
-       x1="326.29999"
-       y1="198.08"
-       x2="329.16"
-       y2="196.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6492" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="281.86,276.3 282.01,276.36 270.41,280.73 "
-       id="polygon6494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.93,267.02 346.76,266.66 337.62,264.11 "
-       id="polygon6496" />
-    <line
-       x1="156.98"
-       y1="200.64999"
-       x2="156.34"
-       y2="198.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6498" />
-    <line
-       x1="258.92999"
-       y1="252.14"
-       x2="261.01999"
-       y2="252.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6500" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="334.94,260.12 334.59,260.17 343.8,262.73 "
-       id="polygon6502" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="269.21,278.06 269.25,277.83 280.84,273.46 "
-       id="polygon6504" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="281.28,273.63 281.09,273.43 269.49,277.8 "
-       id="polygon6506" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="282.11,276.27 282.14,276.04 270.54,280.42 "
-       id="polygon6508" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="343.89,265.75 343.54,265.8 334.34,263.23 "
-       id="polygon6510" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="333.76,262.88 334.02,263.13 343.22,265.69 "
-       id="polygon6512" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="334.59,260.17 334.25,260.36 343.45,262.92 "
-       id="polygon6514" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="298.08,249.94 298.31,250.14 308.16,253.13 "
-       id="polygon6516" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="281.48,273.95 281.28,273.63 269.68,278 "
-       id="polygon6518" />
-    <line
-       x1="246.83"
-       y1="206.39"
-       x2="245.19"
-       y2="207.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.59,262.52 333.76,262.88 342.96,265.45 "
-       id="polygon6522" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="282.14,276.04 282.11,275.7 270.51,280.07 "
-       id="polygon6524" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="334.25,260.36 333.95,260.68 343.15,263.25 "
-       id="polygon6526" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="297.56,252.88 297.25,252.97 307.1,255.96 "
-       id="polygon6528" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="281.69,274.36 281.48,273.95 269.88,278.32 "
-       id="polygon6530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.52,262.07 333.59,262.52 342.79,265.08 "
-       id="polygon6532" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="282.11,275.7 282.02,275.28 270.42,279.65 "
-       id="polygon6534" />
-    <line
-       x1="352.56"
-       y1="118.43"
-       x2="351.59"
-       y2="115.48"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.95,260.68 333.71,261.11 342.91,263.67 "
-       id="polygon6538" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="302.38,276.8 302.28,277.1 310.71,270.63 "
-       id="polygon6540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.56,261.58 333.52,262.07 342.72,264.63 "
-       id="polygon6542" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="281.88,274.81 281.69,274.36 270.09,278.73 "
-       id="polygon6544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="333.71,261.11 333.56,261.58 342.76,264.14 "
-       id="polygon6546" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="282.02,275.28 281.88,274.81 270.27,279.19 "
-       id="polygon6548" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="298.47,250.47 298.53,250.89 308.38,253.88 "
-       id="polygon6550" />
-    <line
-       x1="329.16"
-       y1="196.71001"
-       x2="331.92001"
-       y2="195.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6552" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="309.46,262.15 309.15,261.84 300.17,264.35 "
-       id="polygon6554" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="302.36,276.43 302.38,276.8 310.81,270.33 "
-       id="polygon6556" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="300.6,274.6 300.95,274.68 309.39,268.2 "
-       id="polygon6558" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="309.67,264.35 309.84,263.97 300.86,266.49 "
-       id="polygon6560" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="298.15,252.29 297.87,252.64 307.73,255.63 "
-       id="polygon6562" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="298.53,250.89 298.49,251.37 308.35,254.36 "
-       id="polygon6564" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="309.71,262.56 309.46,262.15 300.48,264.66 "
-       id="polygon6566" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="309.84,263.97 309.9,263.52 300.93,266.03 "
-       id="polygon6568" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="298.36,251.85 298.15,252.29 308,255.28 "
-       id="polygon6570" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="298.49,251.37 298.36,251.85 308.21,254.84 "
-       id="polygon6572" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="302.23,276 302.36,276.43 310.8,269.95 "
-       id="polygon6574" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="300.95,274.68 301.33,274.88 309.77,268.41 "
-       id="polygon6576" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="309.86,263.03 309.71,262.56 300.73,265.07 "
-       id="polygon6578" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="309.9,263.52 309.86,263.03 300.88,265.55 "
-       id="polygon6580" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="270.54,280.42 270.5,280.64 282.11,276.27 "
-       id="polygon6582" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="302,275.58 302.23,276 310.67,269.53 "
-       id="polygon6584" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="301.33,274.88 301.69,275.19 310.13,268.72 "
-       id="polygon6586" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="301.69,275.19 302,275.58 310.44,269.11 "
-       id="polygon6588" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="269.49,277.8 269.68,278 281.28,273.63 "
-       id="polygon6590" />
-    <line
-       x1="258.59"
-       y1="119.64"
-       x2="257.91"
-       y2="121.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6592" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="270.51,280.07 270.54,280.42 282.14,276.04 "
-       id="polygon6594" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="269.68,278 269.88,278.32 281.48,273.95 "
-       id="polygon6596" />
-    <line
-       x1="156.34"
-       y1="198.21001"
-       x2="155.96001"
-       y2="195.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6598" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="270.42,279.65 270.51,280.07 282.11,275.7 "
-       id="polygon6600" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="343.08,270.24 342.82,270 351.84,272.52 "
-       id="polygon6602" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="269.88,278.32 270.09,278.73 281.69,274.36 "
-       id="polygon6604" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="270.27,279.19 270.42,279.65 282.02,275.28 "
-       id="polygon6606" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="270.09,278.73 270.27,279.19 281.88,274.81 "
-       id="polygon6608" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="343.8,262.73 344.14,262.68 334.94,260.12 "
-       id="polygon6610" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="343.45,262.92 343.8,262.73 334.59,260.17 "
-       id="polygon6612" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="343.22,265.69 342.96,265.45 333.76,262.88 "
-       id="polygon6614" />
-    <line
-       x1="331.92001"
-       y1="195.06"
-       x2="334.57001"
-       y2="193.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6616" />
-    <line
-       x1="353.42999"
-       y1="121.57"
-       x2="352.56"
-       y2="118.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6618" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="343.15,263.25 343.45,262.92 334.25,260.36 "
-       id="polygon6620" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="298.89,264.52 299.15,264.26 308.13,261.75 "
-       id="polygon6622" />
-    <line
-       x1="261.01999"
-       y1="252.17"
-       x2="263.23001"
-       y2="252.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6624" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="341.32,272.65 341.58,272.9 350.59,275.42 "
-       id="polygon6626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.96,265.45 342.79,265.08 333.59,262.52 "
-       id="polygon6628" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="342.16,269.94 341.81,270.13 350.83,272.65 "
-       id="polygon6630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.91,263.67 343.15,263.25 333.95,260.68 "
-       id="polygon6632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.79,265.08 342.72,264.63 333.52,262.07 "
-       id="polygon6634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.15,272.29 341.32,272.65 350.34,275.18 "
-       id="polygon6636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.76,264.14 342.91,263.67 333.71,261.11 "
-       id="polygon6638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.72,264.63 342.76,264.14 333.56,261.58 "
-       id="polygon6640" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="341.81,270.13 341.5,270.46 350.52,272.98 "
-       id="polygon6642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.08,271.84 341.15,272.29 350.16,274.81 "
-       id="polygon6644" />
-    <line
-       x1="248.63"
-       y1="205.14999"
-       x2="246.83"
-       y2="206.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.5,270.46 341.27,270.88 350.29,273.4 "
-       id="polygon6648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.12,271.36 341.08,271.84 350.09,274.36 "
-       id="polygon6650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="341.27,270.88 341.12,271.36 350.14,273.88 "
-       id="polygon6652" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="300.69,266.86 300.43,267.13 309.41,264.61 "
-       id="polygon6654" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="299.82,264.17 300.17,264.35 309.15,261.84 "
-       id="polygon6656" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="300.86,266.49 300.69,266.86 309.67,264.35 "
-       id="polygon6658" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="346.93,267.02 347.19,267.27 356.35,269.83 "
-       id="polygon6660" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="300.17,264.35 300.48,264.66 309.46,262.15 "
-       id="polygon6662" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="300.93,266.03 300.86,266.49 309.84,263.97 "
-       id="polygon6664" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="257.59,282.44 257.63,282.21 269.25,277.83 "
-       id="polygon6666" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="269.68,278 269.49,277.8 257.87,282.18 "
-       id="polygon6668" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="300.48,264.66 300.73,265.07 309.71,262.56 "
-       id="polygon6670" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="300.88,265.55 300.93,266.03 309.9,263.52 "
-       id="polygon6672" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="270.5,280.64 270.54,280.42 258.92,284.8 "
-       id="polygon6674" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="300.73,265.07 300.88,265.55 309.86,263.03 "
-       id="polygon6676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="346.76,266.66 346.93,267.02 356.09,269.58 "
-       id="polygon6678" />
-    <line
-       x1="155.96001"
-       y1="195.81"
-       x2="155.84"
-       y2="193.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6680" />
-    <line
-       x1="334.57001"
-       y1="193.14999"
-       x2="337.10999"
-       y2="190.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6682" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="269.88,278.32 269.68,278 258.06,282.38 "
-       id="polygon6684" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="270.54,280.42 270.51,280.07 258.89,284.46 "
-       id="polygon6686" />
-    <line
-       x1="224.88"
-       y1="359.63"
-       x2="221.2"
-       y2="357.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6688" />
-    <line
-       x1="228.66"
-       y1="361.54001"
-       x2="224.88"
-       y2="359.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6690" />
-    <line
-       x1="259.39999"
-       y1="118.09"
-       x2="258.59"
-       y2="119.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6692" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="270.09,278.73 269.88,278.32 258.26,282.7 "
-       id="polygon6694" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="270.51,280.07 270.42,279.65 258.8,284.04 "
-       id="polygon6696" />
-    <line
-       x1="354.17001"
-       y1="124.88"
-       x2="353.42999"
-       y2="121.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6698" />
-    <line
-       x1="221.2"
-       y1="357.51001"
-       x2="217.63"
-       y2="355.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6700" />
-    <line
-       x1="232.53"
-       y1="363.23001"
-       x2="228.66"
-       y2="361.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6702" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="270.27,279.19 270.09,278.73 258.47,283.11 "
-       id="polygon6704" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="270.42,279.65 270.27,279.19 258.65,283.57 "
-       id="polygon6706" />
-    <line
-       x1="217.63"
-       y1="355.20001"
-       x2="214.19"
-       y2="352.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6708" />
-    <line
-       x1="236.46001"
-       y1="364.70001"
-       x2="232.53"
-       y2="363.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6710" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="257.72,282.12 257.87,282.18 269.49,277.8 "
-       id="polygon6712" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="350.83,272.65 351.17,272.46 342.16,269.94 "
-       id="polygon6714" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="258.92,284.8 258.89,285.02 270.5,280.64 "
-       id="polygon6716" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="257.87,282.18 258.06,282.38 269.68,278 "
-       id="polygon6718" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="350.52,272.98 350.83,272.65 341.81,270.13 "
-       id="polygon6720" />
-    <line
-       x1="240.42999"
-       y1="365.91"
-       x2="236.46001"
-       y2="364.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6722" />
-    <line
-       x1="214.19"
-       y1="352.73001"
-       x2="210.89999"
-       y2="350.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.34,275.18 350.16,274.81 341.15,272.29 "
-       id="polygon6726" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="258.89,284.46 258.92,284.8 270.54,280.42 "
-       id="polygon6728" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="302.28,277.1 302.38,276.8 293.92,283.3 "
-       id="polygon6730" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="298.53,250.89 298.47,250.47 288.59,247.47 "
-       id="polygon6732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.29,273.4 350.52,272.98 341.5,270.46 "
-       id="polygon6734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.16,274.81 350.09,274.36 341.08,271.84 "
-       id="polygon6736" />
-    <line
-       x1="337.10999"
-       y1="190.99001"
-       x2="339.5"
-       y2="188.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6738" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="258.06,282.38 258.26,282.7 269.88,278.32 "
-       id="polygon6740" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="297.56,252.88 297.87,252.64 287.99,249.64 "
-       id="polygon6742" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="300.95,274.68 300.6,274.6 292.14,281.09 "
-       id="polygon6744" />
-    <line
-       x1="263.23001"
-       y1="252.5"
-       x2="265.54999"
-       y2="253.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.14,273.88 350.29,273.4 341.27,270.88 "
-       id="polygon6748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.09,274.36 350.14,273.88 341.12,271.36 "
-       id="polygon6750" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="298.49,251.37 298.53,250.89 288.65,247.89 "
-       id="polygon6752" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="258.8,284.04 258.89,284.46 270.51,280.07 "
-       id="polygon6754" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="302.38,276.8 302.36,276.43 293.9,282.92 "
-       id="polygon6756" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="297.87,252.64 298.15,252.29 288.27,249.29 "
-       id="polygon6758" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="258.26,282.7 258.47,283.11 270.09,278.73 "
-       id="polygon6760" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="298.36,251.85 298.49,251.37 288.61,248.37 "
-       id="polygon6762" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="298.15,252.29 298.36,251.85 288.48,248.85 "
-       id="polygon6764" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="301.33,274.88 300.95,274.68 292.49,281.17 "
-       id="polygon6766" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="258.65,283.57 258.8,284.04 270.42,279.65 "
-       id="polygon6768" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="258.47,283.11 258.65,283.57 270.27,279.19 "
-       id="polygon6770" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="302.36,276.43 302.23,276 293.77,282.5 "
-       id="polygon6772" />
-    <line
-       x1="244.42"
-       y1="366.88"
-       x2="240.42999"
-       y2="365.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6774" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="301.69,275.19 301.33,274.88 292.86,281.38 "
-       id="polygon6776" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="302.23,276 302,275.58 293.54,282.07 "
-       id="polygon6778" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="302,275.58 301.69,275.19 293.23,281.69 "
-       id="polygon6780" />
-    <line
-       x1="210.89999"
-       y1="350.10001"
-       x2="207.78"
-       y2="347.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6782" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="356.35,269.83 356.09,269.58 346.93,267.02 "
-       id="polygon6784" />
-    <line
-       x1="354.76999"
-       y1="128.34"
-       x2="354.17001"
-       y2="124.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6786" />
-    <line
-       x1="250.57001"
-       y1="204.19"
-       x2="248.63"
-       y2="205.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6788" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="344.72,263.03 344.46,262.79 353.7,265.35 "
-       id="polygon6790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="356.09,269.58 355.92,269.21 346.76,266.66 "
-       id="polygon6792" />
-    <line
-       x1="155.84"
-       y1="193.46001"
-       x2="155.98"
-       y2="191.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6794" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="287.59,246.97 287.91,246.88 297.79,249.88 "
-       id="polygon6796" />
-    <line
-       x1="248.42"
-       y1="367.57001"
-       x2="244.42"
-       y2="366.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6798" />
-    <line
-       x1="339.5"
-       y1="188.58"
-       x2="341.76001"
-       y2="185.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6800" />
-    <line
-       x1="207.78"
-       y1="347.34"
-       x2="204.83"
-       y2="344.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6802" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="351.18,272.76 351.46,272.72 351.52,272.41 "
-       id="polygon6804" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="342.96,265.45 343.22,265.69 352.45,268.26 "
-       id="polygon6806" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="343.8,262.73 343.45,262.92 352.68,265.49 "
-       id="polygon6808" />
-    <line
-       x1="260.32001"
-       y1="116.8"
-       x2="259.39999"
-       y2="118.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6810" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="257.87,282.18 257.72,282.12 246.09,286.51 "
-       id="polygon6812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.79,265.08 342.96,265.45 352.19,268.02 "
-       id="polygon6814" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="343.45,262.92 343.15,263.25 352.38,265.81 "
-       id="polygon6816" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="287.68,249.88 287.36,249.98 297.25,252.97 "
-       id="polygon6818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.72,264.63 342.79,265.08 352.02,267.65 "
-       id="polygon6820" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="288.43,247.14 288.59,247.47 298.47,250.47 "
-       id="polygon6822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="343.15,263.25 342.91,263.67 352.14,266.23 "
-       id="polygon6824" />
-    <line
-       x1="355.23999"
-       y1="131.92"
-       x2="354.76999"
-       y2="128.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6826" />
-    <line
-       x1="252.39999"
-       y1="368"
-       x2="248.42"
-       y2="367.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.76,264.14 342.72,264.63 351.95,267.2 "
-       id="polygon6830" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="258.06,282.38 257.87,282.18 246.23,286.57 "
-       id="polygon6832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="342.91,263.67 342.76,264.14 351.99,266.71 "
-       id="polygon6834" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="293.92,283.3 293.82,283.59 302.28,277.1 "
-       id="polygon6836" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="291.85,281.15 292.14,281.09 300.6,274.6 "
-       id="polygon6838" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="258.89,285.02 258.92,284.8 247.28,289.19 "
-       id="polygon6840" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="287.99,249.64 287.68,249.88 297.56,252.88 "
-       id="polygon6842" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="293.9,282.92 293.92,283.3 302.38,276.8 "
-       id="polygon6844" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="292.14,281.09 292.49,281.17 300.95,274.68 "
-       id="polygon6846" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="288.27,249.29 287.99,249.64 297.87,252.64 "
-       id="polygon6848" />
-    <line
-       x1="204.83"
-       y1="344.47"
-       x2="202.08"
-       y2="341.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6850" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="258.26,282.7 258.06,282.38 246.42,286.77 "
-       id="polygon6852" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="288.65,247.89 288.61,248.37 298.49,251.37 "
-       id="polygon6854" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="258.92,284.8 258.89,284.46 247.25,288.85 "
-       id="polygon6856" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="288.48,248.85 288.27,249.29 298.15,252.29 "
-       id="polygon6858" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="288.61,248.37 288.48,248.85 298.36,251.85 "
-       id="polygon6860" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="299.15,264.26 298.89,264.52 289.88,267.04 "
-       id="polygon6862" />
-    <line
-       x1="341.76001"
-       y1="185.95"
-       x2="343.87"
-       y2="183.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6864" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="293.77,282.5 293.9,282.92 302.36,276.43 "
-       id="polygon6866" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="292.49,281.17 292.86,281.38 301.33,274.88 "
-       id="polygon6868" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="258.47,283.11 258.26,282.7 246.62,287.09 "
-       id="polygon6870" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="258.89,284.46 258.8,284.04 247.16,288.42 "
-       id="polygon6872" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="293.54,282.07 293.77,282.5 302.23,276 "
-       id="polygon6874" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="292.86,281.38 293.23,281.69 301.69,275.19 "
-       id="polygon6876" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="258.65,283.57 258.47,283.11 246.83,287.5 "
-       id="polygon6878" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="258.8,284.04 258.65,283.57 247.01,287.96 "
-       id="polygon6880" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="293.23,281.69 293.54,282.07 302,275.58 "
-       id="polygon6882" />
-    <line
-       x1="265.54999"
-       y1="253.11"
-       x2="267.94"
-       y2="254.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6884" />
-    <line
-       x1="256.35001"
-       y1="368.14001"
-       x2="252.39999"
-       y2="368"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6886" />
-    <line
-       x1="155.98"
-       y1="191.17999"
-       x2="156.39"
-       y2="188.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6888" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="247.28,289.19 247.25,289.41 258.89,285.02 "
-       id="polygon6890" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="300.17,264.35 299.82,264.17 290.81,266.69 "
-       id="polygon6892" />
-    <line
-       x1="355.54999"
-       y1="135.61"
-       x2="355.23999"
-       y2="131.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6894" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="300.43,267.13 300.69,266.86 291.68,269.39 "
-       id="polygon6896" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="246.23,286.57 246.42,286.77 258.06,282.38 "
-       id="polygon6898" />
-    <line
-       x1="252.64"
-       y1="203.52"
-       x2="250.57001"
-       y2="204.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6900" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="300.48,264.66 300.17,264.35 291.16,266.87 "
-       id="polygon6902" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="300.69,266.86 300.86,266.49 291.85,269.01 "
-       id="polygon6904" />
-    <line
-       x1="202.08"
-       y1="341.5"
-       x2="199.53999"
-       y2="338.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6906" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="247.25,288.85 247.28,289.19 258.92,284.8 "
-       id="polygon6908" />
-    <line
-       x1="343.87"
-       y1="183.11"
-       x2="345.82001"
-       y2="180.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6910" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="300.73,265.07 300.48,264.66 291.47,267.18 "
-       id="polygon6912" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="300.86,266.49 300.93,266.03 291.91,268.55 "
-       id="polygon6914" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="351.52,272.41 351.17,272.46 360.21,274.98 "
-       id="polygon6916" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="246.42,286.77 246.62,287.09 258.26,282.7 "
-       id="polygon6918" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="352.68,265.49 353.03,265.29 343.8,262.73 "
-       id="polygon6920" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="300.88,265.55 300.73,265.07 291.71,267.59 "
-       id="polygon6922" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="300.93,266.03 300.88,265.55 291.87,268.07 "
-       id="polygon6924" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="247.16,288.42 247.25,288.85 258.89,284.46 "
-       id="polygon6926" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="350.34,275.18 350.59,275.42 359.63,277.95 "
-       id="polygon6928" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="246.62,287.09 246.83,287.5 258.47,283.11 "
-       id="polygon6930" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="247.01,287.96 247.16,288.42 258.8,284.04 "
-       id="polygon6932" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="351.17,272.46 350.83,272.65 359.87,275.18 "
-       id="polygon6934" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="352.38,265.81 352.68,265.49 343.45,262.92 "
-       id="polygon6936" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="246.83,287.5 247.01,287.96 258.65,283.57 "
-       id="polygon6938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.19,268.02 352.02,267.65 342.79,265.08 "
-       id="polygon6940" />
-    <line
-       x1="260.23999"
-       y1="368"
-       x2="256.35001"
-       y2="368.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.16,274.81 350.34,275.18 359.38,277.71 "
-       id="polygon6944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.14,266.23 352.38,265.81 343.15,263.25 "
-       id="polygon6946" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="350.83,272.65 350.52,272.98 359.57,275.5 "
-       id="polygon6948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.02,267.65 351.95,267.2 342.72,264.63 "
-       id="polygon6950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.99,266.71 352.14,266.23 342.91,263.67 "
-       id="polygon6952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.95,267.2 351.99,266.71 342.76,264.14 "
-       id="polygon6954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.09,274.36 350.16,274.81 359.21,277.34 "
-       id="polygon6956" />
-    <line
-       x1="355.70999"
-       y1="139.39"
-       x2="355.54999"
-       y2="135.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.52,272.98 350.29,273.4 359.33,275.93 "
-       id="polygon6960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.14,273.88 350.09,274.36 359.14,276.89 "
-       id="polygon6962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="350.29,273.4 350.14,273.88 359.18,276.41 "
-       id="polygon6964" />
-    <line
-       x1="261.34"
-       y1="115.77"
-       x2="260.32001"
-       y2="116.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6966" />
-    <line
-       x1="345.82001"
-       y1="180.07001"
-       x2="347.60999"
-       y2="176.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6968" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="356.09,269.58 356.35,269.83 365.54,272.39 "
-       id="polygon6970" />
-    <line
-       x1="199.53999"
-       y1="338.47"
-       x2="197.2"
-       y2="335.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6972" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="247.01,289.45 247.15,289.5 235.5,293.9 "
-       id="polygon6974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="355.92,269.21 356.09,269.58 365.28,272.14 "
-       id="polygon6976" />
-    <line
-       x1="264.04999"
-       y1="367.57999"
-       x2="260.23999"
-       y2="368"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6978" />
-    <line
-       x1="355.70001"
-       y1="143.23"
-       x2="355.70999"
-       y2="139.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6980" />
-    <line
-       x1="156.39"
-       y1="188.98"
-       x2="157.05"
-       y2="186.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6982" />
-    <line
-       x1="347.60999"
-       y1="176.85001"
-       x2="349.22"
-       y2="173.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6984" />
-    <line
-       x1="267.94"
-       y1="254.00999"
-       x2="270.39001"
-       y2="255.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6986" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="246.23,286.57 246.09,286.51 234.43,290.9 "
-       id="polygon6988" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="246.42,286.77 246.23,286.57 234.57,290.96 "
-       id="polygon6990" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="235.5,293.9 235.35,293.84 247.01,289.45 "
-       id="polygon6992" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="247.25,289.41 247.28,289.19 235.63,293.59 "
-       id="polygon6994" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="291.68,269.39 291.42,269.65 300.43,267.13 "
-       id="polygon6996" />
-    <line
-       x1="355.51999"
-       y1="147.12"
-       x2="355.70001"
-       y2="143.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6998" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="288.43,247.14 288.2,246.94 278.29,243.93 "
-       id="polygon7000" />
-    <line
-       x1="349.22"
-       y1="173.47"
-       x2="350.66"
-       y2="169.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7002" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="246.62,287.09 246.42,286.77 234.76,291.16 "
-       id="polygon7004" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="291.85,269.01 291.68,269.39 300.69,266.86 "
-       id="polygon7006" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="247.28,289.19 247.25,288.85 235.59,293.24 "
-       id="polygon7008" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="359.63,277.95 359.38,277.71 350.34,275.18 "
-       id="polygon7010" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="291.16,266.87 291.47,267.18 300.48,264.66 "
-       id="polygon7012" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="291.91,268.55 291.85,269.01 300.86,266.49 "
-       id="polygon7014" />
-    <line
-       x1="254.82001"
-       y1="203.16"
-       x2="252.64"
-       y2="203.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7016" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="246.83,287.5 246.62,287.09 234.96,291.48 "
-       id="polygon7018" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="359.57,275.5 359.87,275.18 350.83,272.65 "
-       id="polygon7020" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="291.47,267.18 291.71,267.59 300.73,265.07 "
-       id="polygon7022" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="247.25,288.85 247.16,288.42 235.5,292.82 "
-       id="polygon7024" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="291.87,268.07 291.91,268.55 300.93,266.03 "
-       id="polygon7026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.38,277.71 359.21,277.34 350.16,274.81 "
-       id="polygon7028" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="291.71,267.59 291.87,268.07 300.88,265.55 "
-       id="polygon7030" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="247.01,287.96 246.83,287.5 235.17,291.89 "
-       id="polygon7032" />
-    <line
-       x1="197.2"
-       y1="335.38"
-       x2="195.10001"
-       y2="332.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7034" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="247.16,288.42 247.01,287.96 235.35,292.36 "
-       id="polygon7036" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="292.14,281.09 291.85,281.15 283.36,287.66 "
-       id="polygon7038" />
-    <line
-       x1="267.78"
-       y1="366.87"
-       x2="264.04999"
-       y2="367.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.33,275.93 359.57,275.5 350.52,272.98 "
-       id="polygon7042" />
-    <line
-       x1="355.16"
-       y1="151.02"
-       x2="355.51999"
-       y2="147.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7044" />
-    <line
-       x1="350.66"
-       y1="169.95"
-       x2="351.92001"
-       y2="166.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.21,277.34 359.14,276.89 350.09,274.36 "
-       id="polygon7048" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="288.65,247.89 288.59,247.47 278.68,244.46 "
-       id="polygon7050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.18,276.41 359.33,275.93 350.29,273.4 "
-       id="polygon7052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.14,276.89 359.18,276.41 350.14,273.88 "
-       id="polygon7054" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="293.82,283.59 293.92,283.3 285.43,289.82 "
-       id="polygon7056" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="287.68,249.88 287.99,249.64 278.08,246.64 "
-       id="polygon7058" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="292.49,281.17 292.14,281.09 283.65,287.6 "
-       id="polygon7060" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="288.61,248.37 288.65,247.89 278.74,244.88 "
-       id="polygon7062" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="287.99,249.64 288.27,249.29 278.35,246.29 "
-       id="polygon7064" />
-    <line
-       x1="351.92001"
-       y1="166.32001"
-       x2="353"
-       y2="162.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7066" />
-    <line
-       x1="354.62"
-       y1="154.91"
-       x2="355.16"
-       y2="151.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7068" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="288.48,248.85 288.61,248.37 278.7,245.36 "
-       id="polygon7070" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="288.27,249.29 288.48,248.85 278.57,245.84 "
-       id="polygon7072" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="235.63,293.59 235.59,293.81 247.25,289.41 "
-       id="polygon7074" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="293.92,283.3 293.9,282.92 285.41,289.44 "
-       id="polygon7076" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="292.86,281.38 292.49,281.17 284,287.68 "
-       id="polygon7078" />
-    <line
-       x1="353"
-       y1="162.58"
-       x2="353.91"
-       y2="158.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7080" />
-    <line
-       x1="353.91"
-       y1="158.77"
-       x2="354.62"
-       y2="154.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7082" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="234.57,290.96 234.76,291.16 246.42,286.77 "
-       id="polygon7084" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="293.9,282.92 293.77,282.5 285.28,289.02 "
-       id="polygon7086" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="293.23,281.69 292.86,281.38 284.38,287.89 "
-       id="polygon7088" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="293.77,282.5 293.54,282.07 285.05,288.59 "
-       id="polygon7090" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="235.59,293.24 235.63,293.59 247.28,289.19 "
-       id="polygon7092" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="293.54,282.07 293.23,281.69 284.74,288.2 "
-       id="polygon7094" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="234.76,291.16 234.96,291.48 246.62,287.09 "
-       id="polygon7096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="365.28,272.14 365.11,271.77 355.92,269.21 "
-       id="polygon7098" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="235.5,292.82 235.59,293.24 247.25,288.85 "
-       id="polygon7100" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="234.96,291.48 235.17,291.89 246.83,287.5 "
-       id="polygon7102" />
-    <line
-       x1="157.05"
-       y1="186.89"
-       x2="157.96001"
-       y2="184.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7104" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="235.35,292.36 235.5,292.82 247.16,288.42 "
-       id="polygon7106" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="235.17,291.89 235.35,292.36 247.01,287.96 "
-       id="polygon7108" />
-    <line
-       x1="271.39001"
-       y1="365.87"
-       x2="267.78"
-       y2="366.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7110" />
-    <line
-       x1="270.39001"
-       y1="255.19"
-       x2="272.88"
-       y2="256.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7112" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="353.38,265.25 353.03,265.29 362.29,267.87 "
-       id="polygon7114" />
-    <line
-       x1="195.10001"
-       y1="332.26999"
-       x2="193.22"
-       y2="329.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7116" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="352.19,268.02 352.45,268.26 361.71,270.84 "
-       id="polygon7118" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="353.03,265.29 352.68,265.49 361.95,268.07 "
-       id="polygon7120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.02,267.65 352.19,268.02 361.45,270.59 "
-       id="polygon7122" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="352.68,265.49 352.38,265.81 361.64,268.39 "
-       id="polygon7124" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="277.77,246.88 277.45,246.97 287.36,249.98 "
-       id="polygon7126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.95,267.2 352.02,267.65 361.28,270.23 "
-       id="polygon7128" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="278.52,244.13 278.68,244.46 288.59,247.47 "
-       id="polygon7130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.38,265.81 352.14,266.23 361.4,268.81 "
-       id="polygon7132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="351.99,266.71 351.95,267.2 361.21,269.78 "
-       id="polygon7134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="352.14,266.23 351.99,266.71 361.25,269.29 "
-       id="polygon7136" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="235.35,293.84 235.5,293.9 223.82,298.3 "
-       id="polygon7138" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="278.08,246.64 277.77,246.88 287.68,249.88 "
-       id="polygon7140" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="278.68,244.46 278.74,244.88 288.65,247.89 "
-       id="polygon7142" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="278.35,246.29 278.08,246.64 287.99,249.64 "
-       id="polygon7144" />
-    <line
-       x1="257.07999"
-       y1="203.10001"
-       x2="254.82001"
-       y2="203.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7146" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="278.74,244.88 278.7,245.36 288.61,248.37 "
-       id="polygon7148" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="285.41,289.44 285.43,289.82 293.92,283.3 "
-       id="polygon7150" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="283.65,287.6 284,287.68 292.49,281.17 "
-       id="polygon7152" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="278.57,245.84 278.35,246.29 288.27,249.29 "
-       id="polygon7154" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="278.7,245.36 278.57,245.84 288.48,248.85 "
-       id="polygon7156" />
-    <line
-       x1="274.87"
-       y1="364.57999"
-       x2="271.39001"
-       y2="365.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7158" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="285.28,289.02 285.41,289.44 293.9,282.92 "
-       id="polygon7160" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="284,287.68 284.38,287.89 292.86,281.38 "
-       id="polygon7162" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="234.76,291.16 234.57,290.96 222.9,295.36 "
-       id="polygon7164" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="285.05,288.59 285.28,289.02 293.77,282.5 "
-       id="polygon7166" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="284.38,287.89 284.74,288.2 293.23,281.69 "
-       id="polygon7168" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="235.59,293.81 235.63,293.59 223.95,297.99 "
-       id="polygon7170" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="284.74,288.2 285.05,288.59 293.54,282.07 "
-       id="polygon7172" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="361.14,275.29 360.88,275.04 369.95,277.57 "
-       id="polygon7174" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="234.96,291.48 234.76,291.16 223.08,295.56 "
-       id="polygon7176" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="235.63,293.59 235.59,293.24 223.91,297.65 "
-       id="polygon7178" />
-    <line
-       x1="157.96001"
-       y1="184.92999"
-       x2="159.11"
-       y2="183.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7180" />
-    <line
-       x1="193.22"
-       y1="329.16"
-       x2="191.59"
-       y2="326.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7182" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="235.17,291.89 234.96,291.48 223.29,295.88 "
-       id="polygon7184" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="235.59,293.24 235.5,292.82 223.82,297.22 "
-       id="polygon7186" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="235.35,292.36 235.17,291.89 223.49,296.3 "
-       id="polygon7188" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="235.5,292.82 235.35,292.36 223.67,296.76 "
-       id="polygon7190" />
-    <line
-       x1="272.88"
-       y1="256.66"
-       x2="275.38"
-       y2="258.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7192" />
-    <line
-       x1="263.63"
-       y1="114.57"
-       x2="262.44"
-       y2="115.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7194" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="361.95,268.07 362.29,267.87 353.03,265.29 "
-       id="polygon7196" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="361.71,270.84 361.45,270.59 352.19,268.02 "
-       id="polygon7198" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="360.21,274.98 359.87,275.18 368.94,277.71 "
-       id="polygon7200" />
-    <line
-       x1="278.20999"
-       y1="363.01999"
-       x2="274.87"
-       y2="364.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7202" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="223.95,297.99 223.91,298.21 235.59,293.81 "
-       id="polygon7204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.21,277.34 359.38,277.71 368.45,280.25 "
-       id="polygon7206" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="361.64,268.39 361.95,268.07 352.68,265.49 "
-       id="polygon7208" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="290.75,269.74 291.1,269.77 282.06,272.3 "
-       id="polygon7210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.45,270.59 361.28,270.23 352.02,267.65 "
-       id="polygon7212" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="359.87,275.18 359.57,275.5 368.63,278.04 "
-       id="polygon7214" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="222.9,295.36 223.08,295.56 234.76,291.16 "
-       id="polygon7216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.14,276.89 359.21,277.34 368.27,279.88 "
-       id="polygon7218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.4,268.81 361.64,268.39 352.38,265.81 "
-       id="polygon7220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.28,270.23 361.21,269.78 351.95,267.2 "
-       id="polygon7222" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="290.81,266.69 290.46,266.66 281.41,269.18 "
-       id="polygon7224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.57,275.5 359.33,275.93 368.39,278.46 "
-       id="polygon7226" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="223.91,297.65 223.95,297.99 235.63,293.59 "
-       id="polygon7228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.25,269.29 361.4,268.81 352.14,266.23 "
-       id="polygon7230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.18,276.41 359.14,276.89 368.21,279.43 "
-       id="polygon7232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.21,269.78 361.25,269.29 351.99,266.71 "
-       id="polygon7234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="359.33,275.93 359.18,276.41 368.25,278.94 "
-       id="polygon7236" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="223.08,295.56 223.29,295.88 234.96,291.48 "
-       id="polygon7238" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="291.16,266.87 290.81,266.69 281.77,269.21 "
-       id="polygon7240" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="223.82,297.22 223.91,297.65 235.59,293.24 "
-       id="polygon7242" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="223.29,295.88 223.49,296.3 235.17,291.89 "
-       id="polygon7244" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="223.67,296.76 223.82,297.22 235.5,292.82 "
-       id="polygon7246" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="223.49,296.3 223.67,296.76 235.35,292.36 "
-       id="polygon7248" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="291.47,267.18 291.16,266.87 282.11,269.39 "
-       id="polygon7250" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="291.68,269.39 291.85,269.01 282.8,271.54 "
-       id="polygon7252" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="291.71,267.59 291.47,267.18 282.43,269.71 "
-       id="polygon7254" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="291.85,269.01 291.91,268.55 282.87,271.09 "
-       id="polygon7256" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="291.87,268.07 291.71,267.59 282.67,270.12 "
-       id="polygon7258" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="291.91,268.55 291.87,268.07 282.82,270.6 "
-       id="polygon7260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="365.11,271.77 365.28,272.14 374.5,274.71 "
-       id="polygon7262" />
-    <line
-       x1="259.42001"
-       y1="203.36"
-       x2="257.07999"
-       y2="203.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7264" />
-    <line
-       x1="191.59"
-       y1="326.06"
-       x2="190.2"
-       y2="323"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7266" />
-    <line
-       x1="281.38"
-       y1="361.17999"
-       x2="278.20999"
-       y2="363.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7268" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="222.66,295.39 222.63,295.62 210.93,300.02 "
-       id="polygon7270" />
-    <line
-       x1="159.11"
-       y1="183.10001"
-       x2="160.5"
-       y2="181.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7272" />
-    <line
-       x1="275.38"
-       y1="258.41"
-       x2="277.89001"
-       y2="260.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7274" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="368.94,277.71 369.29,277.52 360.21,274.98 "
-       id="polygon7276" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="368.7,280.49 368.45,280.25 359.38,277.71 "
-       id="polygon7278" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="278.52,244.13 278.29,243.93 268.35,240.91 "
-       id="polygon7280" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="368.63,278.04 368.94,277.71 359.87,275.18 "
-       id="polygon7282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.45,280.25 368.27,279.88 359.21,277.34 "
-       id="polygon7284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.39,278.46 368.63,278.04 359.57,275.5 "
-       id="polygon7286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.27,279.88 368.21,279.43 359.14,276.89 "
-       id="polygon7288" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="277.45,246.97 277.77,246.88 267.82,243.86 "
-       id="polygon7290" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="210.93,300.02 210.96,299.8 222.66,295.39 "
-       id="polygon7292" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="223.08,295.56 222.9,295.36 211.2,299.77 "
-       id="polygon7294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.25,278.94 368.39,278.46 359.33,275.93 "
-       id="polygon7296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.21,279.43 368.25,278.94 359.18,276.41 "
-       id="polygon7298" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="223.91,298.21 223.95,297.99 212.25,302.4 "
-       id="polygon7300" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="375.42,275.02 375.07,275.06 365.86,272.49 "
-       id="polygon7302" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="278.74,244.88 278.68,244.46 268.73,241.44 "
-       id="polygon7304" />
-    <line
-       x1="264.88"
-       y1="114.39"
-       x2="263.63"
-       y2="114.57"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7306" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="277.77,246.88 278.08,246.64 268.14,243.63 "
-       id="polygon7308" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="223.29,295.88 223.08,295.56 211.38,299.97 "
-       id="polygon7310" />
-    <line
-       x1="284.38"
-       y1="359.07999"
-       x2="281.38"
-       y2="361.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7312" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="278.7,245.36 278.74,244.88 268.8,241.87 "
-       id="polygon7314" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="223.95,297.99 223.91,297.65 212.21,302.06 "
-       id="polygon7316" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="278.08,246.64 278.35,246.29 268.41,243.27 "
-       id="polygon7318" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="284,287.68 283.65,287.6 275.14,294.14 "
-       id="polygon7320" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="278.57,245.84 278.7,245.36 268.76,242.34 "
-       id="polygon7322" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="278.35,246.29 278.57,245.84 268.63,242.83 "
-       id="polygon7324" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="223.49,296.3 223.29,295.88 211.59,300.29 "
-       id="polygon7326" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="285.43,289.82 285.41,289.44 276.9,295.97 "
-       id="polygon7328" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="223.91,297.65 223.82,297.22 212.12,301.63 "
-       id="polygon7330" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="282.64,271.92 282.38,272.18 291.42,269.65 "
-       id="polygon7332" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="284.38,287.89 284,287.68 275.48,294.21 "
-       id="polygon7334" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="223.67,296.76 223.49,296.3 211.79,300.71 "
-       id="polygon7336" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="374.75,274.96 374.5,274.71 365.28,272.14 "
-       id="polygon7338" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="223.82,297.22 223.67,296.76 211.97,301.17 "
-       id="polygon7340" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="285.41,289.44 285.28,289.02 276.77,295.55 "
-       id="polygon7342" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="284.74,288.2 284.38,287.89 275.86,294.42 "
-       id="polygon7344" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="282.8,271.54 282.64,271.92 291.68,269.39 "
-       id="polygon7346" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="285.28,289.02 285.05,288.59 276.54,295.12 "
-       id="polygon7348" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="285.05,288.59 284.74,288.2 276.22,294.73 "
-       id="polygon7350" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="363.21,268.18 362.95,267.93 372.24,270.51 "
-       id="polygon7352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.5,274.71 374.33,274.34 365.11,271.77 "
-       id="polygon7354" />
-    <line
-       x1="190.2"
-       y1="323"
-       x2="189.07001"
-       y2="320"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7356" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="282.11,269.39 282.43,269.71 291.47,267.18 "
-       id="polygon7358" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="282.87,271.09 282.8,271.54 291.85,269.01 "
-       id="polygon7360" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="282.43,269.71 282.67,270.12 291.71,267.59 "
-       id="polygon7362" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="282.82,270.6 282.87,271.09 291.91,268.55 "
-       id="polygon7364" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="282.67,270.12 282.82,270.6 291.87,268.07 "
-       id="polygon7366" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="212.25,302.4 212.22,302.63 223.91,298.21 "
-       id="polygon7368" />
-    <line
-       x1="160.5"
-       y1="181.42"
-       x2="162.11"
-       y2="179.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7370" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="211.2,299.77 211.38,299.97 223.08,295.56 "
-       id="polygon7372" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="369.63,277.47 369.29,277.52 369.29,277.82 "
-       id="polygon7374" />
-    <line
-       x1="261.81"
-       y1="203.92"
-       x2="259.42001"
-       y2="203.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7376" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="212.21,302.06 212.25,302.4 223.95,297.99 "
-       id="polygon7378" />
-    <line
-       x1="277.89001"
-       y1="260.42999"
-       x2="280.38"
-       y2="262.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7380" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="211.38,299.97 211.59,300.29 223.29,295.88 "
-       id="polygon7382" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="361.45,270.59 361.71,270.84 370.99,273.43 "
-       id="polygon7384" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="212.12,301.63 212.21,302.06 223.91,297.65 "
-       id="polygon7386" />
-    <line
-       x1="287.17999"
-       y1="356.72"
-       x2="284.38"
-       y2="359.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7388" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="362.29,267.87 361.95,268.07 371.23,270.65 "
-       id="polygon7390" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="211.59,300.29 211.79,300.71 223.49,296.3 "
-       id="polygon7392" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="211.97,301.17 212.12,301.63 223.82,297.22 "
-       id="polygon7394" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="268.35,240.91 268.58,241.11 278.52,244.13 "
-       id="polygon7396" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="211.79,300.71 211.97,301.17 223.67,296.76 "
-       id="polygon7398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.28,270.23 361.45,270.59 370.73,273.18 "
-       id="polygon7400" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="361.95,268.07 361.64,268.39 370.93,270.98 "
-       id="polygon7402" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="267.82,243.86 267.51,243.96 277.45,246.97 "
-       id="polygon7404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.21,269.78 361.28,270.23 370.57,272.82 "
-       id="polygon7406" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="268.58,241.11 268.73,241.44 278.68,244.46 "
-       id="polygon7408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.64,268.39 361.4,268.81 370.69,271.4 "
-       id="polygon7410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.25,269.29 361.21,269.78 370.5,272.37 "
-       id="polygon7412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="361.4,268.81 361.25,269.29 370.54,271.88 "
-       id="polygon7414" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="268.14,243.63 267.82,243.86 277.77,246.88 "
-       id="polygon7416" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="268.73,241.44 268.8,241.87 278.74,244.88 "
-       id="polygon7418" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="276.92,296.35 276.82,296.64 285.33,290.11 "
-       id="polygon7420" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="274.84,294.19 275.14,294.14 283.65,287.6 "
-       id="polygon7422" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="268.41,243.27 268.14,243.63 278.08,246.64 "
-       id="polygon7424" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="268.8,241.87 268.76,242.34 278.7,245.36 "
-       id="polygon7426" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="268.63,242.83 268.41,243.27 278.35,246.29 "
-       id="polygon7428" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="268.76,242.34 268.63,242.83 278.57,245.84 "
-       id="polygon7430" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="276.9,295.97 276.92,296.35 285.43,289.82 "
-       id="polygon7432" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="275.14,294.14 275.48,294.21 284,287.68 "
-       id="polygon7434" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="276.77,295.55 276.9,295.97 285.41,289.44 "
-       id="polygon7436" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="275.48,294.21 275.86,294.42 284.38,287.89 "
-       id="polygon7438" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="276.54,295.12 276.77,295.55 285.28,289.02 "
-       id="polygon7440" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="275.86,294.42 276.22,294.73 284.74,288.2 "
-       id="polygon7442" />
-    <line
-       x1="266.17999"
-       y1="114.51"
-       x2="264.88"
-       y2="114.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7444" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="276.22,294.73 276.54,295.12 285.05,288.59 "
-       id="polygon7446" />
-    <line
-       x1="289.79001"
-       y1="354.10999"
-       x2="287.17999"
-       y2="356.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7448" />
-    <line
-       x1="189.07001"
-       y1="320"
-       x2="188.17999"
-       y2="317.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7450" />
-    <line
-       x1="162.11"
-       y1="179.91"
-       x2="163.92"
-       y2="178.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7452" />
-    <line
-       x1="280.38"
-       y1="262.70999"
-       x2="282.82999"
-       y2="265.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7454" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="199.22,304.44 199.25,304.21 210.96,299.8 "
-       id="polygon7456" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="211.38,299.97 211.2,299.77 199.48,304.19 "
-       id="polygon7458" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="212.22,302.63 212.25,302.4 200.53,306.82 "
-       id="polygon7460" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="368.45,280.25 368.7,280.49 377.8,283.04 "
-       id="polygon7462" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="369.29,277.52 368.94,277.71 378.04,280.26 "
-       id="polygon7464" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="371.23,270.65 371.57,270.45 362.29,267.87 "
-       id="polygon7466" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="211.59,300.29 211.38,299.97 199.66,304.39 "
-       id="polygon7468" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="212.25,302.4 212.21,302.06 200.5,306.48 "
-       id="polygon7470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.27,279.88 368.45,280.25 377.54,282.79 "
-       id="polygon7472" />
-    <line
-       x1="264.23001"
-       y1="204.78999"
-       x2="261.81"
-       y2="203.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7474" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="368.94,277.71 368.63,278.04 377.73,280.58 "
-       id="polygon7476" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="370.93,270.98 371.23,270.65 361.95,268.07 "
-       id="polygon7478" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="211.79,300.71 211.59,300.29 199.87,304.71 "
-       id="polygon7480" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="212.21,302.06 212.12,301.63 200.4,306.05 "
-       id="polygon7482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.21,279.43 368.27,279.88 377.37,282.43 "
-       id="polygon7484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.73,273.18 370.57,272.82 361.28,270.23 "
-       id="polygon7486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.63,278.04 368.39,278.46 377.49,281.01 "
-       id="polygon7488" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="211.97,301.17 211.79,300.71 200.07,305.13 "
-       id="polygon7490" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="212.12,301.63 211.97,301.17 200.26,305.59 "
-       id="polygon7492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.25,278.94 368.21,279.43 377.3,281.97 "
-       id="polygon7494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="368.39,278.46 368.25,278.94 377.34,281.48 "
-       id="polygon7496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.69,271.4 370.93,270.98 361.64,268.39 "
-       id="polygon7498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.57,272.82 370.5,272.37 361.21,269.78 "
-       id="polygon7500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.54,271.88 370.69,271.4 361.4,268.81 "
-       id="polygon7502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.5,272.37 370.54,271.88 361.25,269.29 "
-       id="polygon7504" />
-    <line
-       x1="292.17999"
-       y1="351.26999"
-       x2="289.79001"
-       y2="354.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7506" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="200.53,306.82 200.5,307.05 212.22,302.63 "
-       id="polygon7508" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="374.5,274.71 374.75,274.96 384,277.54 "
-       id="polygon7510" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="199.48,304.19 199.66,304.39 211.38,299.97 "
-       id="polygon7512" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="281.09,269.31 280.84,269.57 271.76,272.11 "
-       id="polygon7514" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="200.5,306.48 200.53,306.82 212.25,302.4 "
-       id="polygon7516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="374.33,274.34 374.5,274.71 383.74,277.29 "
-       id="polygon7518" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="199.66,304.39 199.87,304.71 211.59,300.29 "
-       id="polygon7520" />
-    <line
-       x1="282.82999"
-       y1="265.25"
-       x2="285.20999"
-       y2="268.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7522" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="200.4,306.05 200.5,306.48 212.21,302.06 "
-       id="polygon7524" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="199.87,304.71 200.07,305.13 211.79,300.71 "
-       id="polygon7526" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="200.26,305.59 200.4,306.05 212.12,301.63 "
-       id="polygon7528" />
-    <line
-       x1="188.17999"
-       y1="317.09"
-       x2="187.55"
-       y2="314.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7530" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="200.07,305.13 200.26,305.59 211.97,301.17 "
-       id="polygon7532" />
-    <line
-       x1="163.92"
-       y1="178.58"
-       x2="165.94"
-       y2="177.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7534" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="371.66,273.49 371.31,273.54 371.37,273.22 "
-       id="polygon7536" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="378.38,280.06 378.73,280.01 369.63,277.47 "
-       id="polygon7538" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="271.76,272.11 272.02,271.84 281.09,269.31 "
-       id="polygon7540" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="282.11,269.39 281.77,269.21 272.69,271.75 "
-       id="polygon7542" />
-    <line
-       x1="294.34"
-       y1="348.20999"
-       x2="292.17999"
-       y2="351.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7544" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="378.04,280.26 378.38,280.06 369.29,277.52 "
-       id="polygon7546" />
-    <line
-       x1="267.51999"
-       y1="114.92"
-       x2="266.17999"
-       y2="114.51"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7548" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="377.8,283.04 377.54,282.79 368.45,280.25 "
-       id="polygon7550" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="282.43,269.71 282.11,269.39 273.04,271.93 "
-       id="polygon7552" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="282.64,271.92 282.8,271.54 273.73,274.09 "
-       id="polygon7554" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="371.57,270.45 371.23,270.65 371.31,270.91 "
-       id="polygon7556" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="268.58,241.11 268.35,240.91 258.38,237.88 "
-       id="polygon7558" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="377.73,280.58 378.04,280.26 368.94,277.71 "
-       id="polygon7560" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="274.64,294.38 274.54,294.67 266,301.22 "
-       id="polygon7562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.54,282.79 377.37,282.43 368.27,279.88 "
-       id="polygon7564" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="282.67,270.12 282.43,269.71 273.35,272.25 "
-       id="polygon7566" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="282.8,271.54 282.87,271.09 273.8,273.63 "
-       id="polygon7568" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="282.82,270.6 282.67,270.12 273.59,272.66 "
-       id="polygon7570" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="282.87,271.09 282.82,270.6 273.75,273.14 "
-       id="polygon7572" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="276.32,296.89 276.61,296.83 268.07,303.39 "
-       id="polygon7574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.49,281.01 377.73,280.58 368.63,278.04 "
-       id="polygon7576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.37,282.43 377.3,281.97 368.21,279.43 "
-       id="polygon7578" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="268.73,241.44 268.58,241.11 258.61,238.09 "
-       id="polygon7580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.34,281.48 377.49,281.01 368.39,278.46 "
-       id="polygon7582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.3,281.97 377.34,281.48 368.25,278.94 "
-       id="polygon7584" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="267.51,243.96 267.82,243.86 257.85,240.84 "
-       id="polygon7586" />
-    <line
-       x1="266.66"
-       y1="205.97"
-       x2="264.23001"
-       y2="204.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7588" />
-    <line
-       x1="195.50999"
-       y1="186.39"
-       x2="197.64"
-       y2="189.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7590" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="268.8,241.87 268.73,241.44 258.77,238.41 "
-       id="polygon7592" />
-    <line
-       x1="197.64"
-       y1="189.71001"
-       x2="199.89999"
-       y2="192.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7594" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="267.82,243.86 268.14,243.63 258.16,240.6 "
-       id="polygon7596" />
-    <line
-       x1="193.53999"
-       y1="183"
-       x2="195.50999"
-       y2="186.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7598" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="268.76,242.34 268.8,241.87 258.82,238.84 "
-       id="polygon7600" />
-    <line
-       x1="199.89999"
-       y1="192.92"
-       x2="202.31"
-       y2="196.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7602" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="276.82,296.64 276.92,296.35 268.38,302.91 "
-       id="polygon7604" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="268.14,243.63 268.41,243.27 258.44,240.24 "
-       id="polygon7606" />
-    <line
-       x1="285.20999"
-       y1="268.01999"
-       x2="287.51999"
-       y2="271.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7608" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="268.63,242.83 268.76,242.34 258.79,239.32 "
-       id="polygon7610" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="268.41,243.27 268.63,242.83 258.65,239.8 "
-       id="polygon7612" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="275.48,294.21 275.14,294.14 266.59,300.69 "
-       id="polygon7614" />
-    <line
-       x1="296.26999"
-       y1="344.95001"
-       x2="294.34"
-       y2="348.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7616" />
-    <line
-       x1="191.73"
-       y1="179.53999"
-       x2="193.53999"
-       y2="183"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7618" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="276.92,296.35 276.9,295.97 268.36,302.53 "
-       id="polygon7620" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="187.48,308.86 187.52,308.64 199.25,304.21 "
-       id="polygon7622" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="199.66,304.39 199.48,304.19 187.75,308.61 "
-       id="polygon7624" />
-    <line
-       x1="202.31"
-       y1="196.00999"
-       x2="204.84"
-       y2="198.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7626" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="275.86,294.42 275.48,294.21 266.95,300.77 "
-       id="polygon7628" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="200.5,307.05 200.53,306.82 188.8,311.25 "
-       id="polygon7630" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="276.9,295.97 276.77,295.55 268.23,302.11 "
-       id="polygon7632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="383.74,277.29 383.57,276.92 374.33,274.34 "
-       id="polygon7634" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="276.22,294.73 275.86,294.42 267.32,300.97 "
-       id="polygon7636" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="276.77,295.55 276.54,295.12 268,301.68 "
-       id="polygon7638" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="276.54,295.12 276.22,294.73 267.68,301.29 "
-       id="polygon7640" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="199.87,304.71 199.66,304.39 187.93,308.81 "
-       id="polygon7642" />
-    <line
-       x1="165.94"
-       y1="177.44"
-       x2="168.14"
-       y2="176.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7644" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="200.53,306.82 200.5,306.48 188.76,310.9 "
-       id="polygon7646" />
-    <line
-       x1="190.09"
-       y1="176.03999"
-       x2="191.73"
-       y2="179.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7648" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="200.07,305.13 199.87,304.71 188.13,309.14 "
-       id="polygon7650" />
-    <line
-       x1="204.84"
-       y1="198.95"
-       x2="207.5"
-       y2="201.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7652" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="200.5,306.48 200.4,306.05 188.66,310.48 "
-       id="polygon7654" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="200.26,305.59 200.07,305.13 188.34,309.55 "
-       id="polygon7656" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="200.4,306.05 200.26,305.59 188.52,310.01 "
-       id="polygon7658" />
-    <line
-       x1="187.55"
-       y1="314.28"
-       x2="187.2"
-       y2="311.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7660" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="371.92,270.41 371.57,270.45 380.89,273.04 "
-       id="polygon7662" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="187.61,308.55 187.75,308.61 199.48,304.19 "
-       id="polygon7664" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="370.73,273.18 370.99,273.43 380.31,276.03 "
-       id="polygon7666" />
-    <line
-       x1="188.61"
-       y1="172.53"
-       x2="190.09"
-       y2="176.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7668" />
-    <line
-       x1="297.95001"
-       y1="341.48999"
-       x2="296.26999"
-       y2="344.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7670" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="371.57,270.45 371.23,270.65 380.55,273.24 "
-       id="polygon7672" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="188.8,311.25 188.77,311.47 200.5,307.05 "
-       id="polygon7674" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="273.56,274.46 273.3,274.73 282.38,272.18 "
-       id="polygon7676" />
-    <line
-       x1="207.5"
-       y1="201.73"
-       x2="210.25999"
-       y2="204.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7678" />
-    <line
-       x1="287.51999"
-       y1="271.01999"
-       x2="289.72"
-       y2="274.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7680" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.57,272.82 370.73,273.18 380.05,275.78 "
-       id="polygon7682" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="272.69,271.75 273.04,271.93 282.11,269.39 "
-       id="polygon7684" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="187.75,308.61 187.93,308.81 199.66,304.39 "
-       id="polygon7686" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="371.23,270.65 370.93,270.98 380.24,273.57 "
-       id="polygon7688" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="273.73,274.09 273.56,274.46 282.64,271.92 "
-       id="polygon7690" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="257.85,240.84 257.54,240.93 267.51,243.96 "
-       id="polygon7692" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="384.32,277.64 384.66,277.59 384.66,277.29 "
-       id="polygon7694" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="258.61,238.09 258.77,238.41 268.73,241.44 "
-       id="polygon7696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.5,272.37 370.57,272.82 379.88,275.41 "
-       id="polygon7698" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="188.76,310.9 188.8,311.25 200.53,306.82 "
-       id="polygon7700" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="273.04,271.93 273.35,272.25 282.43,269.71 "
-       id="polygon7702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.93,270.98 370.69,271.4 380,273.99 "
-       id="polygon7704" />
-    <line
-       x1="268.88"
-       y1="115.62"
-       x2="267.51999"
-       y2="114.92"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7706" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="273.8,273.63 273.73,274.09 282.8,271.54 "
-       id="polygon7708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.54,271.88 370.5,272.37 379.81,274.96 "
-       id="polygon7710" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="187.93,308.81 188.13,309.14 199.87,304.71 "
-       id="polygon7712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="370.69,271.4 370.54,271.88 379.86,274.47 "
-       id="polygon7714" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="273.35,272.25 273.59,272.66 282.67,270.12 "
-       id="polygon7716" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="273.75,273.14 273.8,273.63 282.87,271.09 "
-       id="polygon7718" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="258.16,240.6 257.85,240.84 267.82,243.86 "
-       id="polygon7720" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="273.59,272.66 273.75,273.14 282.82,270.6 "
-       id="polygon7722" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="258.77,238.41 258.82,238.84 268.8,241.87 "
-       id="polygon7724" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="188.66,310.48 188.76,310.9 200.5,306.48 "
-       id="polygon7726" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="188.13,309.14 188.34,309.55 200.07,305.13 "
-       id="polygon7728" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="258.44,240.24 258.16,240.6 268.14,243.63 "
-       id="polygon7730" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="188.52,310.01 188.66,310.48 200.4,306.05 "
-       id="polygon7732" />
-    <line
-       x1="269.09"
-       y1="207.45"
-       x2="266.66"
-       y2="205.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7734" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="258.82,238.84 258.79,239.32 268.76,242.34 "
-       id="polygon7736" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="188.34,309.55 188.52,310.01 200.26,305.59 "
-       id="polygon7738" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="258.65,239.8 258.44,240.24 268.41,243.27 "
-       id="polygon7740" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="258.79,239.32 258.65,239.8 268.63,242.83 "
-       id="polygon7742" />
-    <line
-       x1="187.31"
-       y1="169.03"
-       x2="188.61"
-       y2="172.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7744" />
-    <line
-       x1="210.25999"
-       y1="204.33"
-       x2="213.12"
-       y2="206.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7746" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="268.36,302.53 268.38,302.91 276.92,296.35 "
-       id="polygon7748" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="266.59,300.69 266.95,300.77 275.48,294.21 "
-       id="polygon7750" />
-    <line
-       x1="299.38"
-       y1="337.87"
-       x2="297.95001"
-       y2="341.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7752" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="268.23,302.11 268.36,302.53 276.9,295.97 "
-       id="polygon7754" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="266.95,300.77 267.32,300.97 275.86,294.42 "
-       id="polygon7756" />
-    <line
-       x1="168.14"
-       y1="176.5"
-       x2="170.50999"
-       y2="175.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7758" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="268,301.68 268.23,302.11 276.77,295.55 "
-       id="polygon7760" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="267.32,300.97 267.68,301.29 276.22,294.73 "
-       id="polygon7762" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="267.68,301.29 268,301.68 276.54,295.12 "
-       id="polygon7764" />
-    <line
-       x1="289.72"
-       y1="274.23001"
-       x2="291.81"
-       y2="277.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7766" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="377.54,282.79 377.8,283.04 386.92,285.59 "
-       id="polygon7768" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="188.54,311.5 188.68,311.56 176.92,315.99 "
-       id="polygon7770" />
-    <line
-       x1="187.17"
-       y1="311.60001"
-       x2="187.17"
-       y2="311.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7772" />
-    <line
-       x1="213.12"
-       y1="206.73"
-       x2="216.07001"
-       y2="208.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7774" />
-    <line
-       x1="186.17999"
-       y1="165.55"
-       x2="187.31"
-       y2="169.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7776" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="388.17,282.66 388.43,282.91 379.3,280.36 "
-       id="polygon7778" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="378.38,280.06 378.04,280.26 387.16,282.8 "
-       id="polygon7780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.37,282.43 377.54,282.79 386.66,285.34 "
-       id="polygon7782" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="380.55,273.24 380.89,273.04 371.57,270.45 "
-       id="polygon7784" />
-    <line
-       x1="187.17"
-       y1="311.60001"
-       x2="187.07001"
-       y2="309.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7786" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="187.75,308.61 187.61,308.55 175.85,312.98 "
-       id="polygon7788" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="378.04,280.26 377.73,280.58 386.86,283.13 "
-       id="polygon7790" />
-    <line
-       x1="300.57001"
-       y1="334.10001"
-       x2="299.38"
-       y2="337.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.3,281.97 377.37,282.43 386.49,284.98 "
-       id="polygon7794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.73,280.58 377.49,281.01 386.62,283.56 "
-       id="polygon7796" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="380.24,273.57 380.55,273.24 371.23,270.65 "
-       id="polygon7798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.34,281.48 377.3,281.97 386.43,284.53 "
-       id="polygon7800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="377.49,281.01 377.34,281.48 386.47,284.04 "
-       id="polygon7802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="380.05,275.78 379.88,275.41 370.57,272.82 "
-       id="polygon7804" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="187.93,308.81 187.75,308.61 175.99,313.04 "
-       id="polygon7806" />
-    <line
-       x1="187.03999"
-       y1="309.06"
-       x2="187.03999"
-       y2="309.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="380,273.99 380.24,273.57 370.93,270.98 "
-       id="polygon7810" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="188.77,311.47 188.8,311.25 177.04,315.68 "
-       id="polygon7812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.88,275.41 379.81,274.96 370.5,272.37 "
-       id="polygon7814" />
-    <polygon
-       style="opacity:1;fill:#0aff0a"
-       points="273.56,274.46 273.3,274.73 273.18,274.44 "
-       id="polygon7816" />
-    <line
-       x1="202.17"
-       y1="302.73001"
-       x2="205.55"
-       y2="305.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7818" />
-    <line
-       x1="291.81"
-       y1="277.63"
-       x2="293.76001"
-       y2="281.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.86,274.47 380,273.99 370.69,271.4 "
-       id="polygon7822" />
-    <line
-       x1="198.94"
-       y1="299.91"
-       x2="202.17"
-       y2="302.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.81,274.96 379.86,274.47 370.54,271.88 "
-       id="polygon7826" />
-    <line
-       x1="205.55"
-       y1="305.35999"
-       x2="209.07001"
-       y2="307.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7828" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="188.13,309.14 187.93,308.81 176.17,313.25 "
-       id="polygon7830" />
-    <line
-       x1="195.88"
-       y1="296.91"
-       x2="198.94"
-       y2="299.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7832" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="188.8,311.25 188.76,310.9 177,315.34 "
-       id="polygon7834" />
-    <line
-       x1="216.07001"
-       y1="208.91"
-       x2="219.09"
-       y2="210.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7836" />
-    <line
-       x1="209.07001"
-       y1="307.78"
-       x2="212.72"
-       y2="309.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7838" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="188.34,309.55 188.13,309.14 176.38,313.57 "
-       id="polygon7840" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="188.76,310.9 188.66,310.48 176.91,314.91 "
-       id="polygon7842" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="383.74,277.29 384,277.54 393.27,280.12 "
-       id="polygon7844" />
-    <line
-       x1="185.22"
-       y1="162.13"
-       x2="186.17999"
-       y2="165.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7846" />
-    <line
-       x1="301.48999"
-       y1="330.19"
-       x2="300.57001"
-       y2="334.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7848" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="188.52,310.01 188.34,309.55 176.58,313.98 "
-       id="polygon7850" />
-    <line
-       x1="170.50999"
-       y1="175.77"
-       x2="173.02"
-       y2="175.25999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7852" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="188.66,310.48 188.52,310.01 176.76,314.45 "
-       id="polygon7854" />
-    <line
-       x1="271.48999"
-       y1="209.23"
-       x2="269.09"
-       y2="207.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7856" />
-    <line
-       x1="270.26001"
-       y1="116.61"
-       x2="268.88"
-       y2="115.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="383.57,276.92 383.74,277.29 393.02,279.87 "
-       id="polygon7860" />
-    <line
-       x1="212.72"
-       y1="309.95999"
-       x2="216.47"
-       y2="311.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7862" />
-    <line
-       x1="190.32001"
-       y1="290.47"
-       x2="193"
-       y2="293.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7864" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="177.04,315.68 177.01,315.9 188.77,311.47 "
-       id="polygon7866" />
-    <line
-       x1="293.76001"
-       y1="281.20999"
-       x2="295.54999"
-       y2="284.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7868" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="175.99,313.04 176.17,313.25 187.93,308.81 "
-       id="polygon7870" />
-    <line
-       x1="216.47"
-       y1="311.91"
-       x2="220.31"
-       y2="313.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7872" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="387.16,282.8 387.5,282.61 378.38,280.06 "
-       id="polygon7874" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="177,315.34 177.04,315.68 188.8,311.25 "
-       id="polygon7876" />
-    <line
-       x1="302.16"
-       y1="326.17999"
-       x2="301.48999"
-       y2="330.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7878" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="386.92,285.59 386.66,285.34 377.54,282.79 "
-       id="polygon7880" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="176.17,313.25 176.38,313.57 188.13,309.14 "
-       id="polygon7882" />
-    <line
-       x1="219.09"
-       y1="210.87"
-       x2="222.17"
-       y2="212.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7884" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="257.02,240.67 257.25,240.88 247.25,237.84 "
-       id="polygon7886" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="386.86,283.13 387.16,282.8 378.04,280.26 "
-       id="polygon7888" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="176.91,314.91 177,315.34 188.76,310.9 "
-       id="polygon7890" />
-    <line
-       x1="187.84"
-       y1="287.07001"
-       x2="190.32001"
-       y2="290.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.66,285.34 386.49,284.98 377.37,282.43 "
-       id="polygon7894" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="176.38,313.57 176.58,313.98 188.34,309.55 "
-       id="polygon7896" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="258.61,238.09 258.38,237.88 248.38,234.84 "
-       id="polygon7898" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="176.76,314.45 176.91,314.91 188.66,310.48 "
-       id="polygon7900" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="176.58,313.98 176.76,314.45 188.52,310.01 "
-       id="polygon7902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.62,283.56 386.86,283.13 377.73,280.58 "
-       id="polygon7904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.49,284.98 386.43,284.53 377.3,281.97 "
-       id="polygon7906" />
-    <line
-       x1="184.45"
-       y1="158.77"
-       x2="185.22"
-       y2="162.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7908" />
-    <line
-       x1="220.31"
-       y1="313.59"
-       x2="224.21001"
-       y2="315.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7910" />
-    <line
-       x1="295.54999"
-       y1="284.95001"
-       x2="297.17999"
-       y2="288.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.47,284.04 386.62,283.56 377.49,281.01 "
-       id="polygon7914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.43,284.53 386.47,284.04 377.34,281.48 "
-       id="polygon7916" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="258.77,238.41 258.61,238.09 248.61,235.05 "
-       id="polygon7918" />
-    <line
-       x1="302.57001"
-       y1="322.07999"
-       x2="302.16"
-       y2="326.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7920" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="257.54,240.93 257.85,240.84 247.85,237.8 "
-       id="polygon7922" />
-    <line
-       x1="187.03999"
-       y1="309.06"
-       x2="187.16"
-       y2="306.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7924" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="258.82,238.84 258.77,238.41 248.76,235.38 "
-       id="polygon7926" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="257.85,240.84 258.16,240.6 248.16,237.57 "
-       id="polygon7928" />
-    <line
-       x1="185.58"
-       y1="283.59"
-       x2="187.84"
-       y2="287.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7930" />
-    <line
-       x1="173.02"
-       y1="175.25999"
-       x2="175.67999"
-       y2="174.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7932" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="257.43,307.79 257.53,307.5 266.09,300.93 "
-       id="polygon7934" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="266.59,300.69 266.3,300.74 257.73,307.31 "
-       id="polygon7936" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="258.79,239.32 258.82,238.84 248.82,235.8 "
-       id="polygon7938" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="258.16,240.6 258.44,240.24 248.44,237.21 "
-       id="polygon7940" />
-    <line
-       x1="297.17999"
-       y1="288.82001"
-       x2="298.63"
-       y2="292.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7942" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="258.65,239.8 258.79,239.32 248.79,236.28 "
-       id="polygon7944" />
-    <line
-       x1="224.21001"
-       y1="315.01001"
-       x2="228.17"
-       y2="316.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7946" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="258.44,240.24 258.65,239.8 248.65,236.77 "
-       id="polygon7948" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="268.28,303.2 268.38,302.91 259.81,309.48 "
-       id="polygon7950" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="273.04,271.93 272.69,271.75 263.58,274.3 "
-       id="polygon7952" />
-    <line
-       x1="302.73001"
-       y1="317.91"
-       x2="302.57001"
-       y2="322.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7954" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="266.95,300.77 266.59,300.69 258.03,307.26 "
-       id="polygon7956" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="393.27,280.12 393.02,279.87 383.74,277.29 "
-       id="polygon7958" />
-    <line
-       x1="222.17"
-       y1="212.58"
-       x2="225.3"
-       y2="214.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7960" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="176.78,315.93 176.92,315.99 165.15,320.43 "
-       id="polygon7962" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="273.35,272.25 273.04,271.93 263.93,274.48 "
-       id="polygon7964" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="268.38,302.91 268.36,302.53 259.8,309.1 "
-       id="polygon7966" />
-    <line
-       x1="273.84"
-       y1="211.28999"
-       x2="271.48999"
-       y2="209.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7968" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="273.56,274.46 273.73,274.09 264.63,276.64 "
-       id="polygon7970" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="267.32,300.97 266.95,300.77 258.38,307.34 "
-       id="polygon7972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="393.02,279.87 392.85,279.5 383.57,276.92 "
-       id="polygon7974" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="273.59,272.66 273.35,272.25 264.24,274.79 "
-       id="polygon7976" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="273.73,274.09 273.8,273.63 264.69,276.18 "
-       id="polygon7978" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="381.81,273.35 381.55,273.1 390.9,275.7 "
-       id="polygon7980" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="268.36,302.53 268.23,302.11 259.66,308.68 "
-       id="polygon7982" />
-    <line
-       x1="298.63"
-       y1="292.79999"
-       x2="299.87"
-       y2="296.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7984" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="273.75,273.14 273.59,272.66 264.49,275.21 "
-       id="polygon7986" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="267.68,301.29 267.32,300.97 258.75,307.55 "
-       id="polygon7988" />
-    <line
-       x1="302.64001"
-       y1="313.70001"
-       x2="302.73001"
-       y2="317.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7990" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="273.8,273.63 273.75,273.14 264.64,275.69 "
-       id="polygon7992" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="175.99,313.04 175.85,312.98 164.07,317.42 "
-       id="polygon7994" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="268.23,302.11 268,301.68 259.43,308.25 "
-       id="polygon7996" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="268,301.68 267.68,301.29 259.11,307.86 "
-       id="polygon7998" />
-    <line
-       x1="183.55"
-       y1="280.03"
-       x2="185.58"
-       y2="283.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8000" />
-    <line
-       x1="271.63"
-       y1="117.88"
-       x2="270.26001"
-       y2="116.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8002" />
-    <line
-       x1="299.87"
-       y1="296.88"
-       x2="300.89999"
-       y2="301.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8004" />
-    <line
-       x1="228.17"
-       y1="316.14001"
-       x2="232.16"
-       y2="316.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8006" />
-    <line
-       x1="302.29001"
-       y1="309.47"
-       x2="302.64001"
-       y2="313.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8008" />
-    <line
-       x1="183.84"
-       y1="155.52"
-       x2="184.45"
-       y2="158.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8010" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="176.17,313.25 175.99,313.04 164.21,317.48 "
-       id="polygon8012" />
-    <line
-       x1="300.89999"
-       y1="301.04001"
-       x2="301.70999"
-       y2="305.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8014" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="165.15,320.43 165.01,320.37 176.78,315.93 "
-       id="polygon8016" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="177.01,315.9 177.04,315.68 165.27,320.12 "
-       id="polygon8018" />
-    <line
-       x1="301.70999"
-       y1="305.23999"
-       x2="302.29001"
-       y2="309.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8020" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="176.38,313.57 176.17,313.25 164.39,317.68 "
-       id="polygon8022" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="177.04,315.68 177,315.34 165.23,319.78 "
-       id="polygon8024" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="380.89,273.04 380.55,273.24 389.89,275.84 "
-       id="polygon8026" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="248.38,234.84 248.61,235.05 258.61,238.09 "
-       id="polygon8028" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="176.58,313.98 176.38,313.57 164.6,318.01 "
-       id="polygon8030" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="177,315.34 176.91,314.91 165.13,319.35 "
-       id="polygon8032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.88,275.41 380.05,275.78 389.39,278.38 "
-       id="polygon8034" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="176.76,314.45 176.58,313.98 164.8,318.42 "
-       id="polygon8036" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="176.91,314.91 176.76,314.45 164.98,318.89 "
-       id="polygon8038" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="380.55,273.24 380.24,273.57 389.59,276.17 "
-       id="polygon8040" />
-    <line
-       x1="175.67999"
-       y1="174.98"
-       x2="178.45"
-       y2="174.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8042" />
-    <line
-       x1="225.3"
-       y1="214.03999"
-       x2="228.47"
-       y2="215.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8044" />
-    <line
-       x1="232.16"
-       y1="316.98001"
-       x2="236.14999"
-       y2="317.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8046" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="248.61,235.05 248.76,235.38 258.77,238.41 "
-       id="polygon8048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.81,274.96 379.88,275.41 389.22,278.01 "
-       id="polygon8050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="380.24,273.57 380,273.99 389.34,276.59 "
-       id="polygon8052" />
-    <line
-       x1="181.75"
-       y1="276.44"
-       x2="183.55"
-       y2="280.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="379.86,274.47 379.81,274.96 389.16,277.56 "
-       id="polygon8056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="380,273.99 379.86,274.47 389.2,277.07 "
-       id="polygon8058" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="248.16,237.57 247.85,237.8 257.85,240.84 "
-       id="polygon8060" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="248.76,235.38 248.82,235.8 258.82,238.84 "
-       id="polygon8062" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="248.44,237.21 248.16,237.57 258.16,240.6 "
-       id="polygon8064" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="248.82,235.8 248.79,236.28 258.79,239.32 "
-       id="polygon8066" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="259.81,309.48 259.71,309.78 268.28,303.2 "
-       id="polygon8068" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="248.65,236.77 248.44,237.21 258.44,240.24 "
-       id="polygon8070" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="248.79,236.28 248.65,236.77 258.65,239.8 "
-       id="polygon8072" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="164.21,317.48 164.39,317.68 176.17,313.25 "
-       id="polygon8074" />
-    <line
-       x1="187.16"
-       y1="306.67999"
-       x2="187.52"
-       y2="304.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8076" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="165.23,319.78 165.27,320.12 177.04,315.68 "
-       id="polygon8078" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="259.8,309.1 259.81,309.48 268.38,302.91 "
-       id="polygon8080" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="258.03,307.26 258.38,307.34 266.95,300.77 "
-       id="polygon8082" />
-    <line
-       x1="187.7"
-       y1="275.35001"
-       x2="184.00999"
-       y2="275.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8084" />
-    <line
-       x1="191.33"
-       y1="274.66"
-       x2="187.7"
-       y2="275.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8086" />
-    <line
-       x1="184.00999"
-       y1="275.79999"
-       x2="180.28999"
-       y2="276.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8088" />
-    <line
-       x1="276.13"
-       y1="213.64"
-       x2="273.84"
-       y2="211.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8090" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="164.39,317.68 164.6,318.01 176.38,313.57 "
-       id="polygon8092" />
-    <line
-       x1="183.41"
-       y1="152.37"
-       x2="183.84"
-       y2="155.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8094" />
-    <line
-       x1="194.89"
-       y1="273.73001"
-       x2="191.33"
-       y2="274.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8096" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="264.45,277.02 264.2,277.28 273.3,274.73 "
-       id="polygon8098" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="259.66,308.68 259.8,309.1 268.36,302.53 "
-       id="polygon8100" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="165.13,319.35 165.23,319.78 177,315.34 "
-       id="polygon8102" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="258.38,307.34 258.75,307.55 267.32,300.97 "
-       id="polygon8104" />
-    <line
-       x1="236.14999"
-       y1="317.51999"
-       x2="240.14"
-       y2="317.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8106" />
-    <line
-       x1="180.28999"
-       y1="276.01001"
-       x2="176.56"
-       y2="275.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8108" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="164.6,318.01 164.8,318.42 176.58,313.98 "
-       id="polygon8110" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="259.43,308.25 259.66,308.68 268.23,302.11 "
-       id="polygon8112" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="258.75,307.55 259.11,307.86 267.68,301.29 "
-       id="polygon8114" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="164.98,318.89 165.13,319.35 176.91,314.91 "
-       id="polygon8116" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="164.8,318.42 164.98,318.89 176.76,314.45 "
-       id="polygon8118" />
-    <line
-       x1="198.36"
-       y1="272.57999"
-       x2="194.89"
-       y2="273.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8120" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="259.11,307.86 259.43,308.25 268,301.68 "
-       id="polygon8122" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="264.63,276.64 264.45,277.02 273.56,274.46 "
-       id="polygon8124" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="263.93,274.48 264.24,274.79 273.35,272.25 "
-       id="polygon8126" />
-    <line
-       x1="176.56"
-       y1="275.98999"
-       x2="172.83"
-       y2="275.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8128" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="264.69,276.18 264.63,276.64 273.73,274.09 "
-       id="polygon8130" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="386.66,285.34 386.92,285.59 396.07,288.15 "
-       id="polygon8132" />
-    <line
-       x1="180.19"
-       y1="272.82999"
-       x2="181.75"
-       y2="276.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8134" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="264.24,274.79 264.49,275.21 273.59,272.66 "
-       id="polygon8136" />
-    <line
-       x1="228.47"
-       y1="215.23"
-       x2="231.66"
-       y2="216.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8138" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="264.64,275.69 264.69,276.18 273.8,273.63 "
-       id="polygon8140" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="264.49,275.21 264.64,275.69 273.75,273.14 "
-       id="polygon8142" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="387.5,282.61 387.16,282.8 396.31,285.36 "
-       id="polygon8144" />
-    <line
-       x1="201.71001"
-       y1="271.19"
-       x2="198.36"
-       y2="272.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.49,284.98 386.66,285.34 395.81,287.91 "
-       id="polygon8148" />
-    <line
-       x1="178.45"
-       y1="174.92999"
-       x2="181.31"
-       y2="175.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8150" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="387.16,282.8 386.86,283.13 396,285.69 "
-       id="polygon8152" />
-    <line
-       x1="172.83"
-       y1="275.73999"
-       x2="169.14"
-       y2="275.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8154" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="163.99,317.5 163.96,317.73 152.17,322.18 "
-       id="polygon8156" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="389.89,275.84 390.23,275.64 380.89,273.04 "
-       id="polygon8158" />
-    <line
-       x1="272.98001"
-       y1="119.43"
-       x2="271.63"
-       y2="117.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.43,284.53 386.49,284.98 395.64,287.54 "
-       id="polygon8162" />
-    <line
-       x1="204.92999"
-       y1="269.57999"
-       x2="201.71001"
-       y2="271.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.86,283.13 386.62,283.56 395.77,286.12 "
-       id="polygon8166" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="389.65,278.63 389.39,278.38 380.05,275.78 "
-       id="polygon8168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.47,284.04 386.43,284.53 395.57,287.09 "
-       id="polygon8170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="386.62,283.56 386.47,284.04 395.62,286.6 "
-       id="polygon8172" />
-    <line
-       x1="240.14"
-       y1="317.76001"
-       x2="244.10001"
-       y2="317.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8174" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="389.59,276.17 389.89,275.84 380.55,273.24 "
-       id="polygon8176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.39,278.38 389.22,278.01 379.88,275.41 "
-       id="polygon8178" />
-    <line
-       x1="169.14"
-       y1="275.26999"
-       x2="165.49001"
-       y2="274.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.34,276.59 389.59,276.17 380.24,273.57 "
-       id="polygon8182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.22,278.01 389.16,277.56 379.81,274.96 "
-       id="polygon8184" />
-    <line
-       x1="208.00999"
-       y1="267.75"
-       x2="204.92999"
-       y2="269.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.2,277.07 389.34,276.59 380,273.99 "
-       id="polygon8188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.16,277.56 389.2,277.07 379.86,274.47 "
-       id="polygon8190" />
-    <line
-       x1="178.88"
-       y1="269.22"
-       x2="180.19"
-       y2="272.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8192" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="393.02,279.87 393.27,280.12 402.57,282.71 "
-       id="polygon8194" />
-    <line
-       x1="183.14999"
-       y1="149.37"
-       x2="183.41"
-       y2="152.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8196" />
-    <line
-       x1="210.92"
-       y1="265.70001"
-       x2="208.00999"
-       y2="267.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8198" />
-    <line
-       x1="165.49001"
-       y1="274.57001"
-       x2="161.91"
-       y2="273.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8200" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="165.24,320.34 165.27,320.12 153.47,324.57 "
-       id="polygon8202" />
-    <line
-       x1="278.32999"
-       y1="216.24001"
-       x2="276.13"
-       y2="213.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8204" />
-    <line
-       x1="231.66"
-       y1="216.14999"
-       x2="234.85001"
-       y2="216.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="392.85,279.5 393.02,279.87 402.32,282.46 "
-       id="polygon8208" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="152.17,322.18 152.2,321.95 163.99,317.5 "
-       id="polygon8210" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="164.6,318.01 164.39,317.68 152.6,322.13 "
-       id="polygon8212" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="396.65,285.16 397,285.12 387.85,282.56 "
-       id="polygon8214" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="165.27,320.12 165.23,319.78 153.43,324.23 "
-       id="polygon8216" />
-    <line
-       x1="181.31"
-       y1="175.12"
-       x2="184.25"
-       y2="175.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8218" />
-    <polygon
-       style="opacity:1;fill:#0aff0a"
-       points="263.23,274.27 263.58,274.3 263.57,274.61 "
-       id="polygon8220" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="164.8,318.42 164.6,318.01 152.8,322.45 "
-       id="polygon8222" />
-    <line
-       x1="187.52"
-       y1="304.48999"
-       x2="188.12"
-       y2="302.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8224" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="165.23,319.78 165.13,319.35 153.34,323.8 "
-       id="polygon8226" />
-    <line
-       x1="213.64999"
-       y1="263.45001"
-       x2="210.92"
-       y2="265.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8228" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="396.31,285.36 396.65,285.16 387.5,282.61 "
-       id="polygon8230" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="164.98,318.89 164.8,318.42 153,322.87 "
-       id="polygon8232" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="165.13,319.35 164.98,318.89 153.19,323.33 "
-       id="polygon8234" />
-    <line
-       x1="161.91"
-       y1="273.67001"
-       x2="158.42999"
-       y2="272.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8236" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="396,285.69 396.31,285.36 387.16,282.8 "
-       id="polygon8238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.81,287.91 395.64,287.54 386.49,284.98 "
-       id="polygon8240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.77,286.12 396,285.69 386.86,283.13 "
-       id="polygon8242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.64,287.54 395.57,287.09 386.43,284.53 "
-       id="polygon8244" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="153.47,324.57 153.45,324.79 165.24,320.34 "
-       id="polygon8246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.62,286.6 395.77,286.12 386.62,283.56 "
-       id="polygon8248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.57,287.09 395.62,286.6 386.47,284.04 "
-       id="polygon8250" />
-    <line
-       x1="216.19"
-       y1="261.01001"
-       x2="213.64999"
-       y2="263.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8252" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="152.42,321.93 152.6,322.13 164.39,317.68 "
-       id="polygon8254" />
-    <line
-       x1="177.8"
-       y1="265.64001"
-       x2="178.88"
-       y2="269.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8256" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="248.76,235.38 248.61,235.05 238.58,232 "
-       id="polygon8258" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="153.43,324.23 153.47,324.57 165.27,320.12 "
-       id="polygon8260" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="259.21,310.02 259.51,309.96 250.92,316.55 "
-       id="polygon8262" />
-    <line
-       x1="274.29001"
-       y1="121.25"
-       x2="272.98001"
-       y2="119.43"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8264" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="247.54,237.9 247.85,237.8 237.82,234.76 "
-       id="polygon8266" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="152.6,322.13 152.8,322.45 164.6,318.01 "
-       id="polygon8268" />
-    <line
-       x1="158.42999"
-       y1="272.57001"
-       x2="155.03999"
-       y2="271.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8270" />
-    <line
-       x1="234.85001"
-       y1="216.78999"
-       x2="238.03999"
-       y2="217.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8272" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="248.82,235.8 248.76,235.38 238.73,232.33 "
-       id="polygon8274" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="153.34,323.8 153.43,324.23 165.23,319.78 "
-       id="polygon8276" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="247.85,237.8 248.16,237.57 238.13,234.52 "
-       id="polygon8278" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="152.8,322.45 153,322.87 164.8,318.42 "
-       id="polygon8280" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="153.19,323.33 153.34,323.8 165.13,319.35 "
-       id="polygon8282" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="153,322.87 153.19,323.33 164.98,318.89 "
-       id="polygon8284" />
-    <line
-       x1="184.25"
-       y1="175.53999"
-       x2="187.24001"
-       y2="176.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8286" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="248.79,236.28 248.82,235.8 238.79,232.76 "
-       id="polygon8288" />
-    <line
-       x1="183.05"
-       y1="146.52"
-       x2="183.14999"
-       y2="149.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8290" />
-    <line
-       x1="218.52"
-       y1="258.39001"
-       x2="216.19"
-       y2="261.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8292" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="258.03,307.26 257.73,307.31 249.14,313.91 "
-       id="polygon8294" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="248.16,237.57 248.44,237.21 238.4,234.16 "
-       id="polygon8296" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="248.65,236.77 248.79,236.28 238.75,233.24 "
-       id="polygon8298" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="248.44,237.21 248.65,236.77 238.62,233.72 "
-       id="polygon8300" />
-    <line
-       x1="280.42999"
-       y1="219.10001"
-       x2="278.32999"
-       y2="216.24001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8302" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="259.71,309.78 259.81,309.48 251.22,316.07 "
-       id="polygon8304" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="258.38,307.34 258.03,307.26 249.43,313.85 "
-       id="polygon8306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="402.32,282.46 402.15,282.09 392.85,279.5 "
-       id="polygon8308" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="259.81,309.48 259.8,309.1 251.2,315.7 "
-       id="polygon8310" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="258.75,307.55 258.38,307.34 249.78,313.93 "
-       id="polygon8312" />
-    <line
-       x1="251.86"
-       y1="316.60999"
-       x2="255.62"
-       y2="315.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8314" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="259.8,309.1 259.66,308.68 251.07,315.27 "
-       id="polygon8316" />
-    <line
-       x1="155.03999"
-       y1="271.26999"
-       x2="151.78999"
-       y2="269.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8318" />
-    <line
-       x1="220.62"
-       y1="255.60001"
-       x2="218.52"
-       y2="258.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8320" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="259.11,307.86 258.75,307.55 250.16,314.14 "
-       id="polygon8322" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="259.66,308.68 259.43,308.25 250.84,314.84 "
-       id="polygon8324" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="259.43,308.25 259.11,307.86 250.52,314.45 "
-       id="polygon8326" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="263.52,277.37 263.88,277.4 254.73,279.96 "
-       id="polygon8328" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="253.51,277.21 253.77,276.95 262.91,274.39 "
-       id="polygon8330" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="263.58,274.3 263.23,274.27 254.09,276.82 "
-       id="polygon8332" />
-    <line
-       x1="176.99001"
-       y1="262.13"
-       x2="177.8"
-       y2="265.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8334" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="390.58,275.59 390.23,275.64 399.61,278.25 "
-       id="polygon8336" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="389.39,278.38 389.65,278.63 399.02,281.24 "
-       id="polygon8338" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="263.93,274.48 263.58,274.3 254.44,276.85 "
-       id="polygon8340" />
-    <line
-       x1="187.24001"
-       y1="176.2"
-       x2="190.27"
-       y2="177.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8342" />
-    <line
-       x1="238.03999"
-       y1="217.14"
-       x2="241.21001"
-       y2="217.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8344" />
-    <line
-       x1="222.5"
-       y1="252.66"
-       x2="220.62"
-       y2="255.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8346" />
-    <line
-       x1="188.12"
-       y1="302.5"
-       x2="188.94"
-       y2="300.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8348" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="390.23,275.64 389.89,275.84 399.26,278.45 "
-       id="polygon8350" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="238.35,231.8 238.58,232 248.61,235.05 "
-       id="polygon8352" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="264.24,274.79 263.93,274.48 254.79,277.04 "
-       id="polygon8354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.22,278.01 389.39,278.38 398.77,280.99 "
-       id="polygon8356" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="140.36,326.63 140.38,326.4 152.2,321.95 "
-       id="polygon8358" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="152.6,322.13 152.42,321.93 140.61,326.38 "
-       id="polygon8360" />
-    <line
-       x1="255.62"
-       y1="315.60999"
-       x2="259.26999"
-       y2="314.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8362" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="389.89,275.84 389.59,276.17 398.96,278.77 "
-       id="polygon8364" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="264.49,275.21 264.24,274.79 255.1,277.35 "
-       id="polygon8366" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="153.45,324.79 153.47,324.57 141.66,329.02 "
-       id="polygon8368" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="264.62,276.64 264.69,276.18 255.55,278.73 "
-       id="polygon8370" />
-    <line
-       x1="151.78999"
-       y1="269.79001"
-       x2="148.67999"
-       y2="268.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8372" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="238.58,232 238.73,232.33 248.76,235.38 "
-       id="polygon8374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.16,277.56 389.22,278.01 398.59,280.63 "
-       id="polygon8376" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="264.64,275.69 264.49,275.21 255.34,277.77 "
-       id="polygon8378" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="264.69,276.18 264.64,275.69 255.5,278.24 "
-       id="polygon8380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.59,276.17 389.34,276.59 398.72,279.2 "
-       id="polygon8382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.2,277.07 389.16,277.56 398.53,280.17 "
-       id="polygon8384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="389.34,276.59 389.2,277.07 398.57,279.68 "
-       id="polygon8386" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="238.13,234.52 237.82,234.76 247.85,237.8 "
-       id="polygon8388" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="152.8,322.45 152.6,322.13 140.79,326.58 "
-       id="polygon8390" />
-    <line
-       x1="282.39999"
-       y1="222.19"
-       x2="280.42999"
-       y2="219.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8392" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="238.73,232.33 238.79,232.76 248.82,235.8 "
-       id="polygon8394" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="153.47,324.57 153.43,324.23 141.62,328.68 "
-       id="polygon8396" />
-    <line
-       x1="183.13"
-       y1="143.84"
-       x2="183.05"
-       y2="146.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8398" />
-    <line
-       x1="275.57001"
-       y1="123.33"
-       x2="274.29001"
-       y2="121.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8400" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="238.4,234.16 238.13,234.52 248.16,237.57 "
-       id="polygon8402" />
-    <line
-       x1="224.13"
-       y1="249.57001"
-       x2="222.5"
-       y2="252.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8404" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="238.79,232.76 238.75,233.24 248.79,236.28 "
-       id="polygon8406" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="153,322.87 152.8,322.45 140.98,326.91 "
-       id="polygon8408" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="153.43,324.23 153.34,323.8 141.52,328.26 "
-       id="polygon8410" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="238.62,233.72 238.4,234.16 248.44,237.21 "
-       id="polygon8412" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="238.75,233.24 238.62,233.72 248.65,236.77 "
-       id="polygon8414" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="251.22,316.07 251.13,316.37 259.71,309.78 "
-       id="polygon8416" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="249.14,313.91 249.43,313.85 258.03,307.26 "
-       id="polygon8418" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="153.19,323.33 153,322.87 141.19,327.32 "
-       id="polygon8420" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="153.34,323.8 153.19,323.33 141.37,327.79 "
-       id="polygon8422" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="251.2,315.7 251.22,316.07 259.81,309.48 "
-       id="polygon8424" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="249.43,313.85 249.78,313.93 258.38,307.34 "
-       id="polygon8426" />
-    <line
-       x1="190.27"
-       y1="177.11"
-       x2="193.32001"
-       y2="178.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8428" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="397,285.12 396.65,285.16 405.83,287.73 "
-       id="polygon8430" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="251.07,315.27 251.2,315.7 259.8,309.1 "
-       id="polygon8432" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="249.78,313.93 250.16,314.14 258.75,307.55 "
-       id="polygon8434" />
-    <line
-       x1="259.26999"
-       y1="314.29999"
-       x2="262.79999"
-       y2="312.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8436" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="141.66,329.02 141.63,329.25 153.45,324.79 "
-       id="polygon8438" />
-    <line
-       x1="176.42"
-       y1="258.67999"
-       x2="176.99001"
-       y2="262.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8440" />
-    <line
-       x1="225.50999"
-       y1="246.36"
-       x2="224.13"
-       y2="249.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8442" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="250.84,314.84 251.07,315.27 259.66,308.68 "
-       id="polygon8444" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="250.16,314.14 250.52,314.45 259.11,307.86 "
-       id="polygon8446" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="395.81,287.91 396.07,288.15 405.25,290.72 "
-       id="polygon8448" />
-    <line
-       x1="148.67999"
-       y1="268.14001"
-       x2="145.73"
-       y2="266.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8450" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="250.52,314.45 250.84,314.84 259.43,308.25 "
-       id="polygon8452" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="140.61,326.38 140.79,326.58 152.6,322.13 "
-       id="polygon8454" />
-    <line
-       x1="241.21001"
-       y1="217.2"
-       x2="244.35001"
-       y2="216.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8456" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="396.65,285.16 396.31,285.36 405.49,287.93 "
-       id="polygon8458" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="141.62,328.68 141.66,329.02 153.47,324.57 "
-       id="polygon8460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.64,287.54 395.81,287.91 404.99,290.47 "
-       id="polygon8462" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="140.79,326.58 140.98,326.91 152.8,322.45 "
-       id="polygon8464" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="396.31,285.36 396,285.69 405.18,288.25 "
-       id="polygon8466" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="141.52,328.26 141.62,328.68 153.43,324.23 "
-       id="polygon8468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.57,287.09 395.64,287.54 404.82,290.11 "
-       id="polygon8470" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="140.98,326.91 141.19,327.32 153,322.87 "
-       id="polygon8472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="396,285.69 395.77,286.12 404.95,288.68 "
-       id="polygon8474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.62,286.6 395.57,287.09 404.75,289.65 "
-       id="polygon8476" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="141.37,327.79 141.52,328.26 153.34,323.8 "
-       id="polygon8478" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="399.26,278.45 399.61,278.25 390.23,275.64 "
-       id="polygon8480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="395.77,286.12 395.62,286.6 404.8,289.16 "
-       id="polygon8482" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="141.19,327.32 141.37,327.79 153.19,323.33 "
-       id="polygon8484" />
-    <line
-       x1="226.64"
-       y1="243.03999"
-       x2="225.50999"
-       y2="246.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8486" />
-    <line
-       x1="284.23001"
-       y1="225.5"
-       x2="282.39999"
-       y2="222.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8488" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="398.96,278.77 399.26,278.45 389.89,275.84 "
-       id="polygon8490" />
-    <line
-       x1="193.32001"
-       y1="178.25"
-       x2="196.35001"
-       y2="179.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.77,280.99 398.59,280.63 389.22,278.01 "
-       id="polygon8494" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="255.31,279.57 255.05,279.84 264.2,277.28 "
-       id="polygon8496" />
-    <line
-       x1="262.79999"
-       y1="312.70001"
-       x2="266.20001"
-       y2="310.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.72,279.2 398.96,278.77 389.59,276.17 "
-       id="polygon8500" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="254.44,276.85 254.79,277.04 263.93,274.48 "
-       id="polygon8502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.59,280.63 398.53,280.17 389.16,277.56 "
-       id="polygon8504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.57,279.68 398.72,279.2 389.34,276.59 "
-       id="polygon8506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.53,280.17 398.57,279.68 389.2,277.07 "
-       id="polygon8508" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="255.48,279.2 255.31,279.57 264.45,277.02 "
-       id="polygon8510" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="254.79,277.04 255.1,277.35 264.24,274.79 "
-       id="polygon8512" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="255.55,278.73 255.48,279.2 264.62,276.64 "
-       id="polygon8514" />
-    <line
-       x1="145.73"
-       y1="266.34"
-       x2="142.96001"
-       y2="264.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8516" />
-    <line
-       x1="188.94"
-       y1="300.72"
-       x2="189.98"
-       y2="299.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8518" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="255.1,277.35 255.34,277.77 264.49,275.21 "
-       id="polygon8520" />
-    <line
-       x1="183.35001"
-       y1="141.36"
-       x2="183.13"
-       y2="143.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8522" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="255.5,278.24 255.55,278.73 264.69,276.18 "
-       id="polygon8524" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="255.34,277.77 255.5,278.24 264.64,275.69 "
-       id="polygon8526" />
-    <line
-       x1="227.5"
-       y1="239.63"
-       x2="226.64"
-       y2="243.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8528" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="402.32,282.46 402.57,282.71 411.9,285.31 "
-       id="polygon8530" />
-    <line
-       x1="276.78"
-       y1="125.66"
-       x2="275.57001"
-       y2="123.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8532" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="141.41,329.27 141.54,329.33 129.71,333.8 "
-       id="polygon8534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="402.15,282.09 402.32,282.46 411.64,285.06 "
-       id="polygon8536" />
-    <line
-       x1="244.35001"
-       y1="216.97"
-       x2="247.44"
-       y2="216.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8538" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="405.83,287.73 406.18,287.68 397,285.12 "
-       id="polygon8540" />
-    <line
-       x1="176.10001"
-       y1="255.34"
-       x2="176.42"
-       y2="258.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8542" />
-    <line
-       x1="196.35001"
-       y1="179.62"
-       x2="199.36"
-       y2="181.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8544" />
-    <line
-       x1="266.20001"
-       y1="310.79999"
-       x2="269.44"
-       y2="308.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8546" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="405.49,287.93 405.83,287.73 396.65,285.16 "
-       id="polygon8548" />
-    <line
-       x1="228.10001"
-       y1="236.14"
-       x2="227.5"
-       y2="239.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8550" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="405.25,290.72 404.99,290.47 395.81,287.91 "
-       id="polygon8552" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="140.79,326.58 140.61,326.38 128.77,330.84 "
-       id="polygon8554" />
-    <line
-       x1="285.91"
-       y1="229.00999"
-       x2="284.23001"
-       y2="225.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8556" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="141.63,329.25 141.66,329.02 129.82,333.49 "
-       id="polygon8558" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="405.18,288.25 405.49,287.93 396.31,285.36 "
-       id="polygon8560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.99,290.47 404.82,290.11 395.64,287.54 "
-       id="polygon8562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.95,288.68 405.18,288.25 396,285.69 "
-       id="polygon8564" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="140.98,326.91 140.79,326.58 128.95,331.04 "
-       id="polygon8566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.82,290.11 404.75,289.65 395.57,287.09 "
-       id="polygon8568" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="141.66,329.02 141.62,328.68 129.78,333.14 "
-       id="polygon8570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.8,289.16 404.95,288.68 395.77,286.12 "
-       id="polygon8572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.75,289.65 404.8,289.16 395.62,286.6 "
-       id="polygon8574" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="399.26,278.45 399.61,278.25 399.61,278.55 "
-       id="polygon8576" />
-    <line
-       x1="142.96001"
-       y1="264.39001"
-       x2="140.38"
-       y2="262.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8578" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="141.19,327.32 140.98,326.91 129.15,331.37 "
-       id="polygon8580" />
-    <line
-       x1="228.42999"
-       y1="232.59"
-       x2="228.10001"
-       y2="236.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8582" />
-    <line
-       x1="199.36"
-       y1="181.23"
-       x2="202.32001"
-       y2="183.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8584" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="141.62,328.68 141.52,328.26 129.68,332.72 "
-       id="polygon8586" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="141.37,327.79 141.19,327.32 129.35,331.79 "
-       id="polygon8588" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="141.52,328.26 141.37,327.79 129.54,332.25 "
-       id="polygon8590" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="238.73,232.33 238.58,232 228.52,228.95 "
-       id="polygon8592" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="237.5,234.86 237.82,234.76 227.75,231.71 "
-       id="polygon8594" />
-    <line
-       x1="269.44"
-       y1="308.62"
-       x2="272.51001"
-       y2="306.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8596" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="128.63,330.78 128.77,330.84 140.61,326.38 "
-       id="polygon8598" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="238.79,232.76 238.73,232.33 228.67,229.28 "
-       id="polygon8600" />
-    <line
-       x1="247.44"
-       y1="216.45"
-       x2="250.46001"
-       y2="215.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8602" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="237.82,234.76 238.13,234.52 228.06,231.47 "
-       id="polygon8604" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="129.82,333.49 129.8,333.71 141.63,329.25 "
-       id="polygon8606" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="238.75,233.24 238.79,232.76 228.73,229.7 "
-       id="polygon8608" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="238.13,234.52 238.4,234.16 228.34,231.11 "
-       id="polygon8610" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="128.77,330.84 128.95,331.04 140.79,326.58 "
-       id="polygon8612" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="238.62,233.72 238.75,233.24 228.69,230.18 "
-       id="polygon8614" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="240.21,321 240.31,320.7 248.93,314.09 "
-       id="polygon8616" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="249.43,313.85 249.14,313.91 240.52,320.52 "
-       id="polygon8618" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="238.4,234.16 238.62,233.72 228.56,230.67 "
-       id="polygon8620" />
-    <line
-       x1="202.32001"
-       y1="183.05"
-       x2="205.21001"
-       y2="185.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8622" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="411.9,285.31 411.64,285.06 402.32,282.46 "
-       id="polygon8624" />
-    <line
-       x1="287.42001"
-       y1="232.7"
-       x2="285.91"
-       y2="229.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8626" />
-    <line
-       x1="183.72"
-       y1="139.09"
-       x2="183.35001"
-       y2="141.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8628" />
-    <line
-       x1="277.92001"
-       y1="128.22"
-       x2="276.78"
-       y2="125.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8630" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="251.13,316.37 251.22,316.07 242.61,322.69 "
-       id="polygon8632" />
-    <line
-       x1="176.02"
-       y1="252.12"
-       x2="176.10001"
-       y2="255.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8634" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="249.78,313.93 249.43,313.85 240.81,320.46 "
-       id="polygon8636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="255.55,278.73 255.5,278.24 255.28,278.27 "
-       id="polygon8638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="411.64,285.06 411.48,284.7 402.15,282.09 "
-       id="polygon8640" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="129.68,332.72 129.78,333.14 141.62,328.68 "
-       id="polygon8642" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="251.22,316.07 251.2,315.7 242.59,322.31 "
-       id="polygon8644" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="129.15,331.37 129.35,331.79 141.19,327.32 "
-       id="polygon8646" />
-    <line
-       x1="228.5"
-       y1="229.00999"
-       x2="228.44"
-       y2="227.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8648" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="400.53,278.55 400.27,278.31 409.67,280.92 "
-       id="polygon8650" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="129.54,332.25 129.68,332.72 141.52,328.26 "
-       id="polygon8652" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="250.16,314.14 249.78,313.93 241.16,320.54 "
-       id="polygon8654" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="129.35,331.79 129.54,332.25 141.37,327.79 "
-       id="polygon8656" />
-    <line
-       x1="189.98"
-       y1="299.17999"
-       x2="191.24001"
-       y2="297.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8658" />
-    <line
-       x1="272.51001"
-       y1="306.17001"
-       x2="275.39001"
-       y2="303.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8660" />
-    <line
-       x1="140.38"
-       y1="262.32999"
-       x2="138"
-       y2="260.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8662" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="251.2,315.7 251.07,315.27 242.45,321.89 "
-       id="polygon8664" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="250.52,314.45 250.16,314.14 241.54,320.75 "
-       id="polygon8666" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="251.07,315.27 250.84,314.84 242.21,321.46 "
-       id="polygon8668" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="250.84,314.84 250.52,314.45 241.9,321.07 "
-       id="polygon8670" />
-    <line
-       x1="205.21001"
-       y1="185.09"
-       x2="208"
-       y2="187.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8672" />
-    <line
-       x1="227.84"
-       y1="221.81"
-       x2="228.3"
-       y2="225.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8674" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="399.61,278.25 399.26,278.45 408.66,281.06 "
-       id="polygon8676" />
-    <line
-       x1="208"
-       y1="187.34"
-       x2="210.69"
-       y2="189.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8678" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="228.29,228.74 228.52,228.95 238.58,232 "
-       id="polygon8680" />
-    <line
-       x1="228.3"
-       y1="225.41"
-       x2="228.44"
-       y2="227.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8682" />
-    <line
-       x1="250.46001"
-       y1="215.63"
-       x2="253.41"
-       y2="214.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8684" />
-    <line
-       x1="288.73999"
-       y1="236.55"
-       x2="287.42001"
-       y2="232.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8686" />
-    <line
-       x1="227.13"
-       y1="218.23"
-       x2="227.84"
-       y2="221.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.59,280.63 398.77,280.99 408.16,283.61 "
-       id="polygon8690" />
-    <line
-       x1="275.39001"
-       y1="303.45999"
-       x2="278.07999"
-       y2="300.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8692" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="129.57,333.73 129.71,333.8 117.86,338.27 "
-       id="polygon8694" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="399.26,278.45 398.96,278.77 408.36,281.39 "
-       id="polygon8696" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="228.52,228.95 228.67,229.28 238.73,232.33 "
-       id="polygon8698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.53,280.17 398.59,280.63 408,283.24 "
-       id="polygon8700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.96,278.77 398.72,279.2 408.12,281.82 "
-       id="polygon8702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.57,279.68 398.53,280.17 407.93,282.79 "
-       id="polygon8704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="398.72,279.2 398.57,279.68 407.97,282.3 "
-       id="polygon8706" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="228.06,231.47 227.75,231.71 237.82,234.76 "
-       id="polygon8708" />
-    <line
-       x1="210.69"
-       y1="189.77"
-       x2="213.25"
-       y2="192.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8710" />
-    <line
-       x1="226.16"
-       y1="214.67999"
-       x2="227.13"
-       y2="218.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8712" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="128.77,330.84 128.63,330.78 116.78,335.25 "
-       id="polygon8714" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="228.67,229.28 228.73,229.7 238.79,232.76 "
-       id="polygon8716" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="406.75,288.04 406.5,287.79 415.7,290.36 "
-       id="polygon8718" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="228.34,231.11 228.06,231.47 238.13,234.52 "
-       id="polygon8720" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="228.73,229.7 228.69,230.18 238.75,233.24 "
-       id="polygon8722" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="228.56,230.67 228.34,231.11 238.4,234.16 "
-       id="polygon8724" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="228.69,230.18 228.56,230.67 238.62,233.72 "
-       id="polygon8726" />
-    <line
-       x1="224.95"
-       y1="211.19"
-       x2="226.16"
-       y2="214.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8728" />
-    <line
-       x1="213.25"
-       y1="192.39999"
-       x2="215.66"
-       y2="195.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8730" />
-    <line
-       x1="138"
-       y1="260.14999"
-       x2="135.84"
-       y2="257.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8732" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="128.95,331.04 128.77,330.84 116.92,335.31 "
-       id="polygon8734" />
-    <line
-       x1="278.97"
-       y1="131.00999"
-       x2="277.92001"
-       y2="128.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8736" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="129.8,333.71 129.82,333.49 117.97,337.96 "
-       id="polygon8738" />
-    <line
-       x1="176.19"
-       y1="249.03999"
-       x2="176.02"
-       y2="252.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8740" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="244.34,279.77 244.59,279.51 253.77,276.95 "
-       id="polygon8742" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="254.79,277.04 254.44,276.85 245.27,279.42 "
-       id="polygon8744" />
-    <line
-       x1="223.50999"
-       y1="207.77"
-       x2="224.95"
-       y2="211.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8746" />
-    <line
-       x1="215.66"
-       y1="195.19"
-       x2="217.91"
-       y2="198.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8748" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="255.05,279.84 255.31,279.57 246.14,282.14 "
-       id="polygon8750" />
-    <line
-       x1="278.07999"
-       y1="300.5"
-       x2="280.56"
-       y2="297.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8752" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="242.59,322.31 242.61,322.69 251.22,316.07 "
-       id="polygon8754" />
-    <line
-       x1="289.85999"
-       y1="240.53999"
-       x2="288.73999"
-       y2="236.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8756" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="240.81,320.46 241.16,320.54 249.78,313.93 "
-       id="polygon8758" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="129.15,331.37 128.95,331.04 117.09,335.51 "
-       id="polygon8760" />
-    <line
-       x1="184.23"
-       y1="137.03999"
-       x2="183.72"
-       y2="139.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8762" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="129.82,333.49 129.78,333.14 117.93,337.62 "
-       id="polygon8764" />
-    <line
-       x1="221.85001"
-       y1="204.45"
-       x2="223.50999"
-       y2="207.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8766" />
-    <line
-       x1="217.91"
-       y1="198.14"
-       x2="219.98"
-       y2="201.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8768" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="255.1,277.35 254.79,277.04 245.61,279.6 "
-       id="polygon8770" />
-    <line
-       x1="219.98"
-       y1="201.23"
-       x2="221.85001"
-       y2="204.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8772" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="255.31,279.57 255.48,279.2 246.31,281.76 "
-       id="polygon8774" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="242.45,321.89 242.59,322.31 251.2,315.7 "
-       id="polygon8776" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="241.16,320.54 241.54,320.75 250.16,314.14 "
-       id="polygon8778" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="129.35,331.79 129.15,331.37 117.29,335.84 "
-       id="polygon8780" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="129.78,333.14 129.68,332.72 117.83,337.19 "
-       id="polygon8782" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="255.35,277.77 255.1,277.35 245.93,279.91 "
-       id="polygon8784" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="255.48,279.2 255.55,278.73 246.37,281.3 "
-       id="polygon8786" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="242.21,321.46 242.45,321.89 251.07,315.27 "
-       id="polygon8788" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="241.54,320.75 241.9,321.07 250.52,314.45 "
-       id="polygon8790" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="129.54,332.25 129.35,331.79 117.5,336.26 "
-       id="polygon8792" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="255.5,278.24 255.35,277.77 246.17,280.33 "
-       id="polygon8794" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="409.09,283.92 408.74,283.96 399.34,281.35 "
-       id="polygon8796" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="255.55,278.73 255.5,278.24 246.32,280.81 "
-       id="polygon8798" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="129.68,332.72 129.54,332.25 117.68,336.72 "
-       id="polygon8800" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="241.9,321.07 242.21,321.46 250.84,314.84 "
-       id="polygon8802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.82,290.11 404.99,290.47 414.2,293.05 "
-       id="polygon8804" />
-    <line
-       x1="253.41"
-       y1="214.53"
-       x2="256.28"
-       y2="213.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8806" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="405.49,287.93 405.18,288.25 414.39,290.83 "
-       id="polygon8808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.75,289.65 404.82,290.11 414.02,292.68 "
-       id="polygon8810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="405.18,288.25 404.95,288.68 414.15,291.25 "
-       id="polygon8812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.8,289.16 404.75,289.65 413.96,292.23 "
-       id="polygon8814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="404.95,288.68 404.8,289.16 414,291.74 "
-       id="polygon8816" />
-    <line
-       x1="280.56"
-       y1="297.32001"
-       x2="282.81"
-       y2="293.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8818" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="117.97,337.96 117.95,338.18 129.8,333.71 "
-       id="polygon8820" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="408.66,281.06 409.01,280.86 399.61,278.25 "
-       id="polygon8822" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="408.42,283.86 408.16,283.61 398.77,280.99 "
-       id="polygon8824" />
-    <line
-       x1="290.76999"
-       y1="244.63"
-       x2="289.85999"
-       y2="240.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8826" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="116.92,335.31 117.09,335.51 128.95,331.04 "
-       id="polygon8828" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="408.36,281.39 408.66,281.06 399.26,278.45 "
-       id="polygon8830" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="117.93,337.62 117.97,337.96 129.82,333.49 "
-       id="polygon8832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408.16,283.61 408,283.24 398.59,280.63 "
-       id="polygon8834" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="117.09,335.51 117.29,335.84 129.15,331.37 "
-       id="polygon8836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408.12,281.82 408.36,281.39 398.96,278.77 "
-       id="polygon8838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408,283.24 407.93,282.79 398.53,280.17 "
-       id="polygon8840" />
-    <line
-       x1="135.84"
-       y1="257.88"
-       x2="133.91"
-       y2="255.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8842" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="117.83,337.19 117.93,337.62 129.78,333.14 "
-       id="polygon8844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.97,282.3 408.12,281.82 398.72,279.2 "
-       id="polygon8846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.93,282.79 407.97,282.3 398.57,279.68 "
-       id="polygon8848" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="117.29,335.84 117.5,336.26 129.35,331.79 "
-       id="polygon8850" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="117.68,336.72 117.83,337.19 129.68,332.72 "
-       id="polygon8852" />
-    <line
-       x1="282.81"
-       y1="293.92999"
-       x2="284.84"
-       y2="290.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8854" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="117.5,336.26 117.68,336.72 129.54,332.25 "
-       id="polygon8856" />
-    <line
-       x1="279.92001"
-       y1="134"
-       x2="278.97"
-       y2="131.00999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8858" />
-    <line
-       x1="291.45999"
-       y1="248.83"
-       x2="290.76999"
-       y2="244.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="411.48,284.7 411.64,285.06 421,287.67 "
-       id="polygon8862" />
-    <line
-       x1="256.28"
-       y1="213.14999"
-       x2="259.04999"
-       y2="211.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8864" />
-    <line
-       x1="176.60001"
-       y1="246.13"
-       x2="176.19"
-       y2="249.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="242.35,322.22 242.37,322.52 242.61,322.69 "
-       id="polygon8868" />
-    <line
-       x1="284.84"
-       y1="290.35001"
-       x2="286.63"
-       y2="286.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8870" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="414.69,290.5 415.04,290.3 405.83,287.73 "
-       id="polygon8872" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="414.45,293.3 414.2,293.05 404.99,290.47 "
-       id="polygon8874" />
-    <line
-       x1="291.91"
-       y1="253.09"
-       x2="291.45999"
-       y2="248.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8876" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="245.27,279.42 245.61,279.6 254.79,277.04 "
-       id="polygon8878" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="414.39,290.83 414.69,290.5 405.49,287.93 "
-       id="polygon8880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.2,293.05 414.02,292.68 404.82,290.11 "
-       id="polygon8882" />
-    <line
-       x1="184.88"
-       y1="135.23"
-       x2="184.23"
-       y2="137.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8884" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="117.72,338.2 117.86,338.27 105.99,342.75 "
-       id="polygon8886" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="246.31,281.76 246.14,282.14 255.31,279.57 "
-       id="polygon8888" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="245.61,279.6 245.93,279.91 255.1,277.35 "
-       id="polygon8890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.15,291.25 414.39,290.83 405.18,288.25 "
-       id="polygon8892" />
-    <line
-       x1="286.63"
-       y1="286.59"
-       x2="288.17001"
-       y2="282.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.02,292.68 413.96,292.23 404.75,289.65 "
-       id="polygon8896" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="246.37,281.3 246.31,281.76 255.48,279.2 "
-       id="polygon8898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414,291.74 414.15,291.25 404.95,288.68 "
-       id="polygon8900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="413.96,292.23 414,291.74 404.8,289.16 "
-       id="polygon8902" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="245.93,279.91 246.17,280.33 255.35,277.77 "
-       id="polygon8904" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="246.32,280.81 246.37,281.3 255.55,278.73 "
-       id="polygon8906" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="116.92,335.31 116.78,335.25 104.91,339.72 "
-       id="polygon8908" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="246.17,280.33 246.32,280.81 255.5,278.24 "
-       id="polygon8910" />
-    <line
-       x1="292.13"
-       y1="257.39001"
-       x2="291.91"
-       y2="253.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8912" />
-    <line
-       x1="133.91"
-       y1="255.53999"
-       x2="132.22"
-       y2="253.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8914" />
-    <line
-       x1="288.17001"
-       y1="282.67999"
-       x2="289.45999"
-       y2="278.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8916" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="117.09,335.51 116.92,335.31 105.04,339.79 "
-       id="polygon8918" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="228.67,229.28 228.52,228.95 218.43,225.88 "
-       id="polygon8920" />
-    <line
-       x1="292.10001"
-       y1="261.70001"
-       x2="292.13"
-       y2="257.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8922" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="227.44,231.81 227.75,231.71 217.66,228.65 "
-       id="polygon8924" />
-    <line
-       x1="289.45999"
-       y1="278.64999"
-       x2="290.5"
-       y2="274.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8926" />
-    <line
-       x1="259.04999"
-       y1="211.49001"
-       x2="261.70999"
-       y2="209.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8928" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="117.29,335.84 117.09,335.51 105.22,339.99 "
-       id="polygon8930" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="228.73,229.7 228.67,229.28 218.58,226.21 "
-       id="polygon8932" />
-    <line
-       x1="280.76999"
-       y1="137.17999"
-       x2="279.92001"
-       y2="134"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8934" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="117.97,337.96 117.93,337.62 106.05,342.09 "
-       id="polygon8936" />
-    <line
-       x1="291.82001"
-       y1="266.01001"
-       x2="292.10001"
-       y2="261.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8938" />
-    <line
-       x1="290.5"
-       y1="274.51001"
-       x2="291.29001"
-       y2="270.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8940" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="105.99,342.75 105.85,342.68 117.72,338.2 "
-       id="polygon8942" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="227.75,231.71 228.06,231.47 217.97,228.41 "
-       id="polygon8944" />
-    <line
-       x1="291.29001"
-       y1="270.29001"
-       x2="291.82001"
-       y2="266.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8946" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="228.69,230.18 228.73,229.7 218.64,226.64 "
-       id="polygon8948" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="117.5,336.26 117.29,335.84 105.42,340.32 "
-       id="polygon8950" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="117.93,337.62 117.83,337.19 105.95,341.67 "
-       id="polygon8952" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="228.06,231.47 228.34,231.11 218.25,228.05 "
-       id="polygon8954" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="228.56,230.67 228.69,230.18 218.6,227.12 "
-       id="polygon8956" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="228.34,231.11 228.56,230.67 218.46,227.61 "
-       id="polygon8958" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="117.68,336.72 117.5,336.26 105.62,340.73 "
-       id="polygon8960" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="117.83,337.19 117.68,336.72 105.8,341.2 "
-       id="polygon8962" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="421.26,287.92 421,287.67 411.64,285.06 "
-       id="polygon8964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="421,287.67 420.83,287.3 411.48,284.7 "
-       id="polygon8966" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="241.16,320.54 240.81,320.46 232.16,327.09 "
-       id="polygon8968" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="106.09,342.44 106.07,342.66 117.95,338.18 "
-       id="polygon8970" />
-    <line
-       x1="177.23"
-       y1="243.41"
-       x2="176.60001"
-       y2="246.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8972" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="242.61,322.69 242.59,322.31 233.94,328.95 "
-       id="polygon8974" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="241.54,320.75 241.16,320.54 232.52,327.18 "
-       id="polygon8976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="245.21,282.5 245.56,282.53 245.5,282.21 "
-       id="polygon8978" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="105.04,339.79 105.22,339.99 117.09,335.51 "
-       id="polygon8980" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="242.59,322.31 242.45,321.89 233.8,328.52 "
-       id="polygon8982" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="241.9,321.07 241.54,320.75 232.89,327.39 "
-       id="polygon8984" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="106.05,342.09 106.09,342.44 117.97,337.96 "
-       id="polygon8986" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="242.45,321.89 242.21,321.46 233.57,328.09 "
-       id="polygon8988" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="242.21,321.46 241.9,321.07 233.25,327.7 "
-       id="polygon8990" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="105.22,339.99 105.42,340.32 117.29,335.84 "
-       id="polygon8992" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="105.95,341.67 106.05,342.09 117.93,337.62 "
-       id="polygon8994" />
-    <line
-       x1="261.70999"
-       y1="209.57001"
-       x2="264.23999"
-       y2="207.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8996" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="409.36,280.82 409.01,280.86 418.44,283.49 "
-       id="polygon8998" />
-    <line
-       x1="132.22"
-       y1="253.14"
-       x2="130.78"
-       y2="250.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9000" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="105.42,340.32 105.62,340.73 117.5,336.26 "
-       id="polygon9002" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="105.8,341.2 105.95,341.67 117.83,337.19 "
-       id="polygon9004" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="105.62,340.73 105.8,341.2 117.68,336.72 "
-       id="polygon9006" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="408.16,283.61 408.42,283.86 417.85,286.49 "
-       id="polygon9008" />
-    <line
-       x1="185.64"
-       y1="133.67"
-       x2="184.88"
-       y2="135.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9010" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="409.01,280.86 408.66,281.06 418.09,283.69 "
-       id="polygon9012" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="218.2,225.68 218.43,225.88 228.52,228.95 "
-       id="polygon9014" />
-    <line
-       x1="281.48001"
-       y1="140.53999"
-       x2="280.76999"
-       y2="137.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408,283.24 408.16,283.61 417.59,286.24 "
-       id="polygon9018" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="408.66,281.06 408.36,281.39 417.79,284.02 "
-       id="polygon9020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.93,282.79 408,283.24 417.42,285.87 "
-       id="polygon9022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408.36,281.39 408.12,281.82 417.55,284.44 "
-       id="polygon9024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="407.97,282.3 407.93,282.79 417.36,285.42 "
-       id="polygon9026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="408.12,281.82 407.97,282.3 417.4,284.93 "
-       id="polygon9028" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="217.97,228.41 217.66,228.65 227.75,231.71 "
-       id="polygon9030" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="218.58,226.21 218.64,226.64 228.73,229.7 "
-       id="polygon9032" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="218.25,228.05 217.97,228.41 228.06,231.47 "
-       id="polygon9034" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="218.64,226.64 218.6,227.12 228.69,230.18 "
-       id="polygon9036" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="218.46,227.61 218.25,228.05 228.34,231.11 "
-       id="polygon9038" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="218.6,227.12 218.46,227.61 228.56,230.67 "
-       id="polygon9040" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="233.96,329.33 233.86,329.63 242.51,322.99 "
-       id="polygon9042" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="231.87,327.15 232.16,327.09 240.81,320.46 "
-       id="polygon9044" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="415.38,290.25 415.04,290.3 424.27,292.88 "
-       id="polygon9046" />
-    <line
-       x1="264.23999"
-       y1="207.38"
-       x2="266.64001"
-       y2="204.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9048" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="414.2,293.05 414.45,293.3 423.68,295.88 "
-       id="polygon9050" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="233.94,328.95 233.96,329.33 242.61,322.69 "
-       id="polygon9052" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="232.16,327.09 232.52,327.18 241.16,320.54 "
-       id="polygon9054" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="415.04,290.3 414.69,290.5 423.93,293.08 "
-       id="polygon9056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.02,292.68 414.2,293.05 423.43,295.63 "
-       id="polygon9058" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="233.8,328.52 233.94,328.95 242.59,322.31 "
-       id="polygon9060" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="232.52,327.18 232.89,327.39 241.54,320.75 "
-       id="polygon9062" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="414.69,290.5 414.39,290.83 423.62,293.41 "
-       id="polygon9064" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="105.22,339.99 105.04,339.79 93.15,344.27 "
-       id="polygon9066" />
-    <line
-       x1="178.09"
-       y1="240.89"
-       x2="177.23"
-       y2="243.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9068" />
-    <line
-       x1="282.07001"
-       y1="144.03999"
-       x2="281.48001"
-       y2="140.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9070" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="233.57,328.09 233.8,328.52 242.45,321.89 "
-       id="polygon9072" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="232.89,327.39 233.25,327.7 241.9,321.07 "
-       id="polygon9074" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="106.07,342.66 106.09,342.44 94.2,346.92 "
-       id="polygon9076" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="233.25,327.7 233.57,328.09 242.21,321.46 "
-       id="polygon9078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="413.96,292.23 414.02,292.68 423.26,295.27 "
-       id="polygon9080" />
-    <line
-       x1="130.78"
-       y1="250.7"
-       x2="129.59"
-       y2="248.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.39,290.83 414.15,291.25 423.38,293.84 "
-       id="polygon9084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414,291.74 413.96,292.23 423.19,294.81 "
-       id="polygon9086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="414.15,291.25 414,291.74 423.23,294.32 "
-       id="polygon9088" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="245.21,282.5 245.56,282.53 236.36,285.11 "
-       id="polygon9090" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="105.42,340.32 105.22,339.99 93.32,344.47 "
-       id="polygon9092" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="106.09,342.44 106.05,342.09 94.16,346.58 "
-       id="polygon9094" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="418.09,283.69 418.44,283.49 409.01,280.86 "
-       id="polygon9096" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="105.62,340.73 105.42,340.32 93.52,344.8 "
-       id="polygon9098" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="106.05,342.09 105.95,341.67 94.06,346.16 "
-       id="polygon9100" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="105.8,341.2 105.62,340.73 93.72,345.22 "
-       id="polygon9102" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="105.95,341.67 105.8,341.2 93.91,345.68 "
-       id="polygon9104" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="235.13,282.35 235.38,282.08 244.59,279.51 "
-       id="polygon9106" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="245.61,279.6 245.27,279.42 236.05,281.99 "
-       id="polygon9108" />
-    <line
-       x1="266.64001"
-       y1="204.96001"
-       x2="268.91"
-       y2="202.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9110" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="245.88,282.41 246.14,282.14 236.93,284.72 "
-       id="polygon9112" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="417.79,284.02 418.09,283.69 408.66,281.06 "
-       id="polygon9114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.59,286.24 417.42,285.87 408,283.24 "
-       id="polygon9116" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="245.93,279.91 245.61,279.6 236.41,282.18 "
-       id="polygon9118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.55,284.44 417.79,284.02 408.36,281.39 "
-       id="polygon9120" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="246.14,282.14 246.31,281.76 237.1,284.34 "
-       id="polygon9122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.42,285.87 417.36,285.42 407.93,282.79 "
-       id="polygon9124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.4,284.93 417.55,284.44 408.12,281.82 "
-       id="polygon9126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.36,285.42 417.4,284.93 407.97,282.3 "
-       id="polygon9128" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="246.17,280.33 245.93,279.91 236.72,282.49 "
-       id="polygon9130" />
-    <line
-       x1="186.52"
-       y1="132.38"
-       x2="185.64"
-       y2="133.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9132" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="246.31,281.76 246.37,281.3 237.16,283.88 "
-       id="polygon9134" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="94.2,346.92 94.18,347.14 106.07,342.66 "
-       id="polygon9136" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="246.32,280.81 246.17,280.33 236.96,282.91 "
-       id="polygon9138" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="246.37,281.3 246.32,280.81 237.12,283.39 "
-       id="polygon9140" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="93.15,344.27 93.32,344.47 105.22,339.99 "
-       id="polygon9142" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="431.31,290.59 430.96,290.64 421.57,288.02 "
-       id="polygon9144" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="421,287.67 421.26,287.92 430.64,290.54 "
-       id="polygon9146" />
-    <line
-       x1="282.51999"
-       y1="147.66"
-       x2="282.07001"
-       y2="144.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9148" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="94.16,346.58 94.2,346.92 106.09,342.44 "
-       id="polygon9150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="420.83,287.3 421,287.67 430.39,290.29 "
-       id="polygon9152" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="93.32,344.47 93.52,344.8 105.42,340.32 "
-       id="polygon9154" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="94.06,346.16 94.16,346.58 106.05,342.09 "
-       id="polygon9156" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="93.52,344.8 93.72,345.22 105.62,340.73 "
-       id="polygon9158" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="423.93,293.08 424.27,292.88 415.04,290.3 "
-       id="polygon9160" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="93.91,345.68 94.06,346.16 105.95,341.67 "
-       id="polygon9162" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="423.68,295.88 423.43,295.63 414.2,293.05 "
-       id="polygon9164" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="93.72,345.22 93.91,345.68 105.8,341.2 "
-       id="polygon9166" />
-    <line
-       x1="268.91"
-       y1="202.3"
-       x2="271.01999"
-       y2="199.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9168" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="423.62,293.41 423.93,293.08 414.69,290.5 "
-       id="polygon9170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.43,295.63 423.26,295.27 414.02,292.68 "
-       id="polygon9172" />
-    <line
-       x1="129.59"
-       y1="248.23"
-       x2="128.66"
-       y2="245.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.38,293.84 423.62,293.41 414.39,290.83 "
-       id="polygon9176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.26,295.27 423.19,294.81 413.96,292.23 "
-       id="polygon9178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.23,294.32 423.38,293.84 414.15,291.25 "
-       id="polygon9180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.19,294.81 423.23,294.32 414,291.74 "
-       id="polygon9182" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="418.79,283.44 418.44,283.49 418.45,283.79 "
-       id="polygon9184" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="216.83,228.48 217.06,228.69 206.94,225.62 "
-       id="polygon9186" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="92.93,344.29 92.91,344.51 81,349 "
-       id="polygon9188" />
-    <line
-       x1="179.14999"
-       y1="238.60001"
-       x2="178.09"
-       y2="240.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9190" />
-    <line
-       x1="282.82001"
-       y1="151.39999"
-       x2="282.51999"
-       y2="147.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9192" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="207.47,222.64 207.79,222.55 217.91,225.62 "
-       id="polygon9194" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="218.58,226.21 218.43,225.88 208.3,222.81 "
-       id="polygon9196" />
-    <line
-       x1="271.01999"
-       y1="199.42999"
-       x2="272.97"
-       y2="196.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9198" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="217.35,228.75 217.66,228.65 207.54,225.58 "
-       id="polygon9200" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="231.67,327.33 231.57,327.63 222.9,334.28 "
-       id="polygon9202" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="218.64,226.64 218.58,226.21 208.45,223.14 "
-       id="polygon9204" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="217.66,228.65 217.97,228.41 207.85,225.34 "
-       id="polygon9206" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="236.05,281.99 236.41,282.18 245.61,279.6 "
-       id="polygon9208" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="218.6,227.12 218.64,226.64 208.51,223.57 "
-       id="polygon9210" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="237.1,284.34 236.93,284.72 246.14,282.14 "
-       id="polygon9212" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="217.97,228.41 218.25,228.05 208.12,224.98 "
-       id="polygon9214" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="218.46,227.61 218.6,227.12 208.47,224.05 "
-       id="polygon9216" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="430.64,290.54 430.39,290.29 421,287.67 "
-       id="polygon9218" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="218.25,228.05 218.46,227.61 208.34,224.54 "
-       id="polygon9220" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="236.41,282.18 236.72,282.49 245.93,279.91 "
-       id="polygon9222" />
-    <polygon
-       style="opacity:1;fill:#007e00"
-       points="81,349 81.02,348.78 92.93,344.29 "
-       id="polygon9224" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="93.32,344.47 93.15,344.27 81.23,348.76 "
-       id="polygon9226" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="237.16,283.88 237.1,284.34 246.31,281.76 "
-       id="polygon9228" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="236.72,282.49 236.96,282.91 246.17,280.33 "
-       id="polygon9230" />
-    <line
-       x1="282.95999"
-       y1="155.23"
-       x2="282.82001"
-       y2="151.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9232" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="237.12,283.39 237.16,283.88 246.37,281.3 "
-       id="polygon9234" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="236.96,282.91 237.12,283.39 246.32,280.81 "
-       id="polygon9236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="430.39,290.29 430.22,289.92 420.83,287.3 "
-       id="polygon9238" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="93.52,344.8 93.32,344.47 81.41,348.96 "
-       id="polygon9240" />
-    <line
-       x1="187.5"
-       y1="131.35001"
-       x2="186.52"
-       y2="132.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9242" />
-    <line
-       x1="272.97"
-       y1="196.36"
-       x2="274.76999"
-       y2="193.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9244" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="233.86,329.63 233.96,329.33 225.29,335.98 "
-       id="polygon9246" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="94.2,346.92 94.16,346.58 82.24,351.07 "
-       id="polygon9248" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="232.52,327.18 232.16,327.09 223.49,333.75 "
-       id="polygon9250" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="419.36,283.79 419.1,283.54 428.56,286.18 "
-       id="polygon9252" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="93.72,345.22 93.52,344.8 81.61,349.29 "
-       id="polygon9254" />
-    <line
-       x1="82.110001"
-       y1="350.57999"
-       x2="82.110001"
-       y2="350.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9256" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="94.16,346.58 94.06,346.16 82.14,350.65 "
-       id="polygon9258" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="233.96,329.33 233.94,328.95 225.27,335.61 "
-       id="polygon9260" />
-    <line
-       x1="128.66"
-       y1="245.77"
-       x2="127.99"
-       y2="243.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9262" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="93.91,345.68 93.72,345.22 81.81,349.71 "
-       id="polygon9264" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="232.89,327.39 232.52,327.18 223.84,333.83 "
-       id="polygon9266" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="94.06,346.16 93.91,345.68 81.99,350.18 "
-       id="polygon9268" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="233.94,328.95 233.8,328.52 225.13,335.18 "
-       id="polygon9270" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="233.25,327.7 232.89,327.39 224.22,334.04 "
-       id="polygon9272" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="233.8,328.52 233.57,328.09 224.9,334.75 "
-       id="polygon9274" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="233.57,328.09 233.25,327.7 224.58,334.36 "
-       id="polygon9276" />
-    <line
-       x1="282.94"
-       y1="159.12"
-       x2="282.95999"
-       y2="155.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9278" />
-    <line
-       x1="274.76999"
-       y1="193.11"
-       x2="276.39001"
-       y2="189.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9280" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="82.29,351.41 82.27,351.64 94.18,347.14 "
-       id="polygon9282" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="417.59,286.24 417.85,286.49 427.3,289.13 "
-       id="polygon9284" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="81.23,348.76 81.41,348.96 93.32,344.47 "
-       id="polygon9286" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="418.44,283.49 418.09,283.69 427.55,286.32 "
-       id="polygon9288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.42,285.87 417.59,286.24 427.05,288.88 "
-       id="polygon9290" />
-    <line
-       x1="180.41"
-       y1="236.55"
-       x2="179.14999"
-       y2="238.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9292" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="81.41,348.96 81.61,349.29 93.52,344.8 "
-       id="polygon9294" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="418.09,283.69 417.79,284.02 427.25,286.65 "
-       id="polygon9296" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="425.19,293.18 424.93,292.94 434.19,295.52 "
-       id="polygon9298" />
-    <polygon
-       style="opacity:1;fill:#009a00"
-       points="82.14,350.65 82.24,351.07 94.16,346.58 "
-       id="polygon9300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.36,285.42 417.42,285.87 426.88,288.5 "
-       id="polygon9302" />
-    <line
-       x1="282.73999"
-       y1="163.03999"
-       x2="282.94"
-       y2="159.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9304" />
-    <line
-       x1="276.39001"
-       y1="189.7"
-       x2="277.82999"
-       y2="186.14"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.79,284.02 417.55,284.44 427,287.07 "
-       id="polygon9308" />
-    <line
-       x1="81.82"
-       y1="349.37"
-       x2="81.82"
-       y2="349.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9310" />
-    <polygon
-       style="opacity:1;fill:#007d00"
-       points="81.61,349.29 81.81,349.71 93.72,345.22 "
-       id="polygon9312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.4,284.93 417.36,285.42 426.82,288.05 "
-       id="polygon9314" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="81.99,350.18 82.14,350.65 94.06,346.16 "
-       id="polygon9316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="417.55,284.44 417.4,284.93 426.86,287.56 "
-       id="polygon9318" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="81.81,349.71 81.99,350.18 93.91,345.68 "
-       id="polygon9320" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.45,223.14 208.51,223.57 218.64,226.64 "
-       id="polygon9322" />
-    <line
-       x1="198.06"
-       y1="295.32001"
-       x2="200.14999"
-       y2="295.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9324" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="208.12,224.98 207.85,225.34 217.97,228.41 "
-       id="polygon9326" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="208.51,223.57 208.47,224.05 218.6,227.12 "
-       id="polygon9328" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="208.34,224.54 208.12,224.98 218.25,228.05 "
-       id="polygon9330" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.47,224.05 208.34,224.54 218.46,227.61 "
-       id="polygon9332" />
-    <line
-       x1="282.38"
-       y1="166.99001"
-       x2="282.73999"
-       y2="163.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9334" />
-    <line
-       x1="277.82999"
-       y1="186.14"
-       x2="279.10001"
-       y2="182.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9336" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="424.62,292.83 424.27,292.88 433.53,295.47 "
-       id="polygon9338" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="225.29,335.98 225.19,336.28 233.86,329.63 "
-       id="polygon9340" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="423.43,295.63 423.68,295.88 432.94,298.47 "
-       id="polygon9342" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="424.27,292.88 423.93,293.08 433.18,295.67 "
-       id="polygon9344" />
-    <line
-       x1="279.10001"
-       y1="182.46001"
-       x2="280.19"
-       y2="178.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9346" />
-    <line
-       x1="281.82999"
-       y1="170.92999"
-       x2="282.38"
-       y2="166.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.26,295.27 423.43,295.63 432.68,298.23 "
-       id="polygon9350" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="225.27,335.61 225.29,335.98 233.96,329.33 "
-       id="polygon9352" />
-    <line
-       x1="127.99"
-       y1="243.32001"
-       x2="127.59"
-       y2="240.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9354" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="223.49,333.75 223.84,333.83 232.52,327.18 "
-       id="polygon9356" />
-    <line
-       x1="280.19"
-       y1="178.67999"
-       x2="281.10001"
-       y2="174.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9358" />
-    <line
-       x1="281.10001"
-       y1="174.83"
-       x2="281.82999"
-       y2="170.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9360" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="423.93,293.08 423.62,293.41 432.88,296 "
-       id="polygon9362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.19,294.81 423.26,295.27 432.52,297.86 "
-       id="polygon9364" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="225.13,335.18 225.27,335.61 233.94,328.95 "
-       id="polygon9366" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="223.84,333.83 224.22,334.04 232.89,327.39 "
-       id="polygon9368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.62,293.41 423.38,293.84 432.64,296.43 "
-       id="polygon9370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.23,294.32 423.19,294.81 432.45,297.4 "
-       id="polygon9372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="423.38,293.84 423.23,294.32 432.49,296.91 "
-       id="polygon9374" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="224.9,334.75 225.13,335.18 233.8,328.52 "
-       id="polygon9376" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="224.22,334.04 224.58,334.36 233.25,327.7 "
-       id="polygon9378" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="224.58,334.36 224.9,334.75 233.57,328.09 "
-       id="polygon9380" />
-    <line
-       x1="188.57001"
-       y1="130.61"
-       x2="187.5"
-       y2="131.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9382" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="427.55,286.32 427.89,286.12 418.44,283.49 "
-       id="polygon9384" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="427.3,289.13 427.05,288.88 417.59,286.24 "
-       id="polygon9386" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="427.25,286.65 427.55,286.32 418.09,283.69 "
-       id="polygon9388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="427.05,288.88 426.88,288.5 417.42,285.87 "
-       id="polygon9390" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="207.28,225.36 207.53,225.29 207.54,225.58 "
-       id="polygon9392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="427,287.07 427.25,286.65 417.79,284.02 "
-       id="polygon9394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.88,288.5 426.82,288.05 417.36,285.42 "
-       id="polygon9396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.86,287.56 427,287.07 417.55,284.44 "
-       id="polygon9398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.82,288.05 426.86,287.56 417.4,284.93 "
-       id="polygon9400" />
-    <line
-       x1="181.87"
-       y1="234.75"
-       x2="180.41"
-       y2="236.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="430.22,289.92 430.39,290.29 439.8,292.91 "
-       id="polygon9404" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="433.18,295.67 433.53,295.47 424.27,292.88 "
-       id="polygon9406" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="432.94,298.47 432.68,298.23 423.43,295.63 "
-       id="polygon9408" />
-    <line
-       x1="200.14999"
-       y1="295.38"
-       x2="202.35001"
-       y2="295.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9410" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="432.88,296 433.18,295.67 423.93,293.08 "
-       id="polygon9412" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="225.89,284.93 226.14,284.66 235.38,282.08 "
-       id="polygon9414" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="236.41,282.18 236.05,281.99 226.82,284.57 "
-       id="polygon9416" />
-    <line
-       x1="127.59"
-       y1="240.91"
-       x2="127.46"
-       y2="238.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9418" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="236.68,284.99 236.93,284.72 227.69,287.31 "
-       id="polygon9420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.68,298.23 432.52,297.86 423.26,295.27 "
-       id="polygon9422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.64,296.43 432.88,296 423.62,293.41 "
-       id="polygon9424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.52,297.86 432.45,297.4 423.19,294.81 "
-       id="polygon9426" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="236.72,282.49 236.41,282.18 227.16,284.76 "
-       id="polygon9428" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="236.93,284.72 237.1,284.34 227.86,286.93 "
-       id="polygon9430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.49,296.91 432.64,296.43 423.38,293.84 "
-       id="polygon9432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.45,297.4 432.49,296.91 423.23,294.32 "
-       id="polygon9434" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="236.96,282.91 236.72,282.49 227.48,285.07 "
-       id="polygon9436" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="237.1,284.34 237.16,283.88 227.93,286.47 "
-       id="polygon9438" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="237.12,283.39 236.96,282.91 227.72,285.49 "
-       id="polygon9440" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="237.16,283.88 237.12,283.39 227.88,285.97 "
-       id="polygon9442" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="208.3,222.81 208.07,222.6 197.92,219.52 "
-       id="polygon9444" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="208.45,223.14 208.3,222.81 198.15,219.72 "
-       id="polygon9446" />
-    <line
-       x1="84.93"
-       y1="334.98999"
-       x2="81.82"
-       y2="349.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9448" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="207.22,225.68 207.54,225.58 197.38,222.5 "
-       id="polygon9450" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.51,223.57 208.45,223.14 198.3,220.05 "
-       id="polygon9452" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="433.61,298.53 433.26,298.58 433.32,298.26 "
-       id="polygon9454" />
-    <line
-       x1="87.720001"
-       y1="355"
-       x2="82.110001"
-       y2="350.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9456" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="207.54,225.58 207.85,225.34 197.69,222.26 "
-       id="polygon9458" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="208.47,224.05 208.51,223.57 198.36,220.48 "
-       id="polygon9460" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="207.85,225.34 208.12,224.98 197.97,221.9 "
-       id="polygon9462" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="440.06,293.16 439.8,292.91 430.39,290.29 "
-       id="polygon9464" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.34,224.54 208.47,224.05 198.32,220.96 "
-       id="polygon9466" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="208.12,224.98 208.34,224.54 198.18,221.45 "
-       id="polygon9468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="439.8,292.91 439.63,292.54 430.22,289.92 "
-       id="polygon9470" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="433.53,295.47 433.18,295.67 433.26,295.93 "
-       id="polygon9472" />
-    <line
-       x1="183.5"
-       y1="233.22"
-       x2="181.87"
-       y2="234.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9474" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="225.19,336.28 225.29,335.98 216.59,342.66 "
-       id="polygon9476" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="223.84,333.83 223.49,333.75 214.79,340.42 "
-       id="polygon9478" />
-    <line
-       x1="127.46"
-       y1="238.55"
-       x2="127.59"
-       y2="236.25999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9480" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="225.29,335.98 225.27,335.61 216.57,342.28 "
-       id="polygon9482" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="224.22,334.04 223.84,333.83 215.14,340.5 "
-       id="polygon9484" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="225.27,335.61 225.13,335.18 216.43,341.86 "
-       id="polygon9486" />
-    <line
-       x1="202.35001"
-       y1="295.73999"
-       x2="204.66"
-       y2="296.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9488" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="224.58,334.36 224.22,334.04 215.52,340.71 "
-       id="polygon9490" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="431.1,284.86 430.75,284.91 438.39,287.04 "
-       id="polygon9492" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="225.13,335.18 224.9,334.75 216.2,341.43 "
-       id="polygon9494" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="224.9,334.75 224.58,334.36 215.88,341.03 "
-       id="polygon9496" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="226.82,284.57 227.16,284.76 236.41,282.18 "
-       id="polygon9498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="429.7,286.54 429.67,286.85 437.32,288.97 "
-       id="polygon9500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.62,287.35 429.7,286.54 437.32,288.97 "
-       id="polygon9502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.32,288.97 437.34,288.67 432.62,287.35 "
-       id="polygon9504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.34,288.67 437.32,288.97 446.85,291.63 "
-       id="polygon9506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="440.98,289.68 437.34,288.67 446.85,291.63 "
-       id="polygon9508" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="428.24,286.07 427.89,286.12 437.38,288.76 "
-       id="polygon9510" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="227.86,286.93 227.69,287.31 236.93,284.72 "
-       id="polygon9512" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="227.16,284.76 227.48,285.07 236.72,282.49 "
-       id="polygon9514" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="430.75,284.91 430.41,285.11 438.05,287.23 "
-       id="polygon9516" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="227.93,286.47 227.86,286.93 237.1,284.34 "
-       id="polygon9518" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="427.05,288.88 427.3,289.13 436.79,291.77 "
-       id="polygon9520" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="227.48,285.07 227.72,285.49 236.96,282.91 "
-       id="polygon9522" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="227.88,285.97 227.93,286.47 237.16,283.88 "
-       id="polygon9524" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="427.89,286.12 427.55,286.32 437.04,288.96 "
-       id="polygon9526" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="227.72,285.49 227.88,285.97 237.12,283.39 "
-       id="polygon9528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="430.41,285.11 430.1,285.44 437.75,287.57 "
-       id="polygon9530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.88,288.5 427.05,288.88 436.54,291.52 "
-       id="polygon9532" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="197.38,222.5 197.07,222.6 207.22,225.68 "
-       id="polygon9534" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="427.55,286.32 427.25,286.65 436.73,289.29 "
-       id="polygon9536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="430.1,285.44 429.86,285.87 437.51,288 "
-       id="polygon9538" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="198.15,219.72 198.3,220.05 208.45,223.14 "
-       id="polygon9540" />
-    <line
-       x1="189.67999"
-       y1="130.17999"
-       x2="189.72"
-       y2="130.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="429.71,286.35 429.7,286.54 432.62,287.35 "
-       id="polygon9544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="429.86,285.87 429.71,286.35 437.36,288.48 "
-       id="polygon9546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.82,288.05 426.88,288.5 436.37,291.15 "
-       id="polygon9548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="427.25,286.65 427,287.07 436.49,289.71 "
-       id="polygon9550" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="197.69,222.26 197.38,222.5 207.54,225.58 "
-       id="polygon9552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="426.86,287.56 426.82,288.05 436.3,290.69 "
-       id="polygon9554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="427,287.07 426.86,287.56 436.34,290.2 "
-       id="polygon9556" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="198.3,220.05 198.36,220.48 208.51,223.57 "
-       id="polygon9558" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="197.97,221.9 197.69,222.26 207.85,225.34 "
-       id="polygon9560" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="198.36,220.48 198.32,220.96 208.47,224.05 "
-       id="polygon9562" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="433.88,295.42 433.53,295.47 442.82,298.06 "
-       id="polygon9564" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="198.18,221.45 197.97,221.9 208.12,224.98 "
-       id="polygon9566" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="198.32,220.96 198.18,221.45 208.34,224.54 "
-       id="polygon9568" />
-    <line
-       x1="87.510002"
-       y1="333.54001"
-       x2="88.169998"
-       y2="333.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9570" />
-    <line
-       x1="88.169998"
-       y1="333.23001"
-       x2="88.839996"
-       y2="332.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9572" />
-    <line
-       x1="86.199997"
-       y1="334.22"
-       x2="86.849998"
-       y2="333.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9574" />
-    <line
-       x1="85.559998"
-       y1="334.59"
-       x2="86.199997"
-       y2="334.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9576" />
-    <line
-       x1="89.5"
-       y1="332.67001"
-       x2="90.160004"
-       y2="332.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9578" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="433.53,295.47 433.18,295.67 442.47,298.26 "
-       id="polygon9580" />
-    <line
-       x1="90.160004"
-       y1="332.42001"
-       x2="90.82"
-       y2="332.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9582" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="214.5,340.48 214.79,340.42 223.49,333.75 "
-       id="polygon9584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.52,297.86 432.68,298.23 441.97,300.82 "
-       id="polygon9586" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="433.18,295.67 432.88,296 442.17,298.59 "
-       id="polygon9588" />
-    <line
-       x1="91.470001"
-       y1="331.98001"
-       x2="92.110001"
-       y2="331.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9590" />
-    <line
-       x1="127.59"
-       y1="236.25999"
-       x2="127.99"
-       y2="234.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.45,297.4 432.52,297.86 441.8,300.45 "
-       id="polygon9594" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="216.57,342.28 216.59,342.66 225.29,335.98 "
-       id="polygon9596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.88,296 432.64,296.43 441.93,299.02 "
-       id="polygon9598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.49,296.91 432.45,297.4 441.74,300 "
-       id="polygon9600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.64,296.43 432.49,296.91 441.78,299.51 "
-       id="polygon9602" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="216.43,341.86 216.57,342.28 225.27,335.61 "
-       id="polygon9604" />
-    <line
-       x1="93.639999"
-       y1="291.57999"
-       x2="95.120003"
-       y2="291.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9606" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="215.14,340.5 215.52,340.71 224.22,334.04 "
-       id="polygon9608" />
-    <line
-       x1="92.150002"
-       y1="291.70999"
-       x2="93.639999"
-       y2="291.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9610" />
-    <line
-       x1="185.28"
-       y1="231.97"
-       x2="183.5"
-       y2="233.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9612" />
-    <line
-       x1="87.559998"
-       y1="355.25"
-       x2="87.720001"
-       y2="355"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9614" />
-    <line
-       x1="95.120003"
-       y1="291.51001"
-       x2="96.580002"
-       y2="291.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9616" />
-    <line
-       x1="90.660004"
-       y1="291.91"
-       x2="92.150002"
-       y2="291.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9618" />
-    <line
-       x1="92.739998"
-       y1="331.60999"
-       x2="93.360001"
-       y2="331.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9620" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="216.2,341.43 216.43,341.86 225.13,335.18 "
-       id="polygon9622" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="215.52,340.71 215.88,341.03 224.58,334.36 "
-       id="polygon9624" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="215.88,341.03 216.2,341.43 224.9,334.75 "
-       id="polygon9626" />
-    <line
-       x1="96.580002"
-       y1="291.48001"
-       x2="98.019997"
-       y2="291.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9628" />
-    <line
-       x1="89.190002"
-       y1="292.14999"
-       x2="90.660004"
-       y2="291.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.51,288 437.75,287.57 430.1,285.44 "
-       id="polygon9632" />
-    <line
-       x1="93.360001"
-       y1="331.45001"
-       x2="93.959999"
-       y2="331.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9634" />
-    <polygon
-       style="opacity:1;fill:#0aff0a"
-       points="227.69,287.31 227.44,287.57 227.31,287.29 "
-       id="polygon9636" />
-    <line
-       x1="98.019997"
-       y1="291.51999"
-       x2="99.419998"
-       y2="291.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.36,288.48 437.51,288 429.86,285.87 "
-       id="polygon9640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.34,288.67 437.36,288.48 429.71,286.35 "
-       id="polygon9642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="432.62,287.35 437.34,288.67 429.71,286.35 "
-       id="polygon9644" />
-    <line
-       x1="204.66"
-       y1="296.38"
-       x2="207.03999"
-       y2="297.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9646" />
-    <line
-       x1="87.730003"
-       y1="292.45999"
-       x2="89.190002"
-       y2="292.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9648" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="436.73,289.29 437.04,288.96 427.55,286.32 "
-       id="polygon9650" />
-    <line
-       x1="99.419998"
-       y1="291.60001"
-       x2="100.78"
-       y2="291.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.54,291.52 436.37,291.15 426.88,288.5 "
-       id="polygon9654" />
-    <line
-       x1="86.300003"
-       y1="292.82999"
-       x2="87.730003"
-       y2="292.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.49,289.71 436.73,289.29 427.25,286.65 "
-       id="polygon9658" />
-    <line
-       x1="94.540001"
-       y1="331.17999"
-       x2="95.089996"
-       y2="331.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.37,291.15 436.3,290.69 426.82,288.05 "
-       id="polygon9662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.34,290.2 436.49,289.71 427,287.07 "
-       id="polygon9664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.3,290.69 436.34,290.2 426.86,287.56 "
-       id="polygon9666" />
-    <line
-       x1="100.78"
-       y1="291.73001"
-       x2="102.09"
-       y2="291.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9668" />
-    <line
-       x1="95.089996"
-       y1="331.07001"
-       x2="95.629997"
-       y2="330.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9670" />
-    <line
-       x1="84.900002"
-       y1="293.26001"
-       x2="86.300003"
-       y2="292.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9672" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="439.8,292.91 440.06,293.16 449.93,295.91 "
-       id="polygon9674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="214.5,340.48 214.29,340.66 214.52,340.89 "
-       id="polygon9676" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="442.47,298.26 442.82,298.06 433.53,295.47 "
-       id="polygon9678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="439.63,292.54 439.8,292.91 449.68,295.66 "
-       id="polygon9680" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="442.23,301.07 441.97,300.82 432.68,298.23 "
-       id="polygon9682" />
-    <line
-       x1="102.09"
-       y1="291.89999"
-       x2="103.35"
-       y2="292.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9684" />
-    <line
-       x1="83.540001"
-       y1="293.75"
-       x2="84.900002"
-       y2="293.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9686" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="442.17,298.59 442.47,298.26 433.18,295.67 "
-       id="polygon9688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.97,300.82 441.8,300.45 432.52,297.86 "
-       id="polygon9690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.93,299.02 442.17,298.59 432.88,296 "
-       id="polygon9692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.8,300.45 441.74,300 432.45,297.4 "
-       id="polygon9694" />
-    <line
-       x1="127.99"
-       y1="234.06"
-       x2="128.64"
-       y2="231.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.78,299.51 441.93,299.02 432.64,296.43 "
-       id="polygon9698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.74,300 441.78,299.51 432.49,296.91 "
-       id="polygon9700" />
-    <line
-       x1="86.599998"
-       y1="356.34"
-       x2="86.75"
-       y2="356.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9702" />
-    <line
-       x1="103.35"
-       y1="292.12"
-       x2="104.54"
-       y2="292.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9704" />
-    <line
-       x1="82.230003"
-       y1="294.29001"
-       x2="83.540001"
-       y2="293.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9706" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="226.14,284.66 225.89,284.93 216.61,287.52 "
-       id="polygon9708" />
-    <line
-       x1="96.620003"
-       y1="330.79999"
-       x2="97.080002"
-       y2="330.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9710" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="198.15,219.72 197.92,219.52 187.73,216.43 "
-       id="polygon9712" />
-    <line
-       x1="104.54"
-       y1="292.37"
-       x2="105.66"
-       y2="292.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9714" />
-    <line
-       x1="80.989998"
-       y1="294.89999"
-       x2="82.230003"
-       y2="294.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9716" />
-    <line
-       x1="187.21001"
-       y1="231.02"
-       x2="185.28"
-       y2="231.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9718" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="226.82,284.57 226.46,284.54 217.19,287.13 "
-       id="polygon9720" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="439.32,287.34 439.06,287.09 448.59,289.74 "
-       id="polygon9722" />
-    <line
-       x1="207.03999"
-       y1="297.32001"
-       x2="209.49001"
-       y2="298.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9724" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="227.44,287.57 227.69,287.31 218.42,289.91 "
-       id="polygon9726" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="198.36,220.48 198.3,220.05 188.12,216.96 "
-       id="polygon9728" />
-    <line
-       x1="97.5"
-       y1="330.67001"
-       x2="97.889999"
-       y2="330.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9730" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="197.38,222.5 197.69,222.26 187.5,219.17 "
-       id="polygon9732" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="227.48,285.07 227.16,284.76 217.89,287.35 "
-       id="polygon9734" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="227.69,287.31 227.86,286.93 218.59,289.53 "
-       id="polygon9736" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="198.32,220.96 198.36,220.48 188.17,217.39 "
-       id="polygon9738" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="216,343.19 216.29,343.14 207.57,349.84 "
-       id="polygon9740" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="197.69,222.26 197.97,221.9 187.78,218.81 "
-       id="polygon9742" />
-    <line
-       x1="105.66"
-       y1="292.64999"
-       x2="106.71"
-       y2="292.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9744" />
-    <line
-       x1="79.800003"
-       y1="295.56"
-       x2="80.989998"
-       y2="294.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9746" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="227.72,285.49 227.48,285.07 218.2,287.67 "
-       id="polygon9748" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="227.86,286.93 227.93,286.47 218.65,289.06 "
-       id="polygon9750" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="198.18,221.45 198.32,220.96 188.13,217.88 "
-       id="polygon9752" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="197.97,221.9 198.18,221.45 188,218.36 "
-       id="polygon9754" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="227.88,285.97 227.72,285.49 218.45,288.09 "
-       id="polygon9756" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="227.93,286.47 227.88,285.97 218.61,288.57 "
-       id="polygon9758" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="449.93,295.91 449.68,295.66 439.8,292.91 "
-       id="polygon9760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="449.68,295.66 449.51,295.29 439.63,292.54 "
-       id="polygon9762" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="438.39,287.04 438.05,287.23 447.58,289.88 "
-       id="polygon9764" />
-    <line
-       x1="78.699997"
-       y1="296.28"
-       x2="79.800003"
-       y2="295.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9766" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="215.14,340.5 214.79,340.42 206.06,347.12 "
-       id="polygon9768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="438.05,287.23 437.75,287.57 447.28,290.21 "
-       id="polygon9770" />
-    <line
-       x1="85.839996"
-       y1="356.63"
-       x2="85.940002"
-       y2="356.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9772" />
-    <line
-       x1="128.64"
-       y1="231.97"
-       x2="129.55"
-       y2="230"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9774" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="216.59,342.66 216.57,342.28 207.84,348.98 "
-       id="polygon9776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.75,287.57 437.51,288 447.04,290.64 "
-       id="polygon9778" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="215.52,340.71 215.14,340.5 206.41,347.2 "
-       id="polygon9780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.36,288.48 437.34,288.67 440.98,289.68 "
-       id="polygon9782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="437.51,288 437.36,288.48 446.89,291.13 "
-       id="polygon9784" />
-    <line
-       x1="108.13"
-       y1="362.88"
-       x2="108.18"
-       y2="361.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9786" />
-    <line
-       x1="108.02"
-       y1="363.79999"
-       x2="108.13"
-       y2="362.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9788" />
-    <line
-       x1="108.18"
-       y1="361.95001"
-       x2="108.18"
-       y2="361.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9790" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="216.57,342.28 216.43,341.86 207.71,348.55 "
-       id="polygon9792" />
-    <line
-       x1="107.86"
-       y1="364.72"
-       x2="108.02"
-       y2="363.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9794" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="215.88,341.03 215.52,340.71 206.79,347.41 "
-       id="polygon9796" />
-    <line
-       x1="108.18"
-       y1="361.03"
-       x2="108.12"
-       y2="360.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9798" />
-    <line
-       x1="107.65"
-       y1="365.63"
-       x2="107.86"
-       y2="364.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9800" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="216.43,341.86 216.2,341.43 207.47,348.12 "
-       id="polygon9802" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="216.2,341.43 215.88,341.03 207.16,347.73 "
-       id="polygon9804" />
-    <line
-       x1="108.12"
-       y1="360.12"
-       x2="107.99"
-       y2="359.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9806" />
-    <line
-       x1="107.38"
-       y1="366.51999"
-       x2="107.65"
-       y2="365.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9808" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="436.54,291.52 436.79,291.77 446.31,294.42 "
-       id="polygon9810" />
-    <line
-       x1="189.66"
-       y1="131.35001"
-       x2="189.64999"
-       y2="130.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9812" />
-    <line
-       x1="107.67"
-       y1="293.31"
-       x2="108.54"
-       y2="293.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9814" />
-    <line
-       x1="106.71"
-       y1="368.25"
-       x2="107.07"
-       y2="367.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.37,291.15 436.54,291.52 446.05,294.17 "
-       id="polygon9818" />
-    <line
-       x1="98.870003"
-       y1="330.48001"
-       x2="99.120003"
-       y2="330.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9820" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="187.2,219.41 186.88,219.51 197.07,222.6 "
-       id="polygon9822" />
-    <line
-       x1="107.57"
-       y1="357.5"
-       x2="107.28"
-       y2="356.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9824" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="437.04,288.96 436.73,289.29 446.25,291.93 "
-       id="polygon9826" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="187.96,216.63 188.12,216.96 198.3,220.05 "
-       id="polygon9828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.3,290.69 436.37,291.15 445.88,293.8 "
-       id="polygon9830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.73,289.29 436.49,289.71 446.01,292.36 "
-       id="polygon9832" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="187.5,219.17 187.2,219.41 197.38,222.5 "
-       id="polygon9834" />
-    <line
-       x1="107.28"
-       y1="356.67001"
-       x2="106.92"
-       y2="355.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.34,290.2 436.3,290.69 445.82,293.34 "
-       id="polygon9838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="436.49,289.71 436.34,290.2 445.86,292.85 "
-       id="polygon9840" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="188.12,216.96 188.17,217.39 198.36,220.48 "
-       id="polygon9842" />
-    <line
-       x1="209.49001"
-       y1="298.54999"
-       x2="211.98"
-       y2="300.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9844" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="443.16,298.01 442.82,298.06 452.13,300.66 "
-       id="polygon9846" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="187.78,218.81 187.5,219.17 197.69,222.26 "
-       id="polygon9848" />
-    <line
-       x1="189.27"
-       y1="230.36"
-       x2="187.21001"
-       y2="231.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9850" />
-    <line
-       x1="105.88"
-       y1="369.85001"
-       x2="106.32"
-       y2="369.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9852" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="188.17,217.39 188.13,217.88 198.32,220.96 "
-       id="polygon9854" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="218.42,289.91 218.16,290.17 227.44,287.57 "
-       id="polygon9856" />
-    <line
-       x1="76.709999"
-       y1="297.87"
-       x2="77.660004"
-       y2="297.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9858" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="188,218.36 187.78,218.81 197.97,221.9 "
-       id="polygon9860" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="188.13,217.88 188,218.36 198.18,221.45 "
-       id="polygon9862" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="441.97,300.82 442.23,301.07 451.54,303.68 "
-       id="polygon9864" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="447.93,289.68 448.27,289.64 438.74,286.99 "
-       id="polygon9866" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="217.54,287.17 217.89,287.35 227.16,284.76 "
-       id="polygon9868" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="442.82,298.06 442.47,298.26 451.79,300.87 "
-       id="polygon9870" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="218.59,289.53 218.42,289.91 227.69,287.31 "
-       id="polygon9872" />
-    <line
-       x1="108.54"
-       y1="293.67001"
-       x2="109.32"
-       y2="294.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9874" />
-    <line
-       x1="105.41"
-       y1="370.60001"
-       x2="105.88"
-       y2="369.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9876" />
-    <line
-       x1="106.51"
-       y1="355.13"
-       x2="106.05"
-       y2="354.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9878" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="217.89,287.35 218.2,287.67 227.48,285.07 "
-       id="polygon9880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.8,300.45 441.97,300.82 451.29,303.43 "
-       id="polygon9882" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="218.65,289.06 218.59,289.53 227.86,286.93 "
-       id="polygon9884" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="447.58,289.88 447.93,289.68 438.39,287.04 "
-       id="polygon9886" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="442.47,298.26 442.17,298.59 451.48,301.2 "
-       id="polygon9888" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="218.2,287.67 218.45,288.09 227.72,285.49 "
-       id="polygon9890" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="218.61,288.57 218.65,289.06 227.93,286.47 "
-       id="polygon9892" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="218.45,288.09 218.61,288.57 227.88,285.97 "
-       id="polygon9894" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="207.87,349.36 207.77,349.66 216.5,342.96 "
-       id="polygon9896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.74,300 441.8,300.45 451.12,303.06 "
-       id="polygon9898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="442.17,298.59 441.93,299.02 451.24,301.63 "
-       id="polygon9900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.78,299.51 441.74,300 451.05,302.61 "
-       id="polygon9902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="447.28,290.21 447.58,289.88 438.05,287.23 "
-       id="polygon9904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="441.93,299.02 441.78,299.51 451.09,302.11 "
-       id="polygon9906" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="207.84,348.98 207.87,349.36 216.59,342.66 "
-       id="polygon9908" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="206.06,347.12 206.41,347.2 215.14,340.5 "
-       id="polygon9910" />
-    <line
-       x1="129.55"
-       y1="230"
-       x2="130.71001"
-       y2="228.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9912" />
-    <line
-       x1="75.860001"
-       y1="298.73001"
-       x2="76.709999"
-       y2="297.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="447.04,290.64 447.28,290.21 437.75,287.57 "
-       id="polygon9916" />
-    <line
-       x1="105.53"
-       y1="353.75"
-       x2="104.96"
-       y2="353.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.89,291.13 447.04,290.64 437.51,288 "
-       id="polygon9920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.85,291.63 446.89,291.13 437.36,288.48 "
-       id="polygon9922" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="207.71,348.55 207.84,348.98 216.57,342.28 "
-       id="polygon9924" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="206.41,347.2 206.79,347.41 215.52,340.71 "
-       id="polygon9926" />
-    <line
-       x1="104.38"
-       y1="371.97"
-       x2="104.91"
-       y2="371.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9928" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="207.47,348.12 207.71,348.55 216.43,341.86 "
-       id="polygon9930" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="206.79,347.41 207.16,347.73 215.88,341.03 "
-       id="polygon9932" />
-    <line
-       x1="109.32"
-       y1="294.04999"
-       x2="110"
-       y2="294.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9934" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="207.16,347.73 207.47,348.12 216.2,341.43 "
-       id="polygon9936" />
-    <line
-       x1="85.57"
-       y1="355.89001"
-       x2="85.540001"
-       y2="356.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9938" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="446.31,294.42 446.05,294.17 436.54,291.52 "
-       id="polygon9940" />
-    <line
-       x1="103.82"
-       y1="372.57999"
-       x2="104.38"
-       y2="371.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9942" />
-    <line
-       x1="104.35"
-       y1="352.56"
-       x2="103.69"
-       y2="352.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9944" />
-    <line
-       x1="99.660004"
-       y1="330.29999"
-       x2="99.760002"
-       y2="330.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9946" />
-    <line
-       x1="75.089996"
-       y1="299.64001"
-       x2="75.860001"
-       y2="298.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9948" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="446.25,291.93 446.55,291.61 437.04,288.96 "
-       id="polygon9950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.05,294.17 445.88,293.8 436.37,291.15 "
-       id="polygon9952" />
-    <line
-       x1="211.98"
-       y1="300.07001"
-       x2="212.58"
-       y2="301.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.01,292.36 446.25,291.93 436.73,289.29 "
-       id="polygon9956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.88,293.8 445.82,293.34 436.3,290.69 "
-       id="polygon9958" />
-    <line
-       x1="103.69"
-       y1="352.04999"
-       x2="102.99"
-       y2="351.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.86,292.85 446.01,292.36 436.49,289.71 "
-       id="polygon9962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.82,293.34 445.86,292.85 436.34,290.2 "
-       id="polygon9964" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="451.79,300.87 452.13,300.66 442.82,298.06 "
-       id="polygon9966" />
-    <line
-       x1="189.67999"
-       y1="132.53999"
-       x2="189.67"
-       y2="131.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9968" />
-    <line
-       x1="102.99"
-       y1="351.59"
-       x2="102.25"
-       y2="351.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9970" />
-    <line
-       x1="102.67"
-       y1="373.64001"
-       x2="103.25"
-       y2="373.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9972" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="449.68,295.66 449.93,295.91 459.84,298.67 "
-       id="polygon9974" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="451.48,301.2 451.79,300.87 442.47,298.26 "
-       id="polygon9976" />
-    <line
-       x1="74.43"
-       y1="300.60001"
-       x2="75.089996"
-       y2="299.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.29,303.43 451.12,303.06 441.8,300.45 "
-       id="polygon9980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.24,301.63 451.48,301.2 442.17,298.59 "
-       id="polygon9982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="449.51,295.29 449.68,295.66 459.58,298.42 "
-       id="polygon9984" />
-    <line
-       x1="191.44"
-       y1="230"
-       x2="189.27"
-       y2="230.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.12,303.06 451.05,302.61 441.74,300 "
-       id="polygon9988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.09,302.11 451.24,301.63 441.93,299.02 "
-       id="polygon9990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.05,302.61 451.09,302.11 441.78,299.51 "
-       id="polygon9992" />
-    <line
-       x1="130.71001"
-       y1="228.16"
-       x2="132.09"
-       y2="226.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9994" />
-    <line
-       x1="101.48"
-       y1="350.85999"
-       x2="100.68"
-       y2="350.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9996" />
-    <line
-       x1="212.58"
-       y1="301.13"
-       x2="213.17999"
-       y2="302.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9998" />
-    <line
-       x1="110.58"
-       y1="294.84"
-       x2="111.06"
-       y2="295.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10000" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="186.37,219.25 186.6,219.45 176.38,216.36 "
-       id="polygon10002" />
-    <line
-       x1="73.860001"
-       y1="301.59"
-       x2="74.43"
-       y2="300.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10004" />
-    <line
-       x1="100.68"
-       y1="350.59"
-       x2="99.839996"
-       y2="350.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10006" />
-    <line
-       x1="86.300003"
-       y1="354.51001"
-       x2="86.139999"
-       y2="354.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10008" />
-    <line
-       x1="101.48"
-       y1="374.48001"
-       x2="102.08"
-       y2="374.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10010" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="187.96,216.63 187.73,216.43 177.52,213.32 "
-       id="polygon10012" />
-    <line
-       x1="189.67999"
-       y1="133.28"
-       x2="189.67999"
-       y2="132.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10014" />
-    <line
-       x1="99.839996"
-       y1="350.38"
-       x2="98.989998"
-       y2="350.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10016" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="188.12,216.96 187.96,216.63 177.75,213.53 "
-       id="polygon10018" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="188.17,217.39 188.12,216.96 177.9,213.86 "
-       id="polygon10020" />
-    <line
-       x1="98.989998"
-       y1="350.23001"
-       x2="98.120003"
-       y2="350.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10022" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="187.2,219.41 187.5,219.17 177.29,216.07 "
-       id="polygon10024" />
-    <line
-       x1="73.400002"
-       y1="302.60999"
-       x2="73.860001"
-       y2="301.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10026" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="188.13,217.88 188.17,217.39 177.96,214.29 "
-       id="polygon10028" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="187.5,219.17 187.78,218.81 177.56,215.71 "
-       id="polygon10030" />
-    <line
-       x1="87.169998"
-       y1="353.57999"
-       x2="86.93"
-       y2="353.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10032" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="188,218.36 188.13,217.88 177.92,214.77 "
-       id="polygon10034" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="451.54,303.68 451.29,303.43 451.46,303.18 "
-       id="polygon10036" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="187.78,218.81 188,218.36 177.78,215.26 "
-       id="polygon10038" />
-    <line
-       x1="98.120003"
-       y1="350.14999"
-       x2="97.230003"
-       y2="350.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10040" />
-    <line
-       x1="213.17999"
-       y1="302.29001"
-       x2="213.77"
-       y2="303.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10042" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="448.27,289.64 447.93,289.68 457.48,292.34 "
-       id="polygon10044" />
-    <line
-       x1="100.29"
-       y1="375.07001"
-       x2="100.88"
-       y2="374.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10046" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="217.49,290.26 217.84,290.3 208.54,292.9 "
-       id="polygon10048" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="459.84,298.67 459.58,298.42 449.68,295.66 "
-       id="polygon10050" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="196.72,354.36 196.81,354.07 205.57,347.35 "
-       id="polygon10052" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="206.06,347.12 205.77,347.17 197.02,353.88 "
-       id="polygon10054" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="447.93,289.68 447.58,289.88 457.14,292.54 "
-       id="polygon10056" />
-    <line
-       x1="191.91"
-       y1="230.17999"
-       x2="191.44"
-       y2="230"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10058" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="207.77,349.66 207.87,349.36 199.11,356.08 "
-       id="polygon10060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="459.58,298.42 459.41,298.05 449.51,295.29 "
-       id="polygon10062" />
-    <line
-       x1="96.339996"
-       y1="350.17999"
-       x2="95.440002"
-       y2="350.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10064" />
-    <line
-       x1="88.339996"
-       y1="352.67001"
-       x2="88.019997"
-       y2="352.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="447.58,289.88 447.28,290.21 456.84,292.87 "
-       id="polygon10068" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="206.41,347.2 206.06,347.12 197.31,353.83 "
-       id="polygon10070" />
-    <line
-       x1="73.050003"
-       y1="303.66"
-       x2="73.400002"
-       y2="302.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10072" />
-    <line
-       x1="132.09"
-       y1="226.49001"
-       x2="133.71001"
-       y2="224.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10074" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="207.3,290.13 207.56,289.86 216.87,287.26 "
-       id="polygon10076" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="217.89,287.35 217.54,287.17 208.23,289.77 "
-       id="polygon10078" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="218.16,290.17 218.42,289.91 209.11,292.52 "
-       id="polygon10080" />
-    <line
-       x1="99.699997"
-       y1="375.28"
-       x2="100.29"
-       y2="375.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="447.28,290.21 447.04,290.64 456.6,293.3 "
-       id="polygon10084" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="207.87,349.36 207.84,348.98 199.09,355.7 "
-       id="polygon10086" />
-    <line
-       x1="95.440002"
-       y1="350.29001"
-       x2="94.540001"
-       y2="350.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10088" />
-    <line
-       x1="111.43"
-       y1="295.64001"
-       x2="111.68"
-       y2="296.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.89,291.13 446.85,291.63 456.41,294.28 "
-       id="polygon10092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="447.04,290.64 446.89,291.13 456.45,293.79 "
-       id="polygon10094" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="206.79,347.41 206.41,347.2 197.66,353.91 "
-       id="polygon10096" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="218.2,287.67 217.89,287.35 208.58,289.95 "
-       id="polygon10098" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="218.42,289.91 218.59,289.53 209.28,292.13 "
-       id="polygon10100" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="207.84,348.98 207.71,348.55 198.96,355.27 "
-       id="polygon10102" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="207.16,347.73 206.79,347.41 198.04,354.13 "
-       id="polygon10104" />
-    <line
-       x1="89.790001"
-       y1="351.87"
-       x2="89.400002"
-       y2="352.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10106" />
-    <line
-       x1="94.540001"
-       y1="350.45999"
-       x2="93.650002"
-       y2="350.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10108" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="218.45,288.09 218.2,287.67 208.89,290.27 "
-       id="polygon10110" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="207.71,348.55 207.47,348.12 198.72,354.84 "
-       id="polygon10112" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="218.59,289.53 218.65,289.06 209.34,291.67 "
-       id="polygon10114" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="207.47,348.12 207.16,347.73 198.4,354.45 "
-       id="polygon10116" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="218.61,288.57 218.45,288.09 209.14,290.69 "
-       id="polygon10118" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="218.65,289.06 218.61,288.57 209.3,291.17 "
-       id="polygon10120" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="453.05,300.97 452.79,300.72 462.14,303.33 "
-       id="polygon10122" />
-    <line
-       x1="90.589996"
-       y1="351.54001"
-       x2="90.18"
-       y2="351.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10124" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="446.05,294.17 446.31,294.42 455.85,297.08 "
-       id="polygon10126" />
-    <line
-       x1="213.77"
-       y1="303.53"
-       x2="214.35001"
-       y2="304.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10128" />
-    <line
-       x1="93.650002"
-       y1="350.69"
-       x2="92.769997"
-       y2="350.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10130" />
-    <line
-       x1="91.43"
-       y1="351.26001"
-       x2="91"
-       y2="351.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10132" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="446.9,291.4 446.55,291.61 456.1,294.26 "
-       id="polygon10134" />
-    <line
-       x1="99.959999"
-       y1="262.35001"
-       x2="101.44"
-       y2="262.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10136" />
-    <line
-       x1="98.470001"
-       y1="262.48001"
-       x2="99.959999"
-       y2="262.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10138" />
-    <line
-       x1="92.769997"
-       y1="350.98001"
-       x2="92.32"
-       y2="351.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10140" />
-    <line
-       x1="101.44"
-       y1="262.26999"
-       x2="102.91"
-       y2="262.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10142" />
-    <line
-       x1="96.980003"
-       y1="262.67001"
-       x2="98.470001"
-       y2="262.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.88,293.8 446.05,294.17 455.6,296.83 "
-       id="polygon10146" />
-    <line
-       x1="72.809998"
-       y1="304.73999"
-       x2="73.050003"
-       y2="303.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10148" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="176.98,216.31 176.66,216.41 186.88,219.51 "
-       id="polygon10150" />
-    <line
-       x1="102.91"
-       y1="262.25"
-       x2="104.35"
-       y2="262.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10152" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="446.55,291.61 446.25,291.93 455.79,294.59 "
-       id="polygon10154" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="177.75,213.53 177.9,213.86 188.12,216.96 "
-       id="polygon10156" />
-    <line
-       x1="95.5"
-       y1="262.92001"
-       x2="96.980003"
-       y2="262.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.82,293.34 445.88,293.8 455.43,296.46 "
-       id="polygon10160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.25,291.93 446.01,292.36 455.55,295.02 "
-       id="polygon10162" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="177.29,216.07 176.98,216.31 187.2,219.41 "
-       id="polygon10164" />
-    <line
-       x1="104.35"
-       y1="262.28"
-       x2="105.76"
-       y2="262.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="445.86,292.85 445.82,293.34 455.36,296 "
-       id="polygon10168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="446.01,292.36 445.86,292.85 455.41,295.51 "
-       id="polygon10170" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="177.9,213.86 177.96,214.29 188.17,217.39 "
-       id="polygon10172" />
-    <line
-       x1="94.040001"
-       y1="263.23001"
-       x2="95.5"
-       y2="262.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10174" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="177.56,215.71 177.29,216.07 187.5,219.17 "
-       id="polygon10176" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="451.29,303.43 451.54,303.68 460.88,306.3 "
-       id="polygon10178" />
-    <line
-       x1="192.39999"
-       y1="230.45"
-       x2="191.91"
-       y2="230.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10180" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="177.96,214.29 177.92,214.77 188.13,217.88 "
-       id="polygon10182" />
-    <line
-       x1="98.57"
-       y1="375.48999"
-       x2="99.129997"
-       y2="375.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10184" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="177.78,215.26 177.56,215.71 187.78,218.81 "
-       id="polygon10186" />
-    <line
-       x1="189.66"
-       y1="135.05"
-       x2="189.67999"
-       y2="134.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10188" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="177.92,214.77 177.78,215.26 188,218.36 "
-       id="polygon10190" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="452.13,300.66 451.79,300.87 461.13,303.48 "
-       id="polygon10192" />
-    <line
-       x1="105.76"
-       y1="262.35999"
-       x2="107.13"
-       y2="262.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10194" />
-    <line
-       x1="92.599998"
-       y1="263.59"
-       x2="94.040001"
-       y2="263.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10196" />
-    <line
-       x1="99.220001"
-       y1="329.54999"
-       x2="99"
-       y2="329.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.12,303.06 451.29,303.43 460.63,306.05 "
-       id="polygon10200" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="451.79,300.87 451.48,301.2 460.82,303.81 "
-       id="polygon10202" />
-    <line
-       x1="72.68"
-       y1="305.84"
-       x2="72.809998"
-       y2="304.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.05,302.61 451.12,303.06 460.46,305.68 "
-       id="polygon10206" />
-    <line
-       x1="107.13"
-       y1="262.48999"
-       x2="108.44"
-       y2="262.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10208" />
-    <line
-       x1="214.35001"
-       y1="304.87"
-       x2="214.91"
-       y2="306.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.48,301.2 451.24,301.63 460.59,304.24 "
-       id="polygon10212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.09,302.11 451.05,302.61 460.39,305.22 "
-       id="polygon10214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="451.24,301.63 451.09,302.11 460.44,304.73 "
-       id="polygon10216" />
-    <line
-       x1="91.199997"
-       y1="264.01999"
-       x2="92.599998"
-       y2="263.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.84,292.87 457.14,292.54 447.58,289.88 "
-       id="polygon10220" />
-    <line
-       x1="133.71001"
-       y1="224.98"
-       x2="135.53999"
-       y2="223.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10222" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="199.09,355.7 199.11,356.08 207.87,349.36 "
-       id="polygon10224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.6,293.3 456.84,292.87 447.28,290.21 "
-       id="polygon10226" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="197.31,353.83 197.66,353.91 206.41,347.2 "
-       id="polygon10228" />
-    <line
-       x1="108.44"
-       y1="262.66"
-       x2="109.7"
-       y2="262.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.45,293.79 456.6,293.3 447.04,290.64 "
-       id="polygon10232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.41,294.28 456.45,293.79 446.89,291.13 "
-       id="polygon10234" />
-    <line
-       x1="89.839996"
-       y1="264.51001"
-       x2="91.199997"
-       y2="264.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10236" />
-    <line
-       x1="111.83"
-       y1="296.42001"
-       x2="111.87"
-       y2="296.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10238" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="198.96,355.27 199.09,355.7 207.84,348.98 "
-       id="polygon10240" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="197.66,353.91 198.04,354.13 206.79,347.41 "
-       id="polygon10242" />
-    <line
-       x1="72.660004"
-       y1="306.95001"
-       x2="72.68"
-       y2="305.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10244" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="209.11,292.52 208.86,292.78 218.16,290.17 "
-       id="polygon10246" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="198.72,354.84 198.96,355.27 207.71,348.55 "
-       id="polygon10248" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="198.04,354.13 198.4,354.45 207.16,347.73 "
-       id="polygon10250" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="198.4,354.45 198.72,354.84 207.47,348.12 "
-       id="polygon10252" />
-    <line
-       x1="97.529999"
-       y1="375.45001"
-       x2="98.040001"
-       y2="375.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10254" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="208.23,289.77 208.58,289.95 217.89,287.35 "
-       id="polygon10256" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="209.28,292.13 209.11,292.52 218.42,289.91 "
-       id="polygon10258" />
-    <line
-       x1="189.62"
-       y1="136.07001"
-       x2="189.66"
-       y2="135.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10260" />
-    <line
-       x1="109.7"
-       y1="262.87"
-       x2="110.9"
-       y2="263.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10262" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.58,289.95 208.89,290.27 218.2,287.67 "
-       id="polygon10264" />
-    <line
-       x1="88.529999"
-       y1="265.04999"
-       x2="89.839996"
-       y2="264.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10266" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="209.34,291.67 209.28,292.13 218.59,289.53 "
-       id="polygon10268" />
-    <line
-       x1="214.91"
-       y1="306.29999"
-       x2="215.46001"
-       y2="307.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10270" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="208.89,290.27 209.14,290.69 218.45,288.09 "
-       id="polygon10272" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="455.79,294.59 456.1,294.26 446.55,291.61 "
-       id="polygon10274" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="209.3,291.17 209.34,291.67 218.65,289.06 "
-       id="polygon10276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.6,296.83 455.43,296.46 445.88,293.8 "
-       id="polygon10278" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="209.14,290.69 209.3,291.17 218.61,288.57 "
-       id="polygon10280" />
-    <line
-       x1="98.449997"
-       y1="329.07001"
-       x2="98.129997"
-       y2="328.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.55,295.02 455.79,294.59 446.25,291.93 "
-       id="polygon10284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.43,296.46 455.36,296 445.82,293.34 "
-       id="polygon10286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.41,295.51 455.55,295.02 446.01,292.36 "
-       id="polygon10288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.36,296 455.41,295.51 445.86,292.85 "
-       id="polygon10290" />
-    <line
-       x1="72.75"
-       y1="308.07999"
-       x2="72.660004"
-       y2="306.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10292" />
-    <line
-       x1="110.9"
-       y1="263.12"
-       x2="112.02"
-       y2="263.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10294" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="461.13,303.48 461.48,303.28 452.13,300.66 "
-       id="polygon10296" />
-    <line
-       x1="87.279999"
-       y1="265.66"
-       x2="88.529999"
-       y2="265.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10298" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="460.88,306.3 460.63,306.05 451.29,303.43 "
-       id="polygon10300" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="460.82,303.81 461.13,303.48 451.79,300.87 "
-       id="polygon10302" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="457.83,292.29 457.48,292.34 457.49,292.65 "
-       id="polygon10304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.63,306.05 460.46,305.68 451.12,303.06 "
-       id="polygon10306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.59,304.24 460.82,303.81 451.48,301.2 "
-       id="polygon10308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.46,305.68 460.39,305.22 451.05,302.61 "
-       id="polygon10310" />
-    <line
-       x1="96.610001"
-       y1="375.14999"
-       x2="97.050003"
-       y2="375.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.44,304.73 460.59,304.24 451.24,301.63 "
-       id="polygon10314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.39,305.22 460.44,304.73 451.09,302.11 "
-       id="polygon10316" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="459.58,298.42 459.84,298.67 469.77,301.44 "
-       id="polygon10318" />
-    <line
-       x1="112.02"
-       y1="263.39999"
-       x2="113.07"
-       y2="263.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10320" />
-    <line
-       x1="86.089996"
-       y1="266.31"
-       x2="87.279999"
-       y2="265.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10322" />
-    <line
-       x1="215.46001"
-       y1="307.79999"
-       x2="215.97"
-       y2="309.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10324" />
-    <line
-       x1="189.56"
-       y1="137.17999"
-       x2="189.62"
-       y2="136.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10326" />
-    <line
-       x1="72.959999"
-       y1="309.20999"
-       x2="72.75"
-       y2="308.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10328" />
-    <line
-       x1="135.53999"
-       y1="223.64999"
-       x2="137.57001"
-       y2="222.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="459.41,298.05 459.58,298.42 469.52,301.19 "
-       id="polygon10332" />
-    <line
-       x1="193.45"
-       y1="231.34"
-       x2="192.91"
-       y2="230.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10334" />
-    <line
-       x1="97.400002"
-       y1="328.42999"
-       x2="97"
-       y2="328.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10336" />
-    <line
-       x1="84.980003"
-       y1="267.03"
-       x2="86.089996"
-       y2="266.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10338" />
-    <line
-       x1="113.07"
-       y1="263.70999"
-       x2="114.04"
-       y2="264.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10340" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="177.75,213.53 177.52,213.32 167.27,210.21 "
-       id="polygon10342" />
-    <line
-       x1="73.269997"
-       y1="310.35001"
-       x2="72.959999"
-       y2="309.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10344" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="177.9,213.86 177.75,213.53 167.5,210.42 "
-       id="polygon10346" />
-    <line
-       x1="215.97"
-       y1="309.39001"
-       x2="216.45"
-       y2="311.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10348" />
-    <line
-       x1="95.849998"
-       y1="374.62"
-       x2="96.209999"
-       y2="374.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10350" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="458.4,292.64 458.15,292.39 467.73,295.06 "
-       id="polygon10352" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="461.76,303.54 461.48,303.58 461.48,303.28 "
-       id="polygon10354" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="177.96,214.29 177.9,213.86 167.65,210.75 "
-       id="polygon10356" />
-    <line
-       x1="120.13"
-       y1="371.54999"
-       x2="120.18"
-       y2="370.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10358" />
-    <line
-       x1="120.02"
-       y1="372.48001"
-       x2="120.13"
-       y2="371.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10360" />
-    <line
-       x1="189.48"
-       y1="138.37"
-       x2="189.56"
-       y2="137.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10362" />
-    <line
-       x1="120.18"
-       y1="370.62"
-       x2="120.18"
-       y2="369.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10364" />
-    <line
-       x1="119.86"
-       y1="373.39999"
-       x2="120.02"
-       y2="372.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10366" />
-    <line
-       x1="83.949997"
-       y1="267.79001"
-       x2="84.980003"
-       y2="267.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10368" />
-    <line
-       x1="120.18"
-       y1="369.70001"
-       x2="120.11"
-       y2="368.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10370" />
-    <line
-       x1="119.64"
-       y1="374.31"
-       x2="119.86"
-       y2="373.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10372" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="177.92,214.77 177.96,214.29 167.71,211.18 "
-       id="polygon10374" />
-    <line
-       x1="120.11"
-       y1="368.79001"
-       x2="119.99"
-       y2="367.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10376" />
-    <line
-       x1="114.04"
-       y1="264.04999"
-       x2="114.91"
-       y2="264.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10378" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="177.29,216.07 177.56,215.71 167.32,212.6 "
-       id="polygon10380" />
-    <line
-       x1="119.38"
-       y1="375.20999"
-       x2="119.64"
-       y2="374.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10382" />
-    <line
-       x1="73.68"
-       y1="311.48001"
-       x2="73.269997"
-       y2="310.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10384" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="177.78,215.26 177.92,214.77 167.67,211.66 "
-       id="polygon10386" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="177.56,215.71 177.78,215.26 167.53,212.15 "
-       id="polygon10388" />
-    <line
-       x1="96.150002"
-       y1="327.62"
-       x2="95.690002"
-       y2="327.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10390" />
-    <line
-       x1="118.71"
-       y1="376.92999"
-       x2="119.07"
-       y2="376.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10392" />
-    <line
-       x1="119.57"
-       y1="366.14999"
-       x2="119.27"
-       y2="365.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10394" />
-    <line
-       x1="216.45"
-       y1="311.04999"
-       x2="216.89"
-       y2="312.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10396" />
-    <line
-       x1="83"
-       y1="268.60999"
-       x2="83.949997"
-       y2="267.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10398" />
-    <line
-       x1="118.31"
-       y1="377.76001"
-       x2="118.71"
-       y2="376.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10400" />
-    <line
-       x1="137.57001"
-       y1="222.52"
-       x2="139.78999"
-       y2="221.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10402" />
-    <line
-       x1="119.27"
-       y1="365.32001"
-       x2="118.92"
-       y2="364.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10404" />
-    <line
-       x1="74.199997"
-       y1="312.60999"
-       x2="73.68"
-       y2="311.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10406" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="199.02,356.38 199.11,356.08 190.34,362.82 "
-       id="polygon10408" />
-    <line
-       x1="95.690002"
-       y1="327.29999"
-       x2="94.449997"
-       y2="327.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="457.14,292.54 456.84,292.87 466.43,295.54 "
-       id="polygon10412" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="197.66,353.91 197.31,353.83 188.53,360.57 "
-       id="polygon10414" />
-    <line
-       x1="117.88"
-       y1="378.54999"
-       x2="118.31"
-       y2="377.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10416" />
-    <line
-       x1="118.92"
-       y1="364.54001"
-       x2="118.51"
-       y2="363.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.84,292.87 456.6,293.3 466.18,295.97 "
-       id="polygon10420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.52,301.19 469.35,300.82 459.41,298.05 "
-       id="polygon10422" />
-    <line
-       x1="189.36"
-       y1="139.63"
-       x2="189.48"
-       y2="138.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.45,293.79 456.41,294.28 465.99,296.95 "
-       id="polygon10426" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="199.11,356.08 199.09,355.7 190.31,362.44 "
-       id="polygon10428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="456.6,293.3 456.45,293.79 466.04,296.45 "
-       id="polygon10430" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="198.04,354.13 197.66,353.91 188.88,360.65 "
-       id="polygon10432" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="199.09,355.7 198.96,355.27 190.18,362.01 "
-       id="polygon10434" />
-    <line
-       x1="117.4"
-       y1="379.29999"
-       x2="117.88"
-       y2="378.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10436" />
-    <line
-       x1="118.51"
-       y1="363.78"
-       x2="118.04"
-       y2="363.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10438" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="198.4,354.45 198.04,354.13 189.25,360.86 "
-       id="polygon10440" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="207.56,289.86 207.3,290.13 197.96,292.73 "
-       id="polygon10442" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="198.96,355.27 198.72,354.84 189.94,361.58 "
-       id="polygon10444" />
-    <line
-       x1="74.82"
-       y1="313.72"
-       x2="74.199997"
-       y2="312.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10446" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="198.72,354.84 198.4,354.45 189.62,361.18 "
-       id="polygon10448" />
-    <line
-       x1="111.32"
-       y1="297.75"
-       x2="110.92"
-       y2="298"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10450" />
-    <line
-       x1="82.139999"
-       y1="269.47"
-       x2="83"
-       y2="268.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10452" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="466.09,299.8 465.74,299.85 456.17,297.18 "
-       id="polygon10454" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="455.6,296.83 455.85,297.08 465.43,299.75 "
-       id="polygon10456" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="167.27,210.21 167.5,210.42 177.75,213.53 "
-       id="polygon10458" />
-    <line
-       x1="95.040001"
-       y1="373.42001"
-       x2="95.260002"
-       y2="373.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10460" />
-    <line
-       x1="216.89"
-       y1="312.79001"
-       x2="217.28999"
-       y2="314.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.43,296.46 455.6,296.83 465.17,299.5 "
-       id="polygon10464" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="166.73,213.21 166.41,213.3 176.66,216.41 "
-       id="polygon10466" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="167.5,210.42 167.65,210.75 177.9,213.86 "
-       id="polygon10468" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="456.1,294.26 455.79,294.59 465.37,297.25 "
-       id="polygon10470" />
-    <line
-       x1="115.7"
-       y1="264.78"
-       x2="116.38"
-       y2="265.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10472" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="461.82,303.23 461.48,303.28 470.85,305.89 "
-       id="polygon10474" />
-    <line
-       x1="117.53"
-       y1="362.39001"
-       x2="116.96"
-       y2="361.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.36,296 455.43,296.46 465,299.13 "
-       id="polygon10478" />
-    <line
-       x1="194.52"
-       y1="232.66"
-       x2="193.98"
-       y2="231.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10480" />
-    <line
-       x1="75.529999"
-       y1="314.82001"
-       x2="74.82"
-       y2="313.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.79,294.59 455.55,295.02 465.13,297.69 "
-       id="polygon10484" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="167.04,212.96 166.73,213.21 176.98,216.31 "
-       id="polygon10486" />
-    <line
-       x1="116.37"
-       y1="380.67001"
-       x2="116.9"
-       y2="380"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.41,295.51 455.36,296 464.94,298.67 "
-       id="polygon10490" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="167.65,210.75 167.71,211.18 177.96,214.29 "
-       id="polygon10492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="455.55,295.02 455.41,295.51 464.98,298.17 "
-       id="polygon10494" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="460.63,306.05 460.88,306.3 470.25,308.92 "
-       id="polygon10496" />
-    <line
-       x1="93.169998"
-       y1="326.64999"
-       x2="91.860001"
-       y2="326.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10498" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="461.48,303.28 461.13,303.48 470.5,306.1 "
-       id="polygon10500" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="167.32,212.6 167.04,212.96 177.29,216.07 "
-       id="polygon10502" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="167.71,211.18 167.67,211.66 177.92,214.77 "
-       id="polygon10504" />
-    <line
-       x1="189.21001"
-       y1="140.97"
-       x2="189.36"
-       y2="139.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10506" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="167.53,212.15 167.32,212.6 177.56,215.71 "
-       id="polygon10508" />
-    <line
-       x1="81.379997"
-       y1="270.38"
-       x2="82.139999"
-       y2="269.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10510" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="167.67,211.66 167.53,212.15 177.78,215.26 "
-       id="polygon10512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.46,305.68 460.63,306.05 470,308.67 "
-       id="polygon10514" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="208.89,290.27 208.58,289.95 199.24,292.56 "
-       id="polygon10516" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="209.11,292.52 209.28,292.13 199.94,294.75 "
-       id="polygon10518" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="467.07,295 467.42,294.95 457.83,292.29 "
-       id="polygon10520" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="461.13,303.48 460.82,303.81 470.2,306.43 "
-       id="polygon10522" />
-    <line
-       x1="217.28999"
-       y1="314.57999"
-       x2="217.64"
-       y2="316.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10524" />
-    <line
-       x1="76.330002"
-       y1="315.89999"
-       x2="75.529999"
-       y2="314.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10526" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="209.14,290.69 208.89,290.27 199.55,292.88 "
-       id="polygon10528" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="209.28,292.13 209.34,291.67 200,294.29 "
-       id="polygon10530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.39,305.22 460.46,305.68 469.83,308.3 "
-       id="polygon10532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.82,303.81 460.59,304.24 469.96,306.86 "
-       id="polygon10534" />
-    <line
-       x1="116.34"
-       y1="361.20999"
-       x2="115.68"
-       y2="360.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10536" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="209.3,291.17 209.14,290.69 199.8,293.3 "
-       id="polygon10538" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="209.34,291.67 209.3,291.17 199.96,293.79 "
-       id="polygon10540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.44,304.73 460.39,305.22 469.77,307.84 "
-       id="polygon10542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="460.59,304.24 460.44,304.73 469.81,307.35 "
-       id="polygon10544" />
-    <line
-       x1="91.860001"
-       y1="326.23001"
-       x2="90.540001"
-       y2="325.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10546" />
-    <line
-       x1="139.78999"
-       y1="221.59"
-       x2="142.17"
-       y2="220.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10548" />
-    <line
-       x1="94.760002"
-       y1="372.39001"
-       x2="94.879997"
-       y2="372.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10550" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="466.73,295.2 467.07,295 457.48,292.34 "
-       id="polygon10552" />
-    <line
-       x1="116.38"
-       y1="265.17001"
-       x2="116.96"
-       y2="265.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10554" />
-    <line
-       x1="115.25"
-       y1="381.84"
-       x2="115.82"
-       y2="381.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10556" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="190.34,362.82 190.24,363.11 199.02,356.38 "
-       id="polygon10558" />
-    <line
-       x1="115.68"
-       y1="360.70001"
-       x2="114.98"
-       y2="360.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10560" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="188.23,360.62 188.53,360.57 197.31,353.83 "
-       id="polygon10562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.43,295.54 466.73,295.2 457.14,292.54 "
-       id="polygon10564" />
-    <line
-       x1="77.209999"
-       y1="316.95001"
-       x2="76.330002"
-       y2="315.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10566" />
-    <line
-       x1="90.540001"
-       y1="325.75"
-       x2="89.199997"
-       y2="325.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10568" />
-    <line
-       x1="80.709999"
-       y1="271.32999"
-       x2="81.379997"
-       y2="270.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.18,295.97 466.43,295.54 456.84,292.87 "
-       id="polygon10572" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="190.31,362.44 190.34,362.82 199.11,356.08 "
-       id="polygon10574" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="188.53,360.57 188.88,360.65 197.66,353.91 "
-       id="polygon10576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.04,296.45 466.18,295.97 456.6,293.3 "
-       id="polygon10578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465.99,296.95 466.04,296.45 456.45,293.79 "
-       id="polygon10580" />
-    <line
-       x1="217.64"
-       y1="316.42999"
-       x2="217.94"
-       y2="318.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10582" />
-    <line
-       x1="114.98"
-       y1="360.23999"
-       x2="114.25"
-       y2="359.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10584" />
-    <line
-       x1="78.18"
-       y1="317.97"
-       x2="77.209999"
-       y2="316.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10586" />
-    <line
-       x1="114.66"
-       y1="382.35001"
-       x2="115.25"
-       y2="381.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10588" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="190.18,362.01 190.31,362.44 199.09,355.7 "
-       id="polygon10590" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="188.88,360.65 189.25,360.86 198.04,354.13 "
-       id="polygon10592" />
-    <line
-       x1="195.06"
-       y1="233.49001"
-       x2="194.52"
-       y2="232.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10594" />
-    <line
-       x1="189.03"
-       y1="142.38"
-       x2="189.21001"
-       y2="140.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10596" />
-    <line
-       x1="89.199997"
-       y1="325.22"
-       x2="87.860001"
-       y2="324.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10598" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="189.94,361.58 190.18,362.01 198.96,355.27 "
-       id="polygon10600" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="189.25,360.86 189.62,361.18 198.4,354.45 "
-       id="polygon10602" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="189.62,361.18 189.94,361.58 198.72,354.84 "
-       id="polygon10604" />
-    <line
-       x1="79.209999"
-       y1="318.95999"
-       x2="78.18"
-       y2="317.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10606" />
-    <line
-       x1="110.42"
-       y1="298.23001"
-       x2="109.82"
-       y2="298.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10608" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="465.43,299.75 465.17,299.5 455.6,296.83 "
-       id="polygon10610" />
-    <line
-       x1="94.709999"
-       y1="371.20001"
-       x2="94.709999"
-       y2="371.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10612" />
-    <line
-       x1="87.860001"
-       y1="324.62"
-       x2="86.540001"
-       y2="323.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10614" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="465.37,297.25 465.67,296.92 456.1,294.26 "
-       id="polygon10616" />
-    <line
-       x1="80.32"
-       y1="319.91"
-       x2="79.209999"
-       y2="318.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10618" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="167.5,210.42 167.65,210.75 167.46,210.95 "
-       id="polygon10620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465.17,299.5 465,299.13 455.43,296.46 "
-       id="polygon10622" />
-    <line
-       x1="113.47"
-       y1="359.51001"
-       x2="112.66"
-       y2="359.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10624" />
-    <line
-       x1="86.540001"
-       y1="323.95999"
-       x2="85.230003"
-       y2="323.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10626" />
-    <line
-       x1="217.94"
-       y1="318.34"
-       x2="218.17"
-       y2="320.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10628" />
-    <line
-       x1="81.480003"
-       y1="320.82001"
-       x2="80.32"
-       y2="319.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465.13,297.69 465.37,297.25 455.79,294.59 "
-       id="polygon10632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465,299.13 464.94,298.67 455.36,296 "
-       id="polygon10634" />
-    <line
-       x1="85.230003"
-       y1="323.25"
-       x2="83.940002"
-       y2="322.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10636" />
-    <line
-       x1="82.690002"
-       y1="321.67999"
-       x2="81.480003"
-       y2="320.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10638" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="470.5,306.1 470.85,305.89 461.48,303.28 "
-       id="polygon10640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="464.98,298.17 465.13,297.69 455.55,295.02 "
-       id="polygon10642" />
-    <line
-       x1="83.940002"
-       y1="322.48999"
-       x2="82.690002"
-       y2="321.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="464.94,298.67 464.98,298.17 455.41,295.51 "
-       id="polygon10646" />
-    <line
-       x1="94.769997"
-       y1="370.56"
-       x2="94.709999"
-       y2="371.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10648" />
-    <line
-       x1="112.66"
-       y1="359.23001"
-       x2="111.83"
-       y2="359.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10650" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="470.2,306.43 470.5,306.1 461.13,303.48 "
-       id="polygon10652" />
-    <line
-       x1="113.47"
-       y1="383.20001"
-       x2="114.07"
-       y2="382.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="470,308.67 469.83,308.3 460.46,305.68 "
-       id="polygon10656" />
-    <line
-       x1="188.81"
-       y1="143.86"
-       x2="189.03"
-       y2="142.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10658" />
-    <line
-       x1="142.17"
-       y1="220.87"
-       x2="144.71001"
-       y2="220.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.96,306.86 470.2,306.43 460.82,303.81 "
-       id="polygon10662" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="199.77,295.13 199.52,295.4 208.86,292.78 "
-       id="polygon10664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.83,308.3 469.77,307.84 460.39,305.22 "
-       id="polygon10666" />
-    <line
-       x1="111.83"
-       y1="359.01999"
-       x2="110.98"
-       y2="358.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.81,307.35 469.96,306.86 460.59,304.24 "
-       id="polygon10670" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="198.89,292.38 199.24,292.56 208.58,289.95 "
-       id="polygon10672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.77,307.84 469.81,307.35 460.44,304.73 "
-       id="polygon10674" />
-    <line
-       x1="218.17"
-       y1="320.29999"
-       x2="218.35001"
-       y2="322.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10676" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="199.94,294.75 199.77,295.13 209.11,292.52 "
-       id="polygon10678" />
-    <line
-       x1="79.690002"
-       y1="273.32999"
-       x2="80.139999"
-       y2="272.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10680" />
-    <line
-       x1="195.59"
-       y1="234.41"
-       x2="195.06"
-       y2="233.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10682" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="199.24,292.56 199.55,292.88 208.89,290.27 "
-       id="polygon10684" />
-    <line
-       x1="112.87"
-       y1="383.51999"
-       x2="113.47"
-       y2="383.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10686" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="200,294.29 199.94,294.75 209.28,292.13 "
-       id="polygon10688" />
-    <line
-       x1="110.98"
-       y1="358.88"
-       x2="110.11"
-       y2="358.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10690" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="199.55,292.88 199.8,293.3 209.14,290.69 "
-       id="polygon10692" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="199.96,293.79 200,294.29 209.34,291.67 "
-       id="polygon10694" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="466.73,295.2 466.43,295.54 466.56,295.74 "
-       id="polygon10696" />
-    <line
-       x1="95.059998"
-       y1="369.22"
-       x2="94.879997"
-       y2="369.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10698" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="199.8,293.3 199.96,293.79 209.3,291.17 "
-       id="polygon10700" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="469.52,301.19 469.77,301.44 479.74,304.22 "
-       id="polygon10702" />
-    <line
-       x1="110.11"
-       y1="358.79999"
-       x2="109.22"
-       y2="358.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.35,300.82 469.52,301.19 479.49,303.97 "
-       id="polygon10706" />
-    <line
-       x1="218.35001"
-       y1="322.29999"
-       x2="218.45"
-       y2="324.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10708" />
-    <line
-       x1="95.300003"
-       y1="368.51999"
-       x2="95.059998"
-       y2="369.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10710" />
-    <line
-       x1="188.55"
-       y1="145.39"
-       x2="188.81"
-       y2="143.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10712" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="167.5,210.42 167.27,210.21 157,207.09 "
-       id="polygon10714" />
-    <line
-       x1="79.339996"
-       y1="274.38"
-       x2="79.690002"
-       y2="273.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10716" />
-    <line
-       x1="109.13"
-       y1="298.54999"
-       x2="108.34"
-       y2="298.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10718" />
-    <line
-       x1="95.589996"
-       y1="367.82001"
-       x2="95.300003"
-       y2="368.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10720" />
-    <line
-       x1="117.81"
-       y1="266.35001"
-       x2="118.07"
-       y2="266.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10722" />
-    <line
-       x1="108.32"
-       y1="358.82999"
-       x2="107.42"
-       y2="358.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10724" />
-    <line
-       x1="218.45"
-       y1="324.32999"
-       x2="218.49001"
-       y2="326.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10726" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="467.99,295.31 467.73,295.06 477.35,297.73 "
-       id="polygon10728" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="167.71,211.18 167.65,210.75 157.38,207.63 "
-       id="polygon10730" />
-    <line
-       x1="196.11"
-       y1="235.44"
-       x2="195.59"
-       y2="234.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10732" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="166.73,213.21 167.04,212.96 156.76,209.85 "
-       id="polygon10734" />
-    <line
-       x1="144.71001"
-       y1="220.37"
-       x2="147.39"
-       y2="220.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10736" />
-    <line
-       x1="106.32"
-       y1="232.96001"
-       x2="107.8"
-       y2="232.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10738" />
-    <line
-       x1="104.82"
-       y1="233.09"
-       x2="106.32"
-       y2="232.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10740" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="167.67,211.66 167.71,211.18 157.43,208.06 "
-       id="polygon10742" />
-    <line
-       x1="96.349998"
-       y1="366.39001"
-       x2="95.940002"
-       y2="367.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10744" />
-    <line
-       x1="106.52"
-       y1="359.10999"
-       x2="105.63"
-       y2="359.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10746" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="167.04,212.96 167.32,212.6 157.04,209.48 "
-       id="polygon10748" />
-    <line
-       x1="103.33"
-       y1="233.28"
-       x2="104.82"
-       y2="233.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10750" />
-    <line
-       x1="188.24001"
-       y1="146.97"
-       x2="188.55"
-       y2="145.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10752" />
-    <line
-       x1="218.49001"
-       y1="326.39001"
-       x2="218.45"
-       y2="328.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10754" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="167.53,212.15 167.67,211.66 157.39,208.54 "
-       id="polygon10756" />
-    <line
-       x1="79.099998"
-       y1="275.45999"
-       x2="79.339996"
-       y2="274.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10758" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="167.32,212.6 167.53,212.15 157.25,209.03 "
-       id="polygon10760" />
-    <line
-       x1="109.27"
-       y1="232.86"
-       x2="110.72"
-       y2="232.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10762" />
-    <line
-       x1="105.63"
-       y1="359.34"
-       x2="104.74"
-       y2="359.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10764" />
-    <line
-       x1="101.84"
-       y1="233.53"
-       x2="103.33"
-       y2="233.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10766" />
-    <polygon
-       style="opacity:1;fill:#0aff0a"
-       points="198.22,292.47 198.54,292.35 198.6,292.66 "
-       id="polygon10768" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="467.42,294.95 467.07,295 476.69,297.68 "
-       id="polygon10770" />
-    <line
-       x1="111.12"
-       y1="384.13"
-       x2="111.69"
-       y2="384"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10772" />
-    <line
-       x1="110.72"
-       y1="232.89"
-       x2="112.13"
-       y2="232.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10774" />
-    <line
-       x1="104.74"
-       y1="359.63"
-       x2="103.87"
-       y2="359.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10776" />
-    <line
-       x1="108.34"
-       y1="298.64001"
-       x2="107.47"
-       y2="298.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10778" />
-    <line
-       x1="97.32"
-       y1="364.98999"
-       x2="96.809998"
-       y2="365.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10780" />
-    <line
-       x1="100.38"
-       y1="233.83"
-       x2="101.84"
-       y2="233.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10782" />
-    <line
-       x1="218.45"
-       y1="328.48001"
-       x2="218.33"
-       y2="330.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10784" />
-    <line
-       x1="103.87"
-       y1="359.97"
-       x2="103.01"
-       y2="360.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10786" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="467.07,295 466.73,295.2 476.35,297.88 "
-       id="polygon10788" />
-    <line
-       x1="97.889999"
-       y1="364.31"
-       x2="97.32"
-       y2="364.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10790" />
-    <line
-       x1="112.13"
-       y1="232.97"
-       x2="113.5"
-       y2="233.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10792" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="188.53,360.57 188.23,360.62 179.43,367.38 "
-       id="polygon10794" />
-    <line
-       x1="103.01"
-       y1="360.37"
-       x2="102.18"
-       y2="360.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10796" />
-    <line
-       x1="98.5"
-       y1="363.64999"
-       x2="97.889999"
-       y2="364.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10798" />
-    <line
-       x1="98.940002"
-       y1="234.2"
-       x2="100.38"
-       y2="233.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.73,295.2 466.43,295.54 476.04,298.21 "
-       id="polygon10802" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="190.24,363.11 190.34,362.82 181.53,369.58 "
-       id="polygon10804" />
-    <line
-       x1="101.38"
-       y1="361.29999"
-       x2="100.6"
-       y2="361.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10806" />
-    <line
-       x1="184.25"
-       y1="371.34"
-       x2="182.14"
-       y2="371.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10808" />
-    <line
-       x1="182.14"
-       y1="371.67999"
-       x2="180.00999"
-       y2="371.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10810" />
-    <line
-       x1="99.860001"
-       y1="362.41"
-       x2="99.160004"
-       y2="363.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10812" />
-    <line
-       x1="186.34"
-       y1="370.89999"
-       x2="184.25"
-       y2="371.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10814" />
-    <line
-       x1="100.6"
-       y1="361.84"
-       x2="99.860001"
-       y2="362.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10816" />
-    <line
-       x1="188.39"
-       y1="370.35999"
-       x2="186.34"
-       y2="370.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10818" />
-    <line
-       x1="110.56"
-       y1="384.20999"
-       x2="111.12"
-       y2="384.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10820" />
-    <line
-       x1="78.970001"
-       y1="276.54999"
-       x2="79.099998"
-       y2="275.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10822" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="188.88,360.65 188.53,360.57 179.72,367.32 "
-       id="polygon10824" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="479.74,304.22 479.49,303.97 469.52,301.19 "
-       id="polygon10826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.43,295.54 466.18,295.97 475.8,298.64 "
-       id="polygon10828" />
-    <line
-       x1="218.33"
-       y1="330.57999"
-       x2="218.13"
-       y2="332.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10830" />
-    <line
-       x1="187.88"
-       y1="148.60001"
-       x2="188.24001"
-       y2="146.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10832" />
-    <line
-       x1="190.41"
-       y1="369.72"
-       x2="188.39"
-       y2="370.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.04,296.45 465.99,296.95 475.61,299.63 "
-       id="polygon10836" />
-    <line
-       x1="113.5"
-       y1="233.09"
-       x2="114.82"
-       y2="233.25999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="466.18,295.97 466.04,296.45 475.66,299.13 "
-       id="polygon10840" />
-    <line
-       x1="192.39"
-       y1="368.97"
-       x2="190.41"
-       y2="369.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10842" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="190.34,362.82 190.31,362.44 181.51,369.2 "
-       id="polygon10844" />
-    <line
-       x1="97.529999"
-       y1="234.63"
-       x2="98.940002"
-       y2="234.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10846" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="189.25,360.86 188.88,360.65 180.07,367.41 "
-       id="polygon10848" />
-    <line
-       x1="196.61"
-       y1="236.57001"
-       x2="196.11"
-       y2="235.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.49,303.97 479.32,303.6 469.35,300.82 "
-       id="polygon10852" />
-    <line
-       x1="194.33"
-       y1="368.13"
-       x2="192.39"
-       y2="368.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10854" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="190.31,362.44 190.18,362.01 181.37,368.77 "
-       id="polygon10856" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="189.62,361.18 189.25,360.86 180.45,367.62 "
-       id="polygon10858" />
-    <line
-       x1="196.21001"
-       y1="367.19"
-       x2="194.33"
-       y2="368.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10860" />
-    <line
-       x1="218.13"
-       y1="332.70001"
-       x2="217.86"
-       y2="334.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10862" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="190.18,362.01 189.94,361.58 181.13,368.34 "
-       id="polygon10864" />
-    <line
-       x1="107.47"
-       y1="298.67999"
-       x2="106.52"
-       y2="298.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10866" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="465.17,299.5 465.43,299.75 475.03,302.42 "
-       id="polygon10868" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="189.94,361.58 189.62,361.18 180.81,367.94 "
-       id="polygon10870" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="157,207.09 157.22,207.3 167.5,210.42 "
-       id="polygon10872" />
-    <line
-       x1="198.05"
-       y1="366.14999"
-       x2="196.21001"
-       y2="367.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10874" />
-    <line
-       x1="114.82"
-       y1="233.25999"
-       x2="116.09"
-       y2="233.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10876" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="466.02,296.72 465.67,296.92 475.28,299.59 "
-       id="polygon10878" />
-    <line
-       x1="96.169998"
-       y1="235.11"
-       x2="97.529999"
-       y2="234.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10880" />
-    <line
-       x1="199.82001"
-       y1="365.01001"
-       x2="198.05"
-       y2="366.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10882" />
-    <line
-       x1="147.39"
-       y1="220.11"
-       x2="150.17999"
-       y2="220.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10884" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465,299.13 465.17,299.5 474.77,302.17 "
-       id="polygon10886" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="156.45,210.09 156.13,210.19 166.41,213.3 "
-       id="polygon10888" />
-    <line
-       x1="217.86"
-       y1="334.81"
-       x2="217.49001"
-       y2="336.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10890" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="157.22,207.3 157.38,207.63 167.65,210.75 "
-       id="polygon10892" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="465.67,296.92 465.37,297.25 474.97,299.93 "
-       id="polygon10894" />
-    <line
-       x1="78.949997"
-       y1="277.66"
-       x2="78.970001"
-       y2="276.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10896" />
-    <line
-       x1="201.52"
-       y1="363.78"
-       x2="199.82001"
-       y2="365.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10898" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="470,308.67 470.25,308.92 479.65,311.55 "
-       id="polygon10900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="464.94,298.67 465,299.13 474.61,301.8 "
-       id="polygon10902" />
-    <line
-       x1="187.47"
-       y1="150.27"
-       x2="187.88"
-       y2="148.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465.37,297.25 465.13,297.69 474.73,300.36 "
-       id="polygon10906" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="156.76,209.85 156.45,210.09 166.73,213.21 "
-       id="polygon10908" />
-    <line
-       x1="203.16"
-       y1="362.45999"
-       x2="201.52"
-       y2="363.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10910" />
-    <line
-       x1="217.49001"
-       y1="336.92001"
-       x2="217.03999"
-       y2="339.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10912" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="470.85,305.89 470.5,306.1 479.9,308.72 "
-       id="polygon10914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="464.98,298.17 464.94,298.67 474.54,301.34 "
-       id="polygon10916" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="157.38,207.63 157.43,208.06 167.71,211.18 "
-       id="polygon10918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="465.13,297.69 464.98,298.17 474.58,300.85 "
-       id="polygon10920" />
-    <line
-       x1="116.09"
-       y1="233.47"
-       x2="117.29"
-       y2="233.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10922" />
-    <line
-       x1="204.73"
-       y1="361.04999"
-       x2="203.16"
-       y2="362.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10924" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="157.04,209.48 156.76,209.85 167.04,212.96 "
-       id="polygon10926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.83,308.3 470,308.67 479.4,311.3 "
-       id="polygon10928" />
-    <line
-       x1="94.860001"
-       y1="235.64999"
-       x2="96.169998"
-       y2="235.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10930" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="157.43,208.06 157.39,208.54 167.67,211.66 "
-       id="polygon10932" />
-    <line
-       x1="217.03999"
-       y1="339.01999"
-       x2="216.5"
-       y2="341.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10934" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="470.5,306.1 470.2,306.43 479.6,309.05 "
-       id="polygon10936" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="157.25,209.03 157.04,209.48 167.32,212.6 "
-       id="polygon10938" />
-    <line
-       x1="109.53"
-       y1="384.17001"
-       x2="110.03"
-       y2="384.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10940" />
-    <line
-       x1="206.22"
-       y1="359.57001"
-       x2="204.73"
-       y2="361.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10942" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="157.39,208.54 157.25,209.03 167.53,212.15 "
-       id="polygon10944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.77,307.84 469.83,308.3 479.23,310.93 "
-       id="polygon10946" />
-    <line
-       x1="207.63"
-       y1="358"
-       x2="206.22"
-       y2="359.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10948" />
-    <line
-       x1="106.52"
-       y1="298.66"
-       x2="105.49"
-       y2="298.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10950" />
-    <line
-       x1="216.5"
-       y1="341.10001"
-       x2="215.87"
-       y2="343.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="470.2,306.43 469.96,306.86 479.36,309.49 "
-       id="polygon10954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.81,307.35 469.77,307.84 479.16,310.47 "
-       id="polygon10956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="469.96,306.86 469.81,307.35 479.21,309.98 "
-       id="polygon10958" />
-    <line
-       x1="208.96001"
-       y1="356.35001"
-       x2="207.63"
-       y2="358"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10960" />
-    <line
-       x1="215.87"
-       y1="343.14999"
-       x2="215.14999"
-       y2="345.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10962" />
-    <line
-       x1="197.08"
-       y1="237.78999"
-       x2="196.61"
-       y2="236.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10964" />
-    <line
-       x1="210.21001"
-       y1="354.63"
-       x2="208.96001"
-       y2="356.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10966" />
-    <line
-       x1="215.14999"
-       y1="345.17999"
-       x2="214.34"
-       y2="347.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10968" />
-    <line
-       x1="79.040001"
-       y1="278.79001"
-       x2="78.949997"
-       y2="277.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10970" />
-    <line
-       x1="211.38"
-       y1="352.85001"
-       x2="210.21001"
-       y2="354.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10972" />
-    <line
-       x1="117.29"
-       y1="233.71001"
-       x2="118.42"
-       y2="233.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10974" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="476.35,297.88 476.69,297.68 467.07,295 "
-       id="polygon10976" />
-    <line
-       x1="214.34"
-       y1="347.17001"
-       x2="213.44"
-       y2="349.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10978" />
-    <line
-       x1="212.45"
-       y1="351.01001"
-       x2="211.38"
-       y2="352.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10980" />
-    <line
-       x1="213.44"
-       y1="349.10999"
-       x2="212.45"
-       y2="351.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10982" />
-    <line
-       x1="187.00999"
-       y1="151.98"
-       x2="187.47"
-       y2="150.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10984" />
-    <line
-       x1="93.610001"
-       y1="236.25"
-       x2="94.860001"
-       y2="235.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10986" />
-    <line
-       x1="118.26"
-       y1="267.47"
-       x2="118.19"
-       y2="267.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="476.04,298.21 476.35,297.88 466.73,295.2 "
-       id="polygon10990" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="181.53,369.58 181.43,369.88 190.24,363.11 "
-       id="polygon10992" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="198.89,292.38 198.54,292.35 189.16,294.97 "
-       id="polygon10994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="475.8,298.64 476.04,298.21 466.43,295.54 "
-       id="polygon10996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="475.66,299.13 475.8,298.64 466.18,295.97 "
-       id="polygon10998" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="181.51,369.2 181.53,369.58 190.34,362.82 "
-       id="polygon11000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="475.61,299.63 475.66,299.13 466.04,296.45 "
-       id="polygon11002" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="179.72,367.32 180.07,367.41 188.88,360.65 "
-       id="polygon11004" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="199.24,292.56 198.89,292.38 189.52,295 "
-       id="polygon11006" />
-    <line
-       x1="105.49"
-       y1="298.60001"
-       x2="104.4"
-       y2="298.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11008" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="199.52,295.4 199.77,295.13 190.4,297.76 "
-       id="polygon11010" />
-    <line
-       x1="118.42"
-       y1="233.99001"
-       x2="119.47"
-       y2="234.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11012" />
-    <line
-       x1="92.419998"
-       y1="236.91"
-       x2="93.610001"
-       y2="236.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11014" />
-    <line
-       x1="150.17999"
-       y1="220.07001"
-       x2="153.07001"
-       y2="220.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11016" />
-    <line
-       x1="79.25"
-       y1="279.92001"
-       x2="79.040001"
-       y2="278.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11018" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="181.37,368.77 181.51,369.2 190.31,362.44 "
-       id="polygon11020" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="180.07,367.41 180.45,367.62 189.25,360.86 "
-       id="polygon11022" />
-    <line
-       x1="186.5"
-       y1="153.71001"
-       x2="187.00999"
-       y2="151.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11024" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="199.55,292.88 199.24,292.56 189.86,295.18 "
-       id="polygon11026" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="199.77,295.13 199.94,294.75 190.57,297.37 "
-       id="polygon11028" />
-    <line
-       x1="108.61"
-       y1="383.88"
-       x2="109.05"
-       y2="384.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11030" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="181.13,368.34 181.37,368.77 190.18,362.01 "
-       id="polygon11032" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="180.45,367.62 180.81,367.94 189.62,361.18 "
-       id="polygon11034" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="180.81,367.94 181.13,368.34 189.94,361.58 "
-       id="polygon11036" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="199.8,293.3 199.55,292.88 190.18,295.5 "
-       id="polygon11038" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="199.94,294.75 200,294.29 190.63,296.91 "
-       id="polygon11040" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="480.25,308.52 480.59,308.47 471.19,305.84 "
-       id="polygon11042" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="199.96,293.79 199.8,293.3 190.43,295.93 "
-       id="polygon11044" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="200,294.29 199.96,293.79 190.58,296.41 "
-       id="polygon11046" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="474.97,299.93 475.28,299.59 465.67,296.92 "
-       id="polygon11048" />
-    <line
-       x1="197.52"
-       y1="239.11"
-       x2="197.08"
-       y2="237.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.77,302.17 474.61,301.8 465,299.13 "
-       id="polygon11052" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="479.9,308.72 480.25,308.52 470.85,305.89 "
-       id="polygon11054" />
-    <line
-       x1="91.300003"
-       y1="237.62"
-       x2="92.419998"
-       y2="236.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.73,300.36 474.97,299.93 465.37,297.25 "
-       id="polygon11058" />
-    <line
-       x1="119.47"
-       y1="234.3"
-       x2="120.44"
-       y2="234.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11060" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="479.65,311.55 479.4,311.3 470,308.67 "
-       id="polygon11062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.61,301.8 474.54,301.34 464.94,298.67 "
-       id="polygon11064" />
-    <line
-       x1="104.4"
-       y1="298.47"
-       x2="103.25"
-       y2="298.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.58,300.85 474.73,300.36 465.13,297.69 "
-       id="polygon11068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.54,301.34 474.58,300.85 464.98,298.17 "
-       id="polygon11070" />
-    <line
-       x1="185.92"
-       y1="155.46001"
-       x2="186.5"
-       y2="153.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11072" />
-    <line
-       x1="79.559998"
-       y1="281.04999"
-       x2="79.25"
-       y2="279.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11074" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="479.6,309.05 479.9,308.72 470.5,306.1 "
-       id="polygon11076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.4,311.3 479.23,310.93 469.83,308.3 "
-       id="polygon11078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.36,309.49 479.6,309.05 470.2,306.43 "
-       id="polygon11080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.23,310.93 479.16,310.47 469.77,307.84 "
-       id="polygon11082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.21,309.98 479.36,309.49 469.96,306.86 "
-       id="polygon11084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.16,310.47 479.21,309.98 469.81,307.35 "
-       id="polygon11086" />
-    <line
-       x1="90.269997"
-       y1="238.38"
-       x2="91.300003"
-       y2="237.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11088" />
-    <line
-       x1="185.28999"
-       y1="157.23"
-       x2="185.92"
-       y2="155.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11090" />
-    <line
-       x1="120.44"
-       y1="234.63"
-       x2="121.32"
-       y2="234.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11092" />
-    <line
-       x1="79.970001"
-       y1="282.19"
-       x2="79.559998"
-       y2="281.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11094" />
-    <line
-       x1="153.07001"
-       y1="220.28"
-       x2="156.05"
-       y2="220.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11096" />
-    <line
-       x1="103.25"
-       y1="298.29001"
-       x2="102.04"
-       y2="298.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11098" />
-    <line
-       x1="132.09"
-       y1="381.20001"
-       x2="132.2"
-       y2="380.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11100" />
-    <line
-       x1="132.25"
-       y1="379.34"
-       x2="132.24001"
-       y2="378.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11102" />
-    <line
-       x1="131.92"
-       y1="382.12"
-       x2="132.09"
-       y2="381.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11104" />
-    <line
-       x1="132.24001"
-       y1="378.41"
-       x2="132.17999"
-       y2="377.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11106" />
-    <line
-       x1="131.71001"
-       y1="383.04001"
-       x2="131.92"
-       y2="382.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11108" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="475.34,302.53 475.69,302.48 475.68,302.17 "
-       id="polygon11110" />
-    <line
-       x1="197.92"
-       y1="240.50999"
-       x2="197.52"
-       y2="239.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11112" />
-    <line
-       x1="131.45"
-       y1="383.92999"
-       x2="131.71001"
-       y2="383.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11114" />
-    <line
-       x1="132.05"
-       y1="376.59"
-       x2="131.88"
-       y2="375.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11116" />
-    <line
-       x1="154.95"
-       y1="187.31"
-       x2="156.77"
-       y2="186.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11118" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="479.49,303.97 479.74,304.22 489.74,307.01 "
-       id="polygon11120" />
-    <line
-       x1="184.60001"
-       y1="159"
-       x2="185.28999"
-       y2="157.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11122" />
-    <line
-       x1="131.13"
-       y1="384.81"
-       x2="131.45"
-       y2="383.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="181.53,369.58 181.51,369.2 181.27,369.1 "
-       id="polygon11126" />
-    <line
-       x1="131.88"
-       y1="375.70999"
-       x2="131.64"
-       y2="374.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11128" />
-    <line
-       x1="89.32"
-       y1="239.2"
-       x2="90.269997"
-       y2="238.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11130" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="155.62,209.93 155.85,210.13 145.54,207 "
-       id="polygon11132" />
-    <line
-       x1="80.5"
-       y1="283.31"
-       x2="79.970001"
-       y2="282.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11134" />
-    <line
-       x1="130.77"
-       y1="385.67001"
-       x2="131.13"
-       y2="384.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.32,303.6 479.49,303.97 489.49,306.76 "
-       id="polygon11138" />
-    <line
-       x1="156.77"
-       y1="186.86"
-       x2="158.56"
-       y2="186.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11140" />
-    <line
-       x1="102.04"
-       y1="298.04999"
-       x2="100.8"
-       y2="297.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11142" />
-    <line
-       x1="131.64"
-       y1="374.85999"
-       x2="131.34"
-       y2="374.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11144" />
-    <line
-       x1="121.32"
-       y1="234.98"
-       x2="122.1"
-       y2="235.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="475.66,299.13 475.61,299.63 485.26,302.31 "
-       id="polygon11148" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="475.28,299.59 475.62,299.39 475.63,299.7 "
-       id="polygon11150" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="190.4,297.76 190.14,298.02 199.52,295.4 "
-       id="polygon11152" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="480.25,308.52 480.59,308.47 480.53,308.79 "
-       id="polygon11154" />
-    <line
-       x1="130.38"
-       y1="386.48999"
-       x2="130.77"
-       y2="385.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11156" />
-    <line
-       x1="183.85001"
-       y1="160.78"
-       x2="184.60001"
-       y2="159"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11158" />
-    <line
-       x1="131.34"
-       y1="374.03"
-       x2="130.98"
-       y2="373.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11160" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="157.38,207.63 157.22,207.3 146.91,204.16 "
-       id="polygon11162" />
-    <line
-       x1="158.56"
-       y1="186.3"
-       x2="160.32001"
-       y2="185.64"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11164" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="190.57,297.37 190.4,297.76 199.77,295.13 "
-       id="polygon11166" />
-    <line
-       x1="107.26"
-       y1="382.59"
-       x2="107.53"
-       y2="383"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11168" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="156.13,210.19 156.45,210.09 146.14,206.96 "
-       id="polygon11170" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="189.86,295.18 190.18,295.5 199.55,292.88 "
-       id="polygon11172" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="190.63,296.91 190.57,297.37 199.94,294.75 "
-       id="polygon11174" />
-    <line
-       x1="156.05"
-       y1="220.73"
-       x2="157.10001"
-       y2="221.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11176" />
-    <line
-       x1="81.110001"
-       y1="284.42999"
-       x2="80.5"
-       y2="283.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11178" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="157.43,208.06 157.38,207.63 147.06,204.5 "
-       id="polygon11180" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="190.18,295.5 190.43,295.93 199.8,293.3 "
-       id="polygon11182" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="190.58,296.41 190.63,296.91 200,294.29 "
-       id="polygon11184" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="190.43,295.93 190.58,296.41 199.96,293.79 "
-       id="polygon11186" />
-    <line
-       x1="88.459999"
-       y1="240.05"
-       x2="89.32"
-       y2="239.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11188" />
-    <line
-       x1="160.32001"
-       y1="185.64"
-       x2="162.05"
-       y2="184.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11190" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="156.45,210.09 156.76,209.85 146.45,206.72 "
-       id="polygon11192" />
-    <line
-       x1="100.8"
-       y1="297.75"
-       x2="99.519997"
-       y2="297.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11194" />
-    <line
-       x1="183.03999"
-       y1="162.55"
-       x2="183.85001"
-       y2="160.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11196" />
-    <line
-       x1="198.28"
-       y1="241.99001"
-       x2="197.92"
-       y2="240.50999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11198" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="157.39,208.54 157.43,208.06 147.12,204.93 "
-       id="polygon11200" />
-    <line
-       x1="129.46001"
-       y1="388.04001"
-       x2="129.94"
-       y2="387.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11202" />
-    <line
-       x1="130.57001"
-       y1="372.48001"
-       x2="130.11"
-       y2="371.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11204" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="156.76,209.85 157.04,209.48 146.72,206.36 "
-       id="polygon11206" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="157.25,209.03 157.39,208.54 147.08,205.41 "
-       id="polygon11208" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="157.04,209.48 157.25,209.03 146.94,205.91 "
-       id="polygon11210" />
-    <line
-       x1="162.05"
-       y1="184.88"
-       x2="163.74001"
-       y2="184.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11212" />
-    <line
-       x1="122.1"
-       y1="235.36"
-       x2="122.79"
-       y2="235.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11214" />
-    <line
-       x1="182.16"
-       y1="164.3"
-       x2="183.03999"
-       y2="162.55"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11216" />
-    <line
-       x1="81.830002"
-       y1="285.51999"
-       x2="81.110001"
-       y2="284.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11218" />
-    <line
-       x1="163.74001"
-       y1="184.03"
-       x2="165.39"
-       y2="183.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11220" />
-    <line
-       x1="99.519997"
-       y1="297.39001"
-       x2="98.199997"
-       y2="296.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11222" />
-    <line
-       x1="129.59"
-       y1="371.09"
-       x2="129.02"
-       y2="370.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11224" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="476.69,297.68 476.35,297.88 486,300.56 "
-       id="polygon11226" />
-    <line
-       x1="181.23"
-       y1="166.03999"
-       x2="182.16"
-       y2="164.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11228" />
-    <line
-       x1="165.39"
-       y1="183.09"
-       x2="167"
-       y2="182.05"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11230" />
-    <line
-       x1="128.42999"
-       y1="389.42001"
-       x2="128.96001"
-       y2="388.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11232" />
-    <line
-       x1="157.10001"
-       y1="221.34"
-       x2="158.16"
-       y2="222.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="476.35,297.88 476.04,298.21 485.69,300.89 "
-       id="polygon11236" />
-    <line
-       x1="82.629997"
-       y1="286.60001"
-       x2="81.830002"
-       y2="285.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11238" />
-    <line
-       x1="167"
-       y1="182.05"
-       x2="168.56"
-       y2="180.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11240" />
-    <line
-       x1="180.23"
-       y1="167.75"
-       x2="181.23"
-       y2="166.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11242" />
-    <line
-       x1="129.02"
-       y1="370.47"
-       x2="128.41"
-       y2="369.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11244" />
-    <line
-       x1="117.32"
-       y1="268.66"
-       x2="116.82"
-       y2="268.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11246" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="181.43,369.88 181.53,369.58 172.7,376.36 "
-       id="polygon11248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="476.04,298.21 475.8,298.64 485.45,301.32 "
-       id="polygon11250" />
-    <line
-       x1="98.199997"
-       y1="296.95999"
-       x2="96.879997"
-       y2="296.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11252" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="170.29,374.63 170.39,374.34 179.22,367.56 "
-       id="polygon11254" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="180.07,367.41 179.72,367.32 170.88,374.1 "
-       id="polygon11256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="475.8,298.64 475.66,299.13 485.3,301.81 "
-       id="polygon11258" />
-    <line
-       x1="168.56"
-       y1="180.92999"
-       x2="170.08"
-       y2="179.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11260" />
-    <line
-       x1="179.17"
-       y1="169.42999"
-       x2="180.23"
-       y2="167.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11262" />
-    <line
-       x1="198.60001"
-       y1="243.56"
-       x2="198.28"
-       y2="241.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11264" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="489.74,307.01 489.49,306.76 479.49,303.97 "
-       id="polygon11266" />
-    <line
-       x1="170.08"
-       y1="179.73"
-       x2="171.55"
-       y2="178.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11268" />
-    <line
-       x1="128.41"
-       y1="369.89999"
-       x2="127.75"
-       y2="369.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11270" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="180.45,367.62 180.07,367.41 171.23,374.19 "
-       id="polygon11272" />
-    <line
-       x1="178.03999"
-       y1="171.06"
-       x2="179.17"
-       y2="169.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11274" />
-    <line
-       x1="83.519997"
-       y1="287.64999"
-       x2="82.629997"
-       y2="286.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11276" />
-    <line
-       x1="171.55"
-       y1="178.45"
-       x2="172.96001"
-       y2="177.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11278" />
-    <line
-       x1="106.77"
-       y1="381.10999"
-       x2="106.88"
-       y2="381.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11280" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="181.51,369.2 181.37,368.77 172.54,375.55 "
-       id="polygon11282" />
-    <line
-       x1="176.86"
-       y1="172.66"
-       x2="178.03999"
-       y2="171.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="489.49,306.76 489.32,306.39 479.32,303.6 "
-       id="polygon11286" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="474.77,302.17 475.03,302.42 484.66,305.11 "
-       id="polygon11288" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="180.81,367.94 180.45,367.62 171.61,374.4 "
-       id="polygon11290" />
-    <line
-       x1="172.96001"
-       y1="177.10001"
-       x2="174.32001"
-       y2="175.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11292" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="146.69,203.96 146.91,204.16 157.22,207.3 "
-       id="polygon11294" />
-    <line
-       x1="175.62"
-       y1="174.2"
-       x2="176.86"
-       y2="172.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11296" />
-    <line
-       x1="96.879997"
-       y1="296.48001"
-       x2="95.540001"
-       y2="295.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11298" />
-    <line
-       x1="174.32001"
-       y1="175.67999"
-       x2="175.62"
-       y2="174.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11300" />
-    <line
-       x1="87.019997"
-       y1="241.89999"
-       x2="87.690002"
-       y2="240.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11302" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="181.37,368.77 181.13,368.34 172.29,375.12 "
-       id="polygon11304" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="181.13,368.34 180.81,367.94 171.98,374.72 "
-       id="polygon11306" />
-    <line
-       x1="127.31"
-       y1="390.60001"
-       x2="127.88"
-       y2="390.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11308" />
-    <line
-       x1="127.75"
-       y1="369.39001"
-       x2="127.04"
-       y2="368.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11310" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="146.14,206.96 145.82,207.06 156.13,210.19 "
-       id="polygon11312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.61,301.8 474.77,302.17 484.41,304.86 "
-       id="polygon11314" />
-    <line
-       x1="84.489998"
-       y1="288.67001"
-       x2="83.519997"
-       y2="287.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11316" />
-    <line
-       x1="158.16"
-       y1="222.03999"
-       x2="159.23"
-       y2="222.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11318" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="146.91,204.16 147.06,204.5 157.38,207.63 "
-       id="polygon11320" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="475.28,299.59 474.97,299.93 484.61,302.61 "
-       id="polygon11322" />
-    <line
-       x1="95.540001"
-       y1="295.94"
-       x2="94.199997"
-       y2="295.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11324" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="480.25,308.52 479.9,308.72 489.33,311.36 "
-       id="polygon11326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.54,301.34 474.61,301.8 484.24,304.48 "
-       id="polygon11328" />
-    <line
-       x1="106.71"
-       y1="380.54001"
-       x2="106.77"
-       y2="381.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11330" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="146.45,206.72 146.14,206.96 156.45,210.09 "
-       id="polygon11332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.97,299.93 474.73,300.36 484.37,303.04 "
-       id="polygon11334" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="147.06,204.5 147.12,204.93 157.43,208.06 "
-       id="polygon11336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.23,310.93 479.4,311.3 488.83,313.94 "
-       id="polygon11338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.58,300.85 474.54,301.34 484.17,304.03 "
-       id="polygon11340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="474.73,300.36 474.58,300.85 484.22,303.53 "
-       id="polygon11342" />
-    <line
-       x1="85.529999"
-       y1="289.66"
-       x2="84.489998"
-       y2="288.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11344" />
-    <polygon
-       style="opacity:1;fill:#0aff0a"
-       points="190.57,297.37 190.4,297.76 190.21,297.52 "
-       id="polygon11346" />
-    <line
-       x1="116.82"
-       y1="268.88"
-       x2="116.22"
-       y2="269.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11348" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="479.9,308.72 479.6,309.05 489.02,311.69 "
-       id="polygon11350" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="146.72,206.36 146.45,206.72 156.76,209.85 "
-       id="polygon11352" />
-    <line
-       x1="94.199997"
-       y1="295.34"
-       x2="92.870003"
-       y2="294.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11354" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="147.12,204.93 147.08,205.41 157.39,208.54 "
-       id="polygon11356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.16,310.47 479.23,310.93 488.66,313.57 "
-       id="polygon11358" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="146.94,205.91 146.72,206.36 157.04,209.48 "
-       id="polygon11360" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="147.08,205.41 146.94,205.91 157.25,209.03 "
-       id="polygon11362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.6,309.05 479.36,309.49 488.79,312.13 "
-       id="polygon11364" />
-    <line
-       x1="86.639999"
-       y1="290.60999"
-       x2="85.529999"
-       y2="289.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11366" />
-    <line
-       x1="198.86"
-       y1="245.2"
-       x2="198.60001"
-       y2="243.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.21,309.98 479.16,310.47 488.59,313.11 "
-       id="polygon11370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="479.36,309.49 479.21,309.98 488.64,312.61 "
-       id="polygon11372" />
-    <line
-       x1="126.3"
-       y1="368.54001"
-       x2="125.53"
-       y2="368.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11374" />
-    <line
-       x1="86.459999"
-       y1="242.89"
-       x2="87.019997"
-       y2="241.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11376" />
-    <line
-       x1="92.870003"
-       y1="294.67999"
-       x2="91.550003"
-       y2="293.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11378" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="486.34,300.36 486.68,300.3 477.04,297.63 "
-       id="polygon11380" />
-    <line
-       x1="87.800003"
-       y1="291.51999"
-       x2="86.639999"
-       y2="290.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11382" />
-    <line
-       x1="91.550003"
-       y1="293.95999"
-       x2="90.269997"
-       y2="293.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11384" />
-    <line
-       x1="89.010002"
-       y1="292.38"
-       x2="87.800003"
-       y2="291.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11386" />
-    <line
-       x1="90.269997"
-       y1="293.20001"
-       x2="89.010002"
-       y2="292.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11388" />
-    <line
-       x1="126.13"
-       y1="391.56"
-       x2="126.72"
-       y2="391.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11390" />
-    <line
-       x1="159.23"
-       y1="222.82001"
-       x2="160.3"
-       y2="223.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11392" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="486,300.56 486.34,300.36 476.69,297.68 "
-       id="polygon11394" />
-    <line
-       x1="125.53"
-       y1="368.20001"
-       x2="124.72"
-       y2="367.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.69,300.89 486,300.56 476.35,297.88 "
-       id="polygon11398" />
-    <line
-       x1="106.77"
-       y1="379.29001"
-       x2="106.71"
-       y2="379.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11400" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="170.59,374.15 170.88,374.1 179.72,367.32 "
-       id="polygon11402" />
-    <line
-       x1="124.72"
-       y1="367.92999"
-       x2="123.89"
-       y2="367.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.45,301.32 485.69,300.89 476.04,298.21 "
-       id="polygon11406" />
-    <line
-       x1="125.53"
-       y1="391.95001"
-       x2="126.13"
-       y2="391.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11408" />
-    <line
-       x1="123.86"
-       y1="236.50999"
-       x2="124.23"
-       y2="236.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11410" />
-    <line
-       x1="86"
-       y1="243.89999"
-       x2="86.459999"
-       y2="242.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.3,301.81 485.45,301.32 475.8,298.64 "
-       id="polygon11414" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.26,302.31 485.3,301.81 475.66,299.13 "
-       id="polygon11416" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="172.67,375.98 172.7,376.36 181.53,369.58 "
-       id="polygon11418" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="170.88,374.1 171.23,374.19 180.07,367.41 "
-       id="polygon11420" />
-    <line
-       x1="199.07001"
-       y1="246.89999"
-       x2="198.86"
-       y2="245.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11422" />
-    <line
-       x1="123.89"
-       y1="367.70999"
-       x2="123.03"
-       y2="367.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11424" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="172.54,375.55 172.67,375.98 181.51,369.2 "
-       id="polygon11426" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="171.23,374.19 171.61,374.4 180.45,367.62 "
-       id="polygon11428" />
-    <line
-       x1="160.3"
-       y1="223.67999"
-       x2="161.38"
-       y2="224.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11430" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="489.67,311.16 490.02,311.11 480.59,308.47 "
-       id="polygon11432" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="172.29,375.12 172.54,375.55 181.37,368.77 "
-       id="polygon11434" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="171.61,374.4 171.98,374.72 180.81,367.94 "
-       id="polygon11436" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="484.66,305.11 484.41,304.86 474.77,302.17 "
-       id="polygon11438" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="171.98,374.72 172.29,375.12 181.13,368.34 "
-       id="polygon11440" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="188.84,295.09 188.59,295.36 179.18,297.99 "
-       id="polygon11442" />
-    <line
-       x1="107.07"
-       y1="377.94"
-       x2="106.89"
-       y2="378.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11444" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="484.61,302.61 484.91,302.27 475.28,299.59 "
-       id="polygon11446" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="489.33,311.36 489.67,311.16 480.25,308.52 "
-       id="polygon11448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.41,304.86 484.24,304.48 474.61,301.8 "
-       id="polygon11450" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="489.08,314.19 488.83,313.94 479.4,311.3 "
-       id="polygon11452" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="189.47,298.11 189.82,298.14 180.41,300.78 "
-       id="polygon11454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.37,303.04 484.61,302.61 474.97,299.93 "
-       id="polygon11456" />
-    <line
-       x1="122.16"
-       y1="367.48999"
-       x2="121.27"
-       y2="367.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.24,304.48 484.17,304.03 474.54,301.34 "
-       id="polygon11460" />
-    <line
-       x1="85.650002"
-       y1="244.95"
-       x2="86"
-       y2="243.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11462" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="489.02,311.69 489.33,311.36 479.9,308.72 "
-       id="polygon11464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.22,303.53 484.37,303.04 474.73,300.36 "
-       id="polygon11466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.17,304.03 484.22,303.53 474.58,300.85 "
-       id="polygon11468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.83,313.94 488.66,313.57 479.23,310.93 "
-       id="polygon11470" />
-    <line
-       x1="107.31"
-       y1="377.23999"
-       x2="107.07"
-       y2="377.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11472" />
-    <line
-       x1="115.52"
-       y1="269.17999"
-       x2="114.73"
-       y2="269.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11474" />
-    <line
-       x1="124.34"
-       y1="392.54999"
-       x2="124.93"
-       y2="392.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.79,312.13 489.02,311.69 479.6,309.05 "
-       id="polygon11478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.66,313.57 488.59,313.11 479.16,310.47 "
-       id="polygon11480" />
-    <line
-       x1="121.27"
-       y1="367.47"
-       x2="120.37"
-       y2="367.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.64,312.61 488.79,312.13 479.36,309.49 "
-       id="polygon11484" />
-    <line
-       x1="199.21001"
-       y1="248.67"
-       x2="199.07001"
-       y2="246.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11486" />
-    <line
-       x1="161.38"
-       y1="224.63"
-       x2="162.42999"
-       y2="225.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.59,313.11 488.64,312.61 479.21,309.98 "
-       id="polygon11490" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="179.18,297.99 179.43,297.72 188.84,295.09 "
-       id="polygon11492" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="189.86,295.18 189.52,295 180.11,297.63 "
-       id="polygon11494" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="486.34,300.66 486.62,300.63 486.68,300.3 "
-       id="polygon11496" />
-    <line
-       x1="107.6"
-       y1="376.54001"
-       x2="107.31"
-       y2="377.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11498" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="190.18,295.5 189.86,295.18 180.45,297.82 "
-       id="polygon11500" />
-    <line
-       x1="120.37"
-       y1="367.51999"
-       x2="119.47"
-       y2="367.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11502" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="190.43,295.93 190.18,295.5 180.77,298.14 "
-       id="polygon11504" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="190.57,297.37 190.63,296.91 181.22,299.54 "
-       id="polygon11506" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="190.58,296.41 190.43,295.93 181.02,298.56 "
-       id="polygon11508" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="190.63,296.91 190.58,296.41 181.17,299.04 "
-       id="polygon11510" />
-    <line
-       x1="119.47"
-       y1="367.63"
-       x2="118.57"
-       y2="367.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11512" />
-    <line
-       x1="85.410004"
-       y1="246.02"
-       x2="85.650002"
-       y2="244.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11514" />
-    <line
-       x1="108.37"
-       y1="375.10999"
-       x2="107.96"
-       y2="375.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11516" />
-    <line
-       x1="118.57"
-       y1="367.79999"
-       x2="117.67"
-       y2="368.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11518" />
-    <line
-       x1="162.42999"
-       y1="225.64999"
-       x2="163.47"
-       y2="226.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11520" />
-    <line
-       x1="114.73"
-       y1="269.26999"
-       x2="113.86"
-       y2="269.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11522" />
-    <line
-       x1="199.3"
-       y1="250.49001"
-       x2="199.21001"
-       y2="248.67"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11524" />
-    <line
-       x1="117.67"
-       y1="368.04001"
-       x2="116.78"
-       y2="368.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11526" />
-    <line
-       x1="108.83"
-       y1="374.39999"
-       x2="108.37"
-       y2="375.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11528" />
-    <line
-       x1="123.18"
-       y1="392.89999"
-       x2="123.75"
-       y2="392.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11530" />
-    <line
-       x1="116.78"
-       y1="368.32001"
-       x2="115.91"
-       y2="368.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11532" />
-    <line
-       x1="109.35"
-       y1="373.70001"
-       x2="108.83"
-       y2="374.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11534" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="146.91,204.16 146.69,203.96 136.34,200.82 "
-       id="polygon11536" />
-    <line
-       x1="115.91"
-       y1="368.67001"
-       x2="115.05"
-       y2="369.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11538" />
-    <line
-       x1="85.290001"
-       y1="247.11"
-       x2="85.410004"
-       y2="246.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="489.32,306.39 489.49,306.76 499.52,309.55 "
-       id="polygon11542" />
-    <line
-       x1="110.53"
-       y1="372.35999"
-       x2="109.91"
-       y2="373.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11544" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="147.06,204.5 146.91,204.16 136.57,201.02 "
-       id="polygon11546" />
-    <line
-       x1="114.22"
-       y1="369.51999"
-       x2="113.41"
-       y2="370.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11548" />
-    <line
-       x1="163.47"
-       y1="226.75"
-       x2="164.49001"
-       y2="227.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11550" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="145.82,207.06 146.14,206.96 135.79,203.82 "
-       id="polygon11552" />
-    <line
-       x1="111.89"
-       y1="371.12"
-       x2="111.19"
-       y2="371.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11554" />
-    <line
-       x1="112.64"
-       y1="370.54001"
-       x2="111.89"
-       y2="371.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11556" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="487.25,300.66 487,300.41 496.68,303.1 "
-       id="polygon11558" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="147.12,204.93 147.06,204.5 136.72,201.36 "
-       id="polygon11560" />
-    <line
-       x1="113.86"
-       y1="269.29999"
-       x2="112.91"
-       y2="269.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11562" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="146.14,206.96 146.45,206.72 136.1,203.58 "
-       id="polygon11564" />
-    <line
-       x1="199.31"
-       y1="252.37"
-       x2="199.3"
-       y2="250.49001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11566" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="147.08,205.41 147.12,204.93 136.78,201.79 "
-       id="polygon11568" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="146.45,206.72 146.72,206.36 136.38,203.21 "
-       id="polygon11570" />
-    <line
-       x1="124.64"
-       y1="237.64999"
-       x2="124.68"
-       y2="238"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11572" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="146.94,205.91 147.08,205.41 136.73,202.27 "
-       id="polygon11574" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="146.72,206.36 146.94,205.91 136.6,202.77 "
-       id="polygon11576" />
-    <line
-       x1="85.269997"
-       y1="248.22"
-       x2="85.290001"
-       y2="247.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11578" />
-    <line
-       x1="164.49001"
-       y1="227.92999"
-       x2="165.48"
-       y2="229.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11580" />
-    <line
-       x1="122.09"
-       y1="392.98999"
-       x2="122.63"
-       y2="392.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11582" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="486.68,300.3 486.34,300.36 496.02,303.05 "
-       id="polygon11584" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="180.99,300.39 180.73,300.66 190.14,298.02 "
-       id="polygon11586" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="486.34,300.36 486,300.56 495.67,303.25 "
-       id="polygon11588" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="180.11,297.63 180.45,297.82 189.86,295.18 "
-       id="polygon11590" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="181.16,300.01 180.99,300.39 190.4,297.76 "
-       id="polygon11592" />
-    <line
-       x1="199.25"
-       y1="254.28999"
-       x2="199.31"
-       y2="252.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11594" />
-    <line
-       x1="112.91"
-       y1="269.28"
-       x2="111.88"
-       y2="269.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11596" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="180.45,297.82 180.77,298.14 190.18,295.5 "
-       id="polygon11598" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="490.59,311.46 490.34,311.21 499.79,313.85 "
-       id="polygon11600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="486,300.56 485.69,300.89 495.37,303.58 "
-       id="polygon11602" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="181.22,299.54 181.16,300.01 190.57,297.37 "
-       id="polygon11604" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="500.44,309.86 500.09,309.91 490.06,307.11 "
-       id="polygon11606" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="180.77,298.14 181.02,298.56 190.43,295.93 "
-       id="polygon11608" />
-    <line
-       x1="165.48"
-       y1="229.17999"
-       x2="166.42999"
-       y2="230.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11610" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="181.17,299.04 181.22,299.54 190.63,296.91 "
-       id="polygon11612" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="181.02,298.56 181.17,299.04 190.58,296.41 "
-       id="polygon11614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.69,300.89 485.45,301.32 495.13,304.02 "
-       id="polygon11616" />
-    <line
-       x1="85.360001"
-       y1="249.34"
-       x2="85.269997"
-       y2="248.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.3,301.81 485.26,302.31 494.93,305 "
-       id="polygon11620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="485.45,301.32 485.3,301.81 494.98,304.5 "
-       id="polygon11622" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="171.23,374.19 170.88,374.1 162.02,380.9 "
-       id="polygon11624" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="172.7,376.36 172.67,375.98 163.81,382.78 "
-       id="polygon11626" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="171.61,374.4 171.23,374.19 162.37,380.99 "
-       id="polygon11628" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="490.02,311.11 489.67,311.16 499.13,313.8 "
-       id="polygon11630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.52,309.55 499.36,309.18 489.32,306.39 "
-       id="polygon11632" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="484.41,304.86 484.66,305.11 494.32,307.8 "
-       id="polygon11634" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="136.34,200.82 136.57,201.02 146.91,204.16 "
-       id="polygon11636" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="172.67,375.98 172.54,375.55 163.67,382.36 "
-       id="polygon11638" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="499.78,309.8 499.52,309.55 489.49,306.76 "
-       id="polygon11640" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="171.98,374.72 171.61,374.4 162.75,381.2 "
-       id="polygon11642" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="485.25,302.07 484.91,302.27 494.57,304.96 "
-       id="polygon11644" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="172.54,375.55 172.29,375.12 163.43,381.92 "
-       id="polygon11646" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="172.29,375.12 171.98,374.72 163.11,381.52 "
-       id="polygon11648" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="488.83,313.94 489.08,314.19 498.54,316.84 "
-       id="polygon11650" />
-    <line
-       x1="121.11"
-       y1="392.82001"
-       x2="121.59"
-       y2="392.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11652" />
-    <line
-       x1="199.12"
-       y1="256.23001"
-       x2="199.25"
-       y2="254.28999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11654" />
-    <line
-       x1="166.42999"
-       y1="230.5"
-       x2="167.34"
-       y2="231.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11656" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="135.79,203.82 135.48,203.93 145.82,207.06 "
-       id="polygon11658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.24,304.48 484.41,304.86 494.07,307.55 "
-       id="polygon11660" />
-    <line
-       x1="111.88"
-       y1="269.20001"
-       x2="110.79"
-       y2="269.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11662" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="489.67,311.16 489.33,311.36 498.79,314 "
-       id="polygon11664" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="136.57,201.02 136.72,201.36 147.06,204.5 "
-       id="polygon11666" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="484.91,302.27 484.61,302.61 494.27,305.3 "
-       id="polygon11668" />
-    <line
-       x1="85.57"
-       y1="250.47"
-       x2="85.360001"
-       y2="249.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.66,313.57 488.83,313.94 498.28,316.59 "
-       id="polygon11672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.17,304.03 484.24,304.48 493.9,307.18 "
-       id="polygon11674" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="136.1,203.58 135.79,203.82 146.14,206.96 "
-       id="polygon11676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.61,302.61 484.37,303.04 494.03,305.73 "
-       id="polygon11678" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="489.33,311.36 489.02,311.69 498.48,314.34 "
-       id="polygon11680" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="136.72,201.36 136.78,201.79 147.12,204.93 "
-       id="polygon11682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.22,303.53 484.17,304.03 493.84,306.72 "
-       id="polygon11684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="484.37,303.04 484.22,303.53 493.88,306.22 "
-       id="polygon11686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.59,313.11 488.66,313.57 498.11,316.21 "
-       id="polygon11688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="489.02,311.69 488.79,312.13 498.24,314.77 "
-       id="polygon11690" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="136.38,203.21 136.1,203.58 146.45,206.72 "
-       id="polygon11692" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="136.78,201.79 136.73,202.27 147.08,205.41 "
-       id="polygon11694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.64,312.61 488.59,313.11 498.05,315.75 "
-       id="polygon11696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="488.79,312.13 488.64,312.61 498.09,315.26 "
-       id="polygon11698" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="136.6,202.77 136.38,203.21 146.72,206.36 "
-       id="polygon11700" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="136.73,202.27 136.6,202.77 146.94,205.91 "
-       id="polygon11702" />
-    <line
-       x1="167.34"
-       y1="231.89"
-       x2="168.21001"
-       y2="233.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11704" />
-    <line
-       x1="120.67"
-       y1="392.64999"
-       x2="121.11"
-       y2="392.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11706" />
-    <line
-       x1="198.91"
-       y1="258.22"
-       x2="199.12"
-       y2="256.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11708" />
-    <line
-       x1="110.79"
-       y1="269.07001"
-       x2="109.64"
-       y2="268.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11710" />
-    <line
-       x1="85.879997"
-       y1="251.61"
-       x2="85.57"
-       y2="250.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11712" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="495.67,303.25 496.02,303.05 486.34,300.36 "
-       id="polygon11714" />
-    <line
-       x1="168.21001"
-       y1="233.34"
-       x2="169.03"
-       y2="234.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="495.37,303.58 495.67,303.25 486,300.56 "
-       id="polygon11718" />
-    <line
-       x1="180.00999"
-       y1="371.91"
-       x2="144.82001"
-       y2="395.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11720" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="163.84,383.16 163.74,383.46 172.6,376.66 "
-       id="polygon11722" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="161.73,380.95 162.02,380.9 170.88,374.1 "
-       id="polygon11724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="495.13,304.02 495.37,303.58 485.69,300.89 "
-       id="polygon11726" />
-    <line
-       x1="198.62"
-       y1="260.22"
-       x2="198.91"
-       y2="258.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.98,304.5 495.13,304.02 485.45,301.32 "
-       id="polygon11730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.93,305 494.98,304.5 485.3,301.81 "
-       id="polygon11732" />
-    <line
-       x1="86.300003"
-       y1="252.73"
-       x2="85.879997"
-       y2="251.61"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11734" />
-    <line
-       x1="109.64"
-       y1="268.89001"
-       x2="108.43"
-       y2="268.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11736" />
-    <line
-       x1="169.03"
-       y1="234.85001"
-       x2="169.78999"
-       y2="236.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11738" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="163.81,382.78 163.84,383.16 172.7,376.36 "
-       id="polygon11740" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="162.02,380.9 162.37,380.99 171.23,374.19 "
-       id="polygon11742" />
-    <line
-       x1="124.43"
-       y1="238.64"
-       x2="124.14"
-       y2="238.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11744" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="163.67,382.36 163.81,382.78 172.67,375.98 "
-       id="polygon11746" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="162.37,380.99 162.75,381.2 171.61,374.4 "
-       id="polygon11748" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="494.32,307.8 494.07,307.55 484.41,304.86 "
-       id="polygon11750" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="163.43,381.92 163.67,382.36 172.54,375.55 "
-       id="polygon11752" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="498.79,314 499.13,313.8 489.67,311.16 "
-       id="polygon11754" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="162.75,381.2 163.11,381.52 171.98,374.72 "
-       id="polygon11756" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="163.11,381.52 163.43,381.92 172.29,375.12 "
-       id="polygon11758" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="498.54,316.84 498.28,316.59 488.83,313.94 "
-       id="polygon11760" />
-    <line
-       x1="198.24001"
-       y1="262.23999"
-       x2="198.62"
-       y2="260.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11762" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="494.27,305.3 494.57,304.96 484.91,302.27 "
-       id="polygon11764" />
-    <line
-       x1="169.78999"
-       y1="236.42"
-       x2="170.48"
-       y2="238.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11766" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="499.52,309.55 499.36,309.18 499.57,309.01 "
-       id="polygon11768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.07,307.55 493.9,307.18 484.24,304.48 "
-       id="polygon11770" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="498.48,314.34 498.79,314 489.33,311.36 "
-       id="polygon11772" />
-    <line
-       x1="86.82"
-       y1="253.86"
-       x2="86.300003"
-       y2="252.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.28,316.59 498.11,316.21 488.66,313.57 "
-       id="polygon11776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.03,305.73 494.27,305.3 484.61,302.61 "
-       id="polygon11778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.9,307.18 493.84,306.72 484.17,304.03 "
-       id="polygon11780" />
-    <line
-       x1="108.43"
-       y1="268.64001"
-       x2="107.18"
-       y2="268.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.88,306.22 494.03,305.73 484.37,303.04 "
-       id="polygon11784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.24,314.77 498.48,314.34 489.02,311.69 "
-       id="polygon11786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.84,306.72 493.88,306.22 484.22,303.53 "
-       id="polygon11788" />
-    <line
-       x1="119.59"
-       y1="391.76999"
-       x2="119.91"
-       y2="392.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.11,316.21 498.05,315.75 488.59,313.11 "
-       id="polygon11792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.09,315.26 498.24,314.77 488.79,312.13 "
-       id="polygon11794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.05,315.75 498.09,315.26 488.64,312.61 "
-       id="polygon11796" />
-    <line
-       x1="170.48"
-       y1="238.03999"
-       x2="171.12"
-       y2="239.71001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11798" />
-    <line
-       x1="197.78"
-       y1="264.26999"
-       x2="198.24001"
-       y2="262.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11800" />
-    <line
-       x1="87.449997"
-       y1="254.97"
-       x2="86.82"
-       y2="253.86"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11802" />
-    <line
-       x1="171.12"
-       y1="239.71001"
-       x2="171.67999"
-       y2="241.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11804" />
-    <line
-       x1="107.18"
-       y1="268.32999"
-       x2="105.89"
-       y2="267.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11806" />
-    <line
-       x1="154.95"
-       y1="187.31"
-       x2="125.17"
-       y2="193.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="163.52,383.23 163.36,383.37 163.54,383.64 "
-       id="polygon11810" />
-    <line
-       x1="197.23"
-       y1="266.29001"
-       x2="197.78"
-       y2="264.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11812" />
-    <line
-       x1="171.67999"
-       y1="241.41"
-       x2="172.17"
-       y2="243.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11814" />
-    <line
-       x1="88.160004"
-       y1="256.07001"
-       x2="87.449997"
-       y2="254.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11816" />
-    <line
-       x1="105.89"
-       y1="267.95999"
-       x2="104.59"
-       y2="267.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11818" />
-    <line
-       x1="172.17"
-       y1="243.16"
-       x2="172.58"
-       y2="244.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11820" />
-    <line
-       x1="196.60001"
-       y1="268.32001"
-       x2="197.23"
-       y2="266.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11822" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="180.45,297.82 180.11,297.63 170.66,300.27 "
-       id="polygon11824" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="180.73,300.66 180.99,300.39 171.54,303.04 "
-       id="polygon11826" />
-    <line
-       x1="88.970001"
-       y1="257.14001"
-       x2="88.160004"
-       y2="256.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11828" />
-    <line
-       x1="172.58"
-       y1="244.94"
-       x2="172.91"
-       y2="246.74001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11830" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="180.77,298.14 180.45,297.82 171.01,300.46 "
-       id="polygon11832" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="499.52,309.55 499.78,309.8 509.84,312.61 "
-       id="polygon11834" />
-    <line
-       x1="104.59"
-       y1="267.54001"
-       x2="103.25"
-       y2="267.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11836" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="180.99,300.39 181.16,300.01 171.71,302.65 "
-       id="polygon11838" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="136.72,201.36 136.57,201.02 126.2,197.88 "
-       id="polygon11840" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="181.02,298.56 180.77,298.14 171.32,300.78 "
-       id="polygon11842" />
-    <line
-       x1="118.95"
-       y1="390.42999"
-       x2="119.11"
-       y2="390.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11844" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="181.16,300.01 181.22,299.54 171.77,302.19 "
-       id="polygon11846" />
-    <line
-       x1="195.87"
-       y1="270.32001"
-       x2="196.60001"
-       y2="268.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11848" />
-    <polygon
-       style="opacity:1;fill:#00ad00"
-       points="135.48,203.93 135.79,203.82 125.41,200.68 "
-       id="polygon11850" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="181.17,299.04 181.02,298.56 171.57,301.2 "
-       id="polygon11852" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="181.22,299.54 181.17,299.04 171.73,301.69 "
-       id="polygon11854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.36,309.18 499.52,309.55 509.59,312.36 "
-       id="polygon11856" />
-    <line
-       x1="172.91"
-       y1="246.74001"
-       x2="173.14999"
-       y2="248.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11858" />
-    <line
-       x1="89.860001"
-       y1="258.19"
-       x2="88.970001"
-       y2="257.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11860" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="136.78,201.79 136.72,201.36 126.35,198.21 "
-       id="polygon11862" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="135.79,203.82 136.1,203.58 125.73,200.43 "
-       id="polygon11864" />
-    <line
-       x1="103.25"
-       y1="267.04999"
-       x2="101.91"
-       y2="266.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11866" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="136.73,202.27 136.78,201.79 126.4,198.64 "
-       id="polygon11868" />
-    <line
-       x1="173.14999"
-       y1="248.57001"
-       x2="173.31"
-       y2="250.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11870" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="136.1,203.58 136.38,203.21 126,200.07 "
-       id="polygon11872" />
-    <line
-       x1="195.06"
-       y1="272.31"
-       x2="195.87"
-       y2="270.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11874" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="136.6,202.77 136.73,202.27 126.36,199.13 "
-       id="polygon11876" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="136.38,203.21 136.6,202.77 126.22,199.62 "
-       id="polygon11878" />
-    <line
-       x1="90.830002"
-       y1="259.20999"
-       x2="89.860001"
-       y2="258.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11880" />
-    <line
-       x1="173.31"
-       y1="250.41"
-       x2="173.38"
-       y2="252.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11882" />
-    <line
-       x1="101.91"
-       y1="266.5"
-       x2="100.57"
-       y2="265.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11884" />
-    <line
-       x1="173.38"
-       y1="252.27"
-       x2="173.36"
-       y2="254.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11886" />
-    <line
-       x1="194.16"
-       y1="274.26999"
-       x2="195.06"
-       y2="272.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11888" />
-    <line
-       x1="91.879997"
-       y1="260.20001"
-       x2="90.830002"
-       y2="259.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11890" />
-    <line
-       x1="123.25"
-       y1="239.37"
-       x2="122.65"
-       y2="239.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11892" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="163.25,383.69 163.54,383.64 154.65,390.46 "
-       id="polygon11894" />
-    <line
-       x1="100.57"
-       y1="265.89999"
-       x2="99.239998"
-       y2="265.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11896" />
-    <line
-       x1="173.36"
-       y1="254.13"
-       x2="173.25"
-       y2="255.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11898" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="496.02,303.05 495.67,303.25 505.38,305.95 "
-       id="polygon11900" />
-    <line
-       x1="118.78"
-       y1="389.31"
-       x2="118.84"
-       y2="389.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11902" />
-    <line
-       x1="92.980003"
-       y1="261.14999"
-       x2="91.879997"
-       y2="260.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11904" />
-    <line
-       x1="193.17"
-       y1="276.19"
-       x2="194.16"
-       y2="274.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11906" />
-    <line
-       x1="99.239998"
-       y1="265.23001"
-       x2="97.919998"
-       y2="264.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11908" />
-    <line
-       x1="173.25"
-       y1="255.99001"
-       x2="173.05"
-       y2="257.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11910" />
-    <line
-       x1="94.150002"
-       y1="262.06"
-       x2="92.980003"
-       y2="261.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="495.67,303.25 495.37,303.58 505.07,306.28 "
-       id="polygon11914" />
-    <line
-       x1="97.919998"
-       y1="264.51999"
-       x2="96.629997"
-       y2="263.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11916" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="162.02,380.9 161.73,380.95 152.84,387.77 "
-       id="polygon11918" />
-    <line
-       x1="173.05"
-       y1="257.85001"
-       x2="172.75"
-       y2="259.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11920" />
-    <line
-       x1="95.370003"
-       y1="262.92999"
-       x2="94.150002"
-       y2="262.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11922" />
-    <line
-       x1="96.629997"
-       y1="263.75"
-       x2="95.370003"
-       y2="262.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="495.37,303.58 495.13,304.02 504.84,306.71 "
-       id="polygon11926" />
-    <line
-       x1="192.09"
-       y1="278.07001"
-       x2="193.17"
-       y2="276.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.98,304.5 494.93,305 504.64,307.7 "
-       id="polygon11930" />
-    <line
-       x1="172.75"
-       y1="259.70001"
-       x2="172.36"
-       y2="261.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11932" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="163.74,383.46 163.84,383.16 154.95,389.98 "
-       id="polygon11934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="495.13,304.02 494.98,304.5 504.69,307.2 "
-       id="polygon11936" />
-    <line
-       x1="118.79"
-       y1="388.70001"
-       x2="118.78"
-       y2="389.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11938" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="162.37,380.99 162.02,380.9 153.13,387.72 "
-       id="polygon11940" />
-    <line
-       x1="172.36"
-       y1="261.51999"
-       x2="171.87"
-       y2="263.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11942" />
-    <line
-       x1="190.92999"
-       y1="279.89999"
-       x2="192.09"
-       y2="278.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11944" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="163.84,383.16 163.81,382.78 154.92,389.61 "
-       id="polygon11946" />
-    <line
-       x1="171.87"
-       y1="263.32999"
-       x2="171.28999"
-       y2="265.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11948" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="162.75,381.2 162.37,380.99 153.48,387.81 "
-       id="polygon11950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="509.59,312.36 509.42,311.99 499.36,309.18 "
-       id="polygon11952" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="494.07,307.55 494.32,307.8 504.02,310.5 "
-       id="polygon11954" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="498.28,316.59 498.54,316.84 508.02,319.49 "
-       id="polygon11956" />
-    <line
-       x1="171.28999"
-       y1="265.10999"
-       x2="170.62"
-       y2="266.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11958" />
-    <line
-       x1="189.67999"
-       y1="281.67999"
-       x2="190.92999"
-       y2="279.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11960" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="163.81,382.78 163.67,382.36 154.78,389.18 "
-       id="polygon11962" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="494.92,304.76 494.57,304.96 504.27,307.66 "
-       id="polygon11964" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="499.13,313.8 498.79,314 508.27,316.65 "
-       id="polygon11966" />
-    <line
-       x1="122.65"
-       y1="239.53999"
-       x2="121.95"
-       y2="239.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11968" />
-    <line
-       x1="170.62"
-       y1="266.85999"
-       x2="169.86"
-       y2="268.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11970" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="163.11,381.52 162.75,381.2 153.86,388.02 "
-       id="polygon11972" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="163.67,382.36 163.43,381.92 154.54,388.74 "
-       id="polygon11974" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="163.43,381.92 163.11,381.52 154.22,388.34 "
-       id="polygon11976" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="171.54,303.04 171.29,303.3 180.73,300.66 "
-       id="polygon11978" />
-    <line
-       x1="169.86"
-       y1="268.57001"
-       x2="169.00999"
-       y2="270.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.9,307.18 494.07,307.55 503.76,310.25 "
-       id="polygon11982" />
-    <line
-       x1="188.35001"
-       y1="283.39001"
-       x2="189.67999"
-       y2="281.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.11,316.21 498.28,316.59 507.77,319.24 "
-       id="polygon11986" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="509.84,312.61 509.59,312.36 499.52,309.55 "
-       id="polygon11988" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="494.57,304.96 494.27,305.3 503.96,308 "
-       id="polygon11990" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="498.79,314 498.48,314.34 507.96,316.98 "
-       id="polygon11992" />
-    <line
-       x1="169.00999"
-       y1="270.23999"
-       x2="168.07001"
-       y2="271.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11994" />
-    <line
-       x1="186.94"
-       y1="285.04001"
-       x2="188.35001"
-       y2="283.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.84,306.72 493.9,307.18 503.59,309.88 "
-       id="polygon11998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.05,315.75 498.11,316.21 507.6,318.87 "
-       id="polygon12000" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="171.71,302.65 171.54,303.04 180.99,300.39 "
-       id="polygon12002" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="125.73,200.43 125.41,200.68 135.79,203.82 "
-       id="polygon12004" />
-    <line
-       x1="168.07001"
-       y1="271.85999"
-       x2="167.05"
-       y2="273.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.27,305.3 494.03,305.73 503.72,308.43 "
-       id="polygon12008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.48,314.34 498.24,314.77 507.73,317.42 "
-       id="polygon12010" />
-    <line
-       x1="185.45"
-       y1="286.62"
-       x2="186.94"
-       y2="285.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="493.88,306.22 493.84,306.72 503.53,309.42 "
-       id="polygon12014" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="171.01,300.46 171.32,300.78 180.77,298.14 "
-       id="polygon12016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="494.03,305.73 493.88,306.22 503.57,308.92 "
-       id="polygon12018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.09,315.26 498.05,315.75 507.54,318.41 "
-       id="polygon12020" />
-    <line
-       x1="167.05"
-       y1="273.42999"
-       x2="165.94"
-       y2="274.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="498.24,314.77 498.09,315.26 507.58,317.91 "
-       id="polygon12024" />
-    <line
-       x1="183.88"
-       y1="288.12"
-       x2="185.45"
-       y2="286.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12026" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="171.77,302.19 171.71,302.65 181.16,300.01 "
-       id="polygon12028" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="126,200.07 125.73,200.43 136.1,203.58 "
-       id="polygon12030" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="126.4,198.64 126.36,199.13 136.73,202.27 "
-       id="polygon12032" />
-    <line
-       x1="118.97"
-       y1="387.39999"
-       x2="118.85"
-       y2="388.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12034" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="171.32,300.78 171.57,301.2 181.02,298.56 "
-       id="polygon12036" />
-    <line
-       x1="182.25"
-       y1="289.53"
-       x2="183.88"
-       y2="288.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12038" />
-    <line
-       x1="165.94"
-       y1="274.95001"
-       x2="164.75999"
-       y2="276.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12040" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="171.73,301.69 171.77,302.19 181.22,299.54 "
-       id="polygon12042" />
-    <line
-       x1="180.53999"
-       y1="290.85999"
-       x2="182.25"
-       y2="289.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12044" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="171.57,301.2 171.73,301.69 181.17,299.04 "
-       id="polygon12046" />
-    <line
-       x1="167.03999"
-       y1="297.42001"
-       x2="169.10001"
-       y2="296.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12048" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="126.22,199.62 126,200.07 136.38,203.21 "
-       id="polygon12050" />
-    <line
-       x1="169.10001"
-       y1="296.79001"
-       x2="171.13"
-       y2="296.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12052" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="126.36,199.13 126.22,199.62 136.6,202.77 "
-       id="polygon12054" />
-    <line
-       x1="178.77"
-       y1="292.10001"
-       x2="180.53999"
-       y2="290.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12056" />
-    <line
-       x1="171.13"
-       y1="296.06"
-       x2="173.11"
-       y2="295.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12058" />
-    <line
-       x1="173.11"
-       y1="295.23001"
-       x2="175.05"
-       y2="294.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12060" />
-    <line
-       x1="176.94"
-       y1="293.23999"
-       x2="178.77"
-       y2="292.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12062" />
-    <line
-       x1="175.05"
-       y1="294.29001"
-       x2="176.94"
-       y2="293.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12064" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="499.71,313.32 499.96,313.57 509.23,316.16 "
-       id="polygon12066" />
-    <line
-       x1="164.75999"
-       y1="276.41"
-       x2="163.5"
-       y2="277.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12068" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="500.56,310.53 500.21,310.73 509.49,313.32 "
-       id="polygon12070" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="505.72,305.74 506.07,305.69 496.36,303 "
-       id="polygon12072" />
-    <line
-       x1="163.5"
-       y1="277.79999"
-       x2="162.17"
-       y2="279.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12074" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="499.54,312.95 499.71,313.32 508.98,315.91 "
-       id="polygon12076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="500.21,310.73 499.91,311.07 509.18,313.66 "
-       id="polygon12078" />
-    <line
-       x1="162.17"
-       y1="279.13"
-       x2="160.77"
-       y2="280.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12080" />
-    <line
-       x1="121.95"
-       y1="239.66"
-       x2="121.16"
-       y2="239.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12082" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="505.38,305.95 505.72,305.74 496.02,303.05 "
-       id="polygon12084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.48,312.49 499.54,312.95 508.82,315.54 "
-       id="polygon12086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.91,311.07 499.67,311.5 508.95,314.09 "
-       id="polygon12088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.52,311.99 499.48,312.49 508.75,315.08 "
-       id="polygon12090" />
-    <line
-       x1="160.77"
-       y1="280.39001"
-       x2="159.31"
-       y2="281.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="499.67,311.5 499.52,311.99 508.8,314.58 "
-       id="polygon12094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="505.07,306.28 505.38,305.95 495.67,303.25 "
-       id="polygon12096" />
-    <line
-       x1="119.39"
-       y1="386.01999"
-       x2="119.15"
-       y2="386.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12098" />
-    <line
-       x1="159.31"
-       y1="281.57001"
-       x2="157.78999"
-       y2="282.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="504.84,306.71 505.07,306.28 495.37,303.58 "
-       id="polygon12102" />
-    <line
-       x1="138.72"
-       y1="382.29001"
-       x2="138.53"
-       y2="381.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12104" />
-    <line
-       x1="138.31"
-       y1="381.45999"
-       x2="138.08"
-       y2="381.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="504.69,307.2 504.84,306.71 495.13,304.02 "
-       id="polygon12108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="504.64,307.7 504.69,307.2 494.98,304.5 "
-       id="polygon12110" />
-    <line
-       x1="157.78999"
-       y1="282.67999"
-       x2="156.22"
-       y2="283.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12112" />
-    <line
-       x1="139.19"
-       y1="383.60001"
-       x2="139.05"
-       y2="383.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12114" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="508.61,316.45 508.96,316.39 499.48,313.75 "
-       id="polygon12116" />
-    <line
-       x1="137.55"
-       y1="380.31"
-       x2="137.25999"
-       y2="379.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12118" />
-    <line
-       x1="119.68"
-       y1="385.29999"
-       x2="119.39"
-       y2="386.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12120" />
-    <line
-       x1="139.39"
-       y1="384.5"
-       x2="139.3"
-       y2="384.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12122" />
-    <line
-       x1="136.62"
-       y1="379.29999"
-       x2="136.28"
-       y2="378.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12124" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="154.92,389.61 154.95,389.98 163.84,383.16 "
-       id="polygon12126" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="153.13,387.72 153.48,387.81 162.37,380.99 "
-       id="polygon12128" />
-    <line
-       x1="139.52"
-       y1="385.41"
-       x2="139.46001"
-       y2="384.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12130" />
-    <line
-       x1="156.22"
-       y1="283.72"
-       x2="154.61"
-       y2="284.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12132" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="508.27,316.65 508.61,316.45 499.13,313.8 "
-       id="polygon12134" />
-    <line
-       x1="135.53999"
-       y1="378.45001"
-       x2="135.14999"
-       y2="378.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12136" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="508.02,319.49 507.77,319.24 498.28,316.59 "
-       id="polygon12138" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="154.78,389.18 154.92,389.61 163.81,382.78 "
-       id="polygon12140" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="153.48,387.81 153.86,388.02 162.75,381.2 "
-       id="polygon12142" />
-    <line
-       x1="139.57001"
-       y1="386.31"
-       x2="139.55"
-       y2="385.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12144" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="154.54,388.74 154.78,389.18 163.67,382.36 "
-       id="polygon12146" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="153.86,388.02 154.22,388.34 163.11,381.52 "
-       id="polygon12148" />
-    <line
-       x1="154.61"
-       y1="284.67001"
-       x2="152.95"
-       y2="285.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12150" />
-    <line
-       x1="134.34"
-       y1="377.76999"
-       x2="133.91"
-       y2="377.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12152" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="507.96,316.98 508.27,316.65 498.79,314 "
-       id="polygon12154" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="154.22,388.34 154.54,388.74 163.43,381.92 "
-       id="polygon12156" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="503.96,308 504.27,307.66 494.57,304.96 "
-       id="polygon12158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.77,319.24 507.6,318.87 498.11,316.21 "
-       id="polygon12160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.76,310.25 503.59,309.88 493.9,307.18 "
-       id="polygon12162" />
-    <line
-       x1="120.45"
-       y1="383.88"
-       x2="120.04"
-       y2="384.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12164" />
-    <line
-       x1="133.48"
-       y1="377.44"
-       x2="133.03999"
-       y2="377.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12166" />
-    <line
-       x1="139.53999"
-       y1="387.20001"
-       x2="139.56"
-       y2="386.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.73,317.42 507.96,316.98 498.48,314.34 "
-       id="polygon12170" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="509.83,313.12 510.18,313.07 500.9,310.48 "
-       id="polygon12172" />
-    <line
-       x1="132.59"
-       y1="377.19"
-       x2="132.13"
-       y2="377.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.72,308.43 503.96,308 494.27,305.3 "
-       id="polygon12176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.6,318.87 507.54,318.41 498.05,315.75 "
-       id="polygon12178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.59,309.88 503.53,309.42 493.84,306.72 "
-       id="polygon12180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="170.37,300.55 170.66,300.58 170.66,300.27 "
-       id="polygon12182" />
-    <line
-       x1="152.95"
-       y1="285.54999"
-       x2="151.25"
-       y2="286.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.58,317.91 507.73,317.42 498.24,314.77 "
-       id="polygon12186" />
-    <line
-       x1="131.67"
-       y1="377.03"
-       x2="131.21001"
-       y2="376.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.54,318.41 507.58,317.91 498.09,315.26 "
-       id="polygon12190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.57,308.92 503.72,308.43 494.03,305.73 "
-       id="polygon12192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.53,309.42 503.57,308.92 493.88,306.22 "
-       id="polygon12194" />
-    <line
-       x1="130.74001"
-       y1="376.95999"
-       x2="130.28"
-       y2="376.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12196" />
-    <line
-       x1="129.81"
-       y1="376.98001"
-       x2="129.35001"
-       y2="377.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12198" />
-    <line
-       x1="139.45"
-       y1="388.06"
-       x2="139.50999"
-       y2="387.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12200" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="509.49,313.32 509.83,313.12 500.56,310.53 "
-       id="polygon12202" />
-    <line
-       x1="128.89"
-       y1="377.07001"
-       x2="128.02"
-       y2="377.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12204" />
-    <line
-       x1="121.44"
-       y1="382.47"
-       x2="120.92"
-       y2="383.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12206" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="509.23,316.16 508.98,315.91 499.71,313.32 "
-       id="polygon12208" />
-    <line
-       x1="151.25"
-       y1="286.34"
-       x2="149.52"
-       y2="287.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12210" />
-    <line
-       x1="128.02"
-       y1="377.42001"
-       x2="127.16"
-       y2="377.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="509.18,313.66 509.49,313.32 500.21,310.73 "
-       id="polygon12214" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="508.98,315.91 508.82,315.54 499.54,312.95 "
-       id="polygon12216" />
-    <line
-       x1="122.63"
-       y1="381.12"
-       x2="122.01"
-       y2="381.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12218" />
-    <line
-       x1="120.29"
-       y1="239.75999"
-       x2="119.34"
-       y2="239.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12220" />
-    <line
-       x1="126.32"
-       y1="378.26999"
-       x2="125.51"
-       y2="378.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12222" />
-    <line
-       x1="123.29"
-       y1="380.48001"
-       x2="122.63"
-       y2="381.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.95,314.09 509.18,313.66 499.91,311.07 "
-       id="polygon12226" />
-    <line
-       x1="125.51"
-       y1="378.76001"
-       x2="124.73"
-       y2="379.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.82,315.54 508.75,315.08 499.48,312.49 "
-       id="polygon12230" />
-    <line
-       x1="124.73"
-       y1="379.29999"
-       x2="123.99"
-       y2="379.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.8,314.58 508.95,314.09 499.67,311.5 "
-       id="polygon12234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.75,315.08 508.8,314.58 499.52,311.99 "
-       id="polygon12236" />
-    <line
-       x1="139.10001"
-       y1="389.66"
-       x2="139.21001"
-       y2="389.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12238" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="508.34,319.59 508.68,319.54 508.67,319.23 "
-       id="polygon12240" />
-    <line
-       x1="110.39"
-       y1="212.5"
-       x2="110.99"
-       y2="212.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12242" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="504.33,310.61 504.68,310.55 504.67,310.24 "
-       id="polygon12244" />
-    <line
-       x1="109.25"
-       y1="213.44"
-       x2="109.81"
-       y2="212.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12246" />
-    <line
-       x1="138.86"
-       y1="390.38"
-       x2="138.98"
-       y2="390.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12248" />
-    <line
-       x1="119.34"
-       y1="239.73"
-       x2="118.31"
-       y2="239.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12250" />
-    <line
-       x1="108.21"
-       y1="214.45"
-       x2="108.71"
-       y2="213.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12252" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="506.64,306.05 506.38,305.8 516.12,308.5 "
-       id="polygon12254" />
-    <line
-       x1="107.27"
-       y1="215.53"
-       x2="107.73"
-       y2="214.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12256" />
-    <line
-       x1="138.42"
-       y1="391.32001"
-       x2="138.57001"
-       y2="391.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12258" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="170.61,303.39 170.97,303.43 161.49,306.08 "
-       id="polygon12260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="509.42,311.99 509.59,312.36 519.69,315.18 "
-       id="polygon12262" />
-    <line
-       x1="118.31"
-       y1="239.64999"
-       x2="117.21"
-       y2="239.52"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12264" />
-    <line
-       x1="106.46"
-       y1="216.67999"
-       x2="106.85"
-       y2="216.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12266" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="506.07,305.69 505.72,305.74 515.46,308.45 "
-       id="polygon12268" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="160.25,303.28 160.51,303.01 169.98,300.36 "
-       id="polygon12270" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="171.01,300.46 170.66,300.27 161.18,302.92 "
-       id="polygon12272" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="171.29,303.3 171.54,303.04 162.07,305.69 "
-       id="polygon12274" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="114.5,195.34 114.33,195.7 124.73,198.86 "
-       id="polygon12276" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="125.17"
-       y2="193.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12278" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="171.32,300.78 171.01,300.46 161.53,303.11 "
-       id="polygon12280" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="171.54,303.04 171.71,302.65 162.23,305.3 "
-       id="polygon12282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="505.72,305.74 505.38,305.95 515.12,308.65 "
-       id="polygon12284" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="171.57,301.2 171.32,300.78 161.84,303.43 "
-       id="polygon12286" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="171.71,302.65 171.77,302.19 162.3,304.84 "
-       id="polygon12288" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="171.73,301.69 171.57,301.2 162.09,303.85 "
-       id="polygon12290" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="171.77,302.19 171.73,301.69 162.25,304.34 "
-       id="polygon12292" />
-    <line
-       x1="105.79"
-       y1="217.89"
-       x2="106.11"
-       y2="217.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="505.38,305.95 505.07,306.28 514.81,308.98 "
-       id="polygon12296" />
-    <line
-       x1="117.21"
-       y1="239.52"
-       x2="116.06"
-       y2="239.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="505.07,306.28 504.84,306.71 514.57,309.42 "
-       id="polygon12300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="504.69,307.2 504.64,307.7 514.38,310.41 "
-       id="polygon12302" />
-    <line
-       x1="105.5"
-       y1="218.50999"
-       x2="105.79"
-       y2="217.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="504.84,306.71 504.69,307.2 514.43,309.91 "
-       id="polygon12306" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="508.96,316.39 508.61,316.45 518.13,319.11 "
-       id="polygon12308" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="154.85,390.28 154.95,389.98 146.03,396.83 "
-       id="polygon12310" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="153.48,387.81 153.13,387.72 144.21,394.56 "
-       id="polygon12312" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="154.95,389.98 154.92,389.61 146,396.45 "
-       id="polygon12314" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="508.61,316.45 508.27,316.65 517.79,319.31 "
-       id="polygon12316" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="153.86,388.02 153.48,387.81 144.56,394.65 "
-       id="polygon12318" />
-    <line
-       x1="110.99"
-       y1="212.07001"
-       x2="114.99"
-       y2="196.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12320" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="504.61,307.46 504.27,307.66 513.99,310.36 "
-       id="polygon12322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.6,318.87 507.77,319.24 517.28,321.9 "
-       id="polygon12324" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="154.92,389.61 154.78,389.18 145.86,396.02 "
-       id="polygon12326" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="154.22,388.34 153.86,388.02 144.93,394.87 "
-       id="polygon12328" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="508.27,316.65 507.96,316.98 517.48,319.64 "
-       id="polygon12330" />
-    <line
-       x1="105.04"
-       y1="219.8"
-       x2="105.25"
-       y2="219.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.59,309.88 503.76,310.25 513.48,312.96 "
-       id="polygon12334" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="154.78,389.18 154.54,388.74 145.62,395.59 "
-       id="polygon12336" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="154.54,388.74 154.22,388.34 145.3,395.19 "
-       id="polygon12338" />
-    <line
-       x1="116.06"
-       y1="239.32001"
-       x2="114.85"
-       y2="239.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.54,318.41 507.6,318.87 517.11,321.53 "
-       id="polygon12342" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="504.27,307.66 503.96,308 513.68,310.7 "
-       id="polygon12344" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="510.18,313.07 509.83,313.12 519.13,315.71 "
-       id="polygon12346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.96,316.98 507.73,317.42 517.24,320.08 "
-       id="polygon12348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.58,317.91 507.54,318.41 517.05,321.07 "
-       id="polygon12350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.53,309.42 503.59,309.88 513.32,312.58 "
-       id="polygon12352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="507.73,317.42 507.58,317.91 517.09,320.57 "
-       id="polygon12354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.96,308 503.72,308.43 513.45,311.13 "
-       id="polygon12356" />
-    <line
-       x1="104.87"
-       y1="220.45"
-       x2="105.04"
-       y2="219.8"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12358" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="508.98,315.91 509.23,316.16 518.54,318.76 "
-       id="polygon12360" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="519.94,315.43 519.69,315.18 509.59,312.36 "
-       id="polygon12362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.57,308.92 503.53,309.42 513.25,312.13 "
-       id="polygon12364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="503.72,308.43 503.57,308.92 513.3,311.63 "
-       id="polygon12366" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="509.83,313.12 509.49,313.32 518.79,315.91 "
-       id="polygon12368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="519.69,315.18 519.52,314.8 509.42,311.99 "
-       id="polygon12370" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="508.82,315.54 508.98,315.91 518.29,318.51 "
-       id="polygon12372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="509.49,313.32 509.18,313.66 518.48,316.25 "
-       id="polygon12374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.75,315.08 508.82,315.54 518.12,318.13 "
-       id="polygon12376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="509.18,313.66 508.95,314.09 518.25,316.68 "
-       id="polygon12378" />
-    <line
-       x1="104.64"
-       y1="221.78999"
-       x2="104.73"
-       y2="221.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.8,314.58 508.75,315.08 518.05,317.68 "
-       id="polygon12382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="508.95,314.09 508.8,314.58 518.1,317.18 "
-       id="polygon12384" />
-    <line
-       x1="114.38"
-       y1="238.72"
-       x2="113.89"
-       y2="238.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12386" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="515.12,308.65 515.46,308.45 505.72,305.74 "
-       id="polygon12388" />
-    <line
-       x1="104.59"
-       y1="222.47"
-       x2="104.64"
-       y2="221.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.81,308.98 515.12,308.65 505.38,305.95 "
-       id="polygon12392" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="161.18,302.92 161.53,303.11 171.01,300.46 "
-       id="polygon12394" />
-    <line
-       x1="113.89"
-       y1="238.36"
-       x2="113.39"
-       y2="237.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12396" />
-    <line
-       x1="104.57"
-       y1="223.14999"
-       x2="104.59"
-       y2="222.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12398" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="162.23,305.3 162.07,305.69 171.54,303.04 "
-       id="polygon12400" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="138.42"
-       y2="391.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.57,309.42 514.81,308.98 505.07,306.28 "
-       id="polygon12404" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="161.53,303.11 161.84,303.43 171.32,300.78 "
-       id="polygon12406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.43,309.91 514.57,309.42 504.84,306.71 "
-       id="polygon12408" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="143.91,394.61 144.21,394.56 153.13,387.72 "
-       id="polygon12410" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="162.3,304.84 162.23,305.3 171.71,302.65 "
-       id="polygon12412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.38,310.41 514.43,309.91 504.69,307.2 "
-       id="polygon12414" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="115.28,194.45 115.57,194.51 115.45,194.81 "
-       id="polygon12416" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="161.84,303.43 162.09,303.85 171.57,301.2 "
-       id="polygon12418" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="162.25,304.34 162.3,304.84 171.77,302.19 "
-       id="polygon12420" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="162.09,303.85 162.25,304.34 171.73,301.69 "
-       id="polygon12422" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="517.79,319.31 518.13,319.11 508.61,316.45 "
-       id="polygon12424" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="517.53,322.15 517.28,321.9 507.77,319.24 "
-       id="polygon12426" />
-    <polygon
-       style="opacity:1;fill:#00cd00"
-       points="146,396.45 146.03,396.83 154.95,389.98 "
-       id="polygon12428" />
-    <polygon
-       style="opacity:1;fill:#008100"
-       points="144.21,394.56 144.56,394.65 153.48,387.81 "
-       id="polygon12430" />
-    <line
-       x1="104.65"
-       y1="224.52"
-       x2="104.59"
-       y2="223.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12432" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="513.74,313.21 513.48,312.96 503.76,310.25 "
-       id="polygon12434" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="517.48,319.64 517.79,319.31 508.27,316.65 "
-       id="polygon12436" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="145.86,396.02 146,396.45 154.92,389.61 "
-       id="polygon12438" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="144.56,394.65 144.93,394.87 153.86,388.02 "
-       id="polygon12440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.28,321.9 517.11,321.53 507.6,318.87 "
-       id="polygon12442" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="519.13,315.71 519.48,315.66 510.18,313.07 "
-       id="polygon12444" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="513.68,310.7 513.99,310.36 504.27,307.66 "
-       id="polygon12446" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="145.62,395.59 145.86,396.02 154.78,389.18 "
-       id="polygon12448" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="144.93,394.87 145.3,395.19 154.22,388.34 "
-       id="polygon12450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.24,320.08 517.48,319.64 507.96,316.98 "
-       id="polygon12452" />
-    <line
-       x1="112.38"
-       y1="237.14"
-       x2="111.87"
-       y2="236.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12454" />
-    <polygon
-       style="opacity:1;fill:#009300"
-       points="145.3,395.19 145.62,395.59 154.54,388.74 "
-       id="polygon12456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.11,321.53 517.05,321.07 507.54,318.41 "
-       id="polygon12458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.48,312.96 513.32,312.58 503.59,309.88 "
-       id="polygon12460" />
-    <line
-       x1="104.88"
-       y1="225.89999"
-       x2="104.75"
-       y2="225.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.09,320.57 517.24,320.08 507.73,317.42 "
-       id="polygon12464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.05,321.07 517.09,320.57 507.58,317.91 "
-       id="polygon12466" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="518.79,315.91 519.13,315.71 509.83,313.12 "
-       id="polygon12468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.45,311.13 513.68,310.7 503.96,308 "
-       id="polygon12470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.32,312.58 513.25,312.13 503.53,309.42 "
-       id="polygon12472" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="518.54,318.76 518.29,318.51 508.98,315.91 "
-       id="polygon12474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.3,311.63 513.45,311.13 503.72,308.43 "
-       id="polygon12476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.25,312.13 513.3,311.63 503.57,308.92 "
-       id="polygon12478" />
-    <line
-       x1="105.05"
-       y1="226.58"
-       x2="104.88"
-       y2="225.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.48,316.25 518.79,315.91 509.49,313.32 "
-       id="polygon12482" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="518.29,318.51 518.12,318.13 508.82,315.54 "
-       id="polygon12484" />
-    <line
-       x1="111.36"
-       y1="236.22"
-       x2="110.84"
-       y2="235.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12486" />
-    <line
-       x1="105.25"
-       y1="227.27"
-       x2="105.05"
-       y2="226.58"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.25,316.68 518.48,316.25 509.18,313.66 "
-       id="polygon12490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.12,318.13 518.05,317.68 508.75,315.08 "
-       id="polygon12492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.1,317.18 518.25,316.68 508.95,314.09 "
-       id="polygon12494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.05,317.68 518.1,317.18 508.8,314.58 "
-       id="polygon12496" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="515.8,308.39 515.46,308.45 515.47,308.76 "
-       id="polygon12498" />
-    <line
-       x1="105.76"
-       y1="228.61"
-       x2="105.49"
-       y2="227.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12500" />
-    <line
-       x1="110.34"
-       y1="235.23"
-       x2="109.84"
-       y2="234.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12502" />
-    <line
-       x1="106.39"
-       y1="229.92999"
-       x2="106.06"
-       y2="229.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12504" />
-    <line
-       x1="109.35"
-       y1="234.16"
-       x2="108.87"
-       y2="233.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12506" />
-    <line
-       x1="106.75"
-       y1="230.57001"
-       x2="106.39"
-       y2="229.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12508" />
-    <line
-       x1="108.87"
-       y1="233.60001"
-       x2="108.41"
-       y2="233.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12510" />
-    <line
-       x1="108.41"
-       y1="233.02"
-       x2="107.96"
-       y2="232.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12512" />
-    <line
-       x1="107.54"
-       y1="231.82001"
-       x2="107.13"
-       y2="231.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12514" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="519.69,315.18 519.94,315.43 530.07,318.25 "
-       id="polygon12516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="519.52,314.8 519.69,315.18 529.82,318 "
-       id="polygon12518" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="515.8,308.39 515.46,308.45 525.23,311.16 "
-       id="polygon12520" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="519.04,319.41 518.79,319.16 528.33,321.82 "
-       id="polygon12522" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="515.46,308.45 515.12,308.65 524.89,311.36 "
-       id="polygon12524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="515.12,308.65 514.81,308.98 524.58,311.7 "
-       id="polygon12526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.81,308.98 514.57,309.42 524.34,312.14 "
-       id="polygon12528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.43,309.91 514.38,310.41 524.15,313.13 "
-       id="polygon12530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="514.57,309.42 514.43,309.91 524.19,312.63 "
-       id="polygon12532" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="517.28,321.9 517.53,322.15 527.07,324.82 "
-       id="polygon12534" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="518.13,319.11 517.79,319.31 527.33,321.98 "
-       id="polygon12536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.11,321.53 517.28,321.9 526.82,324.57 "
-       id="polygon12538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="529.82,318 529.65,317.63 519.52,314.8 "
-       id="polygon12540" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="513.48,312.96 513.74,313.21 523.49,315.93 "
-       id="polygon12542" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="517.79,319.31 517.48,319.64 527.02,322.31 "
-       id="polygon12544" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="514.33,310.16 513.99,310.36 523.74,313.08 "
-       id="polygon12546" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="150.73,305.94 150.99,305.67 160.51,303.01 "
-       id="polygon12548" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="161.53,303.11 161.18,302.92 151.66,305.58 "
-       id="polygon12550" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="161.81,305.96 162.07,305.69 152.55,308.36 "
-       id="polygon12552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.05,321.07 517.11,321.53 526.65,324.2 "
-       id="polygon12554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.48,319.64 517.24,320.08 526.79,322.75 "
-       id="polygon12556" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="518.29,318.51 518.54,318.76 527.86,321.36 "
-       id="polygon12558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.32,312.58 513.48,312.96 523.23,315.68 "
-       id="polygon12560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.09,320.57 517.05,321.07 526.59,323.74 "
-       id="polygon12562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="517.24,320.08 517.09,320.57 526.63,323.24 "
-       id="polygon12564" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="161.84,303.43 161.53,303.11 152.02,305.77 "
-       id="polygon12566" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="513.99,310.36 513.68,310.7 523.44,313.41 "
-       id="polygon12568" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="162.07,305.69 162.23,305.3 152.72,307.97 "
-       id="polygon12570" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="519.13,315.71 518.79,315.91 528.12,318.52 "
-       id="polygon12572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.25,312.13 513.32,312.58 523.07,315.3 "
-       id="polygon12574" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="162.09,303.85 161.84,303.43 152.33,306.09 "
-       id="polygon12576" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="162.23,305.3 162.3,304.84 152.79,307.5 "
-       id="polygon12578" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="518.12,318.13 518.29,318.51 527.61,321.11 "
-       id="polygon12580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.68,310.7 513.45,311.13 523.2,313.85 "
-       id="polygon12582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.3,311.63 513.25,312.13 523,314.84 "
-       id="polygon12584" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="162.25,304.34 162.09,303.85 152.58,306.51 "
-       id="polygon12586" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="162.3,304.84 162.25,304.34 152.73,307 "
-       id="polygon12588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="513.45,311.13 513.3,311.63 523.05,314.34 "
-       id="polygon12590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.79,315.91 518.48,316.25 527.81,318.85 "
-       id="polygon12592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.05,317.68 518.12,318.13 527.45,320.74 "
-       id="polygon12594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.48,316.25 518.25,316.68 527.57,319.29 "
-       id="polygon12596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.1,317.18 518.05,317.68 527.38,320.28 "
-       id="polygon12598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="518.25,316.68 518.1,317.18 527.43,319.78 "
-       id="polygon12600" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="524.89,311.36 525.23,311.16 515.46,308.45 "
-       id="polygon12602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.58,311.7 524.89,311.36 515.12,308.65 "
-       id="polygon12604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.34,312.14 524.58,311.7 514.81,308.98 "
-       id="polygon12606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.19,312.63 524.34,312.14 514.57,309.42 "
-       id="polygon12608" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.15,313.13 524.19,312.63 514.43,309.91 "
-       id="polygon12610" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="527.33,321.98 527.67,321.77 518.13,319.11 "
-       id="polygon12612" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="527.07,324.82 526.82,324.57 517.28,321.9 "
-       id="polygon12614" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="527.02,322.31 527.33,321.98 517.79,319.31 "
-       id="polygon12616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.82,324.57 526.65,324.2 517.11,321.53 "
-       id="polygon12618" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="523.49,315.93 523.23,315.68 513.48,312.96 "
-       id="polygon12620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.79,322.75 527.02,322.31 517.48,319.64 "
-       id="polygon12622" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="528.12,318.52 528.46,318.31 519.13,315.71 "
-       id="polygon12624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.65,324.2 526.59,323.74 517.05,321.07 "
-       id="polygon12626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.63,323.24 526.79,322.75 517.24,320.08 "
-       id="polygon12628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.59,323.74 526.63,323.24 517.09,320.57 "
-       id="polygon12630" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="523.44,313.41 523.74,313.08 513.99,310.36 "
-       id="polygon12632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.23,315.68 523.07,315.3 513.32,312.58 "
-       id="polygon12634" />
-    <polygon
-       style="opacity:1;fill:#009400"
-       points="151.31,305.55 151.66,305.58 161.18,302.92 "
-       id="polygon12636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.81,318.85 528.12,318.52 518.79,315.91 "
-       id="polygon12638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.2,313.85 523.44,313.41 513.68,310.7 "
-       id="polygon12640" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="152.55,308.36 152.3,308.63 161.81,305.96 "
-       id="polygon12642" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="527.61,321.11 527.45,320.74 518.12,318.13 "
-       id="polygon12644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.07,315.3 523,314.84 513.25,312.13 "
-       id="polygon12646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.05,314.34 523.2,313.85 513.45,311.13 "
-       id="polygon12648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523,314.84 523.05,314.34 513.3,311.63 "
-       id="polygon12650" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="151.66,305.58 152.02,305.77 161.53,303.11 "
-       id="polygon12652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.57,319.29 527.81,318.85 518.48,316.25 "
-       id="polygon12654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.45,320.74 527.38,320.28 518.05,317.68 "
-       id="polygon12656" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="152.72,307.97 152.55,308.36 162.07,305.69 "
-       id="polygon12658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.43,319.78 527.57,319.29 518.25,316.68 "
-       id="polygon12660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.38,320.28 527.43,319.78 518.1,317.18 "
-       id="polygon12662" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="152.02,305.77 152.33,306.09 161.84,303.43 "
-       id="polygon12664" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="152.79,307.5 152.72,307.97 162.23,305.3 "
-       id="polygon12666" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="152.33,306.09 152.58,306.51 162.09,303.85 "
-       id="polygon12668" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="152.73,307 152.79,307.5 162.3,304.84 "
-       id="polygon12670" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="152.58,306.51 152.73,307 162.25,304.34 "
-       id="polygon12672" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="528.75,318.58 528.47,318.62 528.46,318.31 "
-       id="polygon12674" />
-    <line
-       x1="529.65997"
-       y1="318.20999"
-       x2="529.65997"
-       y2="318.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12676" />
-    <line
-       x1="153.28999"
-       y1="303.42001"
-       x2="141.21001"
-       y2="308.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12678" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="526.14,311.46 525.89,311.21 535.69,313.94 "
-       id="polygon12680" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="540.47,321.02 540.13,321.07 530.38,318.36 "
-       id="polygon12682" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="529.82,318 530.07,318.25 539.81,320.96 "
-       id="polygon12684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="529.65,317.63 529.82,318 539.55,320.71 "
-       id="polygon12686" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="525.57,311.11 525.23,311.16 535.03,313.88 "
-       id="polygon12688" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="525.23,311.16 524.89,311.36 534.68,314.09 "
-       id="polygon12690" />
-    <line
-       x1="134.63"
-       y1="309.32999"
-       x2="133.88"
-       y2="310.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12692" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="528.02,321.72 527.67,321.77 537.24,324.45 "
-       id="polygon12694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.89,311.36 524.58,311.7 534.38,314.43 "
-       id="polygon12696" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="526.82,324.57 527.07,324.82 536.64,327.5 "
-       id="polygon12698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.58,311.7 524.34,312.14 534.14,314.86 "
-       id="polygon12700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.19,312.63 524.15,313.13 533.95,315.85 "
-       id="polygon12702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="524.34,312.14 524.19,312.63 533.99,315.35 "
-       id="polygon12704" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="527.67,321.77 527.33,321.98 536.9,324.65 "
-       id="polygon12706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.65,324.2 526.82,324.57 536.39,327.25 "
-       id="polygon12708" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="527.33,321.98 527.02,322.31 536.59,324.99 "
-       id="polygon12710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.59,323.74 526.65,324.2 536.23,326.88 "
-       id="polygon12712" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="538.27,324.14 537.92,324.19 528.18,321.47 "
-       id="polygon12714" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="527.61,321.11 527.86,321.36 537.61,324.09 "
-       id="polygon12716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.02,322.31 526.79,322.75 536.36,325.43 "
-       id="polygon12718" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="524.09,312.88 523.74,313.08 533.53,315.8 "
-       id="polygon12720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.63,323.24 526.59,323.74 536.16,326.42 "
-       id="polygon12722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="526.79,322.75 526.63,323.24 536.21,325.92 "
-       id="polygon12724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.07,315.3 523.23,315.68 533.02,318.4 "
-       id="polygon12726" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="527.45,320.74 527.61,321.11 537.35,323.83 "
-       id="polygon12728" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="523.74,313.08 523.44,313.41 533.22,316.14 "
-       id="polygon12730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="528.12,318.52 527.81,318.85 537.55,321.57 "
-       id="polygon12732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523,314.84 523.07,315.3 532.85,318.03 "
-       id="polygon12734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.38,320.28 527.45,320.74 537.19,323.46 "
-       id="polygon12736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.44,313.41 523.2,313.85 532.98,316.57 "
-       id="polygon12738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.81,318.85 527.57,319.29 537.32,322 "
-       id="polygon12740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.05,314.34 523,314.84 532.79,317.57 "
-       id="polygon12742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="523.2,313.85 523.05,314.34 532.83,317.07 "
-       id="polygon12744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.43,319.78 527.38,320.28 537.12,323 "
-       id="polygon12746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="527.57,319.29 527.43,319.78 537.17,322.5 "
-       id="polygon12748" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="539.81,320.96 539.55,320.71 529.82,318 "
-       id="polygon12750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="539.55,320.71 539.39,320.34 529.65,317.63 "
-       id="polygon12752" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="534.68,314.09 535.03,313.88 525.23,311.16 "
-       id="polygon12754" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="152.02,305.77 151.66,305.58 142.12,308.25 "
-       id="polygon12756" />
-    <line
-       x1="167.03999"
-       y1="297.42001"
-       x2="153.28999"
-       y2="303.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12758" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="152.3,308.63 152.55,308.36 143,311.03 "
-       id="polygon12760" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="152.33,306.09 152.02,305.77 142.47,308.43 "
-       id="polygon12762" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="152.55,308.36 152.72,307.97 143.17,310.64 "
-       id="polygon12764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="534.38,314.43 534.68,314.09 524.89,311.36 "
-       id="polygon12766" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="533.93,318.7 533.59,318.76 523.8,316.03 "
-       id="polygon12768" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="152.58,306.51 152.33,306.09 142.78,308.76 "
-       id="polygon12770" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="152.72,307.97 152.79,307.5 143.23,310.18 "
-       id="polygon12772" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="536.9,324.65 537.24,324.45 527.67,321.77 "
-       id="polygon12774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="534.14,314.86 534.38,314.43 524.58,311.7 "
-       id="polygon12776" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="152.73,307 152.58,306.51 143.03,309.18 "
-       id="polygon12778" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="152.79,307.5 152.73,307 143.19,309.67 "
-       id="polygon12780" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="536.64,327.5 536.39,327.25 526.82,324.57 "
-       id="polygon12782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="533.99,315.35 534.14,314.86 524.34,312.14 "
-       id="polygon12784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="533.95,315.85 533.99,315.35 524.19,312.63 "
-       id="polygon12786" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="538.2,321.03 538.55,320.98 528.81,318.26 "
-       id="polygon12788" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="536.59,324.99 536.9,324.65 527.33,321.98 "
-       id="polygon12790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.39,327.25 536.23,326.88 526.65,324.2 "
-       id="polygon12792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.36,325.43 536.59,324.99 527.02,322.31 "
-       id="polygon12794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.23,326.88 536.16,326.42 526.59,323.74 "
-       id="polygon12796" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="537.86,321.23 538.2,321.03 528.46,318.31 "
-       id="polygon12798" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="533.27,318.65 533.02,318.4 523.23,315.68 "
-       id="polygon12800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.21,325.92 536.36,325.43 526.79,322.75 "
-       id="polygon12802" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="537.61,324.09 537.35,323.83 527.61,321.11 "
-       id="polygon12804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.16,326.42 536.21,325.92 526.63,323.24 "
-       id="polygon12806" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="533.22,316.14 533.53,315.8 523.74,313.08 "
-       id="polygon12808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.55,321.57 537.86,321.23 528.12,318.52 "
-       id="polygon12810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="533.02,318.4 532.85,318.03 523.07,315.3 "
-       id="polygon12812" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="537.35,323.83 537.19,323.46 527.45,320.74 "
-       id="polygon12814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.98,316.57 533.22,316.14 523.44,313.41 "
-       id="polygon12816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.32,322 537.55,321.57 527.81,318.85 "
-       id="polygon12818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.85,318.03 532.79,317.57 523,314.84 "
-       id="polygon12820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.19,323.46 537.12,323 527.38,320.28 "
-       id="polygon12822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.83,317.07 532.98,316.57 523.2,313.85 "
-       id="polygon12824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.79,317.57 532.83,317.07 523.05,314.34 "
-       id="polygon12826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.17,322.5 537.32,322 527.57,319.29 "
-       id="polygon12828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.12,323 537.17,322.5 527.43,319.78 "
-       id="polygon12830" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="539.39,320.34 539.55,320.71 539.73,320.46 "
-       id="polygon12832" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="537.24,324.45 537.59,324.39 537.52,324.71 "
-       id="polygon12834" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="143,311.03 142.75,311.3 152.3,308.63 "
-       id="polygon12836" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="142.12,308.25 142.47,308.43 152.02,305.77 "
-       id="polygon12838" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="143.17,310.64 143,311.03 152.55,308.36 "
-       id="polygon12840" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="142.47,308.43 142.78,308.76 152.33,306.09 "
-       id="polygon12842" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="143.23,310.18 143.17,310.64 152.72,307.97 "
-       id="polygon12844" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="142.78,308.76 143.03,309.18 152.58,306.51 "
-       id="polygon12846" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="143.19,309.67 143.23,310.18 152.79,307.5 "
-       id="polygon12848" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="143.03,309.18 143.19,309.67 152.73,307 "
-       id="polygon12850" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="539.55,320.71 539.81,320.96 549.58,323.69 "
-       id="polygon12852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="539.39,320.34 539.55,320.71 549.33,323.44 "
-       id="polygon12854" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="535.37,313.83 535.03,313.88 544.86,316.61 "
-       id="polygon12856" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="535.03,313.88 534.68,314.09 544.51,316.82 "
-       id="polygon12858" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="539.12,321.33 538.86,321.08 548.63,323.8 "
-       id="polygon12860" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="536.39,327.25 536.64,327.5 546.24,330.19 "
-       id="polygon12862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="534.68,314.09 534.38,314.43 544.21,317.16 "
-       id="polygon12864" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="537.24,324.45 536.9,324.65 546.5,327.34 "
-       id="polygon12866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="534.38,314.43 534.14,314.86 543.97,317.59 "
-       id="polygon12868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="533.99,315.35 533.95,315.85 543.77,318.59 "
-       id="polygon12870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.23,326.88 536.39,327.25 545.99,329.94 "
-       id="polygon12872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="534.14,314.86 533.99,315.35 543.82,318.09 "
-       id="polygon12874" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="536.9,324.65 536.59,324.99 546.2,327.67 "
-       id="polygon12876" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="538.55,320.98 538.2,321.03 547.98,323.75 "
-       id="polygon12878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.16,326.42 536.23,326.88 545.82,329.56 "
-       id="polygon12880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.59,324.99 536.36,325.43 545.96,328.11 "
-       id="polygon12882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="549.33,323.44 549.16,323.06 539.39,320.34 "
-       id="polygon12884" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="533.02,318.4 533.27,318.65 543.09,321.39 "
-       id="polygon12886" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="537.35,323.83 537.61,324.09 547.38,326.81 "
-       id="polygon12888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.21,325.92 536.16,326.42 545.76,329.1 "
-       id="polygon12890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="536.36,325.43 536.21,325.92 545.8,328.6 "
-       id="polygon12892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="142.78,308.76 142.47,308.43 142.39,308.71 "
-       id="polygon12894" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="538.2,321.03 537.86,321.23 547.63,323.96 "
-       id="polygon12896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.85,318.03 533.02,318.4 542.83,321.13 "
-       id="polygon12898" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="537.19,323.46 537.35,323.83 547.13,326.56 "
-       id="polygon12900" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="533.53,315.8 533.22,316.14 543.04,318.87 "
-       id="polygon12902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.86,321.23 537.55,321.57 547.33,324.3 "
-       id="polygon12904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.79,317.57 532.85,318.03 542.66,320.76 "
-       id="polygon12906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.12,323 537.19,323.46 546.96,326.19 "
-       id="polygon12908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="533.22,316.14 532.98,316.57 542.8,319.3 "
-       id="polygon12910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.55,321.57 537.32,322 547.09,324.73 "
-       id="polygon12912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.83,317.07 532.79,317.57 542.6,320.3 "
-       id="polygon12914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.17,322.5 537.12,323 546.89,325.73 "
-       id="polygon12916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="532.98,316.57 532.83,317.07 542.65,319.8 "
-       id="polygon12918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="537.32,322 537.17,322.5 546.94,325.23 "
-       id="polygon12920" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="544.86,316.61 545.2,316.56 535.37,313.83 "
-       id="polygon12922" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="546.84,327.13 547.19,327.07 537.59,324.39 "
-       id="polygon12924" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="544.51,316.82 544.86,316.61 535.03,313.88 "
-       id="polygon12926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="544.21,317.16 544.51,316.82 534.68,314.09 "
-       id="polygon12928" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="546.5,327.34 546.84,327.13 537.24,324.45 "
-       id="polygon12930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.97,317.59 544.21,317.16 534.38,314.43 "
-       id="polygon12932" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="546.2,327.67 546.5,327.34 536.9,324.65 "
-       id="polygon12934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.82,318.09 543.97,317.59 534.14,314.86 "
-       id="polygon12936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.77,318.59 543.82,318.09 533.99,315.35 "
-       id="polygon12938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.99,329.94 545.82,329.56 536.23,326.88 "
-       id="polygon12940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.96,328.11 546.2,327.67 536.59,324.99 "
-       id="polygon12942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.82,329.56 545.76,329.1 536.16,326.42 "
-       id="polygon12944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.8,328.6 545.96,328.11 536.36,325.43 "
-       id="polygon12946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.76,329.1 545.8,328.6 536.21,325.92 "
-       id="polygon12948" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="547.63,323.96 547.98,323.75 538.2,321.03 "
-       id="polygon12950" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="543.09,321.39 542.83,321.13 533.02,318.4 "
-       id="polygon12952" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="547.38,326.81 547.13,326.56 537.35,323.83 "
-       id="polygon12954" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="543.04,318.87 543.34,318.53 533.53,315.8 "
-       id="polygon12956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="547.33,324.3 547.63,323.96 537.86,321.23 "
-       id="polygon12958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.83,321.13 542.66,320.76 532.85,318.03 "
-       id="polygon12960" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="131.79,311.53 131.65,311.84 141.23,309.16 "
-       id="polygon12962" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="141.21001"
-       y2="308.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12964" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="131.6,311.29 131.86,311.02 141.45,308.34 "
-       id="polygon12966" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="142.47,308.43 142.12,308.25 132.53,310.93 "
-       id="polygon12968" />
-    <line
-       x1="149.52"
-       y1="287.04999"
-       x2="134.63"
-       y2="309.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.8,319.3 543.04,318.87 533.22,316.14 "
-       id="polygon12972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="547.09,324.73 547.33,324.3 537.55,321.57 "
-       id="polygon12974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.66,320.76 542.6,320.3 532.79,317.57 "
-       id="polygon12976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.96,326.19 546.89,325.73 537.12,323 "
-       id="polygon12978" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="133.75999"
-       y2="310.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12980" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="142.78,308.76 142.47,308.43 132.88,311.11 "
-       id="polygon12982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.65,319.8 542.8,319.3 532.98,316.57 "
-       id="polygon12984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.94,325.23 547.09,324.73 537.32,322 "
-       id="polygon12986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.6,320.3 542.65,319.8 532.83,317.07 "
-       id="polygon12988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.89,325.73 546.94,325.23 537.17,322.5 "
-       id="polygon12990" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="549.33,323.44 549.58,323.69 549.71,323.39 "
-       id="polygon12992" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="143.03,309.18 142.78,308.76 133.2,311.44 "
-       id="polygon12994" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="143.17,310.64 143.23,310.18 133.65,312.86 "
-       id="polygon12996" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="143.19,309.67 143.03,309.18 133.45,311.87 "
-       id="polygon12998" />
-    <polygon
-       style="opacity:1;fill:#00b800"
-       points="143.23,310.18 143.19,309.67 133.6,312.36 "
-       id="polygon13000" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="543.34,318.53 543.68,318.32 543.69,318.64 "
-       id="polygon13002" />
-    <line
-       x1="133.75999"
-       y1="310.63"
-       x2="133.75999"
-       y2="310.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13004" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="545.77,316.92 545.52,316.67 555.37,319.41 "
-       id="polygon13006" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="549.33,323.44 549.58,323.69 559.38,326.42 "
-       id="polygon13008" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="132.53,310.93 132.88,311.11 142.47,308.43 "
-       id="polygon13010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="549.16,323.06 549.33,323.44 559.13,326.17 "
-       id="polygon13012" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="132.88,311.11 133.2,311.44 142.78,308.76 "
-       id="polygon13014" />
-    <polygon
-       style="opacity:1;fill:#00bf00"
-       points="133.65,312.86 133.59,313.33 143.17,310.64 "
-       id="polygon13016" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="133.2,311.44 133.45,311.87 143.03,309.18 "
-       id="polygon13018" />
-    <polygon
-       style="opacity:1;fill:#00ab00"
-       points="133.45,311.87 133.6,312.36 143.19,309.67 "
-       id="polygon13020" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="547.19,327.07 546.84,327.13 556.47,329.82 "
-       id="polygon13022" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="544.86,316.61 544.51,316.82 554.37,319.56 "
-       id="polygon13024" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="556.53,332.93 556.19,332.99 546.56,330.29 "
-       id="polygon13026" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="545.99,329.94 546.24,330.19 555.87,332.88 "
-       id="polygon13028" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="546.84,327.13 546.5,327.34 556.13,330.02 "
-       id="polygon13030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="544.51,316.82 544.21,317.16 554.07,319.9 "
-       id="polygon13032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.82,329.56 545.99,329.94 555.62,332.63 "
-       id="polygon13034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="544.21,317.16 543.97,317.59 553.83,320.33 "
-       id="polygon13036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="546.5,327.34 546.2,327.67 555.82,330.36 "
-       id="polygon13038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.82,318.09 543.77,318.59 553.63,321.33 "
-       id="polygon13040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.97,317.59 543.82,318.09 553.68,320.83 "
-       id="polygon13042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.76,329.1 545.82,329.56 555.45,332.26 "
-       id="polygon13044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.2,327.67 545.96,328.11 555.59,330.8 "
-       id="polygon13046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.8,328.6 545.76,329.1 555.39,331.8 "
-       id="polygon13048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="545.96,328.11 545.8,328.6 555.44,331.3 "
-       id="polygon13050" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="547.13,326.56 547.38,326.81 557.18,329.55 "
-       id="polygon13052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="559.13,326.17 558.96,325.79 549.16,323.06 "
-       id="polygon13054" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="542.83,321.13 543.09,321.39 552.93,324.13 "
-       id="polygon13056" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="547.98,323.75 547.63,323.96 557.43,326.69 "
-       id="polygon13058" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="543.68,318.32 543.34,318.53 553.19,321.27 "
-       id="polygon13060" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="546.96,326.19 547.13,326.56 556.93,329.3 "
-       id="polygon13062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.66,320.76 542.83,321.13 552.68,323.88 "
-       id="polygon13064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="547.63,323.96 547.33,324.3 557.13,327.03 "
-       id="polygon13066" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="543.34,318.53 543.04,318.87 552.88,321.61 "
-       id="polygon13068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.89,325.73 546.96,326.19 556.76,328.93 "
-       id="polygon13070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.6,320.3 542.66,320.76 552.51,323.5 "
-       id="polygon13072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="547.33,324.3 547.09,324.73 556.89,327.47 "
-       id="polygon13074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="543.04,318.87 542.8,319.3 552.64,322.04 "
-       id="polygon13076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="546.94,325.23 546.89,325.73 556.7,328.46 "
-       id="polygon13078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.65,319.8 542.6,320.3 552.45,323.04 "
-       id="polygon13080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="547.09,324.73 546.94,325.23 556.74,327.96 "
-       id="polygon13082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="542.8,319.3 542.65,319.8 552.49,322.54 "
-       id="polygon13084" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="559.38,326.42 559.13,326.17 549.33,323.44 "
-       id="polygon13086" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="556.47,329.82 556.82,329.77 547.19,327.07 "
-       id="polygon13088" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="554.37,319.56 554.71,319.35 544.86,316.61 "
-       id="polygon13090" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="556.13,330.02 556.47,329.82 546.84,327.13 "
-       id="polygon13092" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="555.87,332.88 555.62,332.63 545.99,329.94 "
-       id="polygon13094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="554.07,319.9 554.37,319.56 544.51,316.82 "
-       id="polygon13096" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="555.82,330.36 556.13,330.02 546.5,327.34 "
-       id="polygon13098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.62,332.63 555.45,332.26 545.82,329.56 "
-       id="polygon13100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="553.83,320.33 554.07,319.9 544.21,317.16 "
-       id="polygon13102" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="557.78,326.48 558.12,326.43 548.32,323.7 "
-       id="polygon13104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="553.68,320.83 553.83,320.33 543.97,317.59 "
-       id="polygon13106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="553.63,321.33 553.68,320.83 543.82,318.09 "
-       id="polygon13108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.59,330.8 555.82,330.36 546.2,327.67 "
-       id="polygon13110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.45,332.26 555.39,331.8 545.76,329.1 "
-       id="polygon13112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.44,331.3 555.59,330.8 545.96,328.11 "
-       id="polygon13114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.39,331.8 555.44,331.3 545.8,328.6 "
-       id="polygon13116" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="557.43,326.69 557.78,326.48 547.98,323.75 "
-       id="polygon13118" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="552.93,324.13 552.68,323.88 542.83,321.13 "
-       id="polygon13120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="557.13,327.03 557.43,326.69 547.63,323.96 "
-       id="polygon13122" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="552.88,321.61 553.19,321.27 543.34,318.53 "
-       id="polygon13124" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="556.93,329.3 556.76,328.93 546.96,326.19 "
-       id="polygon13126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.68,323.88 552.51,323.5 542.66,320.76 "
-       id="polygon13128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.89,327.47 557.13,327.03 547.33,324.3 "
-       id="polygon13130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.64,322.04 552.88,321.61 543.04,318.87 "
-       id="polygon13132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.76,328.93 556.7,328.46 546.89,325.73 "
-       id="polygon13134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.51,323.5 552.45,323.04 542.6,320.3 "
-       id="polygon13136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.74,327.96 556.89,327.47 547.09,324.73 "
-       id="polygon13138" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.7,328.46 556.74,327.96 546.94,325.23 "
-       id="polygon13140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.49,322.54 552.64,322.04 542.8,319.3 "
-       id="polygon13142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.45,323.04 552.49,322.54 542.65,319.8 "
-       id="polygon13144" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="554.71,319.35 554.37,319.56 554.45,319.83 "
-       id="polygon13146" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="557.18,329.55 557.49,329.66 557.55,329.33 "
-       id="polygon13148" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="559.13,326.17 559.38,326.42 569.21,329.16 "
-       id="polygon13150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="558.96,325.79 559.13,326.17 568.96,328.91 "
-       id="polygon13152" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="555.06,319.3 554.71,319.35 564.61,322.1 "
-       id="polygon13154" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="556.82,329.77 556.47,329.82 566.13,332.52 "
-       id="polygon13156" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="555.62,332.63 555.87,332.88 565.53,335.59 "
-       id="polygon13158" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="554.71,319.35 554.37,319.56 564.26,322.31 "
-       id="polygon13160" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="556.47,329.82 556.13,330.02 565.79,332.72 "
-       id="polygon13162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.45,332.26 555.62,332.63 565.28,335.34 "
-       id="polygon13164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="554.37,319.56 554.07,319.9 563.96,322.64 "
-       id="polygon13166" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="556.13,330.02 555.82,330.36 565.48,333.06 "
-       id="polygon13168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.39,331.8 555.45,332.26 565.11,334.96 "
-       id="polygon13170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="554.07,319.9 553.83,320.33 563.71,323.08 "
-       id="polygon13172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.82,330.36 555.59,330.8 565.25,333.5 "
-       id="polygon13174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="553.68,320.83 553.63,321.33 563.52,324.08 "
-       id="polygon13176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="553.83,320.33 553.68,320.83 563.57,323.58 "
-       id="polygon13178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.44,331.3 555.39,331.8 565.05,334.5 "
-       id="polygon13180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="555.59,330.8 555.44,331.3 565.09,334 "
-       id="polygon13182" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="558.12,326.43 557.78,326.48 567.61,329.23 "
-       id="polygon13184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="568.96,328.91 568.79,328.53 558.96,325.79 "
-       id="polygon13186" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="552.68,323.88 552.93,324.13 562.8,326.88 "
-       id="polygon13188" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="557.78,326.48 557.43,326.69 567.27,329.43 "
-       id="polygon13190" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="556.76,328.93 556.93,329.3 566.76,332.05 "
-       id="polygon13192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.51,323.5 552.68,323.88 562.55,326.63 "
-       id="polygon13194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="557.43,326.69 557.13,327.03 566.96,329.77 "
-       id="polygon13196" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="553.19,321.27 552.88,321.61 562.75,324.36 "
-       id="polygon13198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.7,328.46 556.76,328.93 566.59,331.67 "
-       id="polygon13200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.45,323.04 552.51,323.5 562.38,326.25 "
-       id="polygon13202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="557.13,327.03 556.89,327.47 566.72,330.21 "
-       id="polygon13204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.88,321.61 552.64,322.04 562.52,324.79 "
-       id="polygon13206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.74,327.96 556.7,328.46 566.53,331.21 "
-       id="polygon13208" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="556.89,327.47 556.74,327.96 566.57,330.71 "
-       id="polygon13210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.49,322.54 552.45,323.04 562.32,325.79 "
-       id="polygon13212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="552.64,322.04 552.49,322.54 562.37,325.29 "
-       id="polygon13214" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="569.21,329.16 568.96,328.91 559.13,326.17 "
-       id="polygon13216" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="565.79,332.72 566.13,332.52 556.47,329.82 "
-       id="polygon13218" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="564.26,322.31 564.61,322.1 554.71,319.35 "
-       id="polygon13220" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="565.48,333.06 565.79,332.72 556.13,330.02 "
-       id="polygon13222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.96,322.64 564.26,322.31 554.37,319.56 "
-       id="polygon13224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.28,335.34 565.11,334.96 555.45,332.26 "
-       id="polygon13226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.25,333.5 565.48,333.06 555.82,330.36 "
-       id="polygon13228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.71,323.08 563.96,322.64 554.07,319.9 "
-       id="polygon13230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.11,334.96 565.05,334.5 555.39,331.8 "
-       id="polygon13232" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="567.61,329.23 567.95,329.17 558.12,326.43 "
-       id="polygon13234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.09,334 565.25,333.5 555.59,330.8 "
-       id="polygon13236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.05,334.5 565.09,334 555.44,331.3 "
-       id="polygon13238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.57,323.58 563.71,323.08 553.83,320.33 "
-       id="polygon13240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.52,324.08 563.57,323.58 553.68,320.83 "
-       id="polygon13242" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="567.27,329.43 567.61,329.23 557.78,326.48 "
-       id="polygon13244" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="567.01,332.3 566.76,332.05 556.93,329.3 "
-       id="polygon13246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.96,329.77 567.27,329.43 557.43,326.69 "
-       id="polygon13248" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="566.76,332.05 566.59,331.67 556.76,328.93 "
-       id="polygon13250" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="562.75,324.36 563.06,324.02 553.19,321.27 "
-       id="polygon13252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.55,326.63 562.38,326.25 552.51,323.5 "
-       id="polygon13254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.72,330.21 566.96,329.77 557.13,327.03 "
-       id="polygon13256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.59,331.67 566.53,331.21 556.7,328.46 "
-       id="polygon13258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.52,324.79 562.75,324.36 552.88,321.61 "
-       id="polygon13260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.38,326.25 562.32,325.79 552.45,323.04 "
-       id="polygon13262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.57,330.71 566.72,330.21 556.89,327.47 "
-       id="polygon13264" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.53,331.21 566.57,330.71 556.74,327.96 "
-       id="polygon13266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.37,325.29 562.52,324.79 552.64,322.04 "
-       id="polygon13268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.32,325.79 562.37,325.29 552.49,322.54 "
-       id="polygon13270" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="566.48,332.46 566.79,332.57 566.66,332.87 "
-       id="polygon13272" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="565.53,335.59 565.28,335.34 565.45,335.09 "
-       id="polygon13274" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="562.55,326.63 562.38,326.25 562.59,326.08 "
-       id="polygon13276" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="565.52,322.41 565.26,322.15 575.18,324.91 "
-       id="polygon13278" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="568.96,328.91 569.21,329.16 579.07,331.91 "
-       id="polygon13280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="568.79,328.53 568.96,328.91 578.82,331.66 "
-       id="polygon13282" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="565.28,335.34 565.53,335.59 575.22,338.3 "
-       id="polygon13284" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="568.52,329.53 568.27,329.28 578.13,332.03 "
-       id="polygon13286" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="564.61,322.1 564.26,322.31 574.18,325.06 "
-       id="polygon13288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.11,334.96 565.28,335.34 574.96,338.05 "
-       id="polygon13290" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="565.79,332.72 565.48,333.06 575.17,335.77 "
-       id="polygon13292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.05,334.5 565.11,334.96 574.8,337.67 "
-       id="polygon13294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="564.26,322.31 563.96,322.64 573.88,325.4 "
-       id="polygon13296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.48,333.06 565.25,333.5 574.93,336.21 "
-       id="polygon13298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.09,334 565.05,334.5 574.74,337.21 "
-       id="polygon13300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="565.25,333.5 565.09,334 574.79,336.71 "
-       id="polygon13302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.96,322.64 563.71,323.08 573.64,325.84 "
-       id="polygon13304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.57,323.58 563.52,324.08 573.44,326.84 "
-       id="polygon13306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="563.71,323.08 563.57,323.58 573.49,326.34 "
-       id="polygon13308" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="566.76,332.05 567.01,332.3 576.87,335.05 "
-       id="polygon13310" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="567.61,329.23 567.27,329.43 577.13,332.18 "
-       id="polygon13312" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="563.4,323.81 563.06,324.02 572.97,326.77 "
-       id="polygon13314" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="566.59,331.67 566.76,332.05 576.62,334.8 "
-       id="polygon13316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.38,326.25 562.55,326.63 572.46,329.39 "
-       id="polygon13318" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="567.27,329.43 566.96,329.77 576.82,332.52 "
-       id="polygon13320" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="563.06,324.02 562.75,324.36 572.66,327.11 "
-       id="polygon13322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.53,331.21 566.59,331.67 576.45,334.43 "
-       id="polygon13324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.96,329.77 566.72,330.21 576.59,332.96 "
-       id="polygon13326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.32,325.79 562.38,326.25 572.29,329.01 "
-       id="polygon13328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.57,330.71 566.53,331.21 576.39,333.96 "
-       id="polygon13330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="566.72,330.21 566.57,330.71 576.44,333.46 "
-       id="polygon13332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.75,324.36 562.52,324.79 572.42,327.55 "
-       id="polygon13334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.37,325.29 562.32,325.79 572.23,328.55 "
-       id="polygon13336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="562.52,324.79 562.37,325.29 572.27,328.05 "
-       id="polygon13338" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="579.07,331.91 578.82,331.66 568.96,328.91 "
-       id="polygon13340" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="575.82,335.23 576.16,335.17 566.48,332.46 "
-       id="polygon13342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="578.82,331.66 578.66,331.28 568.79,328.53 "
-       id="polygon13344" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="574.52,324.86 574.87,324.8 564.95,322.05 "
-       id="polygon13346" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="575.48,335.43 575.82,335.23 566.13,332.52 "
-       id="polygon13348" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="574.18,325.06 574.52,324.86 564.61,322.1 "
-       id="polygon13350" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="575.17,335.77 575.48,335.43 565.79,332.72 "
-       id="polygon13352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.96,338.05 574.8,337.67 565.11,334.96 "
-       id="polygon13354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.88,325.4 574.18,325.06 564.26,322.31 "
-       id="polygon13356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.93,336.21 575.17,335.77 565.48,333.06 "
-       id="polygon13358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.8,337.67 574.74,337.21 565.05,334.5 "
-       id="polygon13360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.79,336.71 574.93,336.21 565.25,333.5 "
-       id="polygon13362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.74,337.21 574.79,336.71 565.09,334 "
-       id="polygon13364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.64,325.84 573.88,325.4 563.96,322.64 "
-       id="polygon13366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.49,326.34 573.64,325.84 563.71,323.08 "
-       id="polygon13368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.44,326.84 573.49,326.34 563.57,323.58 "
-       id="polygon13370" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="577.13,332.18 577.47,331.98 567.61,329.23 "
-       id="polygon13372" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="576.87,335.05 576.62,334.8 566.76,332.05 "
-       id="polygon13374" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="572.71,329.64 572.46,329.39 562.55,326.63 "
-       id="polygon13376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.82,332.52 577.13,332.18 567.27,329.43 "
-       id="polygon13378" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="576.62,334.8 576.45,334.43 566.59,331.67 "
-       id="polygon13380" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="572.66,327.11 572.97,326.77 563.06,324.02 "
-       id="polygon13382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.46,329.39 572.29,329.01 562.38,326.25 "
-       id="polygon13384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.59,332.96 576.82,332.52 566.96,329.77 "
-       id="polygon13386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.45,334.43 576.39,333.96 566.53,331.21 "
-       id="polygon13388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.42,327.55 572.66,327.11 562.75,324.36 "
-       id="polygon13390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.44,333.46 576.59,332.96 566.72,330.21 "
-       id="polygon13392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.39,333.96 576.44,333.46 566.57,330.71 "
-       id="polygon13394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.29,329.01 572.23,328.55 562.32,325.79 "
-       id="polygon13396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.27,328.05 572.42,327.55 562.52,324.79 "
-       id="polygon13398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.23,328.55 572.27,328.05 562.37,325.29 "
-       id="polygon13400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="578.66,331.28 578.82,331.66 588.14,334.25 "
-       id="polygon13402" />
-    <line
-       x1="578.95001"
-       y1="331.48001"
-       x2="578.95001"
-       y2="331.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13404" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="576.45,334.43 576.62,334.8 576.8,334.55 "
-       id="polygon13406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="586.77,333.91 586.46,334.25 596.7,337.11 "
-       id="polygon13408" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="578.82,331.66 579.07,331.91 588.39,334.51 "
-       id="polygon13410" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="576.16,335.17 575.82,335.23 585.54,337.94 "
-       id="polygon13412" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="575.82,335.23 575.48,335.43 585.2,338.15 "
-       id="polygon13414" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="574.87,324.8 574.52,324.86 584.48,327.62 "
-       id="polygon13416" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.8,337.67 574.96,338.05 584.68,340.77 "
-       id="polygon13418" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="575.48,335.43 575.17,335.77 584.89,338.49 "
-       id="polygon13420" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="574.52,324.86 574.18,325.06 584.14,327.83 "
-       id="polygon13422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.74,337.21 574.8,337.67 584.52,340.39 "
-       id="polygon13424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="575.17,335.77 574.93,336.21 584.65,338.93 "
-       id="polygon13426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.79,336.71 574.74,337.21 584.46,339.93 "
-       id="polygon13428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.93,336.21 574.79,336.71 584.5,339.43 "
-       id="polygon13430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="574.18,325.06 573.88,325.4 583.83,328.17 "
-       id="polygon13432" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="577.82,331.92 577.47,331.98 586.46,334.48 "
-       id="polygon13434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.88,325.4 573.64,325.84 583.59,328.61 "
-       id="polygon13436" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="576.62,334.8 576.87,335.05 585.86,337.56 "
-       id="polygon13438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.49,326.34 573.44,326.84 583.39,329.61 "
-       id="polygon13440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="573.64,325.84 573.49,326.34 583.44,329.11 "
-       id="polygon13442" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="577.47,331.98 577.13,332.18 586.12,334.69 "
-       id="polygon13444" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="576.45,334.43 576.62,334.8 585.61,337.31 "
-       id="polygon13446" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="572.46,329.39 572.71,329.64 582.64,332.41 "
-       id="polygon13448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="577.13,332.18 576.82,332.52 585.82,335.03 "
-       id="polygon13450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.39,333.96 576.45,334.43 585.44,336.93 "
-       id="polygon13452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.82,332.52 576.59,332.96 585.58,335.47 "
-       id="polygon13454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.44,333.46 576.39,333.96 585.38,336.47 "
-       id="polygon13456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.29,329.01 572.46,329.39 582.39,332.16 "
-       id="polygon13458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="576.59,332.96 576.44,333.46 585.43,335.97 "
-       id="polygon13460" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="572.97,326.77 572.66,327.11 582.6,329.88 "
-       id="polygon13462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.23,328.55 572.29,329.01 582.23,331.78 "
-       id="polygon13464" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="585.59,341.07 585.25,341.13 575.53,338.4 "
-       id="polygon13466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.66,327.11 572.42,327.55 582.36,330.32 "
-       id="polygon13468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.27,328.05 572.23,328.55 582.16,331.32 "
-       id="polygon13470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="572.42,327.55 572.27,328.05 582.21,330.81 "
-       id="polygon13472" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="585.2,338.15 585.54,337.94 575.82,335.23 "
-       id="polygon13474" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="584.48,327.62 584.82,327.57 574.87,324.8 "
-       id="polygon13476" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="584.94,341.02 584.68,340.77 574.96,338.05 "
-       id="polygon13478" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="584.89,338.49 585.2,338.15 575.48,335.43 "
-       id="polygon13480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.68,340.77 584.52,340.39 574.8,337.67 "
-       id="polygon13482" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="584.14,327.83 584.48,327.62 574.52,324.86 "
-       id="polygon13484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.65,338.93 584.89,338.49 575.17,335.77 "
-       id="polygon13486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.52,340.39 584.46,339.93 574.74,337.21 "
-       id="polygon13488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.5,339.43 584.65,338.93 574.93,336.21 "
-       id="polygon13490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.46,339.93 584.5,339.43 574.79,336.71 "
-       id="polygon13492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.83,328.17 584.14,327.83 574.18,325.06 "
-       id="polygon13494" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="586.12,334.69 586.46,334.48 577.47,331.98 "
-       id="polygon13496" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="585.86,337.56 585.61,337.31 576.62,334.8 "
-       id="polygon13498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.59,328.61 583.83,328.17 573.88,325.4 "
-       id="polygon13500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.44,329.11 583.59,328.61 573.64,325.84 "
-       id="polygon13502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.39,329.61 583.44,329.11 573.49,326.34 "
-       id="polygon13504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.82,335.03 586.12,334.69 577.13,332.18 "
-       id="polygon13506" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="585.61,337.31 585.44,336.93 576.45,334.43 "
-       id="polygon13508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="596.7,337.11 597,336.77 586.77,333.91 "
-       id="polygon13510" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="588.39,334.51 588.71,334.61 588.77,334.29 "
-       id="polygon13512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.58,335.47 585.82,335.03 576.82,332.52 "
-       id="polygon13514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.44,336.93 585.38,336.47 576.39,333.96 "
-       id="polygon13516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.43,335.97 585.58,335.47 576.59,332.96 "
-       id="polygon13518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.38,336.47 585.43,335.97 576.44,333.46 "
-       id="polygon13520" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="582.6,329.88 582.91,329.54 572.97,326.77 "
-       id="polygon13522" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.39,332.16 582.23,331.78 572.29,329.01 "
-       id="polygon13524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.36,330.32 582.6,329.88 572.66,327.11 "
-       id="polygon13526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.23,331.78 582.16,331.32 572.23,328.55 "
-       id="polygon13528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.21,330.81 582.36,330.32 572.42,327.55 "
-       id="polygon13530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.16,331.32 582.21,330.81 572.27,328.05 "
-       id="polygon13532" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="586.81,334.43 586.46,334.48 586.47,334.8 "
-       id="polygon13534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="596.46,337.55 596.7,337.11 586.46,334.25 "
-       id="polygon13536" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="586.45,338.24 586.2,337.99 595.94,340.71 "
-       id="polygon13538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="587.98,333.88 588.14,334.25 597.49,336.86 "
-       id="polygon13540" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="587.37,334.79 587.12,334.54 596.14,337.05 "
-       id="polygon13542" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="585.54,337.94 585.2,338.15 594.95,340.87 "
-       id="polygon13544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.52,340.39 584.68,340.77 594.43,343.5 "
-       id="polygon13546" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="585.61,337.31 585.86,337.56 594.88,340.08 "
-       id="polygon13548" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="585.2,338.15 584.89,338.49 594.64,341.21 "
-       id="polygon13550" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="586.46,334.48 586.12,334.69 595.14,337.21 "
-       id="polygon13552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.46,339.93 584.52,340.39 594.27,343.12 "
-       id="polygon13554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.89,338.49 584.65,338.93 594.4,341.65 "
-       id="polygon13556" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="584.48,327.62 584.14,327.83 594.12,330.6 "
-       id="polygon13558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.5,339.43 584.46,339.93 594.2,342.66 "
-       id="polygon13560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.65,338.93 584.5,339.43 594.25,342.15 "
-       id="polygon13562" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="585.44,336.93 585.61,337.31 594.63,339.83 "
-       id="polygon13564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="586.12,334.69 585.82,335.03 594.83,337.55 "
-       id="polygon13566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="584.14,327.83 583.83,328.17 593.81,330.95 "
-       id="polygon13568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.38,336.47 585.44,336.93 594.46,339.45 "
-       id="polygon13570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.82,335.03 585.58,335.47 594.59,337.99 "
-       id="polygon13572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.43,335.97 585.38,336.47 594.39,338.99 "
-       id="polygon13574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="585.58,335.47 585.43,335.97 594.44,338.48 "
-       id="polygon13576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.83,328.17 583.59,328.61 593.57,331.38 "
-       id="polygon13578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.44,329.11 583.39,329.61 593.38,332.39 "
-       id="polygon13580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="583.59,328.61 583.44,329.11 593.42,331.88 "
-       id="polygon13582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="597.49,336.86 597.32,336.48 587.98,333.88 "
-       id="polygon13584" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="593.27,335.24 592.93,335.29 582.96,332.52 "
-       id="polygon13586" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="582.39,332.16 582.64,332.41 592.61,335.19 "
-       id="polygon13588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="597,336.77 596.7,337.11 606.97,339.97 "
-       id="polygon13590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.97,339.97 607.27,339.63 597,336.77 "
-       id="polygon13592" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="597.74,337.11 597.49,336.86 588.14,334.25 "
-       id="polygon13594" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="583.25,329.33 582.91,329.54 592.87,332.31 "
-       id="polygon13596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.23,331.78 582.39,332.16 592.36,334.93 "
-       id="polygon13598" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="582.91,329.54 582.6,329.88 592.57,332.65 "
-       id="polygon13600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.16,331.32 582.23,331.78 592.2,334.56 "
-       id="polygon13602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.6,329.88 582.36,330.32 592.33,333.09 "
-       id="polygon13604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.21,330.81 582.16,331.32 592.13,334.09 "
-       id="polygon13606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="582.36,330.32 582.21,330.81 592.18,333.59 "
-       id="polygon13608" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="594.95,340.87 595.29,340.66 585.54,337.94 "
-       id="polygon13610" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="594.68,343.75 594.43,343.5 584.68,340.77 "
-       id="polygon13612" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="595.14,337.21 595.48,337 586.46,334.48 "
-       id="polygon13614" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="594.46,330.39 594.8,330.34 584.82,327.57 "
-       id="polygon13616" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="594.64,341.21 594.95,340.87 585.2,338.15 "
-       id="polygon13618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.43,343.5 594.27,343.12 584.52,340.39 "
-       id="polygon13620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.83,337.55 595.14,337.21 586.12,334.69 "
-       id="polygon13622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.4,341.65 594.64,341.21 584.89,338.49 "
-       id="polygon13624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.27,343.12 594.2,342.66 584.46,339.93 "
-       id="polygon13626" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="594.12,330.6 594.46,330.39 584.48,327.62 "
-       id="polygon13628" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="594.63,339.83 594.46,339.45 585.44,336.93 "
-       id="polygon13630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.25,342.15 594.4,341.65 584.65,338.93 "
-       id="polygon13632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.2,342.66 594.25,342.15 584.5,339.43 "
-       id="polygon13634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.59,337.99 594.83,337.55 585.82,335.03 "
-       id="polygon13636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.46,339.45 594.39,338.99 585.38,336.47 "
-       id="polygon13638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.44,338.48 594.59,337.99 585.58,335.47 "
-       id="polygon13640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.39,338.99 594.44,338.48 585.43,335.97 "
-       id="polygon13642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.81,330.95 594.12,330.6 584.14,327.83 "
-       id="polygon13644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.57,331.38 593.81,330.95 583.83,328.17 "
-       id="polygon13646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.42,331.88 593.57,331.38 583.59,328.61 "
-       id="polygon13648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.38,332.39 593.42,331.88 583.44,329.11 "
-       id="polygon13650" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="592.61,335.19 592.36,334.93 582.39,332.16 "
-       id="polygon13652" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="592.57,332.65 592.87,332.31 582.91,329.54 "
-       id="polygon13654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.36,334.93 592.2,334.56 582.23,331.78 "
-       id="polygon13656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.33,333.09 592.57,332.65 582.6,329.88 "
-       id="polygon13658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.2,334.56 592.13,334.09 582.16,331.32 "
-       id="polygon13660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.18,333.59 592.33,333.09 582.36,330.32 "
-       id="polygon13662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.13,334.09 592.18,333.59 582.21,330.81 "
-       id="polygon13664" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="594.63,339.83 594.46,339.45 594.67,339.27 "
-       id="polygon13666" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="594.8,330.34 594.46,330.39 594.46,330.71 "
-       id="polygon13668" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="597.49,336.86 597.74,337.11 607.11,339.73 "
-       id="polygon13670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="597.32,336.48 597.49,336.86 606.86,339.47 "
-       id="polygon13672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.73,340.41 606.97,339.97 596.7,337.11 "
-       id="polygon13674" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="595.82,336.94 595.48,337 604.52,339.52 "
-       id="polygon13676" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="595.63,340.61 595.29,340.66 605.06,343.39 "
-       id="polygon13678" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="604.57,342.66 604.23,342.71 595.19,340.19 "
-       id="polygon13680" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="594.63,339.83 594.88,340.08 603.91,342.61 "
-       id="polygon13682" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="595.48,337 595.14,337.21 604.18,339.73 "
-       id="polygon13684" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="605.12,346.54 604.77,346.59 595,343.85 "
-       id="polygon13686" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="594.43,343.5 594.68,343.75 604.46,346.48 "
-       id="polygon13688" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="595.29,340.66 594.95,340.87 604.72,343.61 "
-       id="polygon13690" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="594.46,339.45 594.63,339.83 603.66,342.36 "
-       id="polygon13692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="595.14,337.21 594.83,337.55 603.88,340.07 "
-       id="polygon13694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.27,343.12 594.43,343.5 604.21,346.23 "
-       id="polygon13696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.39,338.99 594.46,339.45 603.5,341.98 "
-       id="polygon13698" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="594.95,340.87 594.64,341.21 604.42,343.95 "
-       id="polygon13700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.83,337.55 594.59,337.99 603.63,340.51 "
-       id="polygon13702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.44,338.48 594.39,338.99 603.44,341.51 "
-       id="polygon13704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.59,337.99 594.44,338.48 603.48,341.01 "
-       id="polygon13706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.2,342.66 594.27,343.12 604.04,345.86 "
-       id="polygon13708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.64,341.21 594.4,341.65 604.18,344.39 "
-       id="polygon13710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.25,342.15 594.2,342.66 603.98,345.39 "
-       id="polygon13712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.4,341.65 594.25,342.15 604.03,344.89 "
-       id="polygon13714" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="595.37,330.7 595.12,330.45 609.45,334.43 "
-       id="polygon13716" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="607.11,339.73 606.86,339.47 597.49,336.86 "
-       id="polygon13718" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="594.8,330.34 594.46,330.39 608.8,334.38 "
-       id="polygon13720" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="604.52,339.52 604.86,339.46 595.82,336.94 "
-       id="polygon13722" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="594.46,330.39 594.12,330.6 608.45,334.59 "
-       id="polygon13724" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="604.18,339.73 604.52,339.52 595.48,337 "
-       id="polygon13726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="594.12,330.6 593.81,330.95 608.15,334.93 "
-       id="polygon13728" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="603.91,342.61 603.66,342.36 594.63,339.83 "
-       id="polygon13730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.81,330.95 593.57,331.38 607.91,335.37 "
-       id="polygon13732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.88,340.07 604.18,339.73 595.14,337.21 "
-       id="polygon13734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.42,331.88 593.38,332.39 607.71,336.38 "
-       id="polygon13736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="593.57,331.38 593.42,331.88 607.76,335.87 "
-       id="polygon13738" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="604.72,343.61 605.06,343.39 595.29,340.66 "
-       id="polygon13740" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="603.66,342.36 603.5,341.98 594.46,339.45 "
-       id="polygon13742" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="604.46,346.48 604.21,346.23 594.43,343.5 "
-       id="polygon13744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.63,340.51 603.88,340.07 594.83,337.55 "
-       id="polygon13746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.5,341.98 603.44,341.51 594.39,338.99 "
-       id="polygon13748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.7,339.09 606.86,339.47 616.27,342.09 "
-       id="polygon13750" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="592.36,334.93 592.61,335.19 606.95,339.18 "
-       id="polygon13752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.48,341.01 603.63,340.51 594.59,337.99 "
-       id="polygon13754" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="604.42,343.95 604.72,343.61 594.95,340.87 "
-       id="polygon13756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.44,341.51 603.48,341.01 594.44,338.48 "
-       id="polygon13758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.21,346.23 604.04,345.86 594.27,343.12 "
-       id="polygon13760" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="593.21,332.1 592.87,332.31 607.21,336.3 "
-       id="polygon13762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.18,344.39 604.42,343.95 594.64,341.21 "
-       id="polygon13764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.2,334.56 592.36,334.93 606.7,338.93 "
-       id="polygon13766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.04,345.86 603.98,345.39 594.2,342.66 "
-       id="polygon13768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.03,344.89 604.18,344.39 594.4,341.65 "
-       id="polygon13770" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="592.87,332.31 592.57,332.65 606.9,336.64 "
-       id="polygon13772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.98,345.39 604.03,344.89 594.25,342.15 "
-       id="polygon13774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.13,334.09 592.2,334.56 606.53,338.55 "
-       id="polygon13776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.57,332.65 592.33,333.09 606.66,337.08 "
-       id="polygon13778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.18,333.59 592.13,334.09 606.47,338.09 "
-       id="polygon13780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="592.33,333.09 592.18,333.59 606.52,337.58 "
-       id="polygon13782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.27,339.63 606.97,339.97 617.27,342.84 "
-       id="polygon13784" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="605.72,343.45 605.41,343.34 605.34,343.66 "
-       id="polygon13786" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="608.45,334.59 608.8,334.38 594.46,330.39 "
-       id="polygon13788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="608.15,334.93 608.45,334.59 594.12,330.6 "
-       id="polygon13790" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="605.43,339.82 605.18,339.57 614.24,342.1 "
-       id="polygon13792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.27,342.84 617.58,342.5 607.27,339.63 "
-       id="polygon13794" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="606.86,339.47 607.11,339.73 616.52,342.34 "
-       id="polygon13796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.91,335.37 608.15,334.93 593.81,330.95 "
-       id="polygon13798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.76,335.87 607.91,335.37 593.57,331.38 "
-       id="polygon13800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.71,336.38 607.76,335.87 593.42,331.88 "
-       id="polygon13802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="616.27,342.09 616.1,341.71 606.7,339.09 "
-       id="polygon13804" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="606.95,339.18 606.7,338.93 592.36,334.93 "
-       id="polygon13806" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="606.9,336.64 607.21,336.3 592.87,332.31 "
-       id="polygon13808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.7,338.93 606.53,338.55 592.2,334.56 "
-       id="polygon13810" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="604.52,339.52 604.18,339.73 613.25,342.25 "
-       id="polygon13812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.66,337.08 606.9,336.64 592.57,332.65 "
-       id="polygon13814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.53,338.55 606.47,338.09 592.13,334.09 "
-       id="polygon13816" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="603.5,341.98 603.66,342.36 612.73,344.89 "
-       id="polygon13818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.52,337.58 606.66,337.08 592.33,333.09 "
-       id="polygon13820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.47,338.09 606.52,337.58 592.18,333.59 "
-       id="polygon13822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.18,339.73 603.88,340.07 612.94,342.6 "
-       id="polygon13824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.44,341.51 603.5,341.98 612.57,344.51 "
-       id="polygon13826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.88,340.07 603.63,340.51 612.7,343.04 "
-       id="polygon13828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.48,341.01 603.44,341.51 612.5,344.04 "
-       id="polygon13830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.63,340.51 603.48,341.01 612.55,343.54 "
-       id="polygon13832" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="605.06,343.39 604.72,343.61 614.53,346.34 "
-       id="polygon13834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.04,345.86 604.21,346.23 614.02,348.98 "
-       id="polygon13836" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="604.72,343.61 604.42,343.95 614.23,346.69 "
-       id="polygon13838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="603.98,345.39 604.04,345.86 613.85,348.6 "
-       id="polygon13840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.42,343.95 604.18,344.39 613.98,347.13 "
-       id="polygon13842" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="609.45,334.43 609.7,334.68 609.53,334.94 "
-       id="polygon13844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.03,344.89 603.98,345.39 613.79,348.14 "
-       id="polygon13846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="604.18,344.39 604.03,344.89 613.84,347.63 "
-       id="polygon13848" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="616.52,342.34 616.27,342.09 606.86,339.47 "
-       id="polygon13850" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="613.25,342.25 613.59,342.05 604.52,339.52 "
-       id="polygon13852" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="612.98,345.14 612.73,344.89 603.66,342.36 "
-       id="polygon13854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.94,342.6 613.25,342.25 604.18,339.73 "
-       id="polygon13856" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="612.73,344.89 612.57,344.51 603.5,341.98 "
-       id="polygon13858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.7,343.04 612.94,342.6 603.88,340.07 "
-       id="polygon13860" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="614.87,346.14 615.21,346.08 605.41,343.34 "
-       id="polygon13862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.57,344.51 612.5,344.04 603.44,341.51 "
-       id="polygon13864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.55,343.54 612.7,343.04 603.63,340.51 "
-       id="polygon13866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.5,344.04 612.55,343.54 603.48,341.01 "
-       id="polygon13868" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="614.53,346.34 614.87,346.14 605.06,343.39 "
-       id="polygon13870" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="614.27,349.23 614.02,348.98 604.21,346.23 "
-       id="polygon13872" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="614.23,346.69 614.53,346.34 604.72,343.61 "
-       id="polygon13874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="614.02,348.98 613.85,348.6 604.04,345.86 "
-       id="polygon13876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.98,347.13 614.23,346.69 604.42,343.95 "
-       id="polygon13878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.85,348.6 613.79,348.14 603.98,345.39 "
-       id="polygon13880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.84,347.63 613.98,347.13 604.18,344.39 "
-       id="polygon13882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.79,348.14 613.84,347.63 604.03,344.89 "
-       id="polygon13884" />
-    <line
-       x1="617.46002"
-       y1="342.03"
-       x2="617.46002"
-       y2="342.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13886" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="609.14,334.32 608.8,334.38 618.08,336.96 "
-       id="polygon13888" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="608.8,334.38 608.45,334.59 617.73,337.17 "
-       id="polygon13890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="608.45,334.59 608.15,334.93 617.43,337.51 "
-       id="polygon13892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="608.15,334.93 607.91,335.37 617.19,337.95 "
-       id="polygon13894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.76,335.87 607.71,336.38 617,338.96 "
-       id="polygon13896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="607.91,335.37 607.76,335.87 617.04,338.45 "
-       id="polygon13898" />
-    <line
-       x1="616.02002"
-       y1="346.51999"
-       x2="616.02002"
-       y2="346.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="618.03,342.63 617.73,342.97 626.91,345.53 "
-       id="polygon13902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="616.1,341.71 616.27,342.09 625.89,344.78 "
-       id="polygon13904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.66,345.97 626.91,345.53 617.73,342.97 "
-       id="polygon13906" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="613.93,341.99 613.59,342.05 622.68,344.58 "
-       id="polygon13908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="625.89,344.78 625.73,344.4 616.1,341.71 "
-       id="polygon13910" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="606.7,338.93 606.95,339.18 620.83,343.05 "
-       id="polygon13912" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="612.73,344.89 612.98,345.14 622.07,347.68 "
-       id="polygon13914" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="613.59,342.05 613.25,342.25 622.34,344.79 "
-       id="polygon13916" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="617.73,337.17 618.08,336.96 608.8,334.38 "
-       id="polygon13918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.53,338.55 606.7,338.93 620.58,342.8 "
-       id="polygon13920" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="612.57,344.51 612.73,344.89 621.82,347.43 "
-       id="polygon13922" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="607.21,336.3 606.9,336.64 620.79,340.5 "
-       id="polygon13924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.25,342.25 612.94,342.6 622.04,345.13 "
-       id="polygon13926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.47,338.09 606.53,338.55 620.42,342.42 "
-       id="polygon13928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.43,337.51 617.73,337.17 608.45,334.59 "
-       id="polygon13930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.5,344.04 612.57,344.51 621.66,347.05 "
-       id="polygon13932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.9,336.64 606.66,337.08 620.55,340.95 "
-       id="polygon13934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.52,337.58 606.47,338.09 620.36,341.95 "
-       id="polygon13936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.94,342.6 612.7,343.04 621.79,345.57 "
-       id="polygon13938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="606.66,337.08 606.52,337.58 620.4,341.45 "
-       id="polygon13940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.55,343.54 612.5,344.04 621.6,346.58 "
-       id="polygon13942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="612.7,343.04 612.55,343.54 621.64,346.07 "
-       id="polygon13944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.19,337.95 617.43,337.51 608.15,334.93 "
-       id="polygon13946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.04,338.45 617.19,337.95 607.91,335.37 "
-       id="polygon13948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617,338.96 617.04,338.45 607.76,335.87 "
-       id="polygon13950" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="614.02,348.98 614.27,349.23 624.36,352.05 "
-       id="polygon13952" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="614.87,346.14 614.53,346.34 624.63,349.17 "
-       id="polygon13954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.85,348.6 614.02,348.98 624.11,351.8 "
-       id="polygon13956" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="614.53,346.34 614.23,346.69 624.32,349.51 "
-       id="polygon13958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.79,348.14 613.85,348.6 623.95,351.43 "
-       id="polygon13960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="614.23,346.69 613.98,347.13 624.08,349.95 "
-       id="polygon13962" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="626.15,345.03 625.89,344.78 616.27,342.09 "
-       id="polygon13964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.84,347.63 613.79,348.14 623.88,350.96 "
-       id="polygon13966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="613.98,347.13 613.84,347.63 623.93,350.45 "
-       id="polygon13968" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="622.34,344.79 622.68,344.58 613.59,342.05 "
-       id="polygon13970" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="622.07,347.68 621.82,347.43 612.73,344.89 "
-       id="polygon13972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="622.04,345.13 622.34,344.79 613.25,342.25 "
-       id="polygon13974" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="621.82,347.43 621.66,347.05 612.57,344.51 "
-       id="polygon13976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.79,345.57 622.04,345.13 612.94,342.6 "
-       id="polygon13978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.66,347.05 621.6,346.58 612.5,344.04 "
-       id="polygon13980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.64,346.07 621.79,345.57 612.7,343.04 "
-       id="polygon13982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.6,346.58 621.64,346.07 612.55,343.54 "
-       id="polygon13984" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="620.83,343.05 620.58,342.8 606.7,338.93 "
-       id="polygon13986" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="624.97,348.96 625.31,348.9 615.21,346.08 "
-       id="polygon13988" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="620.79,340.5 621.1,340.16 607.21,336.3 "
-       id="polygon13990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.58,342.8 620.42,342.42 606.53,338.55 "
-       id="polygon13992" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="624.63,349.17 624.97,348.96 614.87,346.14 "
-       id="polygon13994" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="618.98,337.26 618.73,337.01 628.04,339.59 "
-       id="polygon13996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.55,340.95 620.79,340.5 606.9,336.64 "
-       id="polygon13998" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="624.36,352.05 624.11,351.8 614.02,348.98 "
-       id="polygon14000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.42,342.42 620.36,341.95 606.47,338.09 "
-       id="polygon14002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.4,341.45 620.55,340.95 606.66,337.08 "
-       id="polygon14004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.36,341.95 620.4,341.45 606.52,337.58 "
-       id="polygon14006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="627.22,345.19 626.92,345.53 637.15,348.39 "
-       id="polygon14008" />
-    <line
-       x1="627.23999"
-       y1="345.22"
-       x2="627.23999"
-       y2="345.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14010" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="624.32,349.51 624.63,349.17 614.53,346.34 "
-       id="polygon14012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="624.11,351.8 623.95,351.43 613.85,348.6 "
-       id="polygon14014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="624.08,349.95 624.32,349.51 614.23,346.69 "
-       id="polygon14016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.95,351.43 623.88,350.96 613.79,348.14 "
-       id="polygon14018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.93,350.45 624.08,349.95 613.98,347.13 "
-       id="polygon14020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.88,350.96 623.93,350.45 613.84,347.63 "
-       id="polygon14022" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="618.08,336.96 617.73,337.17 627.04,339.75 "
-       id="polygon14024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.73,337.17 617.43,337.51 626.74,340.09 "
-       id="polygon14026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.43,337.51 617.19,337.95 626.5,340.54 "
-       id="polygon14028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.04,338.45 617,338.96 626.3,341.55 "
-       id="polygon14030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="617.19,337.95 617.04,338.45 626.35,341.04 "
-       id="polygon14032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="625.75,344.4 625.91,344.78 631.45,346.32 "
-       id="polygon14034" />
-    <line
-       x1="622.21002"
-       y1="344.31"
-       x2="622.20001"
-       y2="344.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="622.68,344.58 622.34,344.79 629.76,346.86 "
-       id="polygon14038" />
-    <line
-       x1="622"
-       y1="343.51999"
-       x2="621.98999"
-       y2="343.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14040" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="621.66,347.05 621.82,347.43 629.24,349.5 "
-       id="polygon14042" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="627.39,339.54 627.73,339.49 618.42,336.9 "
-       id="polygon14044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="622.34,344.79 622.04,345.13 629.45,347.2 "
-       id="polygon14046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.6,346.58 621.66,347.05 629.08,349.12 "
-       id="polygon14048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="622.04,345.13 621.79,345.57 629.21,347.64 "
-       id="polygon14050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.64,346.07 621.6,346.58 629.02,348.65 "
-       id="polygon14052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="621.79,345.57 621.64,346.07 629.06,348.14 "
-       id="polygon14054" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="627.04,339.75 627.39,339.54 618.08,336.96 "
-       id="polygon14056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="631.45,346.32 631.28,345.95 625.75,344.4 "
-       id="polygon14058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.74,340.09 627.04,339.75 617.73,337.17 "
-       id="polygon14060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.5,340.54 626.74,340.09 617.43,337.51 "
-       id="polygon14062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.35,341.04 626.5,340.54 617.19,337.95 "
-       id="polygon14064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.3,341.55 626.35,341.04 617.04,338.45 "
-       id="polygon14066" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="630.1,346.65 630.44,346.59 623.02,344.53 "
-       id="polygon14068" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="625.87,349.26 625.62,349 635.75,351.84 "
-       id="polygon14070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="637.15,348.39 637.46,348.04 627.22,345.19 "
-       id="polygon14072" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="629.76,346.86 630.1,346.65 622.68,344.58 "
-       id="polygon14074" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="629.49,349.75 629.24,349.5 621.82,347.43 "
-       id="polygon14076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.45,347.2 629.76,346.86 622.34,344.79 "
-       id="polygon14078" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="629.24,349.5 629.08,349.12 621.66,347.05 "
-       id="polygon14080" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="625.31,348.9 624.97,348.96 635.09,351.79 "
-       id="polygon14082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.21,347.64 629.45,347.2 622.04,345.13 "
-       id="polygon14084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.08,349.12 629.02,348.65 621.6,346.58 "
-       id="polygon14086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.06,348.14 629.21,347.64 621.79,345.57 "
-       id="polygon14088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.02,348.65 629.06,348.14 621.64,346.07 "
-       id="polygon14090" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="624.97,348.96 624.63,349.17 634.75,352 "
-       id="polygon14092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.95,351.43 624.11,351.8 634.23,354.64 "
-       id="polygon14094" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="624.63,349.17 624.32,349.51 634.45,352.34 "
-       id="polygon14096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.88,350.96 623.95,351.43 634.07,354.26 "
-       id="polygon14098" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="620.58,342.8 620.83,343.05 631.13,345.92 "
-       id="polygon14100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="624.32,349.51 624.08,349.95 634.21,352.79 "
-       id="polygon14102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="623.93,350.45 623.88,350.96 634.01,353.79 "
-       id="polygon14104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.35,341.04 626.3,341.55 635.64,344.14 "
-       id="polygon14106" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="621.44,339.95 621.1,340.16 631.39,343.03 "
-       id="polygon14108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="624.08,349.95 623.93,350.45 634.06,353.29 "
-       id="polygon14110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="631.28,345.95 631.45,346.32 645.57,350.26 "
-       id="polygon14112" />
-    <line
-       x1="631.59003"
-       y1="346.10999"
-       x2="631.59003"
-       y2="346.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.42,342.42 620.58,342.8 630.88,345.67 "
-       id="polygon14116" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="621.1,340.16 620.79,340.5 631.09,343.37 "
-       id="polygon14118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.36,341.95 620.42,342.42 630.71,345.29 "
-       id="polygon14120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.79,340.5 620.55,340.95 630.85,343.81 "
-       id="polygon14122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.4,341.45 620.36,341.95 630.65,344.82 "
-       id="polygon14124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="620.55,340.95 620.4,341.45 630.7,344.31 "
-       id="polygon14126" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="635.14,354.94 634.8,354.99 624.67,352.16 "
-       id="polygon14128" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="634.75,352 635.09,351.79 624.97,348.96 "
-       id="polygon14130" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="634.48,354.89 634.23,354.64 624.11,351.8 "
-       id="polygon14132" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="627.73,339.49 627.39,339.54 636.72,342.14 "
-       id="polygon14134" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="634.45,352.34 634.75,352 624.63,349.17 "
-       id="polygon14136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.23,354.64 634.07,354.26 623.95,351.43 "
-       id="polygon14138" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="627.39,339.54 627.04,339.75 636.38,342.35 "
-       id="polygon14140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.21,352.79 634.45,352.34 624.32,349.51 "
-       id="polygon14142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.07,354.26 634.01,353.79 623.88,350.96 "
-       id="polygon14144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.06,353.29 634.21,352.79 624.08,349.95 "
-       id="polygon14146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.01,353.79 634.06,353.29 623.93,350.45 "
-       id="polygon14148" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="631.13,345.92 630.88,345.67 620.58,342.8 "
-       id="polygon14150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="627.04,339.75 626.74,340.09 636.07,342.69 "
-       id="polygon14152" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="631.09,343.37 631.39,343.03 621.1,340.16 "
-       id="polygon14154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.74,340.09 626.5,340.54 635.84,343.13 "
-       id="polygon14156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.88,345.67 630.71,345.29 620.42,342.42 "
-       id="polygon14158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="626.5,340.54 626.35,341.04 635.68,343.64 "
-       id="polygon14160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.85,343.81 631.09,343.37 620.79,340.5 "
-       id="polygon14162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.71,345.29 630.65,344.82 620.36,341.95 "
-       id="polygon14164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.7,344.31 630.85,343.81 620.55,340.95 "
-       id="polygon14166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.65,344.82 630.7,344.31 620.4,341.45 "
-       id="polygon14168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="647.18,351.7 647.42,351.25 637.15,348.39 "
-       id="polygon14170" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="631,346.95 630.75,346.7 644.88,350.64 "
-       id="polygon14172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="637.46,348.04 637.15,348.39 647.42,351.25 "
-       id="polygon14174" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="629.24,349.5 629.49,349.75 643.62,353.7 "
-       id="polygon14176" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="630.1,346.65 629.76,346.86 643.89,350.8 "
-       id="polygon14178" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="629.08,349.12 629.24,349.5 643.37,353.45 "
-       id="polygon14180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.76,346.86 629.45,347.2 643.58,351.14 "
-       id="polygon14182" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="636.38,342.35 636.72,342.14 627.39,339.54 "
-       id="polygon14184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.02,348.65 629.08,349.12 643.21,353.07 "
-       id="polygon14186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.45,347.2 629.21,347.64 643.34,351.59 "
-       id="polygon14188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.06,348.14 629.02,348.65 643.14,352.6 "
-       id="polygon14190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="629.21,347.64 629.06,348.14 643.19,352.09 "
-       id="polygon14192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="636.07,342.69 636.38,342.35 627.04,339.75 "
-       id="polygon14194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="635.84,343.13 636.07,342.69 626.74,340.09 "
-       id="polygon14196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="635.68,343.64 635.84,343.13 626.5,340.54 "
-       id="polygon14198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="635.64,344.14 635.68,343.64 626.35,341.04 "
-       id="polygon14200" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="645.82,350.52 645.57,350.26 631.45,346.32 "
-       id="polygon14202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.57,350.26 645.41,349.88 631.28,345.95 "
-       id="polygon14204" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="635.09,351.79 634.75,352 644.91,354.84 "
-       id="polygon14206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.07,354.26 634.23,354.64 644.39,357.48 "
-       id="polygon14208" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="644.23,350.59 644.57,350.54 630.44,346.59 "
-       id="polygon14210" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="634.75,352 634.45,352.34 644.61,355.18 "
-       id="polygon14212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.01,353.79 634.07,354.26 644.23,357.1 "
-       id="polygon14214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.45,352.34 634.21,352.79 644.37,355.63 "
-       id="polygon14216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.06,353.29 634.01,353.79 644.17,356.63 "
-       id="polygon14218" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="630.88,345.67 631.13,345.92 641.46,348.8 "
-       id="polygon14220" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="643.89,350.8 644.23,350.59 630.1,346.65 "
-       id="polygon14222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="634.21,352.79 634.06,353.29 644.21,356.13 "
-       id="polygon14224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.71,345.29 630.88,345.67 641.21,348.55 "
-       id="polygon14226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.58,351.14 643.89,350.8 629.76,346.86 "
-       id="polygon14228" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="643.37,353.45 643.21,353.07 629.08,349.12 "
-       id="polygon14230" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="631.39,343.03 631.09,343.37 641.42,346.25 "
-       id="polygon14232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.34,351.59 643.58,351.14 629.45,347.2 "
-       id="polygon14234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.65,344.82 630.71,345.29 641.04,348.17 "
-       id="polygon14236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.21,353.07 643.14,352.6 629.02,348.65 "
-       id="polygon14238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="631.09,343.37 630.85,343.81 641.18,346.69 "
-       id="polygon14240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.19,352.09 643.34,351.59 629.21,347.64 "
-       id="polygon14242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.7,344.31 630.65,344.82 640.98,347.7 "
-       id="polygon14244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.14,352.6 643.19,352.09 629.06,348.14 "
-       id="polygon14246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="630.85,343.81 630.7,344.31 641.03,347.19 "
-       id="polygon14248" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="645.25,354.63 645.59,354.57 635.44,351.73 "
-       id="polygon14250" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="636.72,342.14 636.38,342.35 645.74,344.95 "
-       id="polygon14252" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="644.91,354.84 645.25,354.63 635.09,351.79 "
-       id="polygon14254" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="644.64,357.73 644.39,357.48 634.23,354.64 "
-       id="polygon14256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="636.38,342.35 636.07,342.69 645.44,345.29 "
-       id="polygon14258" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="644.61,355.18 644.91,354.84 634.75,352 "
-       id="polygon14260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="636.07,342.69 635.84,343.13 645.2,345.74 "
-       id="polygon14262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.39,357.48 644.23,357.1 634.07,354.26 "
-       id="polygon14264" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="635.68,343.64 635.64,344.14 645,346.75 "
-       id="polygon14266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="635.84,343.13 635.68,343.64 645.05,346.24 "
-       id="polygon14268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.37,355.63 644.61,355.18 634.45,352.34 "
-       id="polygon14270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.23,357.1 644.17,356.63 634.01,353.79 "
-       id="polygon14272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.21,356.13 644.37,355.63 634.21,352.79 "
-       id="polygon14274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.17,356.63 644.21,356.13 634.06,353.29 "
-       id="polygon14276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645,346.75 645.05,346.24 635.68,343.64 "
-       id="polygon14278" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="641.72,345.9 642.07,345.69 631.73,342.82 "
-       id="polygon14280" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="641.46,348.8 641.21,348.55 630.88,345.67 "
-       id="polygon14282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="641.42,346.25 641.72,345.9 631.39,343.03 "
-       id="polygon14284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.21,348.55 641.04,348.17 630.71,345.29 "
-       id="polygon14286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.18,346.69 641.42,346.25 631.09,343.37 "
-       id="polygon14288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.41,349.88 645.57,350.26 655.57,353.05 "
-       id="polygon14290" />
-    <line
-       x1="645.63"
-       y1="350.17999"
-       x2="645.63"
-       y2="350.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.04,348.17 640.98,347.7 630.65,344.82 "
-       id="polygon14294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.03,347.19 641.18,346.69 630.85,343.81 "
-       id="polygon14296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="640.98,347.7 641.03,347.19 630.7,344.31 "
-       id="polygon14298" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="643.62,353.7 643.37,353.45 643.55,353.19 "
-       id="polygon14300" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="646.08,344.74 646.43,344.68 637.06,342.08 "
-       id="polygon14302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="647.73,350.91 647.42,351.25 657.73,354.12 "
-       id="polygon14304" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="645.74,344.95 646.08,344.74 636.72,342.14 "
-       id="polygon14306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.44,345.29 645.74,344.95 636.38,342.35 "
-       id="polygon14308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="657.73,354.12 658.03,353.78 647.73,350.91 "
-       id="polygon14310" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="645.57,350.26 645.82,350.52 655.82,353.3 "
-       id="polygon14312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.2,345.74 645.44,345.29 636.07,342.69 "
-       id="polygon14314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.05,346.24 645.2,345.74 635.84,343.13 "
-       id="polygon14316" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="645.13,350.89 644.88,350.64 655.65,353.64 "
-       id="polygon14318" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="644.57,350.54 644.23,350.59 654.99,353.59 "
-       id="polygon14320" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="643.37,353.45 643.62,353.7 654.38,356.7 "
-       id="polygon14322" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="644.23,350.59 643.89,350.8 654.65,353.8 "
-       id="polygon14324" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="643.21,353.07 643.37,353.45 654.13,356.45 "
-       id="polygon14326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.89,350.8 643.58,351.14 654.35,354.15 "
-       id="polygon14328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.14,352.6 643.21,353.07 653.97,356.07 "
-       id="polygon14330" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="645.59,354.57 645.25,354.63 655.45,357.47 "
-       id="polygon14332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.58,351.14 643.34,351.59 654.11,354.59 "
-       id="polygon14334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.19,352.09 643.14,352.6 653.91,355.61 "
-       id="polygon14336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="643.34,351.59 643.19,352.09 653.96,355.09 "
-       id="polygon14338" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="655.82,353.3 655.57,353.05 645.57,350.26 "
-       id="polygon14340" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="655.49,360.63 655.14,360.69 644.96,357.84 "
-       id="polygon14342" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="644.39,357.48 644.64,357.73 654.83,360.59 "
-       id="polygon14344" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="645.25,354.63 644.91,354.84 655.1,357.68 "
-       id="polygon14346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="655.57,353.05 655.41,352.67 645.41,349.88 "
-       id="polygon14348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.23,357.1 644.39,357.48 654.59,360.33 "
-       id="polygon14350" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="644.91,354.84 644.61,355.18 654.8,358.03 "
-       id="polygon14352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.17,356.63 644.23,357.1 654.42,359.95 "
-       id="polygon14354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.61,355.18 644.37,355.63 654.56,358.47 "
-       id="polygon14356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.21,356.13 644.17,356.63 654.36,359.48 "
-       id="polygon14358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="644.37,355.63 644.21,356.13 654.41,358.98 "
-       id="polygon14360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.05,346.24 645,346.75 654.39,349.36 "
-       id="polygon14362" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="642.07,345.69 641.72,345.9 652.09,348.79 "
-       id="polygon14364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.04,348.17 641.21,348.55 651.57,351.43 "
-       id="polygon14366" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="641.72,345.9 641.42,346.25 651.78,349.13 "
-       id="polygon14368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="640.98,347.7 641.04,348.17 651.41,351.05 "
-       id="polygon14370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.42,346.25 641.18,346.69 651.54,349.57 "
-       id="polygon14372" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="646.43,344.68 646.08,344.74 655.47,347.35 "
-       id="polygon14374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.03,347.19 640.98,347.7 651.34,350.59 "
-       id="polygon14376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="641.18,346.69 641.03,347.19 651.39,350.07 "
-       id="polygon14378" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="646.08,344.74 645.74,344.95 655.13,347.56 "
-       id="polygon14380" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="654.65,353.8 654.99,353.59 644.23,350.59 "
-       id="polygon14382" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="654.38,356.7 654.13,356.45 643.37,353.45 "
-       id="polygon14384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.74,344.95 645.44,345.29 654.83,347.9 "
-       id="polygon14386" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="655.45,357.47 655.79,357.41 645.59,354.57 "
-       id="polygon14388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.35,354.15 654.65,353.8 643.89,350.8 "
-       id="polygon14390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.44,345.29 645.2,345.74 654.59,348.35 "
-       id="polygon14392" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="654.13,356.45 653.97,356.07 643.21,353.07 "
-       id="polygon14394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="645.2,345.74 645.05,346.24 654.44,348.85 "
-       id="polygon14396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.11,354.59 654.35,354.15 643.58,351.14 "
-       id="polygon14398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="653.97,356.07 653.91,355.61 643.14,352.6 "
-       id="polygon14400" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="655.1,357.68 655.45,357.47 645.25,354.63 "
-       id="polygon14402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="653.96,355.09 654.11,354.59 643.34,351.59 "
-       id="polygon14404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="653.91,355.61 653.96,355.09 643.19,352.09 "
-       id="polygon14406" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="654.83,360.59 654.59,360.33 644.39,357.48 "
-       id="polygon14408" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="652.47,351.73 652.13,351.79 641.77,348.9 "
-       id="polygon14410" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="654.8,358.03 655.1,357.68 644.91,354.84 "
-       id="polygon14412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.59,360.33 654.42,359.95 644.23,357.1 "
-       id="polygon14414" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.56,358.47 654.8,358.03 644.61,355.18 "
-       id="polygon14416" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.42,359.95 654.36,359.48 644.17,356.63 "
-       id="polygon14418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.41,358.98 654.56,358.47 644.37,355.63 "
-       id="polygon14420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.36,359.48 654.41,358.98 644.21,356.13 "
-       id="polygon14422" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="651.82,351.69 651.57,351.43 641.21,348.55 "
-       id="polygon14424" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="651.78,349.13 652.09,348.79 641.72,345.9 "
-       id="polygon14426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.57,351.43 651.41,351.05 641.04,348.17 "
-       id="polygon14428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.54,349.57 651.78,349.13 641.42,346.25 "
-       id="polygon14430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.41,351.05 651.34,350.59 640.98,347.7 "
-       id="polygon14432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.39,350.07 651.54,349.57 641.18,346.69 "
-       id="polygon14434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.34,350.59 651.39,350.07 641.03,347.19 "
-       id="polygon14436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.83,347.9 655.13,347.56 645.74,344.95 "
-       id="polygon14438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.59,348.35 654.83,347.9 645.44,345.29 "
-       id="polygon14440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="658.03,353.78 657.73,354.12 668.06,357 "
-       id="polygon14442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.44,348.85 654.59,348.35 645.2,345.74 "
-       id="polygon14444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.39,349.36 654.44,348.85 645.05,346.24 "
-       id="polygon14446" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="655.45,357.47 655.79,357.41 655.72,357.74 "
-       id="polygon14448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="655.41,352.67 655.57,353.05 665.6,355.84 "
-       id="polygon14450" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="655.75,347.62 655.48,347.66 655.47,347.35 "
-       id="polygon14452" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="656.35,357.77 656.1,357.52 666.32,360.38 "
-       id="polygon14454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="667.82,357.45 668.06,357 657.73,354.12 "
-       id="polygon14456" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="655.34,353.54 654.99,353.59 665.79,356.6 "
-       id="polygon14458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="668.06,357 668.37,356.66 658.03,353.78 "
-       id="polygon14460" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="654.13,356.45 654.38,356.7 665.18,359.72 "
-       id="polygon14462" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="654.99,353.59 654.65,353.8 665.45,356.81 "
-       id="polygon14464" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="665.85,356.1 665.6,355.84 655.57,353.05 "
-       id="polygon14466" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="653.97,356.07 654.13,356.45 664.93,359.47 "
-       id="polygon14468" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="654.59,360.33 654.83,360.59 665.05,363.45 "
-       id="polygon14470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.65,353.8 654.35,354.15 665.15,357.16 "
-       id="polygon14472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.6,355.84 665.44,355.46 655.41,352.67 "
-       id="polygon14474" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="655.45,357.47 655.1,357.68 665.33,360.54 "
-       id="polygon14476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="653.91,355.61 653.97,356.07 664.77,359.09 "
-       id="polygon14478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.35,354.15 654.11,354.59 664.91,357.61 "
-       id="polygon14480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.42,359.95 654.59,360.33 664.81,363.19 "
-       id="polygon14482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="653.96,355.09 653.91,355.61 664.71,358.62 "
-       id="polygon14484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.11,354.59 653.96,355.09 664.76,358.11 "
-       id="polygon14486" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="655.1,357.68 654.8,358.03 665.02,360.89 "
-       id="polygon14488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.36,359.48 654.42,359.95 664.64,362.81 "
-       id="polygon14490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.8,358.03 654.56,358.47 664.78,361.33 "
-       id="polygon14492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.41,358.98 654.36,359.48 664.58,362.34 "
-       id="polygon14494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.56,358.47 654.41,358.98 664.63,361.84 "
-       id="polygon14496" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="665.55,350.01 665.79,350.27 656.38,347.65 "
-       id="polygon14498" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="655.82,347.29 655.47,347.35 664.89,349.96 "
-       id="polygon14500" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="651.57,351.43 651.82,351.69 662.21,354.58 "
-       id="polygon14502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.41,351.05 651.57,351.43 661.96,354.33 "
-       id="polygon14504" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="652.09,348.79 651.78,349.13 662.18,352.02 "
-       id="polygon14506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.34,350.59 651.41,351.05 661.8,353.95 "
-       id="polygon14508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="655.13,347.56 654.83,347.9 664.25,350.52 "
-       id="polygon14510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.78,349.13 651.54,349.57 661.94,352.47 "
-       id="polygon14512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.39,350.07 651.34,350.59 661.74,353.48 "
-       id="polygon14514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="651.54,349.57 651.39,350.07 661.79,352.97 "
-       id="polygon14516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.83,347.9 654.59,348.35 664.01,350.96 "
-       id="polygon14518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.44,348.85 654.39,349.36 663.81,351.98 "
-       id="polygon14520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="654.59,348.35 654.44,348.85 663.86,351.47 "
-       id="polygon14522" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="665.79,356.6 666.14,356.55 655.34,353.54 "
-       id="polygon14524" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="665.45,356.81 665.79,356.6 654.99,353.59 "
-       id="polygon14526" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="665.18,359.72 664.93,359.47 654.13,356.45 "
-       id="polygon14528" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="665.33,360.54 665.67,360.33 655.45,357.47 "
-       id="polygon14530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.15,357.16 665.45,356.81 654.65,353.8 "
-       id="polygon14532" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="664.93,359.47 664.77,359.09 653.97,356.07 "
-       id="polygon14534" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="665.02,360.89 665.33,360.54 655.1,357.68 "
-       id="polygon14536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.91,357.61 665.15,357.16 654.35,354.15 "
-       id="polygon14538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.81,363.19 664.64,362.81 654.42,359.95 "
-       id="polygon14540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.77,359.09 664.71,358.62 653.91,355.61 "
-       id="polygon14542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.76,358.11 664.91,357.61 654.11,354.59 "
-       id="polygon14544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.71,358.62 664.76,358.11 653.96,355.09 "
-       id="polygon14546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.78,361.33 665.02,360.89 654.8,358.03 "
-       id="polygon14548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.64,362.81 664.58,362.34 654.36,359.48 "
-       id="polygon14550" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.63,361.84 664.78,361.33 654.56,358.47 "
-       id="polygon14552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.58,362.34 664.63,361.84 654.41,358.98 "
-       id="polygon14554" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="664.55,350.18 664.89,349.96 655.47,347.35 "
-       id="polygon14556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.25,350.52 664.55,350.18 655.13,347.56 "
-       id="polygon14558" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="662.18,352.02 662.48,351.68 652.09,348.79 "
-       id="polygon14560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.96,354.33 661.8,353.95 651.41,351.05 "
-       id="polygon14562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.01,350.96 664.25,350.52 654.83,347.9 "
-       id="polygon14564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.94,352.47 662.18,352.02 651.78,349.13 "
-       id="polygon14566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="663.86,351.47 664.01,350.96 654.59,348.35 "
-       id="polygon14568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="663.81,351.98 663.86,351.47 654.44,348.85 "
-       id="polygon14570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.8,353.95 661.74,353.48 651.34,350.59 "
-       id="polygon14572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.79,352.97 661.94,352.47 651.54,349.57 "
-       id="polygon14574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.74,353.48 661.79,352.97 651.39,350.07 "
-       id="polygon14576" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="665.71,363.49 665.37,363.55 665.43,363.22 "
-       id="polygon14578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="668.37,356.66 668.06,357 678.43,359.89 "
-       id="polygon14580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="678.43,359.89 678.73,359.55 668.37,356.66 "
-       id="polygon14582" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="665.6,355.84 665.85,356.1 675.91,358.9 "
-       id="polygon14584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.44,355.46 665.6,355.84 675.66,358.64 "
-       id="polygon14586" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="665.33,360.54 665.67,360.33 665.67,360.64 "
-       id="polygon14588" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="662.21,354.58 662.53,354.69 662.59,354.36 "
-       id="polygon14590" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="675.91,358.9 675.66,358.64 665.6,355.84 "
-       id="polygon14592" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="666.01,360.27 665.67,360.33 675.92,363.2 "
-       id="polygon14594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.66,358.64 675.5,358.27 665.44,355.46 "
-       id="polygon14596" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="664.81,363.19 665.05,363.45 675.31,366.32 "
-       id="polygon14598" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="665.67,360.33 665.33,360.54 675.58,363.41 "
-       id="polygon14600" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="665.79,356.6 665.45,356.81 676.29,359.84 "
-       id="polygon14602" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="665.23,349.91 664.89,349.96 674.34,352.59 "
-       id="polygon14604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.64,362.81 664.81,363.19 675.06,366.06 "
-       id="polygon14606" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="665.33,360.54 665.02,360.89 675.28,363.75 "
-       id="polygon14608" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="664.77,359.09 664.93,359.47 675.77,362.49 "
-       id="polygon14610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.45,356.81 665.15,357.16 675.98,360.18 "
-       id="polygon14612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.58,362.34 664.64,362.81 674.9,365.68 "
-       id="polygon14614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.02,360.89 664.78,361.33 675.04,364.2 "
-       id="polygon14616" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="664.89,349.96 664.55,350.18 674,352.8 "
-       id="polygon14618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.71,358.62 664.77,359.09 675.61,362.11 "
-       id="polygon14620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.63,361.84 664.58,362.34 674.84,365.21 "
-       id="polygon14622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.78,361.33 664.63,361.84 674.89,364.7 "
-       id="polygon14624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="665.15,357.16 664.91,357.61 675.75,360.63 "
-       id="polygon14626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.76,358.11 664.71,358.62 675.55,361.64 "
-       id="polygon14628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.91,357.61 664.76,358.11 675.59,361.13 "
-       id="polygon14630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.55,350.18 664.25,350.52 673.69,353.14 "
-       id="polygon14632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.25,350.52 664.01,350.96 673.45,353.59 "
-       id="polygon14634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="663.86,351.47 663.81,351.98 673.25,354.61 "
-       id="polygon14636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="664.01,350.96 663.86,351.47 673.3,354.1 "
-       id="polygon14638" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="662.82,351.46 662.48,351.68 672.91,354.58 "
-       id="polygon14640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.8,353.95 661.96,354.33 672.39,357.23 "
-       id="polygon14642" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="662.48,351.68 662.18,352.02 672.61,354.92 "
-       id="polygon14644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.74,353.48 661.8,353.95 672.23,356.86 "
-       id="polygon14646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="662.18,352.02 661.94,352.47 672.37,355.37 "
-       id="polygon14648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.79,352.97 661.74,353.48 672.17,356.39 "
-       id="polygon14650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="661.94,352.47 661.79,352.97 672.22,355.88 "
-       id="polygon14652" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="676.67,362.8 676.33,362.85 665.5,359.82 "
-       id="polygon14654" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="676.63,359.63 676.97,359.57 666.14,356.55 "
-       id="polygon14656" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="674.34,352.59 674.68,352.53 665.23,349.91 "
-       id="polygon14658" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="675.58,363.41 675.92,363.2 665.67,360.33 "
-       id="polygon14660" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="676.29,359.84 676.63,359.63 665.79,356.6 "
-       id="polygon14662" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="674,352.8 674.34,352.59 664.89,349.96 "
-       id="polygon14664" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="675.28,363.75 675.58,363.41 665.33,360.54 "
-       id="polygon14666" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="676.02,362.75 675.77,362.49 664.93,359.47 "
-       id="polygon14668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.06,366.06 674.9,365.68 664.64,362.81 "
-       id="polygon14670" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="673.3,357.54 672.95,357.59 662.53,354.69 "
-       id="polygon14672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.04,364.2 675.28,363.75 665.02,360.89 "
-       id="polygon14674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.98,360.18 676.29,359.84 665.45,356.81 "
-       id="polygon14676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.9,365.68 674.84,365.21 664.58,362.34 "
-       id="polygon14678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.69,353.14 674,352.8 664.55,350.18 "
-       id="polygon14680" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="675.77,362.49 675.61,362.11 664.77,359.09 "
-       id="polygon14682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.89,364.7 675.04,364.2 664.78,361.33 "
-       id="polygon14684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.84,365.21 674.89,364.7 664.63,361.84 "
-       id="polygon14686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.75,360.63 675.98,360.18 665.15,357.16 "
-       id="polygon14688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.45,353.59 673.69,353.14 664.25,350.52 "
-       id="polygon14690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.61,362.11 675.55,361.64 664.71,358.62 "
-       id="polygon14692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.59,361.13 675.75,360.63 664.91,357.61 "
-       id="polygon14694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.3,354.1 673.45,353.59 664.01,350.96 "
-       id="polygon14696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.55,361.64 675.59,361.13 664.76,358.11 "
-       id="polygon14698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.25,354.61 673.3,354.1 663.86,351.47 "
-       id="polygon14700" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="672.64,357.49 672.39,357.23 661.96,354.33 "
-       id="polygon14702" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="672.61,354.92 672.91,354.58 662.48,351.68 "
-       id="polygon14704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.39,357.23 672.23,356.86 661.8,353.95 "
-       id="polygon14706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.37,355.37 672.61,354.92 662.18,352.02 "
-       id="polygon14708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.23,356.86 672.17,356.39 661.74,353.48 "
-       id="polygon14710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.22,355.88 672.37,355.37 661.94,352.47 "
-       id="polygon14712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.17,356.39 672.22,355.88 661.79,352.97 "
-       id="polygon14714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="678.73,359.55 678.43,359.89 688.83,362.79 "
-       id="polygon14716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="688.83,362.79 689.14,362.45 678.73,359.55 "
-       id="polygon14718" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="675.66,358.64 675.91,358.9 686.17,361.76 "
-       id="polygon14720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.5,358.27 675.66,358.64 685.93,361.51 "
-       id="polygon14722" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="675.28,363.75 675.58,363.41 675.66,363.68 "
-       id="polygon14724" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="686.17,361.76 685.93,361.51 675.66,358.64 "
-       id="polygon14726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.93,361.51 685.76,361.13 675.5,358.27 "
-       id="polygon14728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="688.59,363.24 688.83,362.79 678.43,359.89 "
-       id="polygon14730" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="686.25,369.24 685.91,369.3 675.62,366.42 "
-       id="polygon14732" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="675.06,366.06 675.31,366.32 685.6,369.2 "
-       id="polygon14734" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="675.92,363.2 675.58,363.41 685.87,366.28 "
-       id="polygon14736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.9,365.68 675.06,366.06 685.35,368.94 "
-       id="polygon14738" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="676.97,359.57 676.63,359.63 687.5,362.66 "
-       id="polygon14740" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="675.58,363.41 675.28,363.75 685.57,366.63 "
-       id="polygon14742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.84,365.21 674.9,365.68 685.19,368.56 "
-       id="polygon14744" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="675.77,362.49 676.02,362.75 686.89,365.79 "
-       id="polygon14746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.28,363.75 675.04,364.2 685.33,367.08 "
-       id="polygon14748" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="674.5,352.63 674.16,352.84 685.82,356.09 "
-       id="polygon14750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.89,364.7 674.84,365.21 685.13,368.09 "
-       id="polygon14752" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="676.63,359.63 676.29,359.84 687.16,362.87 "
-       id="polygon14754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.04,364.2 674.89,364.7 685.18,367.58 "
-       id="polygon14756" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="675.61,362.11 675.77,362.49 686.64,365.53 "
-       id="polygon14758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="674.16,352.84 673.86,353.19 685.52,356.43 "
-       id="polygon14760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="676.29,359.84 675.98,360.18 686.86,363.21 "
-       id="polygon14762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.55,361.64 675.61,362.11 686.48,365.15 "
-       id="polygon14764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.86,353.19 673.61,353.64 685.28,356.88 "
-       id="polygon14766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.98,360.18 675.75,360.63 686.62,363.66 "
-       id="polygon14768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.46,354.14 673.41,354.65 685.08,357.9 "
-       id="polygon14770" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.59,361.13 675.55,361.64 686.42,364.68 "
-       id="polygon14772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="673.61,353.64 673.46,354.14 685.13,357.38 "
-       id="polygon14774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="675.75,360.63 675.59,361.13 686.47,364.17 "
-       id="polygon14776" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="672.39,357.23 672.64,357.49 684.3,360.74 "
-       id="polygon14778" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="673.25,354.37 672.91,354.58 684.58,357.82 "
-       id="polygon14780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.23,356.86 672.39,357.23 684.05,360.48 "
-       id="polygon14782" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="672.91,354.58 672.61,354.92 684.27,358.17 "
-       id="polygon14784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.17,356.39 672.23,356.86 683.89,360.1 "
-       id="polygon14786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.61,354.92 672.37,355.37 684.03,358.62 "
-       id="polygon14788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.22,355.88 672.17,356.39 683.83,359.63 "
-       id="polygon14790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="672.37,355.37 672.22,355.88 683.88,359.12 "
-       id="polygon14792" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="686.21,366.07 686.55,366.01 676.27,363.14 "
-       id="polygon14794" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="685.87,366.28 686.21,366.07 675.92,363.2 "
-       id="polygon14796" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="685.6,369.2 685.35,368.94 675.06,366.06 "
-       id="polygon14798" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="685.57,366.63 685.87,366.28 675.58,363.41 "
-       id="polygon14800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.35,368.94 685.19,368.56 674.9,365.68 "
-       id="polygon14802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.33,367.08 685.57,366.63 675.28,363.75 "
-       id="polygon14804" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="686.16,355.88 686.5,355.82 674.84,352.58 "
-       id="polygon14806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.19,368.56 685.13,368.09 674.84,365.21 "
-       id="polygon14808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.18,367.58 685.33,367.08 675.04,364.2 "
-       id="polygon14810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.13,368.09 685.18,367.58 674.89,364.7 "
-       id="polygon14812" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="687.16,362.87 687.5,362.66 676.63,359.63 "
-       id="polygon14814" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="686.89,365.79 686.64,365.53 675.77,362.49 "
-       id="polygon14816" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="685.82,356.09 686.16,355.88 674.5,352.63 "
-       id="polygon14818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.86,363.21 687.16,362.87 676.29,359.84 "
-       id="polygon14820" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="686.64,365.53 686.48,365.15 675.61,362.11 "
-       id="polygon14822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.52,356.43 685.82,356.09 674.16,352.84 "
-       id="polygon14824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.62,363.66 686.86,363.21 675.98,360.18 "
-       id="polygon14826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.48,365.15 686.42,364.68 675.55,361.64 "
-       id="polygon14828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.47,364.17 686.62,363.66 675.75,360.63 "
-       id="polygon14830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.42,364.68 686.47,364.17 675.59,361.13 "
-       id="polygon14832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.28,356.88 685.52,356.43 673.86,353.19 "
-       id="polygon14834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.13,357.38 685.28,356.88 673.61,353.64 "
-       id="polygon14836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.08,357.9 685.13,357.38 673.46,354.14 "
-       id="polygon14838" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="684.3,360.74 684.05,360.48 672.39,357.23 "
-       id="polygon14840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="689.14,362.45 688.83,362.79 699.27,365.7 "
-       id="polygon14842" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="685.93,361.51 686.17,361.76 696.47,364.63 "
-       id="polygon14844" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="684.27,358.17 684.58,357.82 672.91,354.58 "
-       id="polygon14846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="684.05,360.48 683.89,360.1 672.23,356.86 "
-       id="polygon14848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.76,361.13 685.93,361.51 696.22,364.38 "
-       id="polygon14850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="684.03,358.62 684.27,358.17 672.61,354.92 "
-       id="polygon14852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.89,360.1 683.83,359.63 672.17,356.39 "
-       id="polygon14854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.88,359.12 684.03,358.62 672.37,355.37 "
-       id="polygon14856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.83,359.63 683.88,359.12 672.22,355.88 "
-       id="polygon14858" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="686.55,366.01 686.21,366.07 696.53,368.95 "
-       id="polygon14860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.22,364.38 696.06,364 685.76,361.13 "
-       id="polygon14862" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="685.35,368.94 685.6,369.2 695.92,372.09 "
-       id="polygon14864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="699.03,366.15 699.27,365.7 688.83,362.79 "
-       id="polygon14866" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="688.41,362.96 688.16,362.7 699.07,365.75 "
-       id="polygon14868" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="686.21,366.07 685.87,366.28 696.19,369.16 "
-       id="polygon14870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.19,368.56 685.35,368.94 695.67,371.83 "
-       id="polygon14872" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="685.87,366.28 685.57,366.63 695.89,369.52 "
-       id="polygon14874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.13,368.09 685.19,368.56 695.51,371.45 "
-       id="polygon14876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.57,366.63 685.33,367.08 695.65,369.96 "
-       id="polygon14878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.18,367.58 685.13,368.09 695.45,370.98 "
-       id="polygon14880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.33,367.08 685.18,367.58 695.5,370.47 "
-       id="polygon14882" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="686.64,365.53 686.89,365.79 697.8,368.83 "
-       id="polygon14884" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="687.5,362.66 687.16,362.87 698.07,365.91 "
-       id="polygon14886" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="686.48,365.15 686.64,365.53 697.55,368.58 "
-       id="polygon14888" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="686.5,355.82 686.16,355.88 697.86,359.13 "
-       id="polygon14890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="687.16,362.87 686.86,363.21 697.77,366.26 "
-       id="polygon14892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.42,364.68 686.48,365.15 697.39,368.2 "
-       id="polygon14894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.86,363.21 686.62,363.66 697.53,366.71 "
-       id="polygon14896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.47,364.17 686.42,364.68 697.33,367.73 "
-       id="polygon14898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="686.62,363.66 686.47,364.17 697.38,367.21 "
-       id="polygon14900" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="686.16,355.88 685.82,356.09 697.52,359.34 "
-       id="polygon14902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.82,356.09 685.52,356.43 697.22,359.68 "
-       id="polygon14904" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="696.4,364.12 696.6,364.32 696.47,364.63 "
-       id="polygon14906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.52,356.43 685.28,356.88 696.98,360.13 "
-       id="polygon14908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.13,357.38 685.08,357.9 696.78,361.15 "
-       id="polygon14910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="685.28,356.88 685.13,357.38 696.83,360.64 "
-       id="polygon14912" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="684.05,360.48 684.3,360.74 696.01,364 "
-       id="polygon14914" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="696.19,369.16 696.53,368.95 686.21,366.07 "
-       id="polygon14916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.89,360.1 684.05,360.48 695.76,363.75 "
-       id="polygon14918" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="695.89,369.52 696.19,369.16 685.87,366.28 "
-       id="polygon14920" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="684.58,357.82 684.27,358.17 695.98,361.43 "
-       id="polygon14922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.67,371.83 695.51,371.45 685.19,368.56 "
-       id="polygon14924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.83,359.63 683.89,360.1 695.59,363.36 "
-       id="polygon14926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.65,369.96 695.89,369.52 685.57,366.63 "
-       id="polygon14928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="684.27,358.17 684.03,358.62 695.73,361.88 "
-       id="polygon14930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.51,371.45 695.45,370.98 685.13,368.09 "
-       id="polygon14932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="683.88,359.12 683.83,359.63 695.54,362.89 "
-       id="polygon14934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="684.03,358.62 683.88,359.12 695.58,362.38 "
-       id="polygon14936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.5,370.47 695.65,369.96 685.33,367.08 "
-       id="polygon14938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.45,370.98 695.5,370.47 685.18,367.58 "
-       id="polygon14940" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="698.07,365.91 698.41,365.7 687.5,362.66 "
-       id="polygon14942" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="697.8,368.83 697.55,368.58 686.64,365.53 "
-       id="polygon14944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.77,366.26 698.07,365.91 687.16,362.87 "
-       id="polygon14946" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="697.55,368.58 697.39,368.2 686.48,365.15 "
-       id="polygon14948" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="697.86,359.13 698.21,359.07 686.5,355.82 "
-       id="polygon14950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.53,366.71 697.77,366.26 686.86,363.21 "
-       id="polygon14952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.39,368.2 697.33,367.73 686.42,364.68 "
-       id="polygon14954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.38,367.21 697.53,366.71 686.62,363.66 "
-       id="polygon14956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.33,367.73 697.38,367.21 686.47,364.17 "
-       id="polygon14958" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="697.52,359.34 697.86,359.13 686.16,355.88 "
-       id="polygon14960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.22,359.68 697.52,359.34 685.82,356.09 "
-       id="polygon14962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.06,364 696.22,364.38 706.55,367.26 "
-       id="polygon14964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.98,360.13 697.22,359.68 685.52,356.43 "
-       id="polygon14966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="699.57,365.36 699.27,365.7 709.73,368.62 "
-       id="polygon14968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.83,360.64 696.98,360.13 685.28,356.88 "
-       id="polygon14970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.78,361.15 696.83,360.64 685.13,357.38 "
-       id="polygon14972" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="696.01,364 695.76,363.75 684.05,360.48 "
-       id="polygon14974" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="695.98,361.43 696.28,361.08 684.58,357.82 "
-       id="polygon14976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.76,363.75 695.59,363.36 683.89,360.1 "
-       id="polygon14978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.73,361.88 695.98,361.43 684.27,358.17 "
-       id="polygon14980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.59,363.36 695.54,362.89 683.83,359.63 "
-       id="polygon14982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.58,362.38 695.73,361.88 684.03,358.62 "
-       id="polygon14984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.54,362.89 695.58,362.38 683.88,359.12 "
-       id="polygon14986" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="697.43,369.25 697.18,369 707.54,371.89 "
-       id="polygon14988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="709.73,368.62 710.04,368.27 699.57,365.36 "
-       id="polygon14990" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="706.8,367.51 706.55,367.26 696.22,364.38 "
-       id="polygon14992" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="696.88,368.89 696.53,368.95 706.89,371.85 "
-       id="polygon14994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706.55,367.26 706.39,366.88 696.06,364 "
-       id="polygon14996" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="706.93,375.03 706.58,375.09 696.23,372.19 "
-       id="polygon14998" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="695.67,371.83 695.92,372.09 706.27,374.98 "
-       id="polygon15000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="709.5,369.07 709.73,368.62 699.27,365.7 "
-       id="polygon15002" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="696.53,368.95 696.19,369.16 706.55,372.06 "
-       id="polygon15004" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="698.76,365.64 698.41,365.7 705.21,367.59 "
-       id="polygon15006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.51,371.45 695.67,371.83 706.02,374.73 "
-       id="polygon15008" />
-    <line
-       x1="697.95001"
-       y1="365.42999"
-       x2="697.95001"
-       y2="365.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15010" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="697.55,368.58 697.8,368.83 704.6,370.73 "
-       id="polygon15012" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="696.19,369.16 695.89,369.52 706.24,372.41 "
-       id="polygon15014" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="698.41,365.7 698.07,365.91 704.87,367.81 "
-       id="polygon15016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.45,370.98 695.51,371.45 705.86,374.35 "
-       id="polygon15018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.89,369.52 695.65,369.96 706,372.86 "
-       id="polygon15020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.5,370.47 695.45,370.98 705.8,373.88 "
-       id="polygon15022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="695.65,369.96 695.5,370.47 705.85,373.36 "
-       id="polygon15024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="698.07,365.91 697.77,366.26 704.57,368.16 "
-       id="polygon15026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.33,367.73 697.39,368.2 704.19,370.09 "
-       id="polygon15028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.77,366.26 697.53,366.71 704.33,368.61 "
-       id="polygon15030" />
-    <line
-       x1="697.59998"
-       y1="364.07999"
-       x2="697.59998"
-       y2="364.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.38,367.21 697.33,367.73 704.13,369.63 "
-       id="polygon15034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.53,366.71 697.38,367.21 704.18,369.11 "
-       id="polygon15036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="696.28,361.08 695.98,361.43 696.55,361.59 "
-       id="polygon15038" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="698.77,359.43 698.52,359.17 710.02,362.37 "
-       id="polygon15040" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="704.87,367.81 705.21,367.59 698.41,365.7 "
-       id="polygon15042" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="698.21,359.07 697.86,359.13 709.37,362.32 "
-       id="polygon15044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.57,368.16 704.87,367.81 698.07,365.91 "
-       id="polygon15046" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="704.35,370.48 704.19,370.09 697.39,368.2 "
-       id="polygon15048" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="706.55,372.06 706.89,371.85 696.53,368.95 "
-       id="polygon15050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.33,368.61 704.57,368.16 697.77,366.26 "
-       id="polygon15052" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="697.86,359.13 697.52,359.34 709.03,362.54 "
-       id="polygon15054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.19,370.09 704.13,369.63 697.33,367.73 "
-       id="polygon15056" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="706.27,374.98 706.02,374.73 695.67,371.83 "
-       id="polygon15058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.18,369.11 704.33,368.61 697.53,366.71 "
-       id="polygon15060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.13,369.63 704.18,369.11 697.38,367.21 "
-       id="polygon15062" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="706.24,372.41 706.55,372.06 696.19,369.16 "
-       id="polygon15064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.52,359.34 697.22,359.68 708.73,362.88 "
-       id="polygon15066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706.02,374.73 705.86,374.35 695.51,371.45 "
-       id="polygon15068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706,372.86 706.24,372.41 695.89,369.52 "
-       id="polygon15070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="697.22,359.68 696.98,360.13 708.48,363.33 "
-       id="polygon15072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.86,374.35 705.8,373.88 695.45,370.98 "
-       id="polygon15074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.83,360.64 696.78,361.15 708.29,364.35 "
-       id="polygon15076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.98,360.13 696.83,360.64 708.33,363.84 "
-       id="polygon15078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.85,373.36 706,372.86 695.65,369.96 "
-       id="polygon15080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.8,373.88 705.85,373.36 695.5,370.47 "
-       id="polygon15082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706.39,366.88 706.55,367.26 716.2,369.95 "
-       id="polygon15084" />
-    <line
-       x1="706.63"
-       y1="367.14001"
-       x2="706.63"
-       y2="367.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="716.2,369.95 716.04,369.57 706.39,366.88 "
-       id="polygon15088" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="696.34,363.91 696.58,364.16 707.51,367.21 "
-       id="polygon15090" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="697.2,361.03 696.86,361.24 707.79,364.28 "
-       id="polygon15092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.17,363.52 696.34,363.91 707.26,366.95 "
-       id="polygon15094" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="696.86,361.24 696.55,361.59 707.48,364.63 "
-       id="polygon15096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.11,363.05 696.17,363.52 707.1,366.57 "
-       id="polygon15098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.55,361.59 696.31,362.04 707.24,365.08 "
-       id="polygon15100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="710.04,368.27 709.73,368.62 719.7,371.4 "
-       id="polygon15102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="719.7,371.4 720,371.05 710.04,368.27 "
-       id="polygon15104" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="706.55,367.26 706.8,367.51 716.45,370.2 "
-       id="polygon15106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.16,362.54 696.11,363.05 707.04,366.1 "
-       id="polygon15108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="696.31,362.04 696.16,362.54 707.09,365.58 "
-       id="polygon15110" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="706.11,367.89 705.86,367.64 715.39,370.3 "
-       id="polygon15112" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="709.03,362.54 709.37,362.32 697.86,359.13 "
-       id="polygon15114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.73,362.88 709.03,362.54 697.52,359.34 "
-       id="polygon15116" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="705.55,367.54 705.21,367.59 714.74,370.25 "
-       id="polygon15118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.48,363.33 708.73,362.88 697.22,359.68 "
-       id="polygon15120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.33,363.84 708.48,363.33 696.98,360.13 "
-       id="polygon15122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.29,364.35 708.33,363.84 696.83,360.64 "
-       id="polygon15124" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="704.35,370.48 704.6,370.73 714.12,373.39 "
-       id="polygon15126" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="705.21,367.59 704.87,367.81 714.4,370.46 "
-       id="polygon15128" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="704.19,370.09 704.35,370.48 713.88,373.14 "
-       id="polygon15130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.87,367.81 704.57,368.16 714.09,370.81 "
-       id="polygon15132" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="707.51,367.21 707.26,366.95 696.34,363.91 "
-       id="polygon15134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.13,369.63 704.19,370.09 713.71,372.75 "
-       id="polygon15136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.57,368.16 704.33,368.61 713.85,371.26 "
-       id="polygon15138" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.18,369.11 704.13,369.63 713.65,372.28 "
-       id="polygon15140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="704.33,368.61 704.18,369.11 713.7,371.77 "
-       id="polygon15142" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="707.48,364.63 707.79,364.28 696.86,361.24 "
-       id="polygon15144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.26,366.95 707.1,366.57 696.17,363.52 "
-       id="polygon15146" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="716.45,370.2 716.2,369.95 706.55,367.26 "
-       id="polygon15148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.24,365.08 707.48,364.63 696.55,361.59 "
-       id="polygon15150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.1,366.57 707.04,366.1 696.11,363.05 "
-       id="polygon15152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.09,365.58 707.24,365.08 696.31,362.04 "
-       id="polygon15154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.04,366.1 707.09,365.58 696.16,362.54 "
-       id="polygon15156" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="707.23,371.79 706.89,371.85 716.85,374.63 "
-       id="polygon15158" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="706.02,374.73 706.27,374.98 716.23,377.77 "
-       id="polygon15160" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="706.89,371.85 706.55,372.06 716.51,374.84 "
-       id="polygon15162" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="709.38,362.64 709.65,362.59 709.71,362.27 "
-       id="polygon15164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.86,374.35 706.02,374.73 715.98,377.52 "
-       id="polygon15166" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="706.55,372.06 706.24,372.41 716.2,375.19 "
-       id="polygon15168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.8,373.88 705.86,374.35 715.82,377.14 "
-       id="polygon15170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706.24,372.41 706,372.86 715.96,375.64 "
-       id="polygon15172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="705.85,373.36 705.8,373.88 715.76,376.66 "
-       id="polygon15174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="706,372.86 705.85,373.36 715.81,376.15 "
-       id="polygon15176" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="714.4,370.46 714.74,370.25 705.21,367.59 "
-       id="polygon15178" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="714.12,373.39 713.88,373.14 704.35,370.48 "
-       id="polygon15180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.09,370.81 714.4,370.46 704.87,367.81 "
-       id="polygon15182" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="713.88,373.14 713.71,372.75 704.19,370.09 "
-       id="polygon15184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.85,371.26 714.09,370.81 704.57,368.16 "
-       id="polygon15186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.71,372.75 713.65,372.28 704.13,369.63 "
-       id="polygon15188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.7,371.77 713.85,371.26 704.33,368.61 "
-       id="polygon15190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.65,372.28 713.7,371.77 704.18,369.11 "
-       id="polygon15192" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="716.85,374.63 717.19,374.57 707.23,371.79 "
-       id="polygon15194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="709.03,362.54 708.73,362.88 714.25,364.42 "
-       id="polygon15196" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="716.51,374.84 716.85,374.63 706.89,371.85 "
-       id="polygon15198" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="716.23,377.77 715.98,377.52 706.02,374.73 "
-       id="polygon15200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.73,362.88 708.48,363.33 714.01,364.87 "
-       id="polygon15202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.33,363.84 708.29,364.35 713.81,365.89 "
-       id="polygon15204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="708.48,363.33 708.33,363.84 713.86,365.38 "
-       id="polygon15206" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="716.2,375.19 716.51,374.84 706.55,372.06 "
-       id="polygon15208" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.98,377.52 715.82,377.14 705.86,374.35 "
-       id="polygon15210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.96,375.64 716.2,375.19 706.24,372.41 "
-       id="polygon15212" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="714.89,363.86 715.24,363.8 709.71,362.27 "
-       id="polygon15214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.82,377.14 715.76,376.66 705.8,373.88 "
-       id="polygon15216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.81,376.15 715.96,375.64 706,372.86 "
-       id="polygon15218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.76,376.66 715.81,376.15 705.85,373.36 "
-       id="polygon15220" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="714.55,364.07 714.89,363.86 709.37,362.32 "
-       id="polygon15222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.25,364.42 714.55,364.07 709.03,362.54 "
-       id="polygon15224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.01,364.87 714.25,364.42 708.73,362.88 "
-       id="polygon15226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.86,365.38 714.01,364.87 708.48,363.33 "
-       id="polygon15228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.81,365.89 713.86,365.38 708.33,363.84 "
-       id="polygon15230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="716.04,369.57 716.2,369.95 731.05,374.08 "
-       id="polygon15232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="731.05,374.08 730.89,373.7 716.04,369.57 "
-       id="polygon15234" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="707.26,366.95 707.51,367.21 718.85,370.37 "
-       id="polygon15236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.1,366.57 707.26,366.95 718.61,370.11 "
-       id="polygon15238" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="707.79,364.28 707.48,364.63 718.82,367.79 "
-       id="polygon15240" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="714.43,373.5 714.77,373.44 724.32,376.11 "
-       id="polygon15242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.04,366.1 707.1,366.57 718.44,369.73 "
-       id="polygon15244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.48,364.63 707.24,365.08 718.58,368.23 "
-       id="polygon15246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.09,365.58 707.04,366.1 718.38,369.26 "
-       id="polygon15248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="707.24,365.08 707.09,365.58 718.43,368.74 "
-       id="polygon15250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="720,371.05 719.7,371.4 732.05,374.84 "
-       id="polygon15252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.05,374.84 732.35,374.49 720,371.05 "
-       id="polygon15254" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="716.2,369.95 716.45,370.2 731.29,374.34 "
-       id="polygon15256" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="715.08,370.19 714.74,370.25 724.29,372.91 "
-       id="polygon15258" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="714.74,370.25 714.4,370.46 723.95,373.13 "
-       id="polygon15260" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="713.71,372.75 713.88,373.14 723.43,375.8 "
-       id="polygon15262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.4,370.46 714.09,370.81 723.64,373.48 "
-       id="polygon15264" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.65,372.28 713.71,372.75 723.27,375.42 "
-       id="polygon15266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.09,370.81 713.85,371.26 723.41,373.93 "
-       id="polygon15268" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="715.79,364.16 715.55,363.9 725.39,366.64 "
-       id="polygon15270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.7,371.77 713.65,372.28 723.2,374.95 "
-       id="polygon15272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.85,371.26 713.7,371.77 723.25,374.43 "
-       id="polygon15274" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="715.98,377.52 716.23,377.77 725.41,380.34 "
-       id="polygon15276" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="714.89,363.86 714.55,364.07 724.4,366.81 "
-       id="polygon15278" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="716.85,374.63 716.51,374.84 725.68,377.41 "
-       id="polygon15280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.82,377.14 715.98,377.52 725.16,380.09 "
-       id="polygon15282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="718.82,367.79 719.13,367.43 707.79,364.28 "
-       id="polygon15284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.55,364.07 714.25,364.42 724.1,367.16 "
-       id="polygon15286" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="716.51,374.84 716.2,375.19 725.38,377.76 "
-       id="polygon15288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.61,370.11 718.44,369.73 707.1,366.57 "
-       id="polygon15290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.76,376.66 715.82,377.14 725,379.7 "
-       id="polygon15292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.58,368.23 718.82,367.79 707.48,364.63 "
-       id="polygon15294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.25,364.42 714.01,364.87 723.86,367.61 "
-       id="polygon15296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="716.2,375.19 715.96,375.64 725.14,378.21 "
-       id="polygon15298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.44,369.73 718.38,369.26 707.04,366.1 "
-       id="polygon15300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="713.86,365.38 713.81,365.89 723.66,368.63 "
-       id="polygon15302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="714.01,364.87 713.86,365.38 723.71,368.11 "
-       id="polygon15304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.81,376.15 715.76,376.66 724.94,379.23 "
-       id="polygon15306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="715.96,375.64 715.81,376.15 724.98,378.71 "
-       id="polygon15308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.43,368.74 718.58,368.23 707.24,365.08 "
-       id="polygon15310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.38,369.26 718.43,368.74 707.09,365.58 "
-       id="polygon15312" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="723.95,373.13 724.29,372.91 714.74,370.25 "
-       id="polygon15314" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="723.67,376.06 723.43,375.8 713.88,373.14 "
-       id="polygon15316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.64,373.48 723.95,373.13 714.4,370.46 "
-       id="polygon15318" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="723.43,375.8 723.27,375.42 713.71,372.75 "
-       id="polygon15320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.41,373.93 723.64,373.48 714.09,370.81 "
-       id="polygon15322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.27,375.42 723.2,374.95 713.65,372.28 "
-       id="polygon15324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="731.8,375.29 732.05,374.84 719.7,371.4 "
-       id="polygon15326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.25,374.43 723.41,373.93 713.85,371.26 "
-       id="polygon15328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.2,374.95 723.25,374.43 713.7,371.77 "
-       id="polygon15330" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="731.29,374.34 731.05,374.08 716.2,369.95 "
-       id="polygon15332" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="726.02,377.19 726.36,377.13 717.19,374.57 "
-       id="polygon15334" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="724.74,366.59 725.08,366.54 715.24,363.8 "
-       id="polygon15336" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="725.68,377.41 726.02,377.19 716.85,374.63 "
-       id="polygon15338" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="724.4,366.81 724.74,366.59 714.89,363.86 "
-       id="polygon15340" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="725.38,377.76 725.68,377.41 716.51,374.84 "
-       id="polygon15342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725.16,380.09 725,379.7 715.82,377.14 "
-       id="polygon15344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.1,367.16 724.4,366.81 714.55,364.07 "
-       id="polygon15346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725.14,378.21 725.38,377.76 716.2,375.19 "
-       id="polygon15348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725,379.7 724.94,379.23 715.76,376.66 "
-       id="polygon15350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.98,378.71 725.14,378.21 715.96,375.64 "
-       id="polygon15352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.86,367.61 724.1,367.16 714.25,364.42 "
-       id="polygon15354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.94,379.23 724.98,378.71 715.81,376.15 "
-       id="polygon15356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.71,368.11 723.86,367.61 714.01,364.87 "
-       id="polygon15358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.66,368.63 723.71,368.11 713.86,365.38 "
-       id="polygon15360" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="724.63,372.86 724.29,372.91 733.87,375.58 "
-       id="polygon15362" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="723.43,375.8 723.67,376.06 733.25,378.73 "
-       id="polygon15364" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="724.29,372.91 723.95,373.13 733.53,375.8 "
-       id="polygon15366" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="730.89,373.59 730.54,373.64 719.16,370.47 "
-       id="polygon15368" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="718.61,370.11 718.85,370.37 730.23,373.54 "
-       id="polygon15370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.71,368.11 723.66,368.63 733.54,371.38 "
-       id="polygon15372" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="719.47,367.22 719.13,367.43 730.51,370.6 "
-       id="polygon15374" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="723.27,375.42 723.43,375.8 733,378.48 "
-       id="polygon15376" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="726.92,377.49 726.67,377.24 735.87,379.81 "
-       id="polygon15378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.95,373.13 723.64,373.48 733.23,376.15 "
-       id="polygon15380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.44,369.73 718.61,370.11 729.99,373.28 "
-       id="polygon15382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.2,374.95 723.27,375.42 732.84,378.1 "
-       id="polygon15384" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="719.13,367.43 718.82,367.79 730.21,370.95 "
-       id="polygon15386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.64,373.48 723.41,373.93 732.98,376.6 "
-       id="polygon15388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.25,374.43 723.2,374.95 732.79,377.63 "
-       id="polygon15390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.38,369.26 718.44,369.73 729.82,372.9 "
-       id="polygon15392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.41,373.93 723.25,374.43 732.83,377.11 "
-       id="polygon15394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.82,367.79 718.58,368.23 729.97,371.4 "
-       id="polygon15396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.43,368.74 718.38,369.26 729.77,372.43 "
-       id="polygon15398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="718.58,368.23 718.43,368.74 729.82,371.91 "
-       id="polygon15400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.35,374.49 732.05,374.84 741.7,377.53 "
-       id="polygon15402" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="735.25,382.96 734.91,383.02 725.71,380.44 "
-       id="polygon15404" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="725.16,380.09 725.41,380.34 734.61,382.91 "
-       id="polygon15406" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="726.02,377.19 725.68,377.41 734.88,379.98 "
-       id="polygon15408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725,379.7 725.16,380.09 734.36,382.66 "
-       id="polygon15410" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="725.68,377.41 725.38,377.76 734.58,380.33 "
-       id="polygon15412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.94,379.23 725,379.7 734.2,382.28 "
-       id="polygon15414" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="724.74,366.59 724.4,366.81 734.28,369.55 "
-       id="polygon15416" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725.38,377.76 725.14,378.21 734.34,380.78 "
-       id="polygon15418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.98,378.71 724.94,379.23 734.14,381.8 "
-       id="polygon15420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="725.14,378.21 724.98,378.71 734.19,381.29 "
-       id="polygon15422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.46,377.98 741.7,377.53 732.05,374.84 "
-       id="polygon15424" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="733.87,375.58 734.21,375.53 724.63,372.86 "
-       id="polygon15426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.4,366.81 724.1,367.16 733.98,369.9 "
-       id="polygon15428" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="731.05,374.08 731.29,374.34 740.95,377.03 "
-       id="polygon15430" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="733.53,375.8 733.87,375.58 724.29,372.91 "
-       id="polygon15432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="724.1,367.16 723.86,367.61 733.73,370.35 "
-       id="polygon15434" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="733.25,378.73 733,378.48 723.43,375.8 "
-       id="polygon15436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="723.86,367.61 723.71,368.11 733.58,370.86 "
-       id="polygon15438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="730.89,373.7 731.05,374.08 740.7,376.77 "
-       id="polygon15440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.23,376.15 733.53,375.8 723.95,373.13 "
-       id="polygon15442" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="733,378.48 732.84,378.1 723.27,375.42 "
-       id="polygon15444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.98,376.6 733.23,376.15 723.64,373.48 "
-       id="polygon15446" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.84,378.1 732.79,377.63 723.2,374.95 "
-       id="polygon15448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.83,377.11 732.98,376.6 723.41,373.93 "
-       id="polygon15450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.79,377.63 732.83,377.11 723.25,374.43 "
-       id="polygon15452" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="730.23,373.54 729.99,373.28 718.61,370.11 "
-       id="polygon15454" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="735.22,379.76 735.56,379.7 726.36,377.13 "
-       id="polygon15456" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="730.21,370.95 730.51,370.6 719.13,367.43 "
-       id="polygon15458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.99,373.28 729.82,372.9 718.44,369.73 "
-       id="polygon15460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.97,371.4 730.21,370.95 718.82,367.79 "
-       id="polygon15462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.82,372.9 729.77,372.43 718.38,369.26 "
-       id="polygon15464" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="734.88,379.98 735.22,379.76 726.02,377.19 "
-       id="polygon15466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.82,371.91 729.97,371.4 718.58,368.23 "
-       id="polygon15468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.77,372.43 729.82,371.91 718.43,368.74 "
-       id="polygon15470" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="734.61,382.91 734.36,382.66 725.16,380.09 "
-       id="polygon15472" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="734.62,369.34 734.96,369.28 725.08,366.54 "
-       id="polygon15474" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="734.58,380.33 734.88,379.98 725.68,377.41 "
-       id="polygon15476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.34,380.78 734.58,380.33 725.38,377.76 "
-       id="polygon15478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.2,382.28 734.14,381.8 724.94,379.23 "
-       id="polygon15480" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="734.28,369.55 734.62,369.34 724.74,366.59 "
-       id="polygon15482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.19,381.29 734.34,380.78 725.14,378.21 "
-       id="polygon15484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.14,381.8 734.19,381.29 724.98,378.71 "
-       id="polygon15486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.98,369.9 734.28,369.55 724.4,366.81 "
-       id="polygon15488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.73,370.35 733.98,369.9 724.1,367.16 "
-       id="polygon15490" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="740.95,377.03 740.7,376.77 731.05,374.08 "
-       id="polygon15492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.58,370.86 733.73,370.35 723.86,367.61 "
-       id="polygon15494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.54,371.38 733.58,370.86 723.71,368.11 "
-       id="polygon15496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="740.7,376.77 740.54,376.39 730.89,373.7 "
-       id="polygon15498" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="730.36,373.23 730.61,373.31 730.54,373.64 "
-       id="polygon15500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.14,380.68 751.38,380.23 741.7,377.53 "
-       id="polygon15502" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="734.77,375.89 734.52,375.63 744.13,378.31 "
-       id="polygon15504" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="734.62,369.34 734.28,369.55 734.35,369.83 "
-       id="polygon15506" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="733.87,375.58 733.53,375.8 743.14,378.48 "
-       id="polygon15508" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="732.84,378.1 733,378.48 742.61,381.16 "
-       id="polygon15510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.53,375.8 733.23,376.15 742.84,378.83 "
-       id="polygon15512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.79,377.63 732.84,378.1 742.45,380.78 "
-       id="polygon15514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.23,376.15 732.98,376.6 742.59,379.28 "
-       id="polygon15516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.83,377.11 732.79,377.63 742.39,380.31 "
-       id="polygon15518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="732.98,376.6 732.83,377.11 742.44,379.79 "
-       id="polygon15520" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="735.56,379.7 735.22,379.76 744.45,382.34 "
-       id="polygon15522" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="734.36,382.66 734.61,382.91 743.83,385.5 "
-       id="polygon15524" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="735.22,379.76 734.88,379.98 744.11,382.55 "
-       id="polygon15526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742,377.18 741.7,377.53 751.38,380.23 "
-       id="polygon15528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.2,382.28 734.36,382.66 743.58,385.24 "
-       id="polygon15530" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="734.88,379.98 734.58,380.33 743.8,382.91 "
-       id="polygon15532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="740.54,376.39 740.7,376.77 750.38,379.47 "
-       id="polygon15534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="750.38,379.47 750.22,379.09 740.54,376.39 "
-       id="polygon15536" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="729.99,373.28 730.23,373.54 741.66,376.72 "
-       id="polygon15538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.14,381.8 734.2,382.28 743.42,384.86 "
-       id="polygon15540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.58,370.86 733.54,371.38 743.44,374.13 "
-       id="polygon15542" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="730.85,370.39 730.51,370.6 741.93,373.78 "
-       id="polygon15544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.58,380.33 734.34,380.78 743.57,383.36 "
-       id="polygon15546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.19,381.29 734.14,381.8 743.36,384.39 "
-       id="polygon15548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.34,380.78 734.19,381.29 743.41,383.87 "
-       id="polygon15550" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="734.96,369.28 734.62,369.34 744.53,372.09 "
-       id="polygon15552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.82,372.9 729.99,373.28 741.41,376.46 "
-       id="polygon15554" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="730.51,370.6 730.21,370.95 741.63,374.13 "
-       id="polygon15556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.77,372.43 729.82,372.9 741.25,376.08 "
-       id="polygon15558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="730.21,370.95 729.97,371.4 741.39,374.58 "
-       id="polygon15560" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="734.62,369.34 734.28,369.55 744.19,372.3 "
-       id="polygon15562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.82,371.91 729.77,372.43 741.19,375.61 "
-       id="polygon15564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="729.97,371.4 729.82,371.91 741.24,375.09 "
-       id="polygon15566" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="743.14,378.48 743.48,378.26 733.87,375.58 "
-       id="polygon15568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="734.28,369.55 733.98,369.9 743.88,372.66 "
-       id="polygon15570" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="742.86,381.42 742.61,381.16 733,378.48 "
-       id="polygon15572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.98,369.9 733.73,370.35 743.64,373.11 "
-       id="polygon15574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.84,378.83 743.14,378.48 733.53,375.8 "
-       id="polygon15576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="733.73,370.35 733.58,370.86 743.49,373.62 "
-       id="polygon15578" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="742.61,381.16 742.45,380.78 732.84,378.1 "
-       id="polygon15580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.59,379.28 742.84,378.83 733.23,376.15 "
-       id="polygon15582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.45,380.78 742.39,380.31 732.79,377.63 "
-       id="polygon15584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.44,379.79 742.59,379.28 732.98,376.6 "
-       id="polygon15586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.39,380.31 742.44,379.79 732.83,377.11 "
-       id="polygon15588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.38,380.23 751.68,379.88 742,377.18 "
-       id="polygon15590" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="743.8,382.91 744.11,382.55 734.88,379.98 "
-       id="polygon15592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.58,385.24 743.42,384.86 734.2,382.28 "
-       id="polygon15594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.57,383.36 743.8,382.91 734.58,380.33 "
-       id="polygon15596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.42,384.86 743.36,384.39 734.14,381.8 "
-       id="polygon15598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.41,383.87 743.57,383.36 734.34,380.78 "
-       id="polygon15600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.36,384.39 743.41,383.87 734.19,381.29 "
-       id="polygon15602" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="744.19,372.3 744.53,372.09 734.62,369.34 "
-       id="polygon15604" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="741.63,374.13 741.93,373.78 730.51,370.6 "
-       id="polygon15606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.41,376.46 741.25,376.08 729.82,372.9 "
-       id="polygon15608" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.88,372.66 744.19,372.3 734.28,369.55 "
-       id="polygon15610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.39,374.58 741.63,374.13 730.21,370.95 "
-       id="polygon15612" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="750.63,379.73 750.38,379.47 740.7,376.77 "
-       id="polygon15614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.25,376.08 741.19,375.61 729.77,372.43 "
-       id="polygon15616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.24,375.09 741.39,374.58 729.97,371.4 "
-       id="polygon15618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.64,373.11 743.88,372.66 733.98,369.9 "
-       id="polygon15620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.19,375.61 741.24,375.09 729.82,371.91 "
-       id="polygon15622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.49,373.62 743.64,373.11 733.73,370.35 "
-       id="polygon15624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.44,374.13 743.49,373.62 733.58,370.86 "
-       id="polygon15626" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="744.79,382.28 744.45,382.34 744.45,382.66 "
-       id="polygon15628" />
-    <line
-       x1="743.10999"
-       y1="378.35999"
-       x2="743.10999"
-       y2="378.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.68,379.88 751.38,380.23 754.11,380.99 "
-       id="polygon15632" />
-    <line
-       x1="742.84003"
-       y1="377.32999"
-       x2="742.84003"
-       y2="377.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15634" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="743.82,378.2 743.48,378.26 753.19,380.97 "
-       id="polygon15636" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="745.34,382.64 745.1,382.39 754.35,384.97 "
-       id="polygon15638" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="742.61,381.16 742.86,381.42 752.57,384.13 "
-       id="polygon15640" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="741.66,376.72 741.41,376.46 741.59,376.2 "
-       id="polygon15642" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="743.48,378.26 743.14,378.48 752.85,381.19 "
-       id="polygon15644" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="742.45,380.78 742.61,381.16 752.32,383.88 "
-       id="polygon15646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.14,378.48 742.84,378.83 752.55,381.54 "
-       id="polygon15648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.39,380.31 742.45,380.78 752.16,383.49 "
-       id="polygon15650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.84,378.83 742.59,379.28 752.31,381.99 "
-       id="polygon15652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.44,379.79 742.39,380.31 752.11,383.02 "
-       id="polygon15654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="742.59,379.28 742.44,379.79 752.16,382.5 "
-       id="polygon15656" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="743.58,385.24 743.83,385.5 753.08,388.09 "
-       id="polygon15658" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="744.45,382.34 744.11,382.55 753.36,385.14 "
-       id="polygon15660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="750.22,379.09 750.38,379.47 753.11,380.23 "
-       id="polygon15662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.42,384.86 743.58,385.24 752.84,387.83 "
-       id="polygon15664" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="744.11,382.55 743.8,382.91 753.06,385.49 "
-       id="polygon15666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.36,384.39 743.42,384.86 752.68,387.45 "
-       id="polygon15668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.8,382.91 743.57,383.36 752.82,385.95 "
-       id="polygon15670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.41,383.87 743.36,384.39 752.62,386.97 "
-       id="polygon15672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.57,383.36 743.41,383.87 752.66,386.46 "
-       id="polygon15674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.11,380.23 752.95,379.85 750.22,379.09 "
-       id="polygon15676" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="753.66,380.59 753.36,380.49 753.48,380.18 "
-       id="polygon15678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="756.55,381.67 756.85,381.32 754.41,380.64 "
-       id="polygon15680" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="744.53,372.09 744.19,372.3 754.13,375.07 "
-       id="polygon15682" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="752.85,381.19 753.19,380.97 743.48,378.26 "
-       id="polygon15684" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="752.57,384.13 752.32,383.88 742.61,381.16 "
-       id="polygon15686" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="741.41,376.46 741.66,376.72 752.29,379.68 "
-       id="polygon15688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="744.19,372.3 743.88,372.66 753.82,375.42 "
-       id="polygon15690" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="753.7,384.93 754.04,384.87 744.79,382.28 "
-       id="polygon15692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.55,381.54 752.85,381.19 743.14,378.48 "
-       id="polygon15694" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="752.32,383.88 752.16,383.49 742.45,380.78 "
-       id="polygon15696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.88,372.66 743.64,373.11 753.58,375.87 "
-       id="polygon15698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.49,373.62 743.44,374.13 753.38,376.9 "
-       id="polygon15700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="743.64,373.11 743.49,373.62 753.43,376.38 "
-       id="polygon15702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.25,376.08 741.41,376.46 752.04,379.43 "
-       id="polygon15704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.31,381.99 752.55,381.54 742.84,378.83 "
-       id="polygon15706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.16,383.49 752.11,383.02 742.39,380.31 "
-       id="polygon15708" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="753.36,385.14 753.7,384.93 744.45,382.34 "
-       id="polygon15710" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="741.93,373.78 741.63,374.13 752.26,377.09 "
-       id="polygon15712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.16,382.5 752.31,381.99 742.59,379.28 "
-       id="polygon15714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.11,383.02 752.16,382.5 742.44,379.79 "
-       id="polygon15716" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="753.08,388.09 752.84,387.83 743.58,385.24 "
-       id="polygon15718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.19,375.61 741.25,376.08 751.88,379.04 "
-       id="polygon15720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.63,374.13 741.39,374.58 752.02,377.54 "
-       id="polygon15722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.24,375.09 741.19,375.61 751.82,378.57 "
-       id="polygon15724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="741.39,374.58 741.24,375.09 751.87,378.05 "
-       id="polygon15726" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="753.06,385.49 753.36,385.14 744.11,382.55 "
-       id="polygon15728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.84,387.83 752.68,387.45 743.42,384.86 "
-       id="polygon15730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.82,385.95 753.06,385.49 743.8,382.91 "
-       id="polygon15732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.68,387.45 752.62,386.97 743.36,384.39 "
-       id="polygon15734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.66,386.46 752.82,385.95 743.57,383.36 "
-       id="polygon15736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.62,386.97 752.66,386.46 743.41,383.87 "
-       id="polygon15738" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="754.46,374.85 754.8,374.79 744.87,372.03 "
-       id="polygon15740" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="754.13,375.07 754.46,374.85 744.53,372.09 "
-       id="polygon15742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.95,379.85 753.11,380.23 763.32,383.08 "
-       id="polygon15744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="756.85,381.32 756.55,381.67 765.77,384.24 "
-       id="polygon15746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.82,375.42 754.13,375.07 744.19,372.3 "
-       id="polygon15748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.58,375.87 753.82,375.42 743.88,372.66 "
-       id="polygon15750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.43,376.38 753.58,375.87 743.64,373.11 "
-       id="polygon15752" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="752.29,379.68 752.04,379.43 741.41,376.46 "
-       id="polygon15754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.38,376.9 753.43,376.38 743.49,373.62 "
-       id="polygon15756" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="752.26,377.09 752.56,376.73 741.93,373.78 "
-       id="polygon15758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.04,379.43 751.88,379.04 741.25,376.08 "
-       id="polygon15760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.02,377.54 752.26,377.09 741.63,374.13 "
-       id="polygon15762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.88,379.04 751.82,378.57 741.19,375.61 "
-       id="polygon15764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.87,378.05 752.02,377.54 741.39,374.58 "
-       id="polygon15766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.82,378.57 751.87,378.05 741.24,375.09 "
-       id="polygon15768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="765.53,384.7 765.77,384.24 756.55,381.67 "
-       id="polygon15770" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="754.09,381.27 753.84,381.02 763.58,383.73 "
-       id="polygon15772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="765.77,384.24 766.07,383.89 756.85,381.32 "
-       id="polygon15774" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="763.57,383.34 763.32,383.08 753.11,380.23 "
-       id="polygon15776" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="752.32,383.88 752.57,384.13 762.31,386.85 "
-       id="polygon15778" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="753.19,380.97 752.85,381.19 762.59,383.9 "
-       id="polygon15780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.32,383.08 763.16,382.7 752.95,379.85 "
-       id="polygon15782" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="754.04,384.87 753.7,384.93 763.45,387.65 "
-       id="polygon15784" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="752.16,383.49 752.32,383.88 762.07,386.6 "
-       id="polygon15786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.85,381.19 752.55,381.54 762.29,384.26 "
-       id="polygon15788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.11,383.02 752.16,383.49 761.91,386.21 "
-       id="polygon15790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.55,381.54 752.31,381.99 762.05,384.71 "
-       id="polygon15792" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="753.7,384.93 753.36,385.14 763.11,387.87 "
-       id="polygon15794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.16,382.5 752.11,383.02 761.85,385.74 "
-       id="polygon15796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.31,381.99 752.16,382.5 761.9,385.22 "
-       id="polygon15798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.68,387.45 752.84,387.83 762.58,390.56 "
-       id="polygon15800" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="753.36,385.14 753.06,385.49 762.8,388.22 "
-       id="polygon15802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.62,386.97 752.68,387.45 762.42,390.18 "
-       id="polygon15804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.06,385.49 752.82,385.95 762.56,388.67 "
-       id="polygon15806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.66,386.46 752.62,386.97 762.36,389.7 "
-       id="polygon15808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.82,385.95 752.66,386.46 762.41,389.18 "
-       id="polygon15810" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="762.93,383.69 763.27,383.63 753.53,380.91 "
-       id="polygon15812" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="754.8,374.79 754.46,374.85 764.43,377.62 "
-       id="polygon15814" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="763.48,390.86 763.14,390.92 753.39,388.19 "
-       id="polygon15816" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="762.59,383.9 762.93,383.69 753.19,380.97 "
-       id="polygon15818" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="754.46,374.85 754.13,375.07 764.09,377.84 "
-       id="polygon15820" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="762.31,386.85 762.07,386.6 752.32,383.88 "
-       id="polygon15822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.29,384.26 762.59,383.9 752.85,381.19 "
-       id="polygon15824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="754.13,375.07 753.82,375.42 763.79,378.19 "
-       id="polygon15826" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="762.07,386.6 761.91,386.21 752.16,383.49 "
-       id="polygon15828" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="763.11,387.87 763.45,387.65 753.7,384.93 "
-       id="polygon15830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.05,384.71 762.29,384.26 752.55,381.54 "
-       id="polygon15832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.82,375.42 753.58,375.87 763.55,378.64 "
-       id="polygon15834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="761.91,386.21 761.85,385.74 752.11,383.02 "
-       id="polygon15836" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="762.83,390.82 762.58,390.56 752.84,387.83 "
-       id="polygon15838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.43,376.38 753.38,376.9 763.34,379.67 "
-       id="polygon15840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="753.58,375.87 753.43,376.38 763.39,379.15 "
-       id="polygon15842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="761.9,385.22 762.05,384.71 752.31,381.99 "
-       id="polygon15844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="761.85,385.74 761.9,385.22 752.16,382.5 "
-       id="polygon15846" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="762.8,388.22 763.11,387.87 753.36,385.14 "
-       id="polygon15848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.58,390.56 762.42,390.18 752.68,387.45 "
-       id="polygon15850" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="752.04,379.43 752.29,379.68 762.95,382.65 "
-       id="polygon15852" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="752.9,376.52 752.56,376.73 763.23,379.7 "
-       id="polygon15854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.56,388.67 762.8,388.22 753.06,385.49 "
-       id="polygon15856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.42,390.18 762.36,389.7 752.62,386.97 "
-       id="polygon15858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.41,389.18 762.56,388.67 752.82,385.95 "
-       id="polygon15860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.36,389.7 762.41,389.18 752.66,386.46 "
-       id="polygon15862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.88,379.04 752.04,379.43 762.7,382.4 "
-       id="polygon15864" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="752.56,376.73 752.26,377.09 762.92,380.05 "
-       id="polygon15866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.82,378.57 751.88,379.04 762.54,382.01 "
-       id="polygon15868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.26,377.09 752.02,377.54 762.68,380.51 "
-       id="polygon15870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="751.87,378.05 751.82,378.57 762.48,381.54 "
-       id="polygon15872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="752.02,377.54 751.87,378.05 762.53,381.02 "
-       id="polygon15874" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="764.43,377.62 764.77,377.56 754.8,374.79 "
-       id="polygon15876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="766.07,383.89 765.77,384.24 775.02,386.82 "
-       id="polygon15878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="765.77,384.24 765.53,384.7 774.78,387.28 "
-       id="polygon15880" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="764.09,377.84 764.43,377.62 754.46,374.85 "
-       id="polygon15882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="775.02,386.82 775.32,386.47 766.07,383.89 "
-       id="polygon15884" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="763.32,383.08 763.57,383.34 773.81,386.19 "
-       id="polygon15886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.79,378.19 764.09,377.84 754.13,375.07 "
-       id="polygon15888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.16,382.7 763.32,383.08 773.57,385.93 "
-       id="polygon15890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.55,378.64 763.79,378.19 753.82,375.42 "
-       id="polygon15892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.39,379.15 763.55,378.64 753.58,375.87 "
-       id="polygon15894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.34,379.67 763.39,379.15 753.43,376.38 "
-       id="polygon15896" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="762.95,382.65 762.7,382.4 752.04,379.43 "
-       id="polygon15898" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="762.92,380.05 763.23,379.7 752.56,376.73 "
-       id="polygon15900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.7,382.4 762.54,382.01 751.88,379.04 "
-       id="polygon15902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.68,380.51 762.92,380.05 752.26,377.09 "
-       id="polygon15904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.54,382.01 762.48,381.54 751.82,378.57 "
-       id="polygon15906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.53,381.02 762.68,380.51 752.02,377.54 "
-       id="polygon15908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.48,381.54 762.53,381.02 751.87,378.05 "
-       id="polygon15910" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="764.34,387.95 764.1,387.69 773.87,390.43 "
-       id="polygon15912" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="763.27,383.63 762.93,383.69 772.71,386.41 "
-       id="polygon15914" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="762.93,383.69 762.59,383.9 772.37,386.63 "
-       id="polygon15916" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="763.79,387.59 763.45,387.65 773.22,390.38 "
-       id="polygon15918" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="761.91,386.21 762.07,386.6 771.84,389.32 "
-       id="polygon15920" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="773.81,386.19 773.57,385.93 763.32,383.08 "
-       id="polygon15922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.59,383.9 762.29,384.26 772.06,386.98 "
-       id="polygon15924" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="762.58,390.56 762.83,390.82 772.6,393.55 "
-       id="polygon15926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="761.85,385.74 761.91,386.21 771.68,388.94 "
-       id="polygon15928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.29,384.26 762.05,384.71 771.82,387.44 "
-       id="polygon15930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.57,385.93 773.41,385.55 763.16,382.7 "
-       id="polygon15932" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="763.45,387.65 763.11,387.87 772.88,390.6 "
-       id="polygon15934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="761.9,385.22 761.85,385.74 771.62,388.46 "
-       id="polygon15936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.05,384.71 761.9,385.22 771.67,387.95 "
-       id="polygon15938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.42,390.18 762.58,390.56 772.36,393.29 "
-       id="polygon15940" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="763.11,387.87 762.8,388.22 772.58,390.95 "
-       id="polygon15942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.36,389.7 762.42,390.18 772.2,392.91 "
-       id="polygon15944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.8,388.22 762.56,388.67 772.34,391.41 "
-       id="polygon15946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.41,389.18 762.36,389.7 772.14,392.44 "
-       id="polygon15948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.56,388.67 762.41,389.18 772.19,391.92 "
-       id="polygon15950" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="772.37,386.63 772.71,386.41 762.93,383.69 "
-       id="polygon15952" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="772.09,389.58 771.84,389.32 762.07,386.6 "
-       id="polygon15954" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="764.43,377.62 764.09,377.84 774.09,380.61 "
-       id="polygon15956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.06,386.98 772.37,386.63 762.59,383.9 "
-       id="polygon15958" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="771.84,389.32 771.68,388.94 761.91,386.21 "
-       id="polygon15960" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="772.88,390.6 773.22,390.38 763.45,387.65 "
-       id="polygon15962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="764.09,377.84 763.79,378.19 773.79,380.96 "
-       id="polygon15964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.82,387.44 772.06,386.98 762.29,384.26 "
-       id="polygon15966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.68,388.94 771.62,388.46 761.85,385.74 "
-       id="polygon15968" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="772.6,393.55 772.36,393.29 762.58,390.56 "
-       id="polygon15970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.67,387.95 771.82,387.44 762.05,384.71 "
-       id="polygon15972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.62,388.46 771.67,387.95 761.9,385.22 "
-       id="polygon15974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.79,378.19 763.55,378.64 773.54,381.42 "
-       id="polygon15976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.39,379.15 763.34,379.67 773.34,382.45 "
-       id="polygon15978" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="772.58,390.95 772.88,390.6 763.11,387.87 "
-       id="polygon15980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="763.55,378.64 763.39,379.15 773.39,381.93 "
-       id="polygon15982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.36,393.29 772.2,392.91 762.42,390.18 "
-       id="polygon15984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.34,391.41 772.58,390.95 762.8,388.22 "
-       id="polygon15986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.2,392.91 772.14,392.44 762.36,389.7 "
-       id="polygon15988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.19,391.92 772.34,391.41 762.56,388.67 "
-       id="polygon15990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.14,392.44 772.19,391.92 762.41,389.18 "
-       id="polygon15992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="775.32,386.47 775.02,386.82 784.3,389.41 "
-       id="polygon15994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.54,382.01 762.7,382.4 773.39,385.38 "
-       id="polygon15996" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="763.23,379.7 762.92,380.05 773.62,383.03 "
-       id="polygon15998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.48,381.54 762.54,382.01 773.24,384.99 "
-       id="polygon16000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.92,380.05 762.68,380.51 773.38,383.49 "
-       id="polygon16002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.53,381.02 762.48,381.54 773.18,384.52 "
-       id="polygon16004" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="774.43,380.4 774.77,380.34 764.77,377.56 "
-       id="polygon16006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="762.68,380.51 762.53,381.02 773.23,384 "
-       id="polygon16008" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="774.09,380.61 774.43,380.4 764.43,377.62 "
-       id="polygon16010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.79,380.96 774.09,380.61 764.09,377.84 "
-       id="polygon16012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.54,381.42 773.79,380.96 763.79,378.19 "
-       id="polygon16014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.41,385.55 773.57,385.93 783.84,388.8 "
-       id="polygon16016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.39,381.93 773.54,381.42 763.55,378.64 "
-       id="polygon16018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.34,382.45 773.39,381.93 763.39,379.15 "
-       id="polygon16020" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="773.6,386.71 773.36,386.46 783.15,389.19 "
-       id="polygon16022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.3,389.41 784.6,389.05 775.32,386.47 "
-       id="polygon16024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.39,381.93 773.34,382.45 783.37,385.24 "
-       id="polygon16026" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="773.93,382.68 774.27,382.46 763.57,379.49 "
-       id="polygon16028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.84,388.8 783.68,388.41 773.41,385.55 "
-       id="polygon16030" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="773.64,385.63 773.39,385.38 762.7,382.4 "
-       id="polygon16032" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="773.62,383.03 773.93,382.68 763.23,379.7 "
-       id="polygon16034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.39,385.38 773.24,384.99 762.54,382.01 "
-       id="polygon16036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.38,383.49 773.62,383.03 762.92,380.05 "
-       id="polygon16038" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="771.84,389.32 772.09,389.58 781.88,392.32 "
-       id="polygon16040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.24,384.99 773.18,384.52 762.48,381.54 "
-       id="polygon16042" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="774.7,380.67 774.43,380.72 774.43,380.4 "
-       id="polygon16044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.23,384 773.38,383.49 762.68,380.51 "
-       id="polygon16046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.18,384.52 773.23,384 762.53,381.02 "
-       id="polygon16048" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="772.71,386.41 772.37,386.63 782.17,389.36 "
-       id="polygon16050" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="773.56,390.32 773.22,390.38 783.03,393.12 "
-       id="polygon16052" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="771.68,388.94 771.84,389.32 781.64,392.06 "
-       id="polygon16054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.37,386.63 772.06,386.98 781.86,389.71 "
-       id="polygon16056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.62,388.46 771.68,388.94 781.48,391.68 "
-       id="polygon16058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.06,386.98 771.82,387.44 781.63,390.17 "
-       id="polygon16060" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="773.22,390.38 772.88,390.6 782.69,393.34 "
-       id="polygon16062" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="784.09,389.05 783.84,388.8 773.57,385.93 "
-       id="polygon16064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.67,387.95 771.62,388.46 781.42,391.2 "
-       id="polygon16066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="771.82,387.44 771.67,387.95 781.47,390.68 "
-       id="polygon16068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.2,392.91 772.36,393.29 782.16,396.04 "
-       id="polygon16070" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="772.88,390.6 772.58,390.95 782.39,393.69 "
-       id="polygon16072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.14,392.44 772.2,392.91 782,395.65 "
-       id="polygon16074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.58,390.95 772.34,391.41 782.14,394.15 "
-       id="polygon16076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.19,391.92 772.14,392.44 781.94,395.18 "
-       id="polygon16078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="772.34,391.41 772.19,391.92 781.99,394.66 "
-       id="polygon16080" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="782.51,389.14 782.85,389.09 773.05,386.35 "
-       id="polygon16082" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="782.17,389.36 782.51,389.14 772.71,386.41 "
-       id="polygon16084" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="774.77,380.34 774.43,380.4 784.46,383.18 "
-       id="polygon16086" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="781.88,392.32 781.64,392.06 771.84,389.32 "
-       id="polygon16088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.86,389.71 782.17,389.36 772.37,386.63 "
-       id="polygon16090" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="781.64,392.06 781.48,391.68 771.68,388.94 "
-       id="polygon16092" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="774.43,380.4 774.09,380.61 784.12,383.4 "
-       id="polygon16094" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="782.69,393.34 783.03,393.12 773.22,390.38 "
-       id="polygon16096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.63,390.17 781.86,389.71 772.06,386.98 "
-       id="polygon16098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.48,391.68 781.42,391.2 771.62,388.46 "
-       id="polygon16100" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="782.41,396.3 782.16,396.04 772.36,393.29 "
-       id="polygon16102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.47,390.68 781.63,390.17 771.82,387.44 "
-       id="polygon16104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.42,391.2 781.47,390.68 771.67,387.95 "
-       id="polygon16106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="774.09,380.61 773.79,380.96 783.81,383.75 "
-       id="polygon16108" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="782.39,393.69 782.69,393.34 772.88,390.6 "
-       id="polygon16110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782.16,396.04 782,395.65 772.2,392.91 "
-       id="polygon16112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.79,380.96 773.54,381.42 783.57,384.21 "
-       id="polygon16114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.54,381.42 773.39,381.93 783.42,384.72 "
-       id="polygon16116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782.14,394.15 782.39,393.69 772.58,390.95 "
-       id="polygon16118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782,395.65 781.94,395.18 772.14,392.44 "
-       id="polygon16120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.99,394.66 782.14,394.15 772.34,391.41 "
-       id="polygon16122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.94,395.18 781.99,394.66 772.19,391.92 "
-       id="polygon16124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.6,389.05 784.3,389.41 793.6,392 "
-       id="polygon16126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.3,389.41 784.06,389.86 793.36,392.46 "
-       id="polygon16128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.68,388.41 783.84,388.8 792.61,391.24 "
-       id="polygon16130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="792.61,391.24 792.45,390.86 783.68,388.41 "
-       id="polygon16132" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="773.39,385.38 773.64,385.63 784.38,388.63 "
-       id="polygon16134" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="774.27,382.46 773.93,382.68 784.66,385.66 "
-       id="polygon16136" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="784.46,383.18 784.8,383.13 774.77,380.34 "
-       id="polygon16138" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.24,384.99 773.39,385.38 784.13,388.37 "
-       id="polygon16140" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="773.93,382.68 773.62,383.03 784.36,386.02 "
-       id="polygon16142" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="784.12,383.4 784.46,383.18 774.43,380.4 "
-       id="polygon16144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.18,384.52 773.24,384.99 783.97,387.98 "
-       id="polygon16146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.6,392 793.91,391.65 784.6,389.05 "
-       id="polygon16148" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="783.84,388.8 784.09,389.05 792.86,391.5 "
-       id="polygon16150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.62,383.03 773.38,383.49 784.11,386.47 "
-       id="polygon16152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.23,384 773.18,384.52 783.91,387.51 "
-       id="polygon16154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="773.38,383.49 773.23,384 783.96,386.99 "
-       id="polygon16156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.81,383.75 784.12,383.4 774.09,380.61 "
-       id="polygon16158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.57,384.21 783.81,383.75 773.79,380.96 "
-       id="polygon16160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.42,384.72 783.57,384.21 773.54,381.42 "
-       id="polygon16162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.37,385.24 783.42,384.72 773.39,381.93 "
-       id="polygon16164" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="782.19,392.42 782.53,392.36 795.13,395.88 "
-       id="polygon16166" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="783.37,393.06 783.03,393.12 792.86,395.87 "
-       id="polygon16168" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="784.36,386.02 784.66,385.66 773.93,382.68 "
-       id="polygon16170" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="782.85,389.09 782.51,389.14 795.11,392.66 "
-       id="polygon16172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.13,388.37 783.97,387.98 773.24,384.99 "
-       id="polygon16174" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="782.16,396.04 782.41,396.3 792.24,399.05 "
-       id="polygon16176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.11,386.47 784.36,386.02 773.62,383.03 "
-       id="polygon16178" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="783.03,393.12 782.69,393.34 792.52,396.09 "
-       id="polygon16180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.97,387.98 783.91,387.51 773.18,384.52 "
-       id="polygon16182" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="781.64,392.06 781.88,392.32 794.48,395.84 "
-       id="polygon16184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.96,386.99 784.11,386.47 773.38,383.49 "
-       id="polygon16186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.91,387.51 783.96,386.99 773.23,384 "
-       id="polygon16188" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="782.51,389.14 782.17,389.36 794.77,392.88 "
-       id="polygon16190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782,395.65 782.16,396.04 791.99,398.79 "
-       id="polygon16192" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="782.69,393.34 782.39,393.69 792.22,396.44 "
-       id="polygon16194" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="781.48,391.68 781.64,392.06 794.24,395.58 "
-       id="polygon16196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.94,395.18 782,395.65 791.84,398.41 "
-       id="polygon16198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782.17,389.36 781.86,389.71 794.46,393.23 "
-       id="polygon16200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782.39,393.69 782.14,394.15 791.98,396.9 "
-       id="polygon16202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.99,394.66 781.94,395.18 791.78,397.93 "
-       id="polygon16204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="782.14,394.15 781.99,394.66 791.83,397.41 "
-       id="polygon16206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.42,391.2 781.48,391.68 794.08,395.2 "
-       id="polygon16208" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.86,389.71 781.63,390.17 794.22,393.69 "
-       id="polygon16210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.47,390.68 781.42,391.2 794.02,394.72 "
-       id="polygon16212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="781.63,390.17 781.47,390.68 794.07,394.2 "
-       id="polygon16214" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="785.35,383.48 785.11,383.23 795.16,386.02 "
-       id="polygon16216" />
-    <line
-       x1="793.84003"
-       y1="391.32001"
-       x2="793.84003"
-       y2="391.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16218" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="784.68,388.73 784.38,388.63 784.5,388.31 "
-       id="polygon16220" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="792.86,395.87 793.2,395.81 783.37,393.06 "
-       id="polygon16222" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="792.52,396.09 792.86,395.87 783.03,393.12 "
-       id="polygon16224" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="784.46,383.18 784.12,383.4 794.18,386.2 "
-       id="polygon16226" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="792.24,399.05 791.99,398.79 782.16,396.04 "
-       id="polygon16228" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="792.22,396.44 792.52,396.09 782.69,393.34 "
-       id="polygon16230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.12,383.4 783.81,383.75 793.87,386.55 "
-       id="polygon16232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.99,398.79 791.84,398.41 782,395.65 "
-       id="polygon16234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.33,395.79 805.57,395.34 793.6,392 "
-       id="polygon16236" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="795.11,392.66 795.45,392.6 782.85,389.09 "
-       id="polygon16238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.98,396.9 792.22,396.44 782.39,393.69 "
-       id="polygon16240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.81,383.75 783.57,384.21 793.63,387 "
-       id="polygon16242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.84,398.41 791.78,397.93 781.94,395.18 "
-       id="polygon16244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.42,384.72 783.37,385.24 793.43,388.04 "
-       id="polygon16246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.57,384.21 783.42,384.72 793.48,387.52 "
-       id="polygon16248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.83,397.41 791.98,396.9 782.14,394.15 "
-       id="polygon16250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.78,397.93 791.83,397.41 781.99,394.66 "
-       id="polygon16252" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="794.77,392.88 795.11,392.66 782.51,389.14 "
-       id="polygon16254" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="794.48,395.84 794.24,395.58 781.64,392.06 "
-       id="polygon16256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.91,391.65 793.6,392 805.57,395.34 "
-       id="polygon16258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.46,393.23 794.77,392.88 782.17,389.36 "
-       id="polygon16260" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="794.24,395.58 794.08,395.2 781.48,391.68 "
-       id="polygon16262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.22,393.69 794.46,393.23 781.86,389.71 "
-       id="polygon16264" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.08,395.2 794.02,394.72 781.42,391.2 "
-       id="polygon16266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.07,394.2 794.22,393.69 781.63,390.17 "
-       id="polygon16268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.02,394.72 794.07,394.2 781.47,390.68 "
-       id="polygon16270" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="794.18,386.2 794.52,385.98 784.46,383.18 "
-       id="polygon16272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.57,395.34 805.87,394.98 793.91,391.65 "
-       id="polygon16274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.87,394.98 805.57,395.34 815.63,398.14 "
-       id="polygon16276" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="792.61,391.24 792.86,391.5 806.12,395.2 "
-       id="polygon16278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.97,387.98 784.13,388.37 794.89,391.37 "
-       id="polygon16280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.87,386.55 794.18,386.2 784.12,383.4 "
-       id="polygon16282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="784.66,385.66 784.36,386.02 795.12,389.02 "
-       id="polygon16284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="792.45,390.86 792.61,391.24 805.88,394.94 "
-       id="polygon16286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.91,387.51 783.97,387.98 794.74,390.98 "
-       id="polygon16288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.63,387 793.87,386.55 783.81,383.75 "
-       id="polygon16290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.36,386.02 784.11,386.47 794.88,389.47 "
-       id="polygon16292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.48,387.52 793.63,387 783.57,384.21 "
-       id="polygon16294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="783.96,386.99 783.91,387.51 794.68,390.51 "
-       id="polygon16296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.43,388.04 793.48,387.52 783.42,384.72 "
-       id="polygon16298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="784.11,386.47 783.96,386.99 794.73,389.98 "
-       id="polygon16300" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="793.75,396.17 793.51,395.91 803.37,398.67 "
-       id="polygon16302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.88,394.94 805.72,394.55 792.45,390.86 "
-       id="polygon16304" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="795.79,391.67 795.45,391.73 784.68,388.73 "
-       id="polygon16306" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="791.99,398.79 792.24,399.05 802.1,401.81 "
-       id="polygon16308" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="792.86,395.87 792.52,396.09 802.39,398.84 "
-       id="polygon16310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.84,398.41 791.99,398.79 801.86,401.55 "
-       id="polygon16312" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="795.14,391.63 794.89,391.37 784.13,388.37 "
-       id="polygon16314" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="792.52,396.09 792.22,396.44 802.08,399.2 "
-       id="polygon16316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.78,397.93 791.84,398.41 801.7,401.17 "
-       id="polygon16318" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="795.12,389.02 795.43,388.66 784.66,385.66 "
-       id="polygon16320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="792.22,396.44 791.98,396.9 801.84,399.66 "
-       id="polygon16322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.89,391.37 794.74,390.98 783.97,387.98 "
-       id="polygon16324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.83,397.41 791.78,397.93 801.64,400.69 "
-       id="polygon16326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="791.98,396.9 791.83,397.41 801.69,400.17 "
-       id="polygon16328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.88,389.47 795.12,389.02 784.36,386.02 "
-       id="polygon16330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.74,390.98 794.68,390.51 783.91,387.51 "
-       id="polygon16332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.73,389.98 794.88,389.47 784.11,386.47 "
-       id="polygon16334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.68,390.51 794.73,389.98 783.96,386.99 "
-       id="polygon16336" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="806.12,395.2 805.88,394.94 792.61,391.24 "
-       id="polygon16338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.38,398.6 815.63,398.14 805.57,395.34 "
-       id="polygon16340" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="796,392.96 795.75,392.7 808.4,396.23 "
-       id="polygon16342" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="802.73,398.63 803.07,398.56 793.2,395.81 "
-       id="polygon16344" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="794.24,395.58 794.48,395.84 807.13,399.37 "
-       id="polygon16346" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="794.86,385.92 794.52,385.98 804.61,388.78 "
-       id="polygon16348" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="795.11,392.66 794.77,392.88 807.41,396.4 "
-       id="polygon16350" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="802.39,398.84 802.73,398.63 792.86,395.87 "
-       id="polygon16352" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="794.08,395.2 794.24,395.58 806.88,399.11 "
-       id="polygon16354" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="802.1,401.81 801.86,401.55 791.99,398.79 "
-       id="polygon16356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.77,392.88 794.46,393.23 807.11,396.76 "
-       id="polygon16358" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="794.52,385.98 794.18,386.2 804.27,389 "
-       id="polygon16360" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="802.08,399.2 802.39,398.84 792.52,396.09 "
-       id="polygon16362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.02,394.72 794.08,395.2 806.72,398.73 "
-       id="polygon16364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.86,401.55 801.7,401.17 791.84,398.41 "
-       id="polygon16366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.46,393.23 794.22,393.69 806.87,397.21 "
-       id="polygon16368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.07,394.2 794.02,394.72 806.67,398.25 "
-       id="polygon16370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.22,393.69 794.07,394.2 806.72,397.73 "
-       id="polygon16372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.18,386.2 793.87,386.55 803.96,389.36 "
-       id="polygon16374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.84,399.66 802.08,399.2 792.22,396.44 "
-       id="polygon16376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.7,401.17 801.64,400.69 791.78,397.93 "
-       id="polygon16378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.69,400.17 801.84,399.66 791.98,396.9 "
-       id="polygon16380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.64,400.69 801.69,400.17 791.83,397.41 "
-       id="polygon16382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.87,386.55 793.63,387 803.72,389.81 "
-       id="polygon16384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.48,387.52 793.43,388.04 803.52,390.85 "
-       id="polygon16386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="793.63,387 793.48,387.52 803.57,390.32 "
-       id="polygon16388" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="804.61,388.78 804.95,388.72 794.86,385.92 "
-       id="polygon16390" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="807.75,396.18 808.09,396.13 795.45,392.6 "
-       id="polygon16392" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="804.27,389 804.61,388.78 794.52,385.98 "
-       id="polygon16394" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="807.41,396.4 807.75,396.18 795.11,392.66 "
-       id="polygon16396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.96,389.36 804.27,389 794.18,386.2 "
-       id="polygon16398" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="807.13,399.37 806.88,399.11 794.24,395.58 "
-       id="polygon16400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.72,394.55 805.88,394.94 814.5,397.34 "
-       id="polygon16402" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="794.89,391.37 795.14,391.63 805.95,394.64 "
-       id="polygon16404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.72,389.81 803.96,389.36 793.87,386.55 "
-       id="polygon16406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="807.11,396.76 807.41,396.4 794.77,392.88 "
-       id="polygon16408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.52,390.85 803.57,390.32 793.48,387.52 "
-       id="polygon16410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.57,390.32 803.52,390.85 812.15,393.25 "
-       id="polygon16412" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="795.77,388.44 795.43,388.66 806.23,391.67 "
-       id="polygon16414" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.57,390.32 803.72,389.81 793.63,387 "
-       id="polygon16416" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="806.88,399.11 806.72,398.73 794.08,395.2 "
-       id="polygon16418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.74,390.98 794.89,391.37 805.7,394.38 "
-       id="polygon16420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.87,397.21 807.11,396.76 794.46,393.23 "
-       id="polygon16422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.72,398.73 806.67,398.25 794.02,394.72 "
-       id="polygon16424" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="795.43,388.66 795.12,389.02 805.93,392.02 "
-       id="polygon16426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.72,397.73 806.87,397.21 794.22,393.69 "
-       id="polygon16428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.67,398.25 806.72,397.73 794.07,394.2 "
-       id="polygon16430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.68,390.51 794.74,390.98 805.54,393.99 "
-       id="polygon16432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="795.12,389.02 794.88,389.47 805.69,392.48 "
-       id="polygon16434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.73,389.98 794.68,390.51 805.48,393.52 "
-       id="polygon16436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="794.88,389.47 794.73,389.98 805.54,392.99 "
-       id="polygon16438" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="803.07,398.56 802.73,398.63 812.78,401.43 "
-       id="polygon16440" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="802.73,398.63 802.39,398.84 812.45,401.65 "
-       id="polygon16442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.7,401.17 801.86,401.55 811.91,404.37 "
-       id="polygon16444" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="802.39,398.84 802.08,399.2 812.14,402.01 "
-       id="polygon16446" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.64,400.69 801.7,401.17 811.75,403.98 "
-       id="polygon16448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="802.08,399.2 801.84,399.66 811.9,402.46 "
-       id="polygon16450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.69,400.17 801.64,400.69 811.7,403.5 "
-       id="polygon16452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="801.84,399.66 801.69,400.17 811.75,402.98 "
-       id="polygon16454" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="805.95,394.64 805.7,394.38 794.89,391.37 "
-       id="polygon16456" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="805.93,392.02 806.23,391.67 795.43,388.66 "
-       id="polygon16458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.7,394.38 805.54,393.99 794.74,390.98 "
-       id="polygon16460" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="814.75,397.6 814.5,397.34 805.88,394.94 "
-       id="polygon16462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.69,392.48 805.93,392.02 795.12,389.02 "
-       id="polygon16464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.54,393.99 805.48,393.52 794.68,390.51 "
-       id="polygon16466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.54,392.99 805.69,392.48 794.88,389.47 "
-       id="polygon16468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.48,393.52 805.54,392.99 794.73,389.98 "
-       id="polygon16470" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="804.95,388.72 804.61,388.78 813.23,391.18 "
-       id="polygon16472" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="804.61,388.78 804.27,389 812.9,391.4 "
-       id="polygon16474" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="812.45,401.65 812.78,401.43 802.73,398.63 "
-       id="polygon16476" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="807.75,396.18 807.41,396.4 812.65,397.86 "
-       id="polygon16478" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="812.16,404.62 811.91,404.37 801.86,401.55 "
-       id="polygon16480" />
-    <line
-       x1="807.34998"
-       y1="396.13"
-       x2="807.34998"
-       y2="396.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16482" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="806.72,398.73 806.88,399.11 812.12,400.57 "
-       id="polygon16484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="804.27,389 803.96,389.36 812.59,391.75 "
-       id="polygon16486" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="812.14,402.01 812.45,401.65 802.39,398.84 "
-       id="polygon16488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.91,404.37 811.75,403.98 801.7,401.17 "
-       id="polygon16490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.96,389.36 803.72,389.81 812.35,392.21 "
-       id="polygon16492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.67,398.25 806.72,398.73 811.96,400.19 "
-       id="polygon16494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="803.72,389.81 803.57,390.32 812.2,392.73 "
-       id="polygon16496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="807.11,396.76 806.87,397.21 812.11,398.68 "
-       id="polygon16498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.9,402.46 812.14,402.01 802.08,399.2 "
-       id="polygon16500" />
-    <line
-       x1="807.14001"
-       y1="395.32001"
-       x2="807.14001"
-       y2="395.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.75,403.98 811.7,403.5 801.64,400.69 "
-       id="polygon16504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.72,397.73 806.67,398.25 811.9,399.71 "
-       id="polygon16506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="806.87,397.21 806.72,397.73 811.95,399.19 "
-       id="polygon16508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.75,402.98 811.9,402.46 801.84,399.66 "
-       id="polygon16510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.7,403.5 811.75,402.98 801.69,400.17 "
-       id="polygon16512" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="806.57,391.45 806.23,391.67 806.3,391.95 "
-       id="polygon16514" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="812.36,400.83 812.12,400.57 806.88,399.11 "
-       id="polygon16516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.34,398.22 812.65,397.86 807.41,396.4 "
-       id="polygon16518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.11,398.68 812.34,398.22 807.11,396.76 "
-       id="polygon16520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.96,400.19 811.9,399.71 806.67,398.25 "
-       id="polygon16522" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.95,399.19 812.11,398.68 806.87,397.21 "
-       id="polygon16524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.9,399.71 811.95,399.19 806.72,397.73 "
-       id="polygon16526" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="812.9,391.4 813.23,391.18 804.61,388.78 "
-       id="polygon16528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.59,391.75 812.9,391.4 804.27,389 "
-       id="polygon16530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.93,397.79 815.63,398.14 825.71,400.95 "
-       id="polygon16532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.35,392.21 812.59,391.75 803.96,389.36 "
-       id="polygon16534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.2,392.73 812.35,392.21 803.72,389.81 "
-       id="polygon16536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.15,393.25 812.2,392.73 803.57,390.32 "
-       id="polygon16538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.54,393.99 805.7,394.38 810.93,395.84 "
-       id="polygon16540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.48,393.52 805.54,393.99 810.77,395.45 "
-       id="polygon16542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.93,392.02 805.69,392.48 810.92,393.94 "
-       id="polygon16544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.54,392.99 805.48,393.52 810.72,394.97 "
-       id="polygon16546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="805.69,392.48 805.54,392.99 810.77,394.45 "
-       id="polygon16548" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="811.96,400.19 812.12,400.57 815.11,401.41 "
-       id="polygon16550" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.65,397.86 812.34,398.22 815.34,399.05 "
-       id="polygon16552" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="811.18,396.09 810.93,395.84 805.7,394.38 "
-       id="polygon16554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.9,399.71 811.96,400.19 814.95,401.02 "
-       id="polygon16556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.34,398.22 812.11,398.68 815.1,399.51 "
-       id="polygon16558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.95,399.19 811.9,399.71 814.89,400.55 "
-       id="polygon16560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.11,398.68 811.95,399.19 814.94,400.03 "
-       id="polygon16562" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="811.16,393.48 811.46,393.12 806.23,391.67 "
-       id="polygon16564" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="813.67,401.73 813.43,401.48 823.52,404.29 "
-       id="polygon16566" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="816.32,398.42 816.63,398.52 816.5,398.84 "
-       id="polygon16568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.93,395.84 810.77,395.45 805.54,393.99 "
-       id="polygon16570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.35,396.96 814.5,397.34 826.61,400.72 "
-       id="polygon16572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.92,393.94 811.16,393.48 805.93,392.02 "
-       id="polygon16574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.77,395.45 810.72,394.97 805.48,393.52 "
-       id="polygon16576" />
-    <line
-       x1="812.45001"
-       y1="397.07001"
-       x2="812.44"
-       y2="397.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.34,399.05 815.64,398.7 812.65,397.86 "
-       id="polygon16580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.77,394.45 810.92,393.94 805.69,392.48 "
-       id="polygon16582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.72,394.97 810.77,394.45 805.54,392.99 "
-       id="polygon16584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.95,401.02 814.89,400.55 811.9,399.71 "
-       id="polygon16586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.94,400.03 815.1,399.51 812.11,398.68 "
-       id="polygon16588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.71,400.95 826.02,400.6 815.93,397.79 "
-       id="polygon16590" />
-    <line
-       x1="812.25"
-       y1="396.26001"
-       x2="812.23999"
-       y2="396.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.47,401.41 825.71,400.95 815.63,398.14 "
-       id="polygon16594" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="811.91,404.37 812.16,404.62 822.24,407.45 "
-       id="polygon16596" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="812.78,401.43 812.45,401.65 822.53,404.47 "
-       id="polygon16598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.75,403.98 811.91,404.37 822,407.19 "
-       id="polygon16600" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="812.45,401.65 812.14,402.01 822.23,404.83 "
-       id="polygon16602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.7,403.5 811.75,403.98 821.84,406.8 "
-       id="polygon16604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.14,402.01 811.9,402.46 821.99,405.29 "
-       id="polygon16606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.75,402.98 811.7,403.5 821.79,406.32 "
-       id="polygon16608" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="811.9,402.46 811.75,402.98 821.84,405.8 "
-       id="polygon16610" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="811.46,393.12 811.16,393.48 814.16,394.31 "
-       id="polygon16612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.72,394.97 810.77,395.45 813.77,396.29 "
-       id="polygon16614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="810.92,393.94 810.77,394.45 813.76,395.29 "
-       id="polygon16616" />
-    <line
-       x1="815.46997"
-       y1="398.01999"
-       x2="815.46997"
-       y2="398.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16618" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="814.16,394.31 814.46,393.96 811.46,393.12 "
-       id="polygon16620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.93,396.67 813.77,396.29 810.77,395.45 "
-       id="polygon16622" />
-    <line
-       x1="815.27002"
-       y1="397.20999"
-       x2="815.27002"
-       y2="397.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="826.02,400.6 825.71,400.95 835.83,403.77 "
-       id="polygon16626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="835.83,403.77 836.13,403.42 826.02,400.6 "
-       id="polygon16628" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="826.86,400.98 826.61,400.72 814.5,397.34 "
-       id="polygon16630" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="813.57,391.12 813.23,391.18 825.82,394.68 "
-       id="polygon16632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.91,394.77 814.16,394.31 811.16,393.48 "
-       id="polygon16634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.77,396.29 813.71,395.8 810.72,394.97 "
-       id="polygon16636" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="822.87,404.25 823.21,404.19 813.12,401.37 "
-       id="polygon16638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.76,395.29 813.91,394.77 810.92,393.94 "
-       id="polygon16640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.71,395.8 813.76,395.29 810.77,394.45 "
-       id="polygon16642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="826.61,400.72 826.45,400.33 814.35,396.96 "
-       id="polygon16644" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="815.11,401.41 815.35,401.67 825.82,404.59 "
-       id="polygon16646" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="813.23,391.18 812.9,391.4 825.48,394.89 "
-       id="polygon16648" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="815.98,398.48 815.64,398.7 826.11,401.62 "
-       id="polygon16650" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="822.53,404.47 822.87,404.25 812.78,401.43 "
-       id="polygon16652" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="822.24,407.45 822,407.19 811.91,404.37 "
-       id="polygon16654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.9,391.4 812.59,391.75 825.18,395.25 "
-       id="polygon16656" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="814.95,401.02 815.11,401.41 825.57,404.33 "
-       id="polygon16658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.64,398.7 815.34,399.05 825.8,401.97 "
-       id="polygon16660" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="822.23,404.83 822.53,404.47 812.45,401.65 "
-       id="polygon16662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.59,391.75 812.35,392.21 824.94,395.71 "
-       id="polygon16664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.89,400.55 814.95,401.02 825.41,403.95 "
-       id="polygon16666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="822,407.19 821.84,406.8 811.75,403.98 "
-       id="polygon16668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.2,392.73 812.15,393.25 824.73,396.75 "
-       id="polygon16670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="812.35,392.21 812.2,392.73 824.79,396.23 "
-       id="polygon16672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.34,399.05 815.1,399.51 825.56,402.43 "
-       id="polygon16674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.94,400.03 814.89,400.55 825.36,403.47 "
-       id="polygon16676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="815.1,399.51 814.94,400.03 825.41,402.95 "
-       id="polygon16678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.99,405.29 822.23,404.83 812.14,402.01 "
-       id="polygon16680" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.84,406.8 821.79,406.32 811.7,403.5 "
-       id="polygon16682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.84,405.8 821.99,405.29 811.9,402.46 "
-       id="polygon16684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.79,406.32 821.84,405.8 811.75,402.98 "
-       id="polygon16686" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="826.45,401.39 826.78,401.34 816.32,398.42 "
-       id="polygon16688" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="822.55,407.55 822.24,407.45 822.37,407.13 "
-       id="polygon16690" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="813.93,396.67 814.17,396.93 824.64,399.85 "
-       id="polygon16692" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="814.8,393.74 814.46,393.96 824.93,396.87 "
-       id="polygon16694" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="826.11,401.62 826.45,401.39 815.98,398.48 "
-       id="polygon16696" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="825.82,394.68 826.16,394.61 813.57,391.12 "
-       id="polygon16698" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="825.82,404.59 825.57,404.33 815.11,401.41 "
-       id="polygon16700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.77,396.29 813.93,396.67 824.39,399.59 "
-       id="polygon16702" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="814.46,393.96 814.16,394.31 824.63,397.22 "
-       id="polygon16704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.8,401.97 826.11,401.62 815.64,398.7 "
-       id="polygon16706" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="825.57,404.33 825.41,403.95 814.95,401.02 "
-       id="polygon16708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.71,395.8 813.77,396.29 824.24,399.2 "
-       id="polygon16710" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="825.48,394.89 825.82,394.68 813.23,391.18 "
-       id="polygon16712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="814.16,394.31 813.91,394.77 824.38,397.68 "
-       id="polygon16714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.76,395.29 813.71,395.8 824.18,398.72 "
-       id="polygon16716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.56,402.43 825.8,401.97 815.34,399.05 "
-       id="polygon16718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="813.91,394.77 813.76,395.29 824.23,398.2 "
-       id="polygon16720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.41,403.95 825.36,403.47 814.89,400.55 "
-       id="polygon16722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.41,402.95 825.56,402.43 815.1,399.51 "
-       id="polygon16724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.36,403.47 825.41,402.95 814.94,400.03 "
-       id="polygon16726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.18,395.25 825.48,394.89 812.9,391.4 "
-       id="polygon16728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.94,395.71 825.18,395.25 812.59,391.75 "
-       id="polygon16730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.79,396.23 824.94,395.71 812.35,392.21 "
-       id="polygon16732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.73,396.75 824.79,396.23 812.2,392.73 "
-       id="polygon16734" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="823.21,404.19 822.87,404.25 832.99,407.08 "
-       id="polygon16736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="835.59,404.23 835.83,403.77 825.71,400.95 "
-       id="polygon16738" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="824.64,399.85 824.39,399.59 813.93,396.67 "
-       id="polygon16740" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="822.87,404.25 822.53,404.47 832.65,407.3 "
-       id="polygon16742" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="824.63,397.22 824.93,396.87 814.46,393.96 "
-       id="polygon16744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.39,399.59 824.24,399.2 813.77,396.29 "
-       id="polygon16746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.84,406.8 822,407.19 832.12,410.02 "
-       id="polygon16748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.13,403.42 835.83,403.77 845.98,406.6 "
-       id="polygon16750" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="826.61,400.72 826.86,400.98 839.01,404.36 "
-       id="polygon16752" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="822.53,404.47 822.23,404.83 832.35,407.66 "
-       id="polygon16754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.38,397.68 824.63,397.22 814.16,394.31 "
-       id="polygon16756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.24,399.2 824.18,398.72 813.71,395.8 "
-       id="polygon16758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.79,406.32 821.84,406.8 831.96,409.63 "
-       id="polygon16760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.23,398.2 824.38,397.68 813.91,394.77 "
-       id="polygon16762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.18,398.72 824.23,398.2 813.76,395.29 "
-       id="polygon16764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="822.23,404.83 821.99,405.29 832.11,408.12 "
-       id="polygon16766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.84,405.8 821.79,406.32 831.9,409.16 "
-       id="polygon16768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="821.99,405.29 821.84,405.8 831.95,408.63 "
-       id="polygon16770" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="826.45,400.33 826.61,400.72 838.76,404.11 "
-       id="polygon16772" />
-    <line
-       x1="826.06"
-       y1="401.42001"
-       x2="826.06"
-       y2="401.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16774" />
-    <line
-       x1="825.78003"
-       y1="400.31"
-       x2="825.77002"
-       y2="400.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16776" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="832.65,407.3 832.99,407.08 822.87,404.25 "
-       id="polygon16778" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="832.36,410.28 832.12,410.02 822,407.19 "
-       id="polygon16780" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="826.78,401.34 826.45,401.39 838.02,404.62 "
-       id="polygon16782" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="832.35,407.66 832.65,407.3 822.53,404.47 "
-       id="polygon16784" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="825.57,404.33 825.82,404.59 837.39,407.82 "
-       id="polygon16786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="832.12,410.02 831.96,409.63 821.84,406.8 "
-       id="polygon16788" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="826.45,401.39 826.11,401.62 837.68,404.84 "
-       id="polygon16790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="832.11,408.12 832.35,407.66 822.23,404.83 "
-       id="polygon16792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.96,409.63 831.9,409.16 821.79,406.32 "
-       id="polygon16794" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="825.41,403.95 825.57,404.33 837.14,407.57 "
-       id="polygon16796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.95,408.63 832.11,408.12 821.99,405.29 "
-       id="polygon16798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.9,409.16 831.95,408.63 821.84,405.8 "
-       id="polygon16800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="826.11,401.62 825.8,401.97 837.38,405.2 "
-       id="polygon16802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.36,403.47 825.41,403.95 836.99,407.18 "
-       id="polygon16804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.8,401.97 825.56,402.43 837.14,405.66 "
-       id="polygon16806" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="839.01,404.36 838.76,404.11 826.61,400.72 "
-       id="polygon16808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.41,402.95 825.36,403.47 836.93,406.7 "
-       id="polygon16810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.56,402.43 825.41,402.95 836.98,406.18 "
-       id="polygon16812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="838.76,404.11 838.61,403.72 826.45,400.33 "
-       id="polygon16814" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="826.16,394.61 825.82,394.68 838.45,398.18 "
-       id="polygon16816" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="825.82,394.68 825.48,394.89 838.12,398.41 "
-       id="polygon16818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.48,394.89 825.18,395.25 837.81,398.76 "
-       id="polygon16820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="825.18,395.25 824.94,395.71 837.57,399.22 "
-       id="polygon16822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.79,396.23 824.73,396.75 837.37,400.26 "
-       id="polygon16824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.94,395.71 824.79,396.23 837.42,399.74 "
-       id="polygon16826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="845.74,407.06 845.98,406.6 835.83,403.77 "
-       id="polygon16828" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="838.02,404.62 838.36,404.56 826.78,401.34 "
-       id="polygon16830" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="825.27,396.65 824.93,396.87 836.88,400.19 "
-       id="polygon16832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.24,399.2 824.39,399.59 836.34,402.91 "
-       id="polygon16834" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="837.68,404.84 838.02,404.62 826.45,401.39 "
-       id="polygon16836" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="837.39,407.82 837.14,407.57 825.57,404.33 "
-       id="polygon16838" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="824.93,396.87 824.63,397.22 836.57,400.55 "
-       id="polygon16840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.18,398.72 824.24,399.2 836.18,402.53 "
-       id="polygon16842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.63,397.22 824.38,397.68 836.33,401.01 "
-       id="polygon16844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.38,405.2 837.68,404.84 826.11,401.62 "
-       id="polygon16846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.23,398.2 824.18,398.72 836.13,402.05 "
-       id="polygon16848" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="837.14,407.57 836.99,407.18 825.41,403.95 "
-       id="polygon16850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="824.38,397.68 824.23,398.2 836.18,401.52 "
-       id="polygon16852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.14,405.66 837.38,405.2 825.8,401.97 "
-       id="polygon16854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.99,407.18 836.93,406.7 825.36,403.47 "
-       id="polygon16856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.98,406.18 837.14,405.66 825.56,402.43 "
-       id="polygon16858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.93,406.7 836.98,406.18 825.41,402.95 "
-       id="polygon16860" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="833.88,407.38 833.63,407.12 843.78,409.96 "
-       id="polygon16862" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="838.45,398.18 838.79,398.13 826.16,394.61 "
-       id="polygon16864" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="838.12,398.41 838.45,398.18 825.82,394.68 "
-       id="polygon16866" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="833.33,407.02 832.99,407.08 843.14,409.91 "
-       id="polygon16868" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="832.12,410.02 832.36,410.28 842.51,413.12 "
-       id="polygon16870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.81,398.76 838.12,398.41 825.48,394.89 "
-       id="polygon16872" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="832.99,407.08 832.65,407.3 842.8,410.14 "
-       id="polygon16874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.57,399.22 837.81,398.76 825.18,395.25 "
-       id="polygon16876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.96,409.63 832.12,410.02 842.27,412.86 "
-       id="polygon16878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.42,399.74 837.57,399.22 824.94,395.71 "
-       id="polygon16880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.37,400.26 837.42,399.74 824.79,396.23 "
-       id="polygon16882" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="832.65,407.3 832.35,407.66 842.5,410.49 "
-       id="polygon16884" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.9,409.16 831.96,409.63 842.11,412.47 "
-       id="polygon16886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="832.35,407.66 832.11,408.12 842.26,410.95 "
-       id="polygon16888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="831.95,408.63 831.9,409.16 842.05,412 "
-       id="polygon16890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="832.11,408.12 831.95,408.63 842.1,411.47 "
-       id="polygon16892" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="836.58,403.18 836.34,402.91 824.39,399.59 "
-       id="polygon16894" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="836.57,400.55 836.88,400.19 824.93,396.87 "
-       id="polygon16896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.34,402.91 836.18,402.53 824.24,399.2 "
-       id="polygon16898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.33,401.01 836.57,400.55 824.63,397.22 "
-       id="polygon16900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.18,402.53 836.13,402.05 824.18,398.72 "
-       id="polygon16902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.18,401.52 836.33,401.01 824.38,397.68 "
-       id="polygon16904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.13,402.05 836.18,401.52 824.23,398.2 "
-       id="polygon16906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="846.28,406.25 845.98,406.6 856.16,409.44 "
-       id="polygon16908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="856.16,409.44 856.46,409.08 846.28,406.25 "
-       id="polygon16910" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="838.76,404.11 839.01,404.36 851.2,407.76 "
-       id="polygon16912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="838.61,403.72 838.76,404.11 850.96,407.5 "
-       id="polygon16914" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="842.8,410.14 843.14,409.91 832.99,407.08 "
-       id="polygon16916" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="842.51,413.12 842.27,412.86 832.12,410.02 "
-       id="polygon16918" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="842.5,410.49 842.8,410.14 832.65,407.3 "
-       id="polygon16920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.27,412.86 842.11,412.47 831.96,409.63 "
-       id="polygon16922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="855.92,409.9 856.16,409.44 845.98,406.6 "
-       id="polygon16924" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="838.91,404.92 838.66,404.66 850.27,407.9 "
-       id="polygon16926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.26,410.95 842.5,410.49 832.35,407.66 "
-       id="polygon16928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.11,412.47 842.05,412 831.9,409.16 "
-       id="polygon16930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.1,411.47 842.26,410.95 832.11,408.12 "
-       id="polygon16932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.05,412 842.1,411.47 831.95,408.63 "
-       id="polygon16934" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="837.14,407.57 837.39,407.82 849,411.07 "
-       id="polygon16936" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="838.02,404.62 837.68,404.84 849.29,408.08 "
-       id="polygon16938" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="836.99,407.18 837.14,407.57 848.76,410.81 "
-       id="polygon16940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.68,404.84 837.38,405.2 848.99,408.44 "
-       id="polygon16942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.93,406.7 836.99,407.18 848.6,410.42 "
-       id="polygon16944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.38,405.2 837.14,405.66 848.75,408.9 "
-       id="polygon16946" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="839.34,398.48 839.1,398.23 850.36,401.36 "
-       id="polygon16948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.98,406.18 836.93,406.7 848.54,409.94 "
-       id="polygon16950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.14,405.66 836.98,406.18 848.59,409.42 "
-       id="polygon16952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="850.96,407.5 850.8,407.12 838.61,403.72 "
-       id="polygon16954" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="838.45,398.18 838.12,398.41 849.38,401.54 "
-       id="polygon16956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="838.12,398.41 837.81,398.76 849.08,401.89 "
-       id="polygon16958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.81,398.76 837.57,399.22 848.84,402.36 "
-       id="polygon16960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.42,399.74 837.37,400.26 848.63,403.39 "
-       id="polygon16962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="837.57,399.22 837.42,399.74 848.68,402.87 "
-       id="polygon16964" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="849.63,407.86 849.97,407.8 838.36,404.56 "
-       id="polygon16966" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="836.34,402.91 836.58,403.18 847.85,406.31 "
-       id="polygon16968" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="849.29,408.08 849.63,407.86 838.02,404.62 "
-       id="polygon16970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.18,402.53 836.34,402.91 847.61,406.05 "
-       id="polygon16972" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="849,411.07 848.76,410.81 837.14,407.57 "
-       id="polygon16974" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="836.88,400.19 836.57,400.55 847.84,403.68 "
-       id="polygon16976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.99,408.44 849.29,408.08 837.68,404.84 "
-       id="polygon16978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.13,402.05 836.18,402.53 847.45,405.67 "
-       id="polygon16980" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="848.76,410.81 848.6,410.42 836.99,407.18 "
-       id="polygon16982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.57,400.55 836.33,401.01 847.59,404.14 "
-       id="polygon16984" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="843.48,409.85 843.14,409.91 853.32,412.76 "
-       id="polygon16986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.18,401.52 836.13,402.05 847.39,405.19 "
-       id="polygon16988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="836.33,401.01 836.18,401.52 847.44,404.66 "
-       id="polygon16990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.75,408.9 848.99,408.44 837.38,405.2 "
-       id="polygon16992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.6,410.42 848.54,409.94 836.93,406.7 "
-       id="polygon16994" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="842.27,412.86 842.51,413.12 852.69,415.97 "
-       id="polygon16996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.59,409.42 848.75,408.9 837.14,405.66 "
-       id="polygon16998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.54,409.94 848.59,409.42 836.98,406.18 "
-       id="polygon17000" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="843.14,409.91 842.8,410.14 852.98,412.98 "
-       id="polygon17002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.11,412.47 842.27,412.86 852.45,415.71 "
-       id="polygon17004" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="842.8,410.14 842.5,410.49 852.68,413.34 "
-       id="polygon17006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.05,412 842.11,412.47 852.29,415.32 "
-       id="polygon17008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.5,410.49 842.26,410.95 852.44,413.8 "
-       id="polygon17010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.1,411.47 842.05,412 852.23,414.84 "
-       id="polygon17012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="842.26,410.95 842.1,411.47 852.29,414.32 "
-       id="polygon17014" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="849.38,401.54 849.72,401.32 838.45,398.18 "
-       id="polygon17016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="849.08,401.89 849.38,401.54 838.12,398.41 "
-       id="polygon17018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.84,402.36 849.08,401.89 837.81,398.76 "
-       id="polygon17020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.68,402.87 848.84,402.36 837.57,399.22 "
-       id="polygon17022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.63,403.39 848.68,402.87 837.42,399.74 "
-       id="polygon17024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="850.8,407.12 850.96,407.5 861.43,410.42 "
-       id="polygon17026" />
-    <line
-       x1="850.96002"
-       y1="407.48999"
-       x2="850.96002"
-       y2="407.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17028" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="847.85,406.31 847.61,406.05 836.34,402.91 "
-       id="polygon17030" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="853.32,412.76 853.66,412.7 843.48,409.85 "
-       id="polygon17032" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="847.84,403.68 848.14,403.32 836.88,400.19 "
-       id="polygon17034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.61,406.05 847.45,405.67 836.18,402.53 "
-       id="polygon17036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.59,404.14 847.84,403.68 836.57,400.55 "
-       id="polygon17038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.45,405.67 847.39,405.19 836.13,402.05 "
-       id="polygon17040" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="852.98,412.98 853.32,412.76 843.14,409.91 "
-       id="polygon17042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.44,404.66 847.59,404.14 836.33,401.01 "
-       id="polygon17044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.39,405.19 847.44,404.66 836.18,401.52 "
-       id="polygon17046" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="852.69,415.97 852.45,415.71 842.27,412.86 "
-       id="polygon17048" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="852.68,413.34 852.98,412.98 842.8,410.14 "
-       id="polygon17050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.45,415.71 852.29,415.32 842.11,412.47 "
-       id="polygon17052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="856.46,409.08 856.16,409.44 866.37,412.29 "
-       id="polygon17054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="866.37,412.29 866.67,411.93 856.46,409.08 "
-       id="polygon17056" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="850.96,407.5 851.2,407.76 861.68,410.68 "
-       id="polygon17058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.44,413.8 852.68,413.34 842.5,410.49 "
-       id="polygon17060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.29,415.32 852.23,414.84 842.05,412 "
-       id="polygon17062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.29,414.32 852.44,413.8 842.26,410.95 "
-       id="polygon17064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.23,414.84 852.29,414.32 842.1,411.47 "
-       id="polygon17066" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="849.38,401.54 849.72,401.32 849.72,401.64 "
-       id="polygon17068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="866.13,412.75 866.37,412.29 856.16,409.44 "
-       id="polygon17070" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="860.75,410.82 860.99,411.08 850.52,408.16 "
-       id="polygon17072" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="849.63,407.86 849.29,408.08 859.77,411 "
-       id="polygon17074" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="848.6,410.42 848.76,410.81 859.23,413.73 "
-       id="polygon17076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="849.29,408.08 848.99,408.44 859.46,411.36 "
-       id="polygon17078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.54,409.94 848.6,410.42 859.08,413.35 "
-       id="polygon17080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.99,408.44 848.75,408.9 859.23,411.82 "
-       id="polygon17082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.59,409.42 848.54,409.94 859.02,412.87 "
-       id="polygon17084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.75,408.9 848.59,409.42 859.07,412.34 "
-       id="polygon17086" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="861.68,410.68 861.43,410.42 850.96,407.5 "
-       id="polygon17088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="861.43,410.42 861.28,410.04 850.8,407.12 "
-       id="polygon17090" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="850.06,401.25 849.72,401.32 861.02,404.46 "
-       id="polygon17092" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="849.72,401.32 849.38,401.54 860.69,404.68 "
-       id="polygon17094" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="848.15,406.42 848.49,406.36 859.79,409.5 "
-       id="polygon17096" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="860.12,414.04 859.78,414.1 849.31,411.17 "
-       id="polygon17098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="849.38,401.54 849.08,401.89 860.38,405.04 "
-       id="polygon17100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="849.08,401.89 848.84,402.36 860.14,405.5 "
-       id="polygon17102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.68,402.87 848.63,403.39 859.94,406.54 "
-       id="polygon17104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="848.84,402.36 848.68,402.87 859.99,406.02 "
-       id="polygon17106" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="859.77,411 860.11,410.78 849.63,407.86 "
-       id="polygon17108" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="847.61,406.05 847.85,406.31 859.15,409.46 "
-       id="polygon17110" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="859.48,413.99 859.23,413.73 848.76,410.81 "
-       id="polygon17112" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="848.48,403.11 848.14,403.32 859.45,406.47 "
-       id="polygon17114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.46,411.36 859.77,411 849.29,408.08 "
-       id="polygon17116" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="864.17,415.65 864.42,415.91 854.21,413.06 "
-       id="polygon17118" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="853.32,412.76 852.98,412.98 863.19,415.84 "
-       id="polygon17120" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="859.23,413.73 859.08,413.35 848.6,410.42 "
-       id="polygon17122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.45,405.67 847.61,406.05 858.91,409.2 "
-       id="polygon17124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.29,415.32 852.45,415.71 862.66,418.57 "
-       id="polygon17126" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="848.14,403.32 847.84,403.68 859.14,406.83 "
-       id="polygon17128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.23,411.82 859.46,411.36 848.99,408.44 "
-       id="polygon17130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.08,413.35 859.02,412.87 848.54,409.94 "
-       id="polygon17132" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="852.98,412.98 852.68,413.34 862.89,416.2 "
-       id="polygon17134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.39,405.19 847.45,405.67 858.75,408.82 "
-       id="polygon17136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.07,412.34 859.23,411.82 848.75,408.9 "
-       id="polygon17138" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.02,412.87 859.07,412.34 848.59,409.42 "
-       id="polygon17140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.84,403.68 847.59,404.14 858.9,407.29 "
-       id="polygon17142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.23,414.84 852.29,415.32 862.5,418.18 "
-       id="polygon17144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.44,404.66 847.39,405.19 858.7,408.34 "
-       id="polygon17146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="847.59,404.14 847.44,404.66 858.75,407.81 "
-       id="polygon17148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.68,413.34 852.44,413.8 862.65,416.66 "
-       id="polygon17150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.29,414.32 852.23,414.84 862.45,417.7 "
-       id="polygon17152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="852.44,413.8 852.29,414.32 862.5,417.18 "
-       id="polygon17154" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="861.02,404.46 861.36,404.39 850.06,401.25 "
-       id="polygon17156" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="860.69,404.68 861.02,404.46 849.72,401.32 "
-       id="polygon17158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="860.38,405.04 860.69,404.68 849.38,401.54 "
-       id="polygon17160" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="863.53,415.61 863.87,415.55 853.66,412.7 "
-       id="polygon17162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="860.14,405.5 860.38,405.04 849.08,401.89 "
-       id="polygon17164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.99,406.02 860.14,405.5 848.84,402.36 "
-       id="polygon17166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.94,406.54 859.99,406.02 848.68,402.87 "
-       id="polygon17168" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="863.19,415.84 863.53,415.61 853.32,412.76 "
-       id="polygon17170" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="862.9,418.83 862.66,418.57 852.45,415.71 "
-       id="polygon17172" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="862.89,416.2 863.19,415.84 852.98,412.98 "
-       id="polygon17174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.66,418.57 862.5,418.18 852.29,415.32 "
-       id="polygon17176" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="859.14,406.83 859.45,406.47 848.14,403.32 "
-       id="polygon17178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.65,416.66 862.89,416.2 852.68,413.34 "
-       id="polygon17180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.91,409.2 858.75,408.82 847.45,405.67 "
-       id="polygon17182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.5,418.18 862.45,417.7 852.23,414.84 "
-       id="polygon17184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.5,417.18 862.65,416.66 852.44,413.8 "
-       id="polygon17186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.45,417.7 862.5,417.18 852.29,414.32 "
-       id="polygon17188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.9,407.29 859.14,406.83 847.84,403.68 "
-       id="polygon17190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.75,408.82 858.7,408.34 847.39,405.19 "
-       id="polygon17192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.75,407.81 858.9,407.29 847.59,404.14 "
-       id="polygon17194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.7,408.34 858.75,407.81 847.44,404.66 "
-       id="polygon17196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="861.28,410.04 861.43,410.42 871.94,413.35 "
-       id="polygon17198" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="861.67,404.5 861.36,404.39 861.29,404.73 "
-       id="polygon17200" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="860.45,410.72 860.11,410.78 870.62,413.71 "
-       id="polygon17202" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="859.79,409.18 859.52,409.23 859.46,409.57 "
-       id="polygon17204" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="859.23,413.73 859.48,413.99 869.99,416.93 "
-       id="polygon17206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="866.67,411.93 866.37,412.29 877.21,415.31 "
-       id="polygon17208" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="860.11,410.78 859.77,411 870.28,413.93 "
-       id="polygon17210" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="859.08,413.35 859.23,413.73 869.74,416.67 "
-       id="polygon17212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.77,411 859.46,411.36 869.98,414.29 "
-       id="polygon17214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.02,412.87 859.08,413.35 869.59,416.28 "
-       id="polygon17216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.46,411.36 859.23,411.82 869.74,414.76 "
-       id="polygon17218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.07,412.34 859.02,412.87 869.53,415.8 "
-       id="polygon17220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.23,411.82 859.07,412.34 869.58,415.28 "
-       id="polygon17222" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="872.19,413.61 871.94,413.35 861.43,410.42 "
-       id="polygon17224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.94,413.35 871.79,412.96 861.28,410.04 "
-       id="polygon17226" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="861.36,404.39 861.02,404.46 872.37,407.61 "
-       id="polygon17228" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="861.02,404.46 860.69,404.68 872.03,407.83 "
-       id="polygon17230" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="870.28,413.93 870.62,413.71 860.11,410.78 "
-       id="polygon17232" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="869.99,416.93 869.74,416.67 859.23,413.73 "
-       id="polygon17234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="860.69,404.68 860.38,405.04 871.73,408.19 "
-       id="polygon17236" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="862.66,418.57 862.9,418.83 873.75,421.86 "
-       id="polygon17238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="876.97,415.77 877.21,415.31 866.37,412.29 "
-       id="polygon17240" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="863.53,415.61 863.19,415.84 874.04,418.87 "
-       id="polygon17242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="860.38,405.04 860.14,405.5 871.48,408.65 "
-       id="polygon17244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.98,414.29 870.28,413.93 859.77,411 "
-       id="polygon17246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.99,406.02 859.94,406.54 871.28,409.7 "
-       id="polygon17248" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="869.74,416.67 869.59,416.28 859.08,413.35 "
-       id="polygon17250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="860.14,405.5 859.99,406.02 871.33,409.17 "
-       id="polygon17252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.5,418.18 862.66,418.57 873.5,421.61 "
-       id="polygon17254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.74,414.76 869.98,414.29 859.46,411.36 "
-       id="polygon17256" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="863.19,415.84 862.89,416.2 873.74,419.23 "
-       id="polygon17258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.59,416.28 869.53,415.8 859.02,412.87 "
-       id="polygon17260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.58,415.28 869.74,414.76 859.23,411.82 "
-       id="polygon17262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.45,417.7 862.5,418.18 873.35,421.21 "
-       id="polygon17264" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="858.91,409.2 859.15,409.46 870.49,412.63 "
-       id="polygon17266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.53,415.8 869.58,415.28 859.07,412.34 "
-       id="polygon17268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.89,416.2 862.65,416.66 873.5,419.69 "
-       id="polygon17270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.5,417.18 862.45,417.7 873.29,420.73 "
-       id="polygon17272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="862.65,416.66 862.5,417.18 873.34,420.21 "
-       id="polygon17274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.75,408.82 858.91,409.2 870.25,412.36 "
-       id="polygon17276" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="859.45,406.47 859.14,406.83 870.48,409.98 "
-       id="polygon17278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.7,408.34 858.75,408.82 870.09,411.98 "
-       id="polygon17280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="859.14,406.83 858.9,407.29 870.24,410.45 "
-       id="polygon17282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.75,407.81 858.7,408.34 870.04,411.5 "
-       id="polygon17284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="858.9,407.29 858.75,407.81 870.09,410.97 "
-       id="polygon17286" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="872.37,407.61 872.7,407.55 861.36,404.39 "
-       id="polygon17288" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="874.38,418.64 874.71,418.58 863.87,415.55 "
-       id="polygon17290" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="872.03,407.83 872.37,407.61 861.02,404.46 "
-       id="polygon17292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.73,408.19 872.03,407.83 860.69,404.68 "
-       id="polygon17294" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="874.04,418.87 874.38,418.64 863.53,415.61 "
-       id="polygon17296" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="873.75,421.86 873.5,421.61 862.66,418.57 "
-       id="polygon17298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.48,408.65 871.73,408.19 860.38,405.04 "
-       id="polygon17300" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="873.74,419.23 874.04,418.87 863.19,415.84 "
-       id="polygon17302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.33,409.17 871.48,408.65 860.14,405.5 "
-       id="polygon17304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.28,409.7 871.33,409.17 859.99,406.02 "
-       id="polygon17306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.5,421.61 873.35,421.21 862.5,418.18 "
-       id="polygon17308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.5,419.69 873.74,419.23 862.89,416.2 "
-       id="polygon17310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="877.52,414.95 877.21,415.31 888.09,418.34 "
-       id="polygon17312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="888.09,418.34 888.4,417.98 877.52,414.95 "
-       id="polygon17314" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="871.94,413.35 872.19,413.61 882.73,416.55 "
-       id="polygon17316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.35,421.21 873.29,420.73 862.45,417.7 "
-       id="polygon17318" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.34,420.21 873.5,419.69 862.65,416.66 "
-       id="polygon17320" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="870.79,409.63 871.13,409.4 859.78,406.25 "
-       id="polygon17322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.29,420.73 873.34,420.21 862.5,417.18 "
-       id="polygon17324" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="870.49,412.63 870.25,412.36 858.91,409.2 "
-       id="polygon17326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.79,412.96 871.94,413.35 882.48,416.29 "
-       id="polygon17328" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="870.48,409.98 870.79,409.63 859.45,406.47 "
-       id="polygon17330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.25,412.36 870.09,411.98 858.75,408.82 "
-       id="polygon17332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.24,410.45 870.48,409.98 859.14,406.83 "
-       id="polygon17334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.09,411.98 870.04,411.5 858.7,408.34 "
-       id="polygon17336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.09,410.97 870.24,410.45 858.9,407.29 "
-       id="polygon17338" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="871.5,414.01 871.26,413.75 881.8,416.69 "
-       id="polygon17340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.04,411.5 870.09,410.97 858.75,407.81 "
-       id="polygon17342" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="870.96,413.65 870.62,413.71 881.16,416.65 "
-       id="polygon17344" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="869.74,416.67 869.99,416.93 880.53,419.88 "
-       id="polygon17346" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="870.62,413.71 870.28,413.93 880.82,416.88 "
-       id="polygon17348" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="869.59,416.28 869.74,416.67 880.29,419.62 "
-       id="polygon17350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.28,413.93 869.98,414.29 880.52,417.23 "
-       id="polygon17352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.53,415.8 869.59,416.28 880.13,419.23 "
-       id="polygon17354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.98,414.29 869.74,414.76 880.28,417.7 "
-       id="polygon17356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.58,415.28 869.53,415.8 880.07,418.75 "
-       id="polygon17358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="869.74,414.76 869.58,415.28 880.13,418.22 "
-       id="polygon17360" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="882.73,416.55 882.48,416.29 871.94,413.35 "
-       id="polygon17362" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="870.43,412.1 870.62,412.3 870.49,412.63 "
-       id="polygon17364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.48,416.29 882.33,415.9 871.79,412.96 "
-       id="polygon17366" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="875.26,418.94 875.02,418.68 885.9,421.72 "
-       id="polygon17368" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="880.82,416.88 881.16,416.65 870.62,413.71 "
-       id="polygon17370" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="880.53,419.88 880.29,419.62 869.74,416.67 "
-       id="polygon17372" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="874.71,418.58 874.38,418.64 885.26,421.68 "
-       id="polygon17374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.52,417.23 880.82,416.88 870.28,413.93 "
-       id="polygon17376" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="873.5,421.61 873.75,421.86 884.63,424.91 "
-       id="polygon17378" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="880.29,419.62 880.13,419.23 869.59,416.28 "
-       id="polygon17380" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="872.37,407.61 872.03,407.83 883.41,410.99 "
-       id="polygon17382" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="874.38,418.64 874.04,418.87 884.92,421.91 "
-       id="polygon17384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.28,417.7 880.52,417.23 869.98,414.29 "
-       id="polygon17386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.13,419.23 880.07,418.75 869.53,415.8 "
-       id="polygon17388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.13,418.22 880.28,417.7 869.74,414.76 "
-       id="polygon17390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.35,421.21 873.5,421.61 884.39,424.65 "
-       id="polygon17392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.07,418.75 880.13,418.22 869.58,415.28 "
-       id="polygon17394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="872.03,407.83 871.73,408.19 883.11,411.35 "
-       id="polygon17396" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="874.04,418.87 873.74,419.23 884.62,422.27 "
-       id="polygon17398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.73,408.19 871.48,408.65 882.87,411.82 "
-       id="polygon17400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.29,420.73 873.35,421.21 884.23,424.26 "
-       id="polygon17402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.33,409.17 871.28,409.7 882.66,412.86 "
-       id="polygon17404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.74,419.23 873.5,419.69 884.38,422.73 "
-       id="polygon17406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="871.48,408.65 871.33,409.17 882.71,412.34 "
-       id="polygon17408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.34,420.21 873.29,420.73 884.18,423.78 "
-       id="polygon17410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="873.5,419.69 873.34,420.21 884.23,423.25 "
-       id="polygon17412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.09,411.98 870.25,412.36 881.63,415.54 "
-       id="polygon17414" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="870.79,409.63 870.48,409.98 881.87,413.15 "
-       id="polygon17416" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.04,411.5 870.09,411.98 881.48,415.14 "
-       id="polygon17418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.48,409.98 870.24,410.45 881.63,413.62 "
-       id="polygon17420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.09,410.97 870.04,411.5 881.42,414.66 "
-       id="polygon17422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="870.24,410.45 870.09,410.97 881.47,414.14 "
-       id="polygon17424" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="883.75,410.77 884.09,410.71 872.7,407.55 "
-       id="polygon17426" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="884.92,421.91 885.26,421.68 874.38,418.64 "
-       id="polygon17428" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="883.41,410.99 883.75,410.77 872.37,407.61 "
-       id="polygon17430" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="884.63,424.91 884.39,424.65 873.5,421.61 "
-       id="polygon17432" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="884.62,422.27 884.92,421.91 874.04,418.87 "
-       id="polygon17434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="888.4,417.98 888.09,418.34 899.01,421.39 "
-       id="polygon17436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="899.01,421.39 899.32,421.03 888.4,417.98 "
-       id="polygon17438" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="882.48,416.29 882.73,416.55 893.3,419.5 "
-       id="polygon17440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="883.11,411.35 883.41,410.99 872.03,407.83 "
-       id="polygon17442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.39,424.65 884.23,424.26 873.35,421.21 "
-       id="polygon17444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.38,422.73 884.62,422.27 873.74,419.23 "
-       id="polygon17446" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.87,411.82 883.11,411.35 871.73,408.19 "
-       id="polygon17448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.23,424.26 884.18,423.78 873.29,420.73 "
-       id="polygon17450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.33,415.9 882.48,416.29 893.06,419.24 "
-       id="polygon17452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.23,423.25 884.38,422.73 873.5,419.69 "
-       id="polygon17454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.18,423.78 884.23,423.25 873.34,420.21 "
-       id="polygon17456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.71,412.34 882.87,411.82 871.48,408.65 "
-       id="polygon17458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.66,412.86 882.71,412.34 871.33,409.17 "
-       id="polygon17460" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="881.88,415.79 881.63,415.54 870.25,412.36 "
-       id="polygon17462" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="881.87,413.15 882.17,412.79 870.79,409.63 "
-       id="polygon17464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.63,415.54 881.48,415.14 870.09,411.98 "
-       id="polygon17466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.63,413.62 881.87,413.15 870.48,409.98 "
-       id="polygon17468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.48,415.14 881.42,414.66 870.04,411.5 "
-       id="polygon17470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.47,414.14 881.63,413.62 870.24,410.45 "
-       id="polygon17472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.42,414.66 881.47,414.14 870.09,410.97 "
-       id="polygon17474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="888.09,418.34 887.86,418.81 898.77,421.85 "
-       id="polygon17476" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="881.5,416.59 881.16,416.65 891.74,419.6 "
-       id="polygon17478" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="880.29,419.62 880.53,419.88 891.11,422.83 "
-       id="polygon17480" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="881.16,416.65 880.82,416.88 891.4,419.82 "
-       id="polygon17482" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="880.13,419.23 880.29,419.62 890.86,422.57 "
-       id="polygon17484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.82,416.88 880.52,417.23 891.1,420.18 "
-       id="polygon17486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.07,418.75 880.13,419.23 890.71,422.18 "
-       id="polygon17488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.52,417.23 880.28,417.7 890.86,420.65 "
-       id="polygon17490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.13,418.22 880.07,418.75 890.65,421.7 "
-       id="polygon17492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="880.28,417.7 880.13,418.22 890.7,421.17 "
-       id="polygon17494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="893.06,419.24 892.91,418.85 882.33,415.9 "
-       id="polygon17496" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="891.74,419.6 892.07,419.54 881.5,416.59 "
-       id="polygon17498" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="891.4,419.82 891.74,419.6 881.16,416.65 "
-       id="polygon17500" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="891.11,422.83 890.86,422.57 880.29,419.62 "
-       id="polygon17502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="891.1,420.18 891.4,419.82 880.82,416.88 "
-       id="polygon17504" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="890.86,422.57 890.71,422.18 880.13,419.23 "
-       id="polygon17506" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="885.6,421.62 885.26,421.68 896.18,424.73 "
-       id="polygon17508" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="893.3,419.5 893.61,419.6 893.68,419.26 "
-       id="polygon17510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.86,420.65 891.1,420.18 880.52,417.23 "
-       id="polygon17512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.71,422.18 890.65,421.7 880.07,418.75 "
-       id="polygon17514" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="884.39,424.65 884.63,424.91 895.54,427.96 "
-       id="polygon17516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.7,421.17 890.86,420.65 880.28,417.7 "
-       id="polygon17518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.65,421.7 890.7,421.17 880.13,418.22 "
-       id="polygon17520" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="885.26,421.68 884.92,421.91 895.84,424.96 "
-       id="polygon17522" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.23,424.26 884.39,424.65 895.3,427.71 "
-       id="polygon17524" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="884.92,421.91 884.62,422.27 895.54,425.32 "
-       id="polygon17526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.18,423.78 884.23,424.26 895.15,427.32 "
-       id="polygon17528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.62,422.27 884.38,422.73 895.3,425.79 "
-       id="polygon17530" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="884.09,410.71 883.75,410.77 897.71,414.65 "
-       id="polygon17532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.23,423.25 884.18,423.78 895.09,426.84 "
-       id="polygon17534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="884.38,422.73 884.23,423.25 895.14,426.3 "
-       id="polygon17536" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="883.75,410.77 883.41,410.99 897.38,414.87 "
-       id="polygon17538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="883.41,410.99 883.11,411.35 897.07,415.23 "
-       id="polygon17540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="883.11,411.35 882.87,411.82 896.83,415.7 "
-       id="polygon17542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.71,412.34 882.66,412.86 896.63,416.75 "
-       id="polygon17544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="882.87,411.82 882.71,412.34 896.68,416.22 "
-       id="polygon17546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="892.91,418.85 893.06,419.24 903.67,422.2 "
-       id="polygon17548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="903.67,422.2 903.52,421.8 892.91,418.85 "
-       id="polygon17550" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="881.63,415.54 881.88,415.79 895.84,419.69 "
-       id="polygon17552" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="882.51,412.57 882.17,412.79 896.14,416.68 "
-       id="polygon17554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.48,415.14 881.63,415.54 895.59,419.43 "
-       id="polygon17556" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="896.18,424.73 896.52,424.67 885.6,421.62 "
-       id="polygon17558" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="882.17,412.79 881.87,413.15 895.83,417.04 "
-       id="polygon17560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.42,414.66 881.48,415.14 895.44,419.04 "
-       id="polygon17562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.87,413.15 881.63,413.62 895.59,417.5 "
-       id="polygon17564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.47,414.14 881.42,414.66 895.38,418.55 "
-       id="polygon17566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="881.63,413.62 881.47,414.14 895.44,418.03 "
-       id="polygon17568" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="895.84,424.96 896.18,424.73 885.26,421.68 "
-       id="polygon17570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="899.32,421.03 899.01,421.39 910.06,424.47 "
-       id="polygon17572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="910.06,424.47 910.36,424.11 899.32,421.03 "
-       id="polygon17574" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="893.06,419.24 893.3,419.5 903.91,422.45 "
-       id="polygon17576" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="895.54,427.96 895.3,427.71 884.39,424.65 "
-       id="polygon17578" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="895.54,425.32 895.84,424.96 884.92,421.91 "
-       id="polygon17580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.3,427.71 895.15,427.32 884.23,424.26 "
-       id="polygon17582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.3,425.79 895.54,425.32 884.62,422.27 "
-       id="polygon17584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.15,427.32 895.09,426.84 884.18,423.78 "
-       id="polygon17586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.14,426.3 895.3,425.79 884.38,422.73 "
-       id="polygon17588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.09,426.84 895.14,426.3 884.23,423.25 "
-       id="polygon17590" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="897.71,414.65 898.05,414.59 884.09,410.71 "
-       id="polygon17592" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="897.38,414.87 897.71,414.65 883.75,410.77 "
-       id="polygon17594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="897.07,415.23 897.38,414.87 883.41,410.99 "
-       id="polygon17596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="909.82,424.93 910.06,424.47 899.01,421.39 "
-       id="polygon17598" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="902.99,422.6 903.23,422.86 892.62,419.9 "
-       id="polygon17600" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="891.74,419.6 891.4,419.82 902.01,422.79 "
-       id="polygon17602" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="890.71,422.18 890.86,422.57 901.47,425.53 "
-       id="polygon17604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="896.83,415.7 897.07,415.23 883.11,411.35 "
-       id="polygon17606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="891.4,419.82 891.1,420.18 901.71,423.14 "
-       id="polygon17608" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="896.68,416.22 896.83,415.7 882.87,411.82 "
-       id="polygon17610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="896.63,416.75 896.68,416.22 882.71,412.34 "
-       id="polygon17612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.65,421.7 890.71,422.18 901.32,425.14 "
-       id="polygon17614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="891.1,420.18 890.86,420.65 901.47,423.61 "
-       id="polygon17616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.7,421.17 890.65,421.7 901.26,424.66 "
-       id="polygon17618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="890.86,420.65 890.7,421.17 901.32,424.13 "
-       id="polygon17620" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="895.84,419.69 895.59,419.43 881.63,415.54 "
-       id="polygon17622" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="903.91,422.45 903.67,422.2 893.06,419.24 "
-       id="polygon17624" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="895.83,417.04 896.14,416.68 882.17,412.79 "
-       id="polygon17626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.59,419.43 895.44,419.04 881.48,415.14 "
-       id="polygon17628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.59,417.5 895.83,417.04 881.87,413.15 "
-       id="polygon17630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.44,419.04 895.38,418.55 881.42,414.66 "
-       id="polygon17632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.44,418.03 895.59,417.5 881.63,413.62 "
-       id="polygon17634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.38,418.55 895.44,418.03 881.47,414.14 "
-       id="polygon17636" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="902.36,425.83 902.02,425.89 891.41,422.93 "
-       id="polygon17638" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="902.35,422.56 902.69,422.5 892.07,419.54 "
-       id="polygon17640" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="897.06,425.03 896.82,424.77 907.86,427.86 "
-       id="polygon17642" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="902.01,422.79 902.35,422.56 891.74,419.6 "
-       id="polygon17644" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="901.71,425.79 901.47,425.53 890.86,422.57 "
-       id="polygon17646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.71,423.14 902.01,422.79 891.4,419.82 "
-       id="polygon17648" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="901.47,425.53 901.32,425.14 890.71,422.18 "
-       id="polygon17650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.47,423.61 901.71,423.14 891.1,420.18 "
-       id="polygon17652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.32,425.14 901.26,424.66 890.65,421.7 "
-       id="polygon17654" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="896.52,424.67 896.18,424.73 907.22,427.82 "
-       id="polygon17656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.32,424.13 901.47,423.61 890.86,420.65 "
-       id="polygon17658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.26,424.66 901.32,424.13 890.7,421.17 "
-       id="polygon17660" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="895.3,427.71 895.54,427.96 906.59,431.05 "
-       id="polygon17662" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="896.18,424.73 895.84,424.96 906.89,428.05 "
-       id="polygon17664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.15,427.32 895.3,427.71 906.35,430.8 "
-       id="polygon17666" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="895.84,424.96 895.54,425.32 906.59,428.41 "
-       id="polygon17668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.09,426.84 895.15,427.32 906.19,430.41 "
-       id="polygon17670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.54,425.32 895.3,425.79 906.34,428.88 "
-       id="polygon17672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.14,426.3 895.09,426.84 906.14,429.93 "
-       id="polygon17674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.3,425.79 895.14,426.3 906.19,429.39 "
-       id="polygon17676" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="898.05,414.59 897.71,414.65 909.69,417.98 "
-       id="polygon17678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="910.36,424.11 910.06,424.47 920.32,427.33 "
-       id="polygon17680" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="903.67,422.2 903.91,422.45 914.55,425.42 "
-       id="polygon17682" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="906.89,428.05 907.22,427.82 896.18,424.73 "
-       id="polygon17684" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="897.71,414.65 897.38,414.87 909.35,418.2 "
-       id="polygon17686" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="906.59,431.05 906.35,430.8 895.3,427.71 "
-       id="polygon17688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="903.52,421.8 903.67,422.2 914.32,425.16 "
-       id="polygon17690" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="906.59,428.41 906.89,428.05 895.84,424.96 "
-       id="polygon17692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="897.38,414.87 897.07,415.23 909.05,418.56 "
-       id="polygon17694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.35,430.8 906.19,430.41 895.15,427.32 "
-       id="polygon17696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="897.07,415.23 896.83,415.7 908.81,419.03 "
-       id="polygon17698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.34,428.88 906.59,428.41 895.54,425.32 "
-       id="polygon17700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.19,430.41 906.14,429.93 895.09,426.84 "
-       id="polygon17702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="896.68,416.22 896.63,416.75 908.6,420.08 "
-       id="polygon17704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="914.32,425.16 914.16,424.77 903.52,421.8 "
-       id="polygon17706" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="895.59,419.43 895.84,419.69 906.54,422.67 "
-       id="polygon17708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="896.83,415.7 896.68,416.22 908.66,419.55 "
-       id="polygon17710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.19,429.39 906.34,428.88 895.3,425.79 "
-       id="polygon17712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,429.93 906.19,429.39 895.14,426.3 "
-       id="polygon17714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.44,419.04 895.59,419.43 906.3,422.41 "
-       id="polygon17716" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="896.14,416.68 895.83,417.04 906.54,420.02 "
-       id="polygon17718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.38,418.55 895.44,419.04 906.14,422.02 "
-       id="polygon17720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.83,417.04 895.59,417.5 906.3,420.48 "
-       id="polygon17722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.44,418.03 895.38,418.55 906.09,421.54 "
-       id="polygon17724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="895.59,417.5 895.44,418.03 906.14,421.01 "
-       id="polygon17726" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="901.47,425.53 901.71,425.79 912.36,428.77 "
-       id="polygon17728" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="902.35,422.56 902.01,422.79 912.66,425.75 "
-       id="polygon17730" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="901.32,425.14 901.47,425.53 912.12,428.51 "
-       id="polygon17732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="902.01,422.79 901.71,423.14 912.36,426.11 "
-       id="polygon17734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.26,424.66 901.32,425.14 911.96,428.12 "
-       id="polygon17736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.71,423.14 901.47,423.61 912.11,426.58 "
-       id="polygon17738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.32,424.13 901.26,424.66 911.91,427.63 "
-       id="polygon17740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="901.47,423.61 901.32,424.13 911.96,427.1 "
-       id="polygon17742" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="909.69,417.98 910.03,417.91 898.05,414.59 "
-       id="polygon17744" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="914.55,425.42 914.32,425.16 903.67,422.2 "
-       id="polygon17746" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="909.35,418.2 909.69,417.98 897.71,414.65 "
-       id="polygon17748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="909.05,418.56 909.35,418.2 897.38,414.87 "
-       id="polygon17750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="908.6,420.08 908.66,419.55 896.68,416.22 "
-       id="polygon17752" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="906.84,419.66 907.18,419.43 896.47,416.45 "
-       id="polygon17754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="908.81,419.03 909.05,418.56 897.07,415.23 "
-       id="polygon17756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="908.66,419.55 908.81,419.03 896.83,415.7 "
-       id="polygon17758" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="906.54,420.02 906.84,419.66 896.14,416.68 "
-       id="polygon17760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.3,422.41 906.14,422.02 895.44,419.04 "
-       id="polygon17762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.3,420.48 906.54,420.02 895.83,417.04 "
-       id="polygon17764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.08,427.79 920.32,427.33 910.06,424.47 "
-       id="polygon17766" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="912.99,425.53 913.33,425.46 902.69,422.5 "
-       id="polygon17768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,422.02 906.09,421.54 895.38,418.55 "
-       id="polygon17770" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,421.01 906.3,420.48 895.59,417.5 "
-       id="polygon17772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.09,421.54 906.14,421.01 895.44,418.03 "
-       id="polygon17774" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="912.66,425.75 912.99,425.53 902.35,422.56 "
-       id="polygon17776" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="912.36,428.77 912.12,428.51 901.47,425.53 "
-       id="polygon17778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="912.36,426.11 912.66,425.75 902.01,422.79 "
-       id="polygon17780" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="912.12,428.51 911.96,428.12 901.32,425.14 "
-       id="polygon17782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="912.11,426.58 912.36,426.11 901.71,423.14 "
-       id="polygon17784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="911.96,428.12 911.91,427.63 901.26,424.66 "
-       id="polygon17786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="911.96,427.1 912.11,426.58 901.47,423.61 "
-       id="polygon17788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="911.91,427.63 911.96,427.1 901.32,424.13 "
-       id="polygon17790" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="906.35,430.8 906.59,431.05 916.85,433.93 "
-       id="polygon17792" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="907.22,427.82 906.89,428.05 917.15,430.91 "
-       id="polygon17794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.19,430.41 906.35,430.8 916.61,433.67 "
-       id="polygon17796" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="906.89,428.05 906.59,428.41 916.84,431.28 "
-       id="polygon17798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,429.93 906.19,430.41 916.45,433.28 "
-       id="polygon17800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.59,428.41 906.34,428.88 916.61,431.74 "
-       id="polygon17802" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="906.3,422.41 906.54,422.67 906.67,422.35 "
-       id="polygon17804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.19,429.39 906.14,429.93 916.4,432.79 "
-       id="polygon17806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.34,428.88 906.19,429.39 916.45,432.27 "
-       id="polygon17808" />
-    <line
-       x1="914.25"
-       y1="425.25"
-       x2="914.25"
-       y2="425.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17810" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="917.48,430.69 917.82,430.63 907.56,427.76 "
-       id="polygon17812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.62,426.96 920.32,427.33 930.61,430.2 "
-       id="polygon17814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="930.61,430.2 930.91,429.83 920.62,426.96 "
-       id="polygon17816" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="914.32,425.16 914.55,425.42 924.88,428.3 "
-       id="polygon17818" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="917.15,430.91 917.48,430.69 907.22,427.82 "
-       id="polygon17820" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="910.57,418.28 910.33,418.02 922.35,421.36 "
-       id="polygon17822" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="916.85,433.93 916.61,433.67 906.35,430.8 "
-       id="polygon17824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="914.16,424.77 914.32,425.16 924.64,428.04 "
-       id="polygon17826" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="916.84,431.28 917.15,430.91 906.89,428.05 "
-       id="polygon17828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.61,433.67 916.45,433.28 906.19,430.41 "
-       id="polygon17830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.61,431.74 916.84,431.28 906.59,428.41 "
-       id="polygon17832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.45,433.28 916.4,432.79 906.14,429.93 "
-       id="polygon17834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.45,432.27 916.61,431.74 906.34,428.88 "
-       id="polygon17836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.4,432.79 916.45,432.27 906.19,429.39 "
-       id="polygon17838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="930.37,430.66 930.61,430.2 920.32,427.33 "
-       id="polygon17840" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="913.88,425.82 913.63,425.57 924.45,428.58 "
-       id="polygon17842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="908.66,419.55 908.6,420.08 920.62,423.42 "
-       id="polygon17844" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="907.18,419.43 906.84,419.66 917.59,422.64 "
-       id="polygon17846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,422.02 906.3,422.41 917.04,425.4 "
-       id="polygon17848" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="909.69,417.98 909.35,418.2 921.37,421.54 "
-       id="polygon17850" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="906.84,419.66 906.54,420.02 917.28,423.01 "
-       id="polygon17852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.09,421.54 906.14,422.02 916.89,425.01 "
-       id="polygon17854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.54,420.02 906.3,420.48 917.04,423.47 "
-       id="polygon17856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="909.35,418.2 909.05,418.56 921.07,421.9 "
-       id="polygon17858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.14,421.01 906.09,421.54 916.83,424.53 "
-       id="polygon17860" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="913.33,425.46 912.99,425.53 923.8,428.54 "
-       id="polygon17862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="906.3,420.48 906.14,421.01 916.89,424 "
-       id="polygon17864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="909.05,418.56 908.81,419.03 920.83,422.37 "
-       id="polygon17866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="908.81,419.03 908.66,419.55 920.68,422.89 "
-       id="polygon17868" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="912.99,425.53 912.66,425.75 923.47,428.77 "
-       id="polygon17870" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="911.96,428.12 912.12,428.51 922.93,431.52 "
-       id="polygon17872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="912.66,425.75 912.36,426.11 923.16,429.13 "
-       id="polygon17874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="911.91,427.63 911.96,428.12 922.77,431.13 "
-       id="polygon17876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="912.36,426.11 912.11,426.58 922.93,429.6 "
-       id="polygon17878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="911.96,427.1 911.91,427.63 922.72,430.65 "
-       id="polygon17880" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="924.88,428.3 924.64,428.04 914.32,425.16 "
-       id="polygon17882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="912.11,426.58 911.96,427.1 922.77,430.12 "
-       id="polygon17884" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="924.64,428.04 924.48,427.65 914.16,424.77 "
-       id="polygon17886" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="917.93,425.7 917.59,425.77 906.85,422.77 "
-       id="polygon17888" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="917.29,425.66 917.04,425.4 906.3,422.41 "
-       id="polygon17890" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="917.28,423.01 917.59,422.64 906.84,419.66 "
-       id="polygon17892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="917.04,425.4 916.89,425.01 906.14,422.02 "
-       id="polygon17894" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="921.37,421.54 921.71,421.32 909.69,417.98 "
-       id="polygon17896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="917.04,423.47 917.28,423.01 906.54,420.02 "
-       id="polygon17898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.89,425.01 916.83,424.53 906.09,421.54 "
-       id="polygon17900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.89,424 917.04,423.47 906.3,420.48 "
-       id="polygon17902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.83,424.53 916.89,424 906.14,421.01 "
-       id="polygon17904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="921.07,421.9 921.37,421.54 909.35,418.2 "
-       id="polygon17906" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="923.47,428.77 923.8,428.54 912.99,425.53 "
-       id="polygon17908" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="923.17,431.79 922.93,431.52 912.12,428.51 "
-       id="polygon17910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.83,422.37 921.07,421.9 909.05,418.56 "
-       id="polygon17912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.68,422.89 920.83,422.37 908.81,419.03 "
-       id="polygon17914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.62,423.42 920.68,422.89 908.66,419.55 "
-       id="polygon17916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="923.16,429.13 923.47,428.77 912.66,425.75 "
-       id="polygon17918" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="922.93,431.52 922.77,431.13 911.96,428.12 "
-       id="polygon17920" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="917.82,430.63 917.48,430.69 927.78,433.56 "
-       id="polygon17922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.93,429.6 923.16,429.13 912.36,426.11 "
-       id="polygon17924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.77,431.13 922.72,430.65 911.91,427.63 "
-       id="polygon17926" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="916.61,433.67 916.85,433.93 927.14,436.81 "
-       id="polygon17928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.77,430.12 922.93,429.6 912.11,426.58 "
-       id="polygon17930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.72,430.65 922.77,430.12 911.96,427.1 "
-       id="polygon17932" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="917.48,430.69 917.15,430.91 927.44,433.79 "
-       id="polygon17934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.45,433.28 916.61,433.67 926.9,436.55 "
-       id="polygon17936" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="917.15,430.91 916.84,431.28 927.14,434.15 "
-       id="polygon17938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.4,432.79 916.45,433.28 926.74,436.16 "
-       id="polygon17940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.84,431.28 916.61,431.74 926.89,434.62 "
-       id="polygon17942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.45,432.27 916.4,432.79 926.69,435.68 "
-       id="polygon17944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.61,431.74 916.45,432.27 926.74,435.14 "
-       id="polygon17946" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="921.71,421.32 921.37,421.54 921.44,421.82 "
-       id="polygon17948" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="927.78,433.56 928.11,433.5 917.82,430.63 "
-       id="polygon17950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="930.91,429.83 930.61,430.2 940.93,433.07 "
-       id="polygon17952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="940.93,433.07 941.23,432.71 930.91,429.83 "
-       id="polygon17954" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="924.64,428.04 924.88,428.3 935.23,431.18 "
-       id="polygon17956" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="927.44,433.79 927.78,433.56 917.48,430.69 "
-       id="polygon17958" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="927.14,436.81 926.9,436.55 916.61,433.67 "
-       id="polygon17960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="924.48,427.65 924.64,428.04 934.99,430.93 "
-       id="polygon17962" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="927.14,434.15 927.44,433.79 917.15,430.91 "
-       id="polygon17964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.9,436.55 926.74,436.16 916.45,433.28 "
-       id="polygon17966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.89,434.62 927.14,434.15 916.84,431.28 "
-       id="polygon17968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.74,436.16 926.69,435.68 916.4,432.79 "
-       id="polygon17970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.74,435.14 926.89,434.62 916.61,431.74 "
-       id="polygon17972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.69,435.68 926.74,435.14 916.45,432.27 "
-       id="polygon17974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="934.99,430.93 934.84,430.54 924.48,427.65 "
-       id="polygon17976" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="917.04,425.4 917.29,425.66 928.06,428.66 "
-       id="polygon17978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.89,425.01 917.04,425.4 927.82,428.41 "
-       id="polygon17980" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="917.59,422.64 917.28,423.01 928.06,426.01 "
-       id="polygon17982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.83,424.53 916.89,425.01 927.66,428.02 "
-       id="polygon17984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="917.28,423.01 917.04,423.47 927.82,426.47 "
-       id="polygon17986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="916.89,424 916.83,424.53 927.61,427.53 "
-       id="polygon17988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="917.04,423.47 916.89,424 927.66,427 "
-       id="polygon17990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="930.61,430.2 930.37,430.66 940.69,433.54 "
-       id="polygon17992" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="924.14,428.48 923.8,428.54 934.65,431.57 "
-       id="polygon17994" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="922.04,421.25 921.71,421.32 933.77,424.67 "
-       id="polygon17996" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="922.93,431.52 923.17,431.79 934.01,434.81 "
-       id="polygon17998" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="923.8,428.54 923.47,428.77 934.32,431.79 "
-       id="polygon18000" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="921.71,421.32 921.37,421.54 933.43,424.89 "
-       id="polygon18002" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="922.77,431.13 922.93,431.52 933.77,434.55 "
-       id="polygon18004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="923.47,428.77 923.16,429.13 934.01,432.16 "
-       id="polygon18006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.72,430.65 922.77,431.13 933.62,434.16 "
-       id="polygon18008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="921.37,421.54 921.07,421.9 933.13,425.26 "
-       id="polygon18010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="923.16,429.13 922.93,429.6 933.77,432.62 "
-       id="polygon18012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.77,430.12 922.72,430.65 933.56,433.68 "
-       id="polygon18014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="922.93,429.6 922.77,430.12 933.62,433.15 "
-       id="polygon18016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="921.07,421.9 920.83,422.37 932.89,425.72 "
-       id="polygon18018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.68,422.89 920.62,423.42 932.68,426.78 "
-       id="polygon18020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="920.83,422.37 920.68,422.89 932.74,426.25 "
-       id="polygon18022" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="928.06,428.66 927.82,428.41 917.04,425.4 "
-       id="polygon18024" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="928.06,426.01 928.36,425.64 917.59,422.64 "
-       id="polygon18026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.82,428.41 927.66,428.02 916.89,425.01 "
-       id="polygon18028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.82,426.47 928.06,426.01 917.28,423.01 "
-       id="polygon18030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.66,428.02 927.61,427.53 916.83,424.53 "
-       id="polygon18032" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="934.65,431.57 934.99,431.5 924.14,428.48 "
-       id="polygon18034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.66,427 927.82,426.47 917.04,423.47 "
-       id="polygon18036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.61,427.53 927.66,427 916.89,424 "
-       id="polygon18038" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="934.32,431.79 934.65,431.57 923.8,428.54 "
-       id="polygon18040" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="934.01,434.81 933.77,434.55 922.93,431.52 "
-       id="polygon18042" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="933.77,424.67 934.11,424.6 922.04,421.25 "
-       id="polygon18044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="934.01,432.16 934.32,431.79 923.47,428.77 "
-       id="polygon18046" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="927.78,433.56 927.44,433.79 937.76,436.67 "
-       id="polygon18048" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="933.77,434.55 933.62,434.16 922.77,431.13 "
-       id="polygon18050" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="933.43,424.89 933.77,424.67 921.71,421.32 "
-       id="polygon18052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.74,436.16 926.9,436.55 937.22,439.44 "
-       id="polygon18054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.77,432.62 934.01,432.16 923.16,429.13 "
-       id="polygon18056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.62,434.16 933.56,433.68 922.72,430.65 "
-       id="polygon18058" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="927.44,433.79 927.14,434.15 937.46,437.04 "
-       id="polygon18060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.62,433.15 933.77,432.62 922.93,429.6 "
-       id="polygon18062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.56,433.68 933.62,433.15 922.77,430.12 "
-       id="polygon18064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.13,425.26 933.43,424.89 921.37,421.54 "
-       id="polygon18066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.69,435.68 926.74,436.16 937.07,439.05 "
-       id="polygon18068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.14,434.15 926.89,434.62 937.22,437.51 "
-       id="polygon18070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.74,435.14 926.69,435.68 937.01,438.56 "
-       id="polygon18072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="926.89,434.62 926.74,435.14 937.07,438.03 "
-       id="polygon18074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="932.89,425.72 933.13,425.26 921.07,421.9 "
-       id="polygon18076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="932.74,426.25 932.89,425.72 920.83,422.37 "
-       id="polygon18078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="932.68,426.78 932.74,426.25 920.68,422.89 "
-       id="polygon18080" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="938.1,436.45 938.43,436.38 928.11,433.5 "
-       id="polygon18082" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="937.76,436.67 938.1,436.45 927.78,433.56 "
-       id="polygon18084" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="937.46,439.7 937.22,439.44 926.9,436.55 "
-       id="polygon18086" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="937.46,437.04 937.76,436.67 927.44,433.79 "
-       id="polygon18088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.22,439.44 937.07,439.05 926.74,436.16 "
-       id="polygon18090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="941.23,432.71 940.93,433.07 950.37,435.71 "
-       id="polygon18092" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="934.99,430.93 935.23,431.18 948.44,434.87 "
-       id="polygon18094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.22,437.51 937.46,437.04 927.14,434.15 "
-       id="polygon18096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.07,439.05 937.01,438.56 926.69,435.68 "
-       id="polygon18098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.07,438.03 937.22,437.51 926.89,434.62 "
-       id="polygon18100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.01,438.56 937.07,438.03 926.74,435.14 "
-       id="polygon18102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="934.84,430.54 934.99,430.93 948.2,434.61 "
-       id="polygon18104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.2,434.61 948.05,434.21 934.84,430.54 "
-       id="polygon18106" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="927.82,428.41 928.06,428.66 938.87,431.68 "
-       id="polygon18108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="932.74,426.25 932.68,426.78 945.9,430.46 "
-       id="polygon18110" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="928.7,425.42 928.36,425.64 939.17,428.65 "
-       id="polygon18112" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="938.43,436.38 938.74,436.48 938.61,436.8 "
-       id="polygon18114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.66,428.02 927.82,428.41 938.63,431.42 "
-       id="polygon18116" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="928.36,425.64 928.06,426.01 938.87,429.02 "
-       id="polygon18118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.61,427.53 927.66,428.02 938.48,431.03 "
-       id="polygon18120" />
-    <line
-       x1="939.26001"
-       y1="436.76999"
-       x2="939.26001"
-       y2="436.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="928.06,426.01 927.82,426.47 938.63,429.48 "
-       id="polygon18124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.66,427 927.61,427.53 938.42,430.54 "
-       id="polygon18126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="927.82,426.47 927.66,427 938.47,430.01 "
-       id="polygon18128" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="933.77,434.55 934.01,434.81 944.89,437.85 "
-       id="polygon18130" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="934.65,431.57 934.32,431.79 945.2,434.82 "
-       id="polygon18132" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="933.62,434.16 933.77,434.55 944.65,437.59 "
-       id="polygon18134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="934.32,431.79 934.01,432.16 944.89,435.19 "
-       id="polygon18136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.56,433.68 933.62,434.16 944.5,437.2 "
-       id="polygon18138" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="934.01,432.16 933.77,432.62 944.65,435.66 "
-       id="polygon18140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.62,433.15 933.56,433.68 944.45,436.71 "
-       id="polygon18142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.77,432.62 933.62,433.15 944.5,436.18 "
-       id="polygon18144" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="934.11,424.6 933.77,424.67 946.99,428.34 "
-       id="polygon18146" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="948.44,434.87 948.2,434.61 934.99,430.93 "
-       id="polygon18148" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="933.77,424.67 933.43,424.89 946.65,428.57 "
-       id="polygon18150" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="938.87,431.68 938.63,431.42 927.82,428.41 "
-       id="polygon18152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.43,424.89 933.13,425.26 946.35,428.93 "
-       id="polygon18154" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="938.87,429.02 939.17,428.65 928.36,425.64 "
-       id="polygon18156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="933.13,425.26 932.89,425.72 946.11,429.4 "
-       id="polygon18158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="950.13,436.18 950.37,435.71 940.93,433.07 "
-       id="polygon18160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.63,431.42 938.48,431.03 927.66,428.02 "
-       id="polygon18162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="932.89,425.72 932.74,426.25 945.95,429.92 "
-       id="polygon18164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.63,429.48 938.87,429.02 928.06,426.01 "
-       id="polygon18166" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.48,431.03 938.42,430.54 927.61,427.53 "
-       id="polygon18168" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="945.53,434.6 945.87,434.54 934.99,431.5 "
-       id="polygon18170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.47,430.01 938.63,429.48 927.82,426.47 "
-       id="polygon18172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.42,430.54 938.47,430.01 927.66,427 "
-       id="polygon18174" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="938.43,436.38 938.1,436.45 948.96,439.48 "
-       id="polygon18176" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="937.22,439.44 937.46,439.7 948.32,442.74 "
-       id="polygon18178" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="945.2,434.82 945.53,434.6 934.65,431.57 "
-       id="polygon18180" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="944.89,437.85 944.65,437.59 933.77,434.55 "
-       id="polygon18182" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="938.1,436.45 937.76,436.67 948.63,439.71 "
-       id="polygon18184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.07,439.05 937.22,439.44 948.08,442.48 "
-       id="polygon18186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.89,435.19 945.2,434.82 934.32,431.79 "
-       id="polygon18188" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="944.65,437.59 944.5,437.2 933.62,434.16 "
-       id="polygon18190" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="937.76,436.67 937.46,437.04 948.32,440.07 "
-       id="polygon18192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.01,438.56 937.07,439.05 947.93,442.09 "
-       id="polygon18194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.65,435.66 944.89,435.19 934.01,432.16 "
-       id="polygon18196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.5,437.2 944.45,436.71 933.56,433.68 "
-       id="polygon18198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.46,437.04 937.22,437.51 948.08,440.54 "
-       id="polygon18200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.07,438.03 937.01,438.56 947.88,441.6 "
-       id="polygon18202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.5,436.18 944.65,435.66 933.77,432.62 "
-       id="polygon18204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="937.22,437.51 937.07,438.03 947.93,441.07 "
-       id="polygon18206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.45,436.71 944.5,436.18 933.62,433.15 "
-       id="polygon18208" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="939.24,428.93 939.51,428.75 939.51,428.43 "
-       id="polygon18210" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="946.99,428.34 947.32,428.27 934.11,424.6 "
-       id="polygon18212" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="946.65,428.57 946.99,428.34 933.77,424.67 "
-       id="polygon18214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.35,428.93 946.65,428.57 933.43,424.89 "
-       id="polygon18216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.11,429.4 946.35,428.93 933.13,425.26 "
-       id="polygon18218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.24,434.27 948.39,434.66 949.39,434.94 "
-       id="polygon18220" />
-    <line
-       x1="950.63"
-       y1="435.10999"
-       x2="950.63"
-       y2="435.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="945.95,429.92 946.11,429.4 932.89,425.72 "
-       id="polygon18224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="945.9,430.46 945.95,429.92 932.74,426.25 "
-       id="polygon18226" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="948.63,439.71 948.96,439.48 938.1,436.45 "
-       id="polygon18228" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="948.32,442.74 948.08,442.48 937.22,439.44 "
-       id="polygon18230" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="948.32,440.07 948.63,439.71 937.76,436.67 "
-       id="polygon18232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.08,442.48 947.93,442.09 937.07,439.05 "
-       id="polygon18234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.08,440.54 948.32,440.07 937.46,437.04 "
-       id="polygon18236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.93,442.09 947.88,441.6 937.01,438.56 "
-       id="polygon18238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.93,441.07 948.08,440.54 937.22,437.51 "
-       id="polygon18240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.88,441.6 947.93,441.07 937.07,438.03 "
-       id="polygon18242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.24,434.55 949.39,434.94 962.17,438.5 "
-       id="polygon18244" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="938.63,431.42 938.87,431.68 949.71,434.7 "
-       id="polygon18246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="950.67,435.34 950.37,435.71 962.73,439.15 "
-       id="polygon18248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.48,431.03 938.63,431.42 949.47,434.44 "
-       id="polygon18250" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="939.17,428.65 938.87,429.02 949.71,432.04 "
-       id="polygon18252" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="949.6,439.52 949.3,439.42 949.23,439.76 "
-       id="polygon18254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.42,430.54 938.48,431.03 949.32,434.05 "
-       id="polygon18256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.87,429.02 938.63,429.48 949.48,432.5 "
-       id="polygon18258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.47,430.01 938.42,430.54 949.27,433.56 "
-       id="polygon18260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="938.63,429.48 938.47,430.01 949.32,433.03 "
-       id="polygon18262" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="945.87,434.54 945.53,434.6 956.45,437.64 "
-       id="polygon18264" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="944.65,437.59 944.89,437.85 955.81,440.9 "
-       id="polygon18266" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="945.53,434.6 945.2,434.82 956.11,437.87 "
-       id="polygon18268" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="944.5,437.2 944.65,437.59 955.57,440.64 "
-       id="polygon18270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="945.2,434.82 944.89,435.19 955.81,438.23 "
-       id="polygon18272" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="949.39,434.94 949.64,435.2 962.41,438.76 "
-       id="polygon18274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.45,436.71 944.5,437.2 955.41,440.25 "
-       id="polygon18276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.89,435.19 944.65,435.66 955.57,438.7 "
-       id="polygon18278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.5,436.18 944.45,436.71 955.36,439.77 "
-       id="polygon18280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="944.65,435.66 944.5,436.18 955.41,439.23 "
-       id="polygon18282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.14,429.98 946.09,430.51 959.38,434.2 "
-       id="polygon18284" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="950.02,431.67 950.36,431.44 939.51,428.43 "
-       id="polygon18286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="962.17,438.5 962.02,438.11 949.24,434.55 "
-       id="polygon18288" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="949.71,434.7 949.47,434.44 938.63,431.42 "
-       id="polygon18290" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="949.71,432.04 950.02,431.67 939.17,428.65 "
-       id="polygon18292" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.47,434.44 949.32,434.05 938.48,431.03 "
-       id="polygon18294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.48,432.5 949.71,432.04 938.87,429.02 "
-       id="polygon18296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.32,434.05 949.27,433.56 938.42,430.54 "
-       id="polygon18298" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="948.06,428.69 947.82,428.43 961.1,432.12 "
-       id="polygon18300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.32,433.03 949.48,432.5 938.63,429.48 "
-       id="polygon18302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.27,433.56 949.32,433.03 938.47,430.01 "
-       id="polygon18304" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="956.45,437.64 956.79,437.58 945.87,434.54 "
-       id="polygon18306" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="948.08,442.48 948.32,442.74 959.22,445.79 "
-       id="polygon18308" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="956.11,437.87 956.45,437.64 945.53,434.6 "
-       id="polygon18310" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="948.96,439.48 948.63,439.71 959.52,442.75 "
-       id="polygon18312" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="955.81,440.9 955.57,440.64 944.65,437.59 "
-       id="polygon18314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.93,442.09 948.08,442.48 958.98,445.53 "
-       id="polygon18316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.81,438.23 956.11,437.87 945.2,434.82 "
-       id="polygon18318" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="948.63,439.71 948.32,440.07 959.22,443.12 "
-       id="polygon18320" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="955.57,440.64 955.41,440.25 944.5,437.2 "
-       id="polygon18322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.88,441.6 947.93,442.09 958.82,445.14 "
-       id="polygon18324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.57,438.7 955.81,438.23 944.89,435.19 "
-       id="polygon18326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.32,440.07 948.08,440.54 958.98,443.59 "
-       id="polygon18328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.41,440.25 955.36,439.77 944.45,436.71 "
-       id="polygon18330" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="947.18,428.39 946.84,428.62 960.13,432.31 "
-       id="polygon18332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="947.93,441.07 947.88,441.6 958.77,444.65 "
-       id="polygon18334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="948.08,440.54 947.93,441.07 958.82,444.12 "
-       id="polygon18336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.41,439.23 955.57,438.7 944.65,435.66 "
-       id="polygon18338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.36,439.77 955.41,439.23 944.5,436.18 "
-       id="polygon18340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.84,428.62 946.54,428.98 959.82,432.68 "
-       id="polygon18342" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="962.41,438.76 962.17,438.5 949.39,434.94 "
-       id="polygon18344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.54,428.98 946.3,429.45 959.58,433.14 "
-       id="polygon18346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="946.3,429.45 946.14,429.98 959.43,433.67 "
-       id="polygon18348" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="959.86,442.53 960.2,442.46 949.3,439.42 "
-       id="polygon18350" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="959.52,442.75 959.86,442.53 948.96,439.48 "
-       id="polygon18352" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="959.22,445.79 958.98,445.53 948.08,442.48 "
-       id="polygon18354" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="959.22,443.12 959.52,442.75 948.63,439.71 "
-       id="polygon18356" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.98,445.53 958.82,445.14 947.93,442.09 "
-       id="polygon18358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.98,443.59 959.22,443.12 948.32,440.07 "
-       id="polygon18360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.82,445.14 958.77,444.65 947.88,441.6 "
-       id="polygon18362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.82,444.12 958.98,443.59 948.08,440.54 "
-       id="polygon18364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.77,444.65 958.82,444.12 947.93,441.07 "
-       id="polygon18366" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="960.46,432.08 960.8,432.02 947.52,428.33 "
-       id="polygon18368" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="960.13,432.31 960.46,432.08 947.18,428.39 "
-       id="polygon18370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.82,432.68 960.13,432.31 946.84,428.62 "
-       id="polygon18372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.58,433.14 959.82,432.68 946.54,428.98 "
-       id="polygon18374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="974.89,443.08 975.13,442.61 962.73,439.15 "
-       id="polygon18376" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="957.32,437.94 957.09,437.68 968.04,440.73 "
-       id="polygon18378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.43,433.67 959.58,433.14 946.3,429.45 "
-       id="polygon18380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.38,434.2 959.43,433.67 946.14,429.98 "
-       id="polygon18382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.32,434.05 949.47,434.44 960.36,437.47 "
-       id="polygon18384" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="950.02,431.67 949.71,432.04 960.6,435.06 "
-       id="polygon18386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.27,433.56 949.32,434.05 960.2,437.08 "
-       id="polygon18388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.71,432.04 949.48,432.5 960.36,435.53 "
-       id="polygon18390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.32,433.03 949.27,433.56 960.15,436.59 "
-       id="polygon18392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="949.48,432.5 949.32,433.03 960.2,436.06 "
-       id="polygon18394" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="956.45,437.64 956.11,437.87 967.07,440.93 "
-       id="polygon18396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="963.03,438.79 962.73,439.15 975.13,442.61 "
-       id="polygon18398" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="955.41,440.25 955.57,440.64 966.52,443.7 "
-       id="polygon18400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="956.11,437.87 955.81,438.23 966.76,441.29 "
-       id="polygon18402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.36,439.77 955.41,440.25 966.37,443.31 "
-       id="polygon18404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.81,438.23 955.57,438.7 966.52,441.76 "
-       id="polygon18406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.41,439.23 955.36,439.77 966.31,442.82 "
-       id="polygon18408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="955.57,438.7 955.41,439.23 966.37,442.29 "
-       id="polygon18410" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="960.59,437.73 960.36,437.47 949.47,434.44 "
-       id="polygon18412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="975.13,442.61 975.43,442.24 963.03,438.79 "
-       id="polygon18414" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="962.17,438.5 962.41,438.76 975.24,442.34 "
-       id="polygon18416" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="960.6,435.06 960.9,434.7 950.02,431.67 "
-       id="polygon18418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.36,437.47 960.2,437.08 949.32,434.05 "
-       id="polygon18420" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="967.39,444 967.06,444.06 956.11,441 "
-       id="polygon18422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.36,435.53 960.6,435.06 949.71,432.04 "
-       id="polygon18424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.2,437.08 960.15,436.59 949.27,433.56 "
-       id="polygon18426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="962.02,438.11 962.17,438.5 975,442.07 "
-       id="polygon18428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.2,436.06 960.36,435.53 949.48,432.5 "
-       id="polygon18430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.15,436.59 960.2,436.06 949.32,433.03 "
-       id="polygon18432" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="960.2,442.46 959.86,442.53 970.79,445.58 "
-       id="polygon18434" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="958.98,445.53 959.22,445.79 970.15,448.85 "
-       id="polygon18436" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="967.07,440.93 967.4,440.7 956.45,437.64 "
-       id="polygon18438" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="959.86,442.53 959.52,442.75 970.46,445.81 "
-       id="polygon18440" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="966.76,443.96 966.52,443.7 955.57,440.64 "
-       id="polygon18442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.82,445.14 958.98,445.53 969.91,448.59 "
-       id="polygon18444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.76,441.29 967.07,440.93 956.11,437.87 "
-       id="polygon18446" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="959.52,442.75 959.22,443.12 970.16,446.18 "
-       id="polygon18448" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="966.52,443.7 966.37,443.31 955.41,440.25 "
-       id="polygon18450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.77,444.65 958.82,445.14 969.76,448.2 "
-       id="polygon18452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.52,441.76 966.76,441.29 955.81,438.23 "
-       id="polygon18454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.22,443.12 958.98,443.59 969.91,446.65 "
-       id="polygon18456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.37,443.31 966.31,442.82 955.36,439.77 "
-       id="polygon18458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.82,444.12 958.77,444.65 969.71,447.71 "
-       id="polygon18460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="958.98,443.59 958.82,444.12 969.76,447.18 "
-       id="polygon18462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.37,442.29 966.52,441.76 955.57,438.7 "
-       id="polygon18464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.31,442.82 966.37,442.29 955.41,439.23 "
-       id="polygon18466" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="960.46,432.08 960.13,432.31 973.46,436.02 "
-       id="polygon18468" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="975.24,442.34 975,442.07 962.17,438.5 "
-       id="polygon18470" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="970.46,445.81 970.79,445.58 959.86,442.53 "
-       id="polygon18472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.13,432.31 959.82,432.68 973.16,436.38 "
-       id="polygon18474" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="970.15,448.85 969.91,448.59 958.98,445.53 "
-       id="polygon18476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="975,442.07 974.85,441.68 962.02,438.11 "
-       id="polygon18478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.82,432.68 959.58,433.14 972.92,436.85 "
-       id="polygon18480" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="970.16,446.18 970.46,445.81 959.52,442.75 "
-       id="polygon18482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.43,433.67 959.38,434.2 972.71,437.91 "
-       id="polygon18484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="959.58,433.14 959.43,433.67 972.76,437.38 "
-       id="polygon18486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.91,448.59 969.76,448.2 958.82,445.14 "
-       id="polygon18488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.91,446.65 970.16,446.18 959.22,443.12 "
-       id="polygon18490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.76,448.2 969.71,447.71 958.77,444.65 "
-       id="polygon18492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.76,447.18 969.91,446.65 958.98,443.59 "
-       id="polygon18494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.71,447.71 969.76,447.18 958.82,444.12 "
-       id="polygon18496" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="972.15,440.81 971.81,440.88 960.9,437.84 "
-       id="polygon18498" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="960.36,437.47 960.59,437.73 971.51,440.77 "
-       id="polygon18500" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="961.23,434.47 960.9,434.7 971.82,437.73 "
-       id="polygon18502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.2,437.08 960.36,437.47 971.27,440.51 "
-       id="polygon18504" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="960.9,434.7 960.6,435.06 971.52,438.1 "
-       id="polygon18506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.15,436.59 960.2,437.08 971.12,440.12 "
-       id="polygon18508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.6,435.06 960.36,435.53 971.27,438.57 "
-       id="polygon18510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.2,436.06 960.15,436.59 971.07,439.63 "
-       id="polygon18512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="960.36,435.53 960.2,436.06 971.12,439.1 "
-       id="polygon18514" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="967.73,440.63 967.4,440.7 978.39,443.76 "
-       id="polygon18516" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="973.8,435.79 974.13,435.72 960.8,432.02 "
-       id="polygon18518" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="966.52,443.7 966.76,443.96 977.75,447.03 "
-       id="polygon18520" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="967.4,440.7 967.07,440.93 978.05,443.99 "
-       id="polygon18522" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="973.46,436.02 973.8,435.79 960.46,432.08 "
-       id="polygon18524" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="966.37,443.31 966.52,443.7 977.51,446.77 "
-       id="polygon18526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="967.07,440.93 966.76,441.29 977.75,444.36 "
-       id="polygon18528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="973.16,436.38 973.46,436.02 960.13,432.31 "
-       id="polygon18530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.31,442.82 966.37,443.31 977.35,446.38 "
-       id="polygon18532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.76,441.29 966.52,441.76 977.51,444.83 "
-       id="polygon18534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.37,442.29 966.31,442.82 977.3,445.89 "
-       id="polygon18536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="966.52,441.76 966.37,442.29 977.36,445.36 "
-       id="polygon18538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="972.92,436.85 973.16,436.38 959.82,432.68 "
-       id="polygon18540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="972.76,437.38 972.92,436.85 959.58,433.14 "
-       id="polygon18542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="972.71,437.91 972.76,437.38 959.43,433.67 "
-       id="polygon18544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="975.43,442.24 975.13,442.61 987.58,446.08 "
-       id="polygon18546" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="971.51,440.77 971.27,440.51 960.36,437.47 "
-       id="polygon18548" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="971.67,445.88 971.43,445.62 982.4,448.68 "
-       id="polygon18550" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="971.52,438.1 971.82,437.73 960.9,434.7 "
-       id="polygon18552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.27,440.51 971.12,440.12 960.2,437.08 "
-       id="polygon18554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.27,438.57 971.52,438.1 960.6,435.06 "
-       id="polygon18556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.12,440.12 971.07,439.63 960.15,436.59 "
-       id="polygon18558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.12,439.1 971.27,438.57 960.36,435.53 "
-       id="polygon18560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.07,439.63 971.12,439.1 960.2,436.06 "
-       id="polygon18562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="987.34,446.55 987.58,446.08 975.13,442.61 "
-       id="polygon18564" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="978.39,443.76 978.72,443.7 967.73,440.63 "
-       id="polygon18566" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="969.91,448.59 970.15,448.85 981.12,451.92 "
-       id="polygon18568" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="978.05,443.99 978.39,443.76 967.4,440.7 "
-       id="polygon18570" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="970.79,445.58 970.46,445.81 981.43,448.88 "
-       id="polygon18572" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="977.75,447.03 977.51,446.77 966.52,443.7 "
-       id="polygon18574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.76,448.2 969.91,448.59 980.88,451.66 "
-       id="polygon18576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="987.58,446.08 987.88,445.71 975.43,442.24 "
-       id="polygon18578" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="975,442.07 975.24,442.34 986.85,445.57 "
-       id="polygon18580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.75,444.36 978.05,443.99 967.07,440.93 "
-       id="polygon18582" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="970.46,445.81 970.16,446.18 981.13,449.24 "
-       id="polygon18584" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="977.51,446.77 977.35,446.38 966.37,443.31 "
-       id="polygon18586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.71,447.71 969.76,448.2 980.73,451.27 "
-       id="polygon18588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="970.16,446.18 969.91,446.65 980.88,449.71 "
-       id="polygon18590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="974.85,441.68 975,442.07 986.61,445.31 "
-       id="polygon18592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.51,444.83 977.75,444.36 966.76,441.29 "
-       id="polygon18594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.35,446.38 977.3,445.89 966.31,442.82 "
-       id="polygon18596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.76,447.18 969.71,447.71 980.68,450.78 "
-       id="polygon18598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="969.91,446.65 969.76,447.18 980.73,450.24 "
-       id="polygon18600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.36,445.36 977.51,444.83 966.52,441.76 "
-       id="polygon18602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.3,445.89 977.36,445.36 966.37,442.29 "
-       id="polygon18604" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="981.76,448.65 982.09,448.58 971.13,445.52 "
-       id="polygon18606" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="981.43,448.88 981.76,448.65 970.79,445.58 "
-       id="polygon18608" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="981.12,451.92 980.88,451.66 969.91,448.59 "
-       id="polygon18610" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="981.13,449.24 981.43,448.88 970.46,445.81 "
-       id="polygon18612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.88,451.66 980.73,451.27 969.76,448.2 "
-       id="polygon18614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.88,449.71 981.13,449.24 970.16,446.18 "
-       id="polygon18616" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="986.85,445.57 986.61,445.31 975,442.07 "
-       id="polygon18618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.73,451.27 980.68,450.78 969.71,447.71 "
-       id="polygon18620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.73,450.24 980.88,449.71 969.91,446.65 "
-       id="polygon18622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.68,450.78 980.73,450.24 969.76,447.18 "
-       id="polygon18624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="986.61,445.31 986.46,444.92 974.85,441.68 "
-       id="polygon18626" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="974.13,435.72 973.8,435.79 986.28,439.26 "
-       id="polygon18628" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="973.8,435.79 973.46,436.02 985.95,439.48 "
-       id="polygon18630" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="971.27,440.51 971.51,440.77 982.46,443.82 "
-       id="polygon18632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="973.46,436.02 973.16,436.38 985.64,439.85 "
-       id="polygon18634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="998.49,449.66 998.73,449.19 987.58,446.08 "
-       id="polygon18636" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="979.26,444.06 979.02,443.8 990.05,446.87 "
-       id="polygon18638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="973.16,436.38 972.92,436.85 985.41,440.32 "
-       id="polygon18640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.12,440.12 971.27,440.51 982.22,443.56 "
-       id="polygon18642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="972.76,437.38 972.71,437.91 985.2,441.39 "
-       id="polygon18644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="972.92,436.85 972.76,437.38 985.25,440.85 "
-       id="polygon18646" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="971.82,437.73 971.52,438.1 982.46,441.15 "
-       id="polygon18648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.07,439.63 971.12,440.12 982.07,443.17 "
-       id="polygon18650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.52,438.1 971.27,438.57 982.23,441.62 "
-       id="polygon18652" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.12,439.1 971.07,439.63 982.02,442.68 "
-       id="polygon18654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="971.27,438.57 971.12,439.1 982.07,442.15 "
-       id="polygon18656" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="977.51,446.77 977.75,447.03 988.77,450.11 "
-       id="polygon18658" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="978.39,443.76 978.05,443.99 989.08,447.06 "
-       id="polygon18660" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="977.35,446.38 977.51,446.77 988.53,449.85 "
-       id="polygon18662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="978.05,443.99 977.75,444.36 988.77,447.43 "
-       id="polygon18664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.3,445.89 977.35,446.38 988.38,449.45 "
-       id="polygon18666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.75,444.36 977.51,444.83 988.54,447.9 "
-       id="polygon18668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.36,445.36 977.3,445.89 988.32,448.96 "
-       id="polygon18670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="977.51,444.83 977.36,445.36 988.38,448.43 "
-       id="polygon18672" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="986.28,439.26 986.62,439.19 974.13,435.72 "
-       id="polygon18674" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="985.95,439.48 986.28,439.26 973.8,435.79 "
-       id="polygon18676" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="982.46,443.82 982.22,443.56 971.27,440.51 "
-       id="polygon18678" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="982.46,441.15 982.77,440.78 971.82,437.73 "
-       id="polygon18680" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.64,439.85 985.95,439.48 973.46,436.02 "
-       id="polygon18682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.22,443.56 982.07,443.17 971.12,440.12 "
-       id="polygon18684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.23,441.62 982.46,441.15 971.52,438.1 "
-       id="polygon18686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.41,440.32 985.64,439.85 973.16,436.38 "
-       id="polygon18688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="987.88,445.71 987.58,446.08 998.73,449.19 "
-       id="polygon18690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.07,443.17 982.02,442.68 971.07,439.63 "
-       id="polygon18692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.07,442.15 982.23,441.62 971.27,438.57 "
-       id="polygon18694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.25,440.85 985.41,440.32 972.92,436.85 "
-       id="polygon18696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.02,442.68 982.07,442.15 971.12,439.1 "
-       id="polygon18698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.2,441.39 985.25,440.85 972.76,437.38 "
-       id="polygon18700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="987.33,445.16 987.48,445.55 990.72,446.46 "
-       id="polygon18702" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="989.41,446.84 989.75,446.77 978.72,443.7 "
-       id="polygon18704" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="982.09,448.58 981.76,448.65 992.77,451.72 "
-       id="polygon18706" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="980.88,451.66 981.12,451.92 992.12,455 "
-       id="polygon18708" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="989.08,447.06 989.41,446.84 978.39,443.76 "
-       id="polygon18710" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="981.76,448.65 981.43,448.88 992.43,451.95 "
-       id="polygon18712" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="988.77,450.11 988.53,449.85 977.51,446.77 "
-       id="polygon18714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.73,451.27 980.88,451.66 991.88,454.74 "
-       id="polygon18716" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="981.43,448.88 981.13,449.24 992.13,452.32 "
-       id="polygon18718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.77,447.43 989.08,447.06 978.05,443.99 "
-       id="polygon18720" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="988.53,449.85 988.38,449.45 977.35,446.38 "
-       id="polygon18722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.68,450.78 980.73,451.27 991.73,454.34 "
-       id="polygon18724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="981.13,449.24 980.88,449.71 991.89,452.79 "
-       id="polygon18726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.54,447.9 988.77,447.43 977.75,444.36 "
-       id="polygon18728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.73,450.24 980.68,450.78 991.68,453.86 "
-       id="polygon18730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.38,449.45 988.32,448.96 977.3,445.89 "
-       id="polygon18732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="980.88,449.71 980.73,450.24 991.73,453.32 "
-       id="polygon18734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.38,448.43 988.54,447.9 977.51,444.83 "
-       id="polygon18736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.32,448.96 988.38,448.43 977.36,445.36 "
-       id="polygon18738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="998.73,449.19 999.03,448.82 987.88,445.71 "
-       id="polygon18740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="990.57,446.07 990.72,446.46 1003.33,449.97 "
-       id="polygon18742" />
-    <line
-       x1="990.79999"
-       y1="446.34"
-       x2="990.79999"
-       y2="446.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18744" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="992.77,451.72 993.1,451.66 982.09,448.58 "
-       id="polygon18746" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="992.43,451.95 992.77,451.72 981.76,448.65 "
-       id="polygon18748" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="992.12,455 991.88,454.74 980.88,451.66 "
-       id="polygon18750" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="992.13,452.32 992.43,451.95 981.43,448.88 "
-       id="polygon18752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.88,454.74 991.73,454.34 980.73,451.27 "
-       id="polygon18754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.89,452.79 992.13,452.32 981.13,449.24 "
-       id="polygon18756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.73,454.34 991.68,453.86 980.68,450.78 "
-       id="polygon18758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.73,453.32 991.89,452.79 980.88,449.71 "
-       id="polygon18760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.68,453.86 991.73,453.32 980.73,450.24 "
-       id="polygon18762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="999.03,448.82 998.73,449.19 1009.91,452.31 "
-       id="polygon18764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1009.91,452.31 1010.21,451.94 999.03,448.82 "
-       id="polygon18766" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="990.72,446.46 990.96,446.72 1003.57,450.23 "
-       id="polygon18768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1003.33,449.97 1003.18,449.58 990.57,446.07 "
-       id="polygon18770" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="982.22,443.56 982.46,443.82 993.45,446.89 "
-       id="polygon18772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.25,440.85 985.2,441.39 996.69,444.58 "
-       id="polygon18774" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="983.11,440.55 982.77,440.78 993.76,443.84 "
-       id="polygon18776" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="986.62,439.19 986.28,439.26 997.77,442.45 "
-       id="polygon18778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.07,443.17 982.22,443.56 993.21,446.63 "
-       id="polygon18780" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="982.77,440.78 982.46,441.15 993.45,444.2 "
-       id="polygon18782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.02,442.68 982.07,443.17 993.05,446.23 "
-       id="polygon18784" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="986.28,439.26 985.95,439.48 997.44,442.68 "
-       id="polygon18786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.46,441.15 982.23,441.62 993.21,444.68 "
-       id="polygon18788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.07,442.15 982.02,442.68 993,445.74 "
-       id="polygon18790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="982.23,441.62 982.07,442.15 993.06,445.21 "
-       id="polygon18792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.95,439.48 985.64,439.85 997.14,443.05 "
-       id="polygon18794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.64,439.85 985.41,440.32 996.89,443.52 "
-       id="polygon18796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="985.41,440.32 985.25,440.85 996.74,444.05 "
-       id="polygon18798" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="989.75,446.77 989.41,446.84 1002.02,450.35 "
-       id="polygon18800" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="988.53,449.85 988.77,450.11 1001.37,453.63 "
-       id="polygon18802" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="989.41,446.84 989.08,447.06 1001.68,450.58 "
-       id="polygon18804" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="988.38,449.45 988.53,449.85 1001.13,453.37 "
-       id="polygon18806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="989.08,447.06 988.77,447.43 1001.38,450.95 "
-       id="polygon18808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.32,448.96 988.38,449.45 1000.98,452.98 "
-       id="polygon18810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.77,447.43 988.54,447.9 1001.14,451.42 "
-       id="polygon18812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.38,448.43 988.32,448.96 1000.93,452.48 "
-       id="polygon18814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="988.54,447.9 988.38,448.43 1000.98,451.95 "
-       id="polygon18816" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="993.45,446.89 993.21,446.63 982.22,443.56 "
-       id="polygon18818" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1003.57,450.23 1003.33,449.97 990.72,446.46 "
-       id="polygon18820" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="993.45,444.2 993.76,443.84 982.77,440.78 "
-       id="polygon18822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.21,446.63 993.05,446.23 982.07,443.17 "
-       id="polygon18824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.21,444.68 993.45,444.2 982.46,441.15 "
-       id="polygon18826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.05,446.23 993,445.74 982.02,442.68 "
-       id="polygon18828" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="997.44,442.68 997.77,442.45 986.28,439.26 "
-       id="polygon18830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.06,445.21 993.21,444.68 982.23,441.62 "
-       id="polygon18832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993,445.74 993.06,445.21 982.07,442.15 "
-       id="polygon18834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="997.14,443.05 997.44,442.68 985.95,439.48 "
-       id="polygon18836" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="991.88,454.74 992.12,455 1003.16,458.09 "
-       id="polygon18838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="996.89,443.52 997.14,443.05 985.64,439.85 "
-       id="polygon18840" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="992.77,451.72 992.43,451.95 1003.47,455.04 "
-       id="polygon18842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="996.74,444.05 996.89,443.52 985.41,440.32 "
-       id="polygon18844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="996.69,444.58 996.74,444.05 985.25,440.85 "
-       id="polygon18846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.73,454.34 991.88,454.74 1002.92,457.83 "
-       id="polygon18848" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="992.43,451.95 992.13,452.32 1003.17,455.41 "
-       id="polygon18850" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1002.02,450.35 1002.35,450.28 989.75,446.77 "
-       id="polygon18852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.68,453.86 991.73,454.34 1002.77,457.43 "
-       id="polygon18854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="992.13,452.32 991.89,452.79 1002.93,455.88 "
-       id="polygon18856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.73,453.32 991.68,453.86 1002.72,456.95 "
-       id="polygon18858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="991.89,452.79 991.73,453.32 1002.77,456.41 "
-       id="polygon18860" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1001.68,450.58 1002.02,450.35 989.41,446.84 "
-       id="polygon18862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1001.38,450.95 1001.68,450.58 989.08,447.06 "
-       id="polygon18864" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1001.13,453.37 1000.98,452.98 988.38,449.45 "
-       id="polygon18866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1001.14,451.42 1001.38,450.95 988.77,447.43 "
-       id="polygon18868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1000.98,452.98 1000.93,452.48 988.32,448.96 "
-       id="polygon18870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1000.98,451.95 1001.14,451.42 988.54,447.9 "
-       id="polygon18872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1000.93,452.48 1000.98,451.95 988.38,448.43 "
-       id="polygon18874" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1003.8,454.8 1004.14,454.74 993.1,451.66 "
-       id="polygon18876" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1003.47,455.04 1003.8,454.8 992.77,451.72 "
-       id="polygon18878" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1003.16,458.09 1002.92,457.83 991.88,454.74 "
-       id="polygon18880" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1003.17,455.41 1003.47,455.04 992.43,451.95 "
-       id="polygon18882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.92,457.83 1002.77,457.43 991.73,454.34 "
-       id="polygon18884" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.93,455.88 1003.17,455.41 992.13,452.32 "
-       id="polygon18886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.77,457.43 1002.72,456.95 991.68,453.86 "
-       id="polygon18888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.77,456.41 1002.93,455.88 991.89,452.79 "
-       id="polygon18890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.72,456.95 1002.77,456.41 991.73,453.32 "
-       id="polygon18892" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1001.74,453.39 1001.5,453.3 1001.37,453.63 "
-       id="polygon18894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1003.18,449.58 1003.33,449.97 1015.98,453.5 "
-       id="polygon18896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.98,453.5 1015.83,453.1 1003.18,449.58 "
-       id="polygon18898" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="993.21,446.63 993.45,446.89 1004.47,449.96 "
-       id="polygon18900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.05,446.23 993.21,446.63 1004.23,449.7 "
-       id="polygon18902" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="993.76,443.84 993.45,444.2 1004.48,447.27 "
-       id="polygon18904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993,445.74 993.05,446.23 1004.08,449.3 "
-       id="polygon18906" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="998.11,442.38 997.77,442.45 1009.3,445.65 "
-       id="polygon18908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.45,444.2 993.21,444.68 1004.24,447.75 "
-       id="polygon18910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.06,445.21 993,445.74 1004.03,448.81 "
-       id="polygon18912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="993.21,444.68 993.06,445.21 1004.08,448.28 "
-       id="polygon18914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1010.21,451.94 1009.91,452.31 1021.14,455.43 "
-       id="polygon18916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1021.14,455.43 1021.44,455.07 1010.21,451.94 "
-       id="polygon18918" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1003.33,449.97 1003.57,450.23 1016.22,453.76 "
-       id="polygon18920" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="997.77,442.45 997.44,442.68 1008.97,445.88 "
-       id="polygon18922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="997.44,442.68 997.14,443.05 1008.66,446.25 "
-       id="polygon18924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="997.14,443.05 996.89,443.52 1008.43,446.72 "
-       id="polygon18926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="996.74,444.05 996.69,444.58 1008.21,447.79 "
-       id="polygon18928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="996.89,443.52 996.74,444.05 1008.27,447.25 "
-       id="polygon18930" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1002.35,450.28 1002.02,450.35 1014.67,453.88 "
-       id="polygon18932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.21,447.79 1008.27,447.25 996.74,444.05 "
-       id="polygon18934" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1004.78,446.9 1005.11,446.67 994.09,443.61 "
-       id="polygon18936" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1004.47,449.96 1004.23,449.7 993.21,446.63 "
-       id="polygon18938" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1001.13,453.37 1001.37,453.63 1014.02,457.16 "
-       id="polygon18940" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1002.02,450.35 1001.68,450.58 1014.34,454.11 "
-       id="polygon18942" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1004.48,447.27 1004.78,446.9 993.76,443.84 "
-       id="polygon18944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.23,449.7 1004.08,449.3 993.05,446.23 "
-       id="polygon18946" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1000.98,452.98 1001.13,453.37 1013.79,456.9 "
-       id="polygon18948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1001.68,450.58 1001.38,450.95 1014.04,454.48 "
-       id="polygon18950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.24,447.75 1004.48,447.27 993.45,444.2 "
-       id="polygon18952" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1009.3,445.65 1009.64,445.59 998.11,442.38 "
-       id="polygon18954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.08,449.3 1004.03,448.81 993,445.74 "
-       id="polygon18956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1000.93,452.48 1000.98,452.98 1013.64,456.51 "
-       id="polygon18958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.08,448.28 1004.24,447.75 993.21,444.68 "
-       id="polygon18960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.03,448.81 1004.08,448.28 993.06,445.21 "
-       id="polygon18962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1001.38,450.95 1001.14,451.42 1013.79,454.95 "
-       id="polygon18964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1000.98,451.95 1000.93,452.48 1013.59,456.02 "
-       id="polygon18966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1001.14,451.42 1000.98,451.95 1013.64,455.48 "
-       id="polygon18968" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1004.14,454.74 1003.8,454.8 1014.88,457.9 "
-       id="polygon18970" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1008.97,445.88 1009.3,445.65 997.77,442.45 "
-       id="polygon18972" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1002.92,457.83 1003.16,458.09 1014.23,461.19 "
-       id="polygon18974" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1003.8,454.8 1003.47,455.04 1014.55,458.13 "
-       id="polygon18976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.66,446.25 1008.97,445.88 997.44,442.68 "
-       id="polygon18978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.77,457.43 1002.92,457.83 1014,460.93 "
-       id="polygon18980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.43,446.72 1008.66,446.25 997.14,443.05 "
-       id="polygon18982" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1003.47,455.04 1003.17,455.41 1014.25,458.5 "
-       id="polygon18984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.27,447.25 1008.43,446.72 996.89,443.52 "
-       id="polygon18986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.72,456.95 1002.77,457.43 1013.85,460.53 "
-       id="polygon18988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1003.17,455.41 1002.93,455.88 1014,458.98 "
-       id="polygon18990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.77,456.41 1002.72,456.95 1013.79,460.04 "
-       id="polygon18992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1002.93,455.88 1002.77,456.41 1013.85,459.51 "
-       id="polygon18994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.5,487.49 1430.76,487.86 1431.07,487.71 "
-       id="polygon18996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1020.9,455.91 1021.14,455.43 1009.91,452.31 "
-       id="polygon18998" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1014.67,453.88 1015,453.81 1002.35,450.28 "
-       id="polygon19000" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1014.34,454.11 1014.67,453.88 1002.02,450.35 "
-       id="polygon19002" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1014.02,457.16 1013.79,456.9 1001.13,453.37 "
-       id="polygon19004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014.04,454.48 1014.34,454.11 1001.68,450.58 "
-       id="polygon19006" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1013.79,456.9 1013.64,456.51 1000.98,452.98 "
-       id="polygon19008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.79,454.95 1014.04,454.48 1001.38,450.95 "
-       id="polygon19010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.64,456.51 1013.59,456.02 1000.93,452.48 "
-       id="polygon19012" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1014.55,458.13 1014.88,457.9 1003.8,454.8 "
-       id="polygon19014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.64,455.48 1013.79,454.95 1001.14,451.42 "
-       id="polygon19016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.59,456.02 1013.64,455.48 1000.98,451.95 "
-       id="polygon19018" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1014.25,458.5 1014.55,458.13 1003.47,455.04 "
-       id="polygon19020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014,460.93 1013.85,460.53 1002.77,457.43 "
-       id="polygon19022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014,458.98 1014.25,458.5 1003.17,455.41 "
-       id="polygon19024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.85,460.53 1013.79,460.04 1002.72,456.95 "
-       id="polygon19026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.85,459.51 1014,458.98 1002.93,455.88 "
-       id="polygon19028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.79,460.04 1013.85,459.51 1002.77,456.41 "
-       id="polygon19030" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1004.23,449.7 1004.47,449.96 1015.53,453.04 "
-       id="polygon19032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.08,449.3 1004.23,449.7 1015.29,452.78 "
-       id="polygon19034" />
-    <line
-       x1="1015.97"
-       y1="453.51999"
-       x2="1015.97"
-       y2="453.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1004.78,446.9 1004.48,447.27 1015.54,450.35 "
-       id="polygon19038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.03,448.81 1004.08,449.3 1015.14,452.38 "
-       id="polygon19040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.48,447.27 1004.24,447.75 1015.3,450.82 "
-       id="polygon19042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.08,448.28 1004.03,448.81 1015.09,451.89 "
-       id="polygon19044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1004.24,447.75 1004.08,448.28 1015.14,451.36 "
-       id="polygon19046" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1428.9399"
-       y2="487.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19048" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1429.23,486.71 1428.71,486.85 1426.39,489.84 "
-       id="polygon19050" />
-    <line
-       x1="1422.99"
-       y1="472.14999"
-       x2="1428.9399"
-       y2="487.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19052" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1009.64,445.59 1009.3,445.65 1020.87,448.87 "
-       id="polygon19054" />
-    <line
-       x1="1400.02"
-       y1="428.66"
-       x2="1401.22"
-       y2="427.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19056" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1009.3,445.65 1008.97,445.88 1020.54,449.1 "
-       id="polygon19058" />
-    <line
-       x1="1398.88"
-       y1="429.79001"
-       x2="1400.02"
-       y2="428.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19060" />
-    <line
-       x1="1402.46"
-       y1="426.53"
-       x2="1403.73"
-       y2="425.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19062" />
-    <line
-       x1="1397.79"
-       y1="430.95999"
-       x2="1398.88"
-       y2="429.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19064" />
-    <line
-       x1="1403.73"
-       y1="425.54001"
-       x2="1405.03"
-       y2="424.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.97,445.88 1008.66,446.25 1020.23,449.46 "
-       id="polygon19068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.66,446.25 1008.43,446.72 1019.99,449.94 "
-       id="polygon19070" />
-    <line
-       x1="1396.77"
-       y1="432.16"
-       x2="1397.79"
-       y2="430.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.27,447.25 1008.21,447.79 1019.79,451.01 "
-       id="polygon19074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1008.43,446.72 1008.27,447.25 1019.84,450.47 "
-       id="polygon19076" />
-    <line
-       x1="1405.03"
-       y1="424.59"
-       x2="1406.34"
-       y2="423.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19078" />
-    <line
-       x1="1395.8199"
-       y1="433.38"
-       x2="1396.77"
-       y2="432.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19080" />
-    <line
-       x1="1406.34"
-       y1="423.70001"
-       x2="1407.66"
-       y2="422.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1032.16,459.05 1032.4,458.57 1021.14,455.43 "
-       id="polygon19084" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1015.54,454.17 1015.3,453.91 1027.04,457.18 "
-       id="polygon19086" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1015.53,453.04 1015.29,452.78 1004.23,449.7 "
-       id="polygon19088" />
-    <line
-       x1="1394.95"
-       y1="434.62"
-       x2="1395.8199"
-       y2="433.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1021.44,455.07 1021.14,455.43 1032.4,458.57 "
-       id="polygon19092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1032.4,458.57 1032.7,458.2 1021.44,455.07 "
-       id="polygon19094" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1015.98,453.5 1016.22,453.76 1031.67,458.07 "
-       id="polygon19096" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1015.75,458.2 1015.52,457.94 1026.63,461.04 "
-       id="polygon19098" />
-    <line
-       x1="1407.66"
-       y1="422.87"
-       x2="1408.97"
-       y2="422.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19100" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1015.54,450.35 1015.84,449.98 1004.78,446.9 "
-       id="polygon19102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.29,452.78 1015.14,452.38 1004.08,449.3 "
-       id="polygon19104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.83,453.1 1015.98,453.5 1031.44,457.8 "
-       id="polygon19106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.3,450.82 1015.54,450.35 1004.48,447.27 "
-       id="polygon19108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.14,452.38 1015.09,451.89 1004.03,448.81 "
-       id="polygon19110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.14,451.36 1015.3,450.82 1004.24,447.75 "
-       id="polygon19112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.09,451.89 1015.14,451.36 1004.08,448.28 "
-       id="polygon19114" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1015,453.81 1014.67,453.88 1026.41,457.15 "
-       id="polygon19116" />
-    <line
-       x1="1408.97"
-       y1="422.10001"
-       x2="1410.28"
-       y2="421.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19118" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1020.87,448.87 1021.2,448.8 1009.64,445.59 "
-       id="polygon19120" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1013.79,456.9 1014.02,457.16 1025.76,460.44 "
-       id="polygon19122" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1014,460.93 1014.23,461.19 1025.35,464.3 "
-       id="polygon19124" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1014.67,453.88 1014.34,454.11 1026.07,457.38 "
-       id="polygon19126" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1014.88,457.9 1014.55,458.13 1025.66,461.24 "
-       id="polygon19128" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1020.54,449.1 1020.87,448.87 1009.3,445.65 "
-       id="polygon19130" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1013.64,456.51 1013.79,456.9 1025.52,460.18 "
-       id="polygon19132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014.34,454.11 1014.04,454.48 1025.77,457.75 "
-       id="polygon19134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.85,460.53 1014,460.93 1025.11,464.04 "
-       id="polygon19136" />
-    <line
-       x1="1410.28"
-       y1="421.39001"
-       x2="1411.5601"
-       y2="420.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19138" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1014.55,458.13 1014.25,458.5 1025.36,461.61 "
-       id="polygon19140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.59,456.02 1013.64,456.51 1025.38,459.79 "
-       id="polygon19142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1020.23,449.46 1020.54,449.1 1008.97,445.88 "
-       id="polygon19144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014.04,454.48 1013.79,454.95 1025.53,458.23 "
-       id="polygon19146" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.79,460.04 1013.85,460.53 1024.96,463.64 "
-       id="polygon19148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.64,455.48 1013.59,456.02 1025.32,459.3 "
-       id="polygon19150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.79,454.95 1013.64,455.48 1025.38,458.76 "
-       id="polygon19152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014.25,458.5 1014,458.98 1025.12,462.08 "
-       id="polygon19154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1013.85,459.51 1013.79,460.04 1024.91,463.15 "
-       id="polygon19156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1019.99,449.94 1020.23,449.46 1008.66,446.25 "
-       id="polygon19158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1014,458.98 1013.85,459.51 1024.96,462.61 "
-       id="polygon19160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1019.84,450.47 1019.99,449.94 1008.43,446.72 "
-       id="polygon19162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1019.79,451.01 1019.84,450.47 1008.27,447.25 "
-       id="polygon19164" />
-    <line
-       x1="1411.5601"
-       y1="420.75"
-       x2="1412.8199"
-       y2="420.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19166" />
-    <line
-       x1="1412.8199"
-       y1="420.17999"
-       x2="1414.04"
-       y2="419.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19168" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1025.99,461.01 1026.33,460.94 1015.21,457.83 "
-       id="polygon19170" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1025.66,461.24 1025.99,461.01 1014.88,457.9 "
-       id="polygon19172" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1026.07,457.38 1026.41,457.15 1014.67,453.88 "
-       id="polygon19174" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1031.67,458.07 1031.44,457.8 1015.98,453.5 "
-       id="polygon19176" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1025.35,464.3 1025.11,464.04 1014,460.93 "
-       id="polygon19178" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1025.76,460.44 1025.52,460.18 1013.79,456.9 "
-       id="polygon19180" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1025.36,461.61 1025.66,461.24 1014.55,458.13 "
-       id="polygon19182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.77,457.75 1026.07,457.38 1014.34,454.11 "
-       id="polygon19184" />
-    <line
-       x1="1414.04"
-       y1="419.67001"
-       x2="1415.21"
-       y2="419.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.44,457.8 1031.29,457.41 1015.83,453.1 "
-       id="polygon19188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.11,464.04 1024.96,463.64 1013.85,460.53 "
-       id="polygon19190" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1025.52,460.18 1025.38,459.79 1013.64,456.51 "
-       id="polygon19192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.12,462.08 1025.36,461.61 1014.25,458.5 "
-       id="polygon19194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.53,458.23 1025.77,457.75 1014.04,454.48 "
-       id="polygon19196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.96,463.64 1024.91,463.15 1013.79,460.04 "
-       id="polygon19198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.38,459.79 1025.32,459.3 1013.59,456.02 "
-       id="polygon19200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.96,462.61 1025.12,462.08 1014,458.98 "
-       id="polygon19202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.91,463.15 1024.96,462.61 1013.85,459.51 "
-       id="polygon19204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.38,458.76 1025.53,458.23 1013.79,454.95 "
-       id="polygon19206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.32,459.3 1025.38,458.76 1013.64,455.48 "
-       id="polygon19208" />
-    <line
-       x1="1415.21"
-       y1="419.23001"
-       x2="1416.3199"
-       y2="418.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19210" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1015.29,452.78 1015.53,453.04 1026.62,456.13 "
-       id="polygon19212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1019.84,450.47 1019.79,451.01 1031.39,454.24 "
-       id="polygon19214" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1016.17,449.75 1015.84,449.98 1026.93,453.07 "
-       id="polygon19216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.14,452.38 1015.29,452.78 1026.38,455.87 "
-       id="polygon19218" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1015.84,449.98 1015.54,450.35 1026.63,453.44 "
-       id="polygon19220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.09,451.89 1015.14,452.38 1026.23,455.47 "
-       id="polygon19222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.54,450.35 1015.3,450.82 1026.39,453.91 "
-       id="polygon19224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.14,451.36 1015.09,451.89 1026.18,454.98 "
-       id="polygon19226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1015.3,450.82 1015.14,451.36 1026.24,454.45 "
-       id="polygon19228" />
-    <line
-       x1="1416.3199"
-       y1="418.85999"
-       x2="1417.38"
-       y2="418.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19230" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1021.2,448.8 1020.87,448.87 1032.48,452.09 "
-       id="polygon19232" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1020.87,448.87 1020.54,449.1 1032.14,452.32 "
-       id="polygon19234" />
-    <line
-       x1="1032.71"
-       y1="458.20001"
-       x2="1032.71"
-       y2="458.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1020.54,449.1 1020.23,449.46 1031.84,452.69 "
-       id="polygon19238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1020.23,449.46 1019.99,449.94 1031.6,453.17 "
-       id="polygon19240" />
-    <line
-       x1="1417.38"
-       y1="418.56"
-       x2="1418.36"
-       y2="418.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1019.99,449.94 1019.84,450.47 1031.45,453.7 "
-       id="polygon19244" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1026.62,456.13 1026.38,455.87 1015.29,452.78 "
-       id="polygon19246" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1026.63,453.44 1026.93,453.07 1015.84,449.98 "
-       id="polygon19248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.38,455.87 1026.23,455.47 1015.14,452.38 "
-       id="polygon19250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.39,453.91 1026.63,453.44 1015.54,450.35 "
-       id="polygon19252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.23,455.47 1026.18,454.98 1015.09,451.89 "
-       id="polygon19254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.24,454.45 1026.39,453.91 1015.3,450.82 "
-       id="polygon19256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.18,454.98 1026.24,454.45 1015.14,451.36 "
-       id="polygon19258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1032.7,458.2 1032.4,458.57 1042.36,461.35 "
-       id="polygon19260" />
-    <line
-       x1="1418.36"
-       y1="418.32999"
-       x2="1419.27"
-       y2="418.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19262" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1026.33,460.94 1025.99,461.01 1037.14,464.12 "
-       id="polygon19264" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1025.11,464.04 1025.35,464.3 1036.5,467.42 "
-       id="polygon19266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1042.12,461.83 1042.36,461.35 1032.4,458.57 "
-       id="polygon19268" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1026.74,457.08 1026.41,457.15 1038.19,460.43 "
-       id="polygon19270" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1032.48,452.09 1032.81,452.02 1021.2,448.8 "
-       id="polygon19272" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1025.99,461.01 1025.66,461.24 1036.81,464.35 "
-       id="polygon19274" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1038.17,463.77 1037.84,463.84 1026.06,460.54 "
-       id="polygon19276" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1025.52,460.18 1025.76,460.44 1037.54,463.73 "
-       id="polygon19278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.96,463.64 1025.11,464.04 1036.26,467.16 "
-       id="polygon19280" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1025.66,461.24 1025.36,461.61 1036.51,464.72 "
-       id="polygon19282" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1026.41,457.15 1026.07,457.38 1037.86,460.66 "
-       id="polygon19284" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1032.14,452.32 1032.48,452.09 1020.87,448.87 "
-       id="polygon19286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.91,463.15 1024.96,463.64 1036.11,466.76 "
-       id="polygon19288" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1031.44,457.8 1031.67,458.07 1041.2,460.72 "
-       id="polygon19290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.36,461.61 1025.12,462.08 1036.27,465.2 "
-       id="polygon19292" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1025.38,459.79 1025.52,460.18 1037.3,463.47 "
-       id="polygon19294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1024.96,462.61 1024.91,463.15 1036.05,466.27 "
-       id="polygon19296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.12,462.08 1024.96,462.61 1036.11,465.73 "
-       id="polygon19298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.07,457.38 1025.77,457.75 1037.55,461.04 "
-       id="polygon19300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.84,452.69 1032.14,452.32 1020.54,449.1 "
-       id="polygon19302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.32,459.3 1025.38,459.79 1037.15,463.07 "
-       id="polygon19304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.77,457.75 1025.53,458.23 1037.31,461.51 "
-       id="polygon19306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.29,457.41 1031.44,457.8 1040.96,460.46 "
-       id="polygon19308" />
-    <line
-       x1="1419.27"
-       y1="418.17001"
-       x2="1420.1"
-       y2="418.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.38,458.76 1025.32,459.3 1037.1,462.59 "
-       id="polygon19312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1025.53,458.23 1025.38,458.76 1037.16,462.05 "
-       id="polygon19314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.6,453.17 1031.84,452.69 1020.23,449.46 "
-       id="polygon19316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.45,453.7 1031.6,453.17 1019.99,449.94 "
-       id="polygon19318" />
-    <line
-       x1="1387.5"
-       y1="397.45999"
-       x2="1388.7"
-       y2="396.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19320" />
-    <line
-       x1="1388.7"
-       y1="396.35999"
-       x2="1389.9399"
-       y2="395.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.39,454.24 1031.45,453.7 1019.84,450.47 "
-       id="polygon19324" />
-    <line
-       x1="1386.35"
-       y1="398.59"
-       x2="1387.5"
-       y2="397.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19326" />
-    <line
-       x1="1389.9399"
-       y1="395.32001"
-       x2="1391.22"
-       y2="394.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19328" />
-    <line
-       x1="1385.26"
-       y1="399.75"
-       x2="1386.35"
-       y2="398.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19330" />
-    <line
-       x1="1391.22"
-       y1="394.32001"
-       x2="1392.52"
-       y2="393.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19332" />
-    <line
-       x1="1384.23"
-       y1="400.95001"
-       x2="1385.26"
-       y2="399.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19334" />
-    <line
-       x1="1392.52"
-       y1="393.37"
-       x2="1393.83"
-       y2="392.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19336" />
-    <line
-       x1="1383.28"
-       y1="402.17001"
-       x2="1384.23"
-       y2="400.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19338" />
-    <line
-       x1="1393.83"
-       y1="392.47"
-       x2="1395.15"
-       y2="391.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19340" />
-    <line
-       x1="1420.1"
-       y1="418.07001"
-       x2="1420.83"
-       y2="418.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19342" />
-    <line
-       x1="1382.41"
-       y1="403.41"
-       x2="1383.28"
-       y2="402.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19344" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1036.81,464.35 1037.14,464.12 1025.99,461.01 "
-       id="polygon19346" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1036.5,467.42 1036.26,467.16 1025.11,464.04 "
-       id="polygon19348" />
-    <line
-       x1="1395.15"
-       y1="391.64001"
-       x2="1396.47"
-       y2="390.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19350" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1036.51,464.72 1036.81,464.35 1025.66,461.24 "
-       id="polygon19352" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1041.2,460.72 1040.96,460.46 1031.44,457.8 "
-       id="polygon19354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.26,467.16 1036.11,466.76 1024.96,463.64 "
-       id="polygon19356" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1037.86,460.66 1038.19,460.43 1026.41,457.15 "
-       id="polygon19358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.27,465.2 1036.51,464.72 1025.36,461.61 "
-       id="polygon19360" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1037.54,463.73 1037.3,463.47 1025.52,460.18 "
-       id="polygon19362" />
-    <line
-       x1="1381.62"
-       y1="404.67001"
-       x2="1382.41"
-       y2="403.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.11,466.76 1036.05,466.27 1024.91,463.15 "
-       id="polygon19366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1040.96,460.46 1040.82,460.07 1031.29,457.41 "
-       id="polygon19368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.11,465.73 1036.27,465.2 1025.12,462.08 "
-       id="polygon19370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.05,466.27 1036.11,465.73 1024.96,462.61 "
-       id="polygon19372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.55,461.04 1037.86,460.66 1026.07,457.38 "
-       id="polygon19374" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1037.3,463.47 1037.15,463.07 1025.38,459.79 "
-       id="polygon19376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.31,461.51 1037.55,461.04 1025.77,457.75 "
-       id="polygon19378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.15,463.07 1037.1,462.59 1025.32,459.3 "
-       id="polygon19380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.16,462.05 1037.31,461.51 1025.53,458.23 "
-       id="polygon19382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.1,462.59 1037.16,462.05 1025.38,458.76 "
-       id="polygon19384" />
-    <line
-       x1="1380.92"
-       y1="405.94"
-       x2="1381.62"
-       y2="404.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19386" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1038.39,459.27 1038.05,459.34 1026.92,456.23 "
-       id="polygon19388" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1026.38,455.87 1026.62,456.13 1037.75,459.23 "
-       id="polygon19390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.45,453.7 1031.39,454.24 1043.04,457.48 "
-       id="polygon19392" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1027.27,452.84 1026.93,453.07 1038.07,456.16 "
-       id="polygon19394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.23,455.47 1026.38,455.87 1037.52,458.97 "
-       id="polygon19396" />
-    <line
-       x1="1393.58"
-       y1="451.26001"
-       x2="1392.95"
-       y2="450.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19398" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1026.93,453.07 1026.63,453.44 1037.77,456.54 "
-       id="polygon19400" />
-    <line
-       x1="1380.3199"
-       y1="407.20999"
-       x2="1380.92"
-       y2="405.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19402" />
-    <line
-       x1="1452.14"
-       y1="493.13"
-       x2="1429.51"
-       y2="488.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.18,454.98 1026.23,455.47 1037.36,458.57 "
-       id="polygon19406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.63,453.44 1026.39,453.91 1037.52,457.01 "
-       id="polygon19408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.24,454.45 1026.18,454.98 1037.31,458.08 "
-       id="polygon19410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1026.39,453.91 1026.24,454.45 1037.37,457.54 "
-       id="polygon19412" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1033.35,452.39 1033.11,452.13 1044.76,455.36 "
-       id="polygon19414" />
-    <line
-       x1="1421.47"
-       y1="418.07001"
-       x2="1422.02"
-       y2="418.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19416" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1038.69,460.8 1038.45,460.71 1038.52,460.37 "
-       id="polygon19418" />
-    <line
-       x1="1379.8199"
-       y1="408.48001"
-       x2="1380.3199"
-       y2="407.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19420" />
-    <line
-       x1="1394.3199"
-       y1="452.19"
-       x2="1393.58"
-       y2="451.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19422" />
-    <line
-       x1="1400.3199"
-       y1="388.92001"
-       x2="1401.53"
-       y2="388.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19424" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1032.48,452.09 1032.14,452.32 1043.79,455.56 "
-       id="polygon19426" />
-    <line
-       x1="1379.4301"
-       y1="409.73999"
-       x2="1379.8199"
-       y2="408.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1032.14,452.32 1031.84,452.69 1043.49,455.93 "
-       id="polygon19430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1042.66,460.98 1042.36,461.35 1052.35,464.14 "
-       id="polygon19432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.84,452.69 1031.6,453.17 1043.25,456.41 "
-       id="polygon19434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1031.6,453.17 1031.45,453.7 1043.09,456.94 "
-       id="polygon19436" />
-    <line
-       x1="1401.53"
-       y1="388.41"
-       x2="1402.7"
-       y2="387.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19438" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1037.75,459.23 1037.52,458.97 1026.38,455.87 "
-       id="polygon19440" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1038.01,464.41 1037.77,464.16 1048.96,467.28 "
-       id="polygon19442" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1037.77,456.54 1038.07,456.16 1026.93,453.07 "
-       id="polygon19444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.52,458.97 1037.36,458.57 1026.23,455.47 "
-       id="polygon19446" />
-    <line
-       x1="1379.15"
-       y1="411"
-       x2="1379.4301"
-       y2="409.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.52,457.01 1037.77,456.54 1026.63,453.44 "
-       id="polygon19450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.36,458.57 1037.31,458.08 1026.18,454.98 "
-       id="polygon19452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.37,457.54 1037.52,457.01 1026.39,453.91 "
-       id="polygon19454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.31,458.08 1037.37,457.54 1026.24,454.45 "
-       id="polygon19456" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1037.48,464.05 1037.14,464.12 1048.33,467.25 "
-       id="polygon19458" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1039.06,460.73 1038.82,460.47 1050.64,463.77 "
-       id="polygon19460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1040.82,460.07 1040.96,460.46 1050.52,463.13 "
-       id="polygon19462" />
-    <line
-       x1="1396.12"
-       y1="453.89001"
-       x2="1395.17"
-       y2="453.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19464" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1036.26,467.16 1036.5,467.42 1047.68,470.55 "
-       id="polygon19466" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1037.14,464.12 1036.81,464.35 1048,467.48 "
-       id="polygon19468" />
-    <line
-       x1="1378.98"
-       y1="412.23001"
-       x2="1379.15"
-       y2="411"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.11,466.76 1036.26,467.16 1047.44,470.29 "
-       id="polygon19472" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1036.81,464.35 1036.51,464.72 1047.69,467.85 "
-       id="polygon19474" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1044.13,455.33 1044.46,455.26 1032.81,452.02 "
-       id="polygon19476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.05,466.27 1036.11,466.76 1047.29,469.89 "
-       id="polygon19478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.51,464.72 1036.27,465.2 1047.45,468.33 "
-       id="polygon19480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.11,465.73 1036.05,466.27 1047.24,469.4 "
-       id="polygon19482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1036.27,465.2 1036.11,465.73 1047.3,468.86 "
-       id="polygon19484" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1037.3,463.47 1037.54,463.73 1049.36,467.04 "
-       id="polygon19486" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1043.79,455.56 1044.13,455.33 1032.48,452.09 "
-       id="polygon19488" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1038.19,460.43 1037.86,460.66 1049.68,463.96 "
-       id="polygon19490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1052.35,464.14 1052.65,463.77 1042.66,460.98 "
-       id="polygon19492" />
-    <line
-       x1="1403.8199"
-       y1="387.59"
-       x2="1404.88"
-       y2="387.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19494" />
-    <line
-       x1="1397.16"
-       y1="454.64001"
-       x2="1396.12"
-       y2="453.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19496" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1037.15,463.07 1037.3,463.47 1049.13,466.77 "
-       id="polygon19498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.49,455.93 1043.79,455.56 1032.14,452.32 "
-       id="polygon19500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.86,460.66 1037.55,461.04 1049.38,464.34 "
-       id="polygon19502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.1,462.59 1037.15,463.07 1048.97,466.38 "
-       id="polygon19504" />
-    <line
-       x1="1378.92"
-       y1="413.45001"
-       x2="1378.98"
-       y2="412.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.25,456.41 1043.49,455.93 1031.84,452.69 "
-       id="polygon19508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.55,461.04 1037.31,461.51 1049.13,464.81 "
-       id="polygon19510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.16,462.05 1037.1,462.59 1048.92,465.88 "
-       id="polygon19512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.31,461.51 1037.16,462.05 1048.98,465.34 "
-       id="polygon19514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.09,456.94 1043.25,456.41 1031.6,453.17 "
-       id="polygon19516" />
-    <line
-       x1="1422.78"
-       y1="418.5"
-       x2="1423"
-       y2="418.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.04,457.48 1043.09,456.94 1031.45,453.7 "
-       id="polygon19520" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1050.76,463.39 1050.52,463.13 1040.96,460.46 "
-       id="polygon19522" />
-    <line
-       x1="1398.3"
-       y1="455.34"
-       x2="1397.16"
-       y2="454.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19524" />
-    <line
-       x1="1404.88"
-       y1="387.28"
-       x2="1405.86"
-       y2="387.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1050.52,463.13 1050.37,462.73 1040.82,460.07 "
-       id="polygon19528" />
-    <line
-       x1="1378.98"
-       y1="414.63"
-       x2="1378.92"
-       y2="413.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19530" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1048,467.48 1048.33,467.25 1037.14,464.12 "
-       id="polygon19532" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1047.68,470.55 1047.44,470.29 1036.26,467.16 "
-       id="polygon19534" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1047.69,467.85 1048,467.48 1036.81,464.35 "
-       id="polygon19536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.44,470.29 1047.29,469.89 1036.11,466.76 "
-       id="polygon19538" />
-    <line
-       x1="1399.52"
-       y1="455.95999"
-       x2="1398.3"
-       y2="455.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19540" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1050.01,463.73 1050.34,463.66 1038.52,460.37 "
-       id="polygon19542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.45,468.33 1047.69,467.85 1036.51,464.72 "
-       id="polygon19544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.29,469.89 1047.24,469.4 1036.05,466.27 "
-       id="polygon19546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.3,468.86 1047.45,468.33 1036.27,465.2 "
-       id="polygon19548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.24,469.4 1047.3,468.86 1036.11,465.73 "
-       id="polygon19550" />
-    <line
-       x1="1405.86"
-       y1="387.04001"
-       x2="1406.77"
-       y2="386.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19552" />
-    <line
-       x1="1379.16"
-       y1="415.79001"
-       x2="1378.98"
-       y2="414.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19554" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1049.68,463.96 1050.01,463.73 1038.19,460.43 "
-       id="polygon19556" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1049.36,467.04 1049.13,466.77 1037.3,463.47 "
-       id="polygon19558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1049.38,464.34 1049.68,463.96 1037.86,460.66 "
-       id="polygon19560" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1049.13,466.77 1048.97,466.38 1037.15,463.07 "
-       id="polygon19562" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1037.52,458.97 1037.75,459.23 1048.92,462.34 "
-       id="polygon19564" />
-    <line
-       x1="1400.8101"
-       y1="456.51999"
-       x2="1399.52"
-       y2="455.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1049.13,464.81 1049.38,464.34 1037.55,461.04 "
-       id="polygon19568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.97,466.38 1048.92,465.88 1037.1,462.59 "
-       id="polygon19570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.09,456.94 1043.04,457.48 1054.73,460.73 "
-       id="polygon19572" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1038.4,455.93 1038.07,456.16 1049.23,459.27 "
-       id="polygon19574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.98,465.34 1049.13,464.81 1037.31,461.51 "
-       id="polygon19576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.92,465.88 1048.98,465.34 1037.16,462.05 "
-       id="polygon19578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.36,458.57 1037.52,458.97 1048.68,462.08 "
-       id="polygon19580" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1038.07,456.16 1037.77,456.54 1048.93,459.64 "
-       id="polygon19582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.31,458.08 1037.36,458.57 1048.53,461.68 "
-       id="polygon19584" />
-    <line
-       x1="1379.45"
-       y1="416.91"
-       x2="1379.16"
-       y2="415.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.77,456.54 1037.52,457.01 1048.69,460.12 "
-       id="polygon19588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.37,457.54 1037.31,458.08 1048.48,461.19 "
-       id="polygon19590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1037.52,457.01 1037.37,457.54 1048.54,460.65 "
-       id="polygon19592" />
-    <line
-       x1="1374.92"
-       y1="366.09"
-       x2="1376.13"
-       y2="365"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19594" />
-    <line
-       x1="1376.13"
-       y1="365"
-       x2="1377.37"
-       y2="363.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19596" />
-    <line
-       x1="1402.1801"
-       y1="457.01001"
-       x2="1400.8101"
-       y2="456.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19598" />
-    <line
-       x1="1373.77"
-       y1="367.23001"
-       x2="1374.92"
-       y2="366.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19600" />
-    <line
-       x1="1377.37"
-       y1="363.95001"
-       x2="1378.64"
-       y2="362.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19602" />
-    <line
-       x1="1430.38"
-       y1="454.79001"
-       x2="1429.29"
-       y2="455.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19604" />
-    <line
-       x1="1372.67"
-       y1="368.39001"
-       x2="1373.77"
-       y2="367.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19606" />
-    <line
-       x1="1378.64"
-       y1="362.95001"
-       x2="1379.95"
-       y2="362"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19608" />
-    <line
-       x1="1371.64"
-       y1="369.59"
-       x2="1372.67"
-       y2="368.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19610" />
-    <line
-       x1="1379.95"
-       y1="362"
-       x2="1381.26"
-       y2="361.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1052.65,463.77 1052.35,464.14 1062.37,466.93 "
-       id="polygon19614" />
-    <line
-       x1="1403.61"
-       y1="457.42999"
-       x2="1402.1801"
-       y2="457.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19616" />
-    <line
-       x1="1379.85"
-       y1="417.98001"
-       x2="1379.45"
-       y2="416.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19618" />
-    <line
-       x1="1423.09"
-       y1="419.38"
-       x2="1422.96"
-       y2="419.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19620" />
-    <line
-       x1="1370.6899"
-       y1="370.81"
-       x2="1371.64"
-       y2="369.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19622" />
-    <line
-       x1="1429.29"
-       y1="455.26999"
-       x2="1428.1"
-       y2="455.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19624" />
-    <line
-       x1="1407.59"
-       y1="386.76001"
-       x2="1408.3199"
-       y2="386.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19626" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1044.46,455.26 1044.13,455.33 1055.81,458.57 "
-       id="polygon19628" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1050.52,463.13 1050.76,463.39 1060.34,466.06 "
-       id="polygon19630" />
-    <line
-       x1="1369.8101"
-       y1="372.04999"
-       x2="1370.6899"
-       y2="370.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19632" />
-    <line
-       x1="1382.58"
-       y1="360.25"
-       x2="1383.9"
-       y2="359.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19634" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1044.13,455.33 1043.79,455.56 1055.48,458.8 "
-       id="polygon19636" />
-    <line
-       x1="1405.1"
-       y1="457.78"
-       x2="1403.61"
-       y2="457.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1050.37,462.73 1050.52,463.13 1060.11,465.8 "
-       id="polygon19640" />
-    <line
-       x1="1428.1"
-       y1="455.75"
-       x2="1426.84"
-       y2="456.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.79,455.56 1043.49,455.93 1055.18,459.18 "
-       id="polygon19644" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1048.92,462.34 1048.68,462.08 1037.52,458.97 "
-       id="polygon19646" />
-    <line
-       x1="1369.02"
-       y1="373.31"
-       x2="1369.8101"
-       y2="372.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.49,455.93 1043.25,456.41 1054.94,459.66 "
-       id="polygon19650" />
-    <line
-       x1="1380.37"
-       y1="419.01999"
-       x2="1379.85"
-       y2="417.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19652" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1048.93,459.64 1049.23,459.27 1038.07,456.16 "
-       id="polygon19654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1043.25,456.41 1043.09,456.94 1054.78,460.19 "
-       id="polygon19656" />
-    <line
-       x1="1383.9"
-       y1="359.47"
-       x2="1385.21"
-       y2="358.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.68,462.08 1048.53,461.68 1037.36,458.57 "
-       id="polygon19660" />
-    <line
-       x1="1406.64"
-       y1="458.06"
-       x2="1405.1"
-       y2="457.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.69,460.12 1048.93,459.64 1037.77,456.54 "
-       id="polygon19664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.53,461.68 1048.48,461.19 1037.31,458.08 "
-       id="polygon19666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.54,460.65 1048.69,460.12 1037.52,457.01 "
-       id="polygon19668" />
-    <line
-       x1="1408.3199"
-       y1="386.70999"
-       x2="1408.96"
-       y2="386.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.48,461.19 1048.54,460.65 1037.37,457.54 "
-       id="polygon19672" />
-    <line
-       x1="1426.84"
-       y1="456.19"
-       x2="1425.5"
-       y2="456.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19674" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1048.66,467.18 1048.33,467.25 1059.55,470.38 "
-       id="polygon19676" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1062.67,466.56 1063,466.32 1052.98,463.54 "
-       id="polygon19678" />
-    <line
-       x1="1385.21"
-       y1="358.75"
-       x2="1386.5"
-       y2="358.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19680" />
-    <line
-       x1="1408.21"
-       y1="458.26999"
-       x2="1406.64"
-       y2="458.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19682" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1047.44,470.29 1047.68,470.55 1058.9,473.69 "
-       id="polygon19684" />
-    <line
-       x1="1425.5"
-       y1="456.62"
-       x2="1424.09"
-       y2="457.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19686" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1048.33,467.25 1048,467.48 1059.22,470.61 "
-       id="polygon19688" />
-    <line
-       x1="1381"
-       y1="420"
-       x2="1380.37"
-       y2="419.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.29,469.89 1047.44,470.29 1058.66,473.43 "
-       id="polygon19692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1062.13,467.41 1062.37,466.93 1052.35,464.14 "
-       id="polygon19694" />
-    <line
-       x1="1409.8101"
-       y1="458.41"
-       x2="1408.21"
-       y2="458.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19696" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1048,467.48 1047.69,467.85 1058.91,470.99 "
-       id="polygon19698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.24,469.4 1047.29,469.89 1058.51,473.03 "
-       id="polygon19700" />
-    <line
-       x1="1424.09"
-       y1="457.01001"
-       x2="1422.63"
-       y2="457.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.69,467.85 1047.45,468.33 1058.68,471.46 "
-       id="polygon19704" />
-    <line
-       x1="1386.5"
-       y1="358.10001"
-       x2="1387.75"
-       y2="357.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19706" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1060.34,466.06 1060.11,465.8 1050.52,463.13 "
-       id="polygon19708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.3,468.86 1047.24,469.4 1058.46,472.54 "
-       id="polygon19710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1047.45,468.33 1047.3,468.86 1058.52,472 "
-       id="polygon19712" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1055.81,458.57 1056.15,458.51 1044.46,455.26 "
-       id="polygon19714" />
-    <line
-       x1="1411.4399"
-       y1="458.48001"
-       x2="1409.8101"
-       y2="458.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19716" />
-    <line
-       x1="1422.63"
-       y1="457.35999"
-       x2="1421.11"
-       y2="457.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.11,465.8 1059.96,465.4 1050.37,462.73 "
-       id="polygon19720" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1050.34,463.66 1050.01,463.73 1061.87,467.04 "
-       id="polygon19722" />
-    <line
-       x1="1413.0699"
-       y1="458.5"
-       x2="1411.4399"
-       y2="458.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19724" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1055.48,458.8 1055.81,458.57 1044.13,455.33 "
-       id="polygon19726" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1049.13,466.77 1049.36,467.04 1061.22,470.35 "
-       id="polygon19728" />
-    <line
-       x1="1421.11"
-       y1="457.67999"
-       x2="1419.55"
-       y2="457.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19730" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1050.01,463.73 1049.68,463.96 1061.54,467.27 "
-       id="polygon19732" />
-    <line
-       x1="1414.71"
-       y1="458.45001"
-       x2="1413.0699"
-       y2="458.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19734" />
-    <line
-       x1="1381.75"
-       y1="420.92999"
-       x2="1381"
-       y2="420"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19736" />
-    <line
-       x1="1419.55"
-       y1="457.95001"
-       x2="1417.96"
-       y2="458.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19738" />
-    <line
-       x1="1416.35"
-       y1="458.34"
-       x2="1414.71"
-       y2="458.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1055.18,459.18 1055.48,458.8 1043.79,455.56 "
-       id="polygon19742" />
-    <line
-       x1="1417.96"
-       y1="458.17001"
-       x2="1416.35"
-       y2="458.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19744" />
-    <line
-       x1="1387.75"
-       y1="357.51001"
-       x2="1388.97"
-       y2="356.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19746" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1048.97,466.38 1049.13,466.77 1060.98,470.09 "
-       id="polygon19748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1049.68,463.96 1049.38,464.34 1061.23,467.64 "
-       id="polygon19750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1054.94,459.66 1055.18,459.18 1043.49,455.93 "
-       id="polygon19752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.92,465.88 1048.97,466.38 1060.83,469.69 "
-       id="polygon19754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1049.38,464.34 1049.13,464.81 1061,468.12 "
-       id="polygon19756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1054.78,460.19 1054.94,459.66 1043.25,456.41 "
-       id="polygon19758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1054.73,460.73 1054.78,460.19 1043.09,456.94 "
-       id="polygon19760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.98,465.34 1048.92,465.88 1060.79,469.2 "
-       id="polygon19762" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1049.13,464.81 1048.98,465.34 1060.84,468.66 "
-       id="polygon19764" />
-    <line
-       x1="1422.36"
-       y1="420.59"
-       x2="1421.88"
-       y2="421.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19766" />
-    <line
-       x1="1409.5"
-       y1="386.81"
-       x2="1409.9399"
-       y2="386.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19768" />
-    <line
-       x1="1388.97"
-       y1="356.98999"
-       x2="1390.14"
-       y2="356.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19770" />
-    <line
-       x1="1382.59"
-       y1="421.79999"
-       x2="1381.75"
-       y2="420.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19772" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1059.22,470.61 1059.55,470.38 1048.33,467.25 "
-       id="polygon19774" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1058.9,473.69 1058.66,473.43 1047.44,470.29 "
-       id="polygon19776" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1058.91,470.99 1059.22,470.61 1048,467.48 "
-       id="polygon19778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.66,473.43 1058.51,473.03 1047.29,469.89 "
-       id="polygon19780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.68,471.46 1058.91,470.99 1047.69,467.85 "
-       id="polygon19782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.51,473.03 1058.46,472.54 1047.24,469.4 "
-       id="polygon19784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.52,472 1058.68,471.46 1047.45,468.33 "
-       id="polygon19786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.46,472.54 1058.52,472 1047.3,468.86 "
-       id="polygon19788" />
-    <line
-       x1="1390.14"
-       y1="356.54001"
-       x2="1391.26"
-       y2="356.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19790" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1061.87,467.04 1062.2,466.97 1050.34,463.66 "
-       id="polygon19792" />
-    <line
-       x1="1383.54"
-       y1="422.62"
-       x2="1382.59"
-       y2="421.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19794" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1061.54,467.27 1061.87,467.04 1050.01,463.73 "
-       id="polygon19796" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1048.68,462.08 1048.92,462.34 1060.12,465.46 "
-       id="polygon19798" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1061.22,470.35 1060.98,470.09 1049.13,466.77 "
-       id="polygon19800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1054.78,460.19 1054.73,460.73 1066.46,463.99 "
-       id="polygon19802" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1049.57,459.04 1049.23,459.27 1060.44,462.39 "
-       id="polygon19804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1061.23,467.64 1061.54,467.27 1049.68,463.96 "
-       id="polygon19806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.53,461.68 1048.68,462.08 1059.89,465.2 "
-       id="polygon19808" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1060.98,470.09 1060.83,469.69 1048.97,466.38 "
-       id="polygon19810" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1049.23,459.27 1048.93,459.64 1060.14,462.76 "
-       id="polygon19812" />
-    <line
-       x1="1421.29"
-       y1="421.53"
-       x2="1420.6"
-       y2="422.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1061,468.12 1061.23,467.64 1049.38,464.34 "
-       id="polygon19816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.48,461.19 1048.53,461.68 1059.73,464.81 "
-       id="polygon19818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.83,469.69 1060.79,469.2 1048.92,465.88 "
-       id="polygon19820" />
-    <line
-       x1="1391.26"
-       y1="356.14999"
-       x2="1392.3101"
-       y2="355.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.93,459.64 1048.69,460.12 1059.9,463.24 "
-       id="polygon19824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.84,468.66 1061,468.12 1049.13,464.81 "
-       id="polygon19826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.79,469.2 1060.84,468.66 1048.98,465.34 "
-       id="polygon19828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.54,460.65 1048.48,461.19 1059.69,464.31 "
-       id="polygon19830" />
-    <line
-       x1="1384.58"
-       y1="423.37"
-       x2="1383.54"
-       y2="422.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1048.69,460.12 1048.54,460.65 1059.74,463.77 "
-       id="polygon19834" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1063,466.32 1062.67,466.56 1074.18,469.77 "
-       id="polygon19836" />
-    <line
-       x1="1060.45"
-       y1="470.98001"
-       x2="1060.45"
-       y2="470.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1062.67,466.56 1062.37,466.93 1073.88,470.14 "
-       id="polygon19840" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1059.22,470.61 1059.55,470.38 1059.55,470.71 "
-       id="polygon19842" />
-    <line
-       x1="1420.6"
-       y1="422.01001"
-       x2="1419.79"
-       y2="422.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19844" />
-    <line
-       x1="1385.71"
-       y1="424.04999"
-       x2="1384.58"
-       y2="423.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19846" />
-    <line
-       x1="1392.3101"
-       y1="355.84"
-       x2="1393.3"
-       y2="355.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19848" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1056.15,458.51 1055.81,458.57 1067.54,461.83 "
-       id="polygon19850" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1060.12,465.46 1059.89,465.2 1048.68,462.08 "
-       id="polygon19852" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1055.81,458.57 1055.48,458.8 1067.21,462.07 "
-       id="polygon19854" />
-    <line
-       x1="1386.9301"
-       y1="424.67999"
-       x2="1385.71"
-       y2="424.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19856" />
-    <line
-       x1="1419.79"
-       y1="422.51001"
-       x2="1418.88"
-       y2="423"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19858" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1060.42,470.68 1060.18,470.41 1071.01,473.44 "
-       id="polygon19860" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1060.14,462.76 1060.44,462.39 1049.23,459.27 "
-       id="polygon19862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.89,465.2 1059.73,464.81 1048.53,461.68 "
-       id="polygon19864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1055.48,458.8 1055.18,459.18 1066.91,462.44 "
-       id="polygon19866" />
-    <line
-       x1="1393.3"
-       y1="355.59"
-       x2="1394.2"
-       y2="355.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19868" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1074.51,469.54 1074.84,469.46 1063.33,466.26 "
-       id="polygon19870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.9,463.24 1060.14,462.76 1048.93,459.64 "
-       id="polygon19872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.73,464.81 1059.69,464.31 1048.48,461.19 "
-       id="polygon19874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1055.18,459.18 1054.94,459.66 1066.67,462.91 "
-       id="polygon19876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.74,463.77 1059.9,463.24 1048.69,460.12 "
-       id="polygon19878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1054.94,459.66 1054.78,460.19 1066.51,463.45 "
-       id="polygon19880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.69,464.31 1059.74,463.77 1048.54,460.65 "
-       id="polygon19882" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1074.18,469.77 1074.51,469.54 1063,466.32 "
-       id="polygon19884" />
-    <line
-       x1="1388.23"
-       y1="425.23001"
-       x2="1386.9301"
-       y2="424.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19886" />
-    <line
-       x1="1451.5601"
-       y1="493.82001"
-       x2="1452.14"
-       y2="493.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19888" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1058.66,473.43 1058.9,473.69 1069.73,476.72 "
-       id="polygon19890" />
-    <line
-       x1="1418.88"
-       y1="423"
-       x2="1417.88"
-       y2="423.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1073.88,470.14 1074.18,469.77 1062.67,466.56 "
-       id="polygon19894" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1059.55,470.38 1059.22,470.61 1070.05,473.64 "
-       id="polygon19896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1073.64,470.62 1073.88,470.14 1062.37,466.93 "
-       id="polygon19898" />
-    <line
-       x1="1410.58"
-       y1="387.67001"
-       x2="1410.5601"
-       y2="388"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.51,473.03 1058.66,473.43 1069.49,476.46 "
-       id="polygon19902" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1062.74,467.33 1062.5,467.07 1072.61,469.89 "
-       id="polygon19904" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1059.22,470.61 1058.91,470.99 1069.75,474.02 "
-       id="polygon19906" />
-    <line
-       x1="1061.48"
-       y1="467.03"
-       x2="1061.48"
-       y2="466.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19908" />
-    <line
-       x1="1394.2"
-       y1="355.41"
-       x2="1395.03"
-       y2="355.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.46,472.54 1058.51,473.03 1069.34,476.06 "
-       id="polygon19912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.91,470.99 1058.68,471.46 1069.5,474.49 "
-       id="polygon19914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.52,472 1058.46,472.54 1069.29,475.57 "
-       id="polygon19916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1058.68,471.46 1058.52,472 1069.35,475.03 "
-       id="polygon19918" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1060.42,465.57 1060.75,465.5 1060.75,465.16 "
-       id="polygon19920" />
-    <line
-       x1="1389.6"
-       y1="425.70999"
-       x2="1388.23"
-       y2="425.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19922" />
-    <line
-       x1="1061.3"
-       y1="466.23001"
-       x2="1061.3"
-       y2="466.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19924" />
-    <line
-       x1="1417.88"
-       y1="423.48999"
-       x2="1416.77"
-       y2="423.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19926" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1067.54,461.83 1067.88,461.77 1056.15,458.51 "
-       id="polygon19928" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1060.98,470.09 1061.22,470.35 1071.33,473.17 "
-       id="polygon19930" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1061.87,467.04 1061.54,467.27 1071.65,470.09 "
-       id="polygon19932" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1067.21,462.07 1067.54,461.83 1055.81,458.57 "
-       id="polygon19934" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1060.83,469.69 1060.98,470.09 1071.09,472.91 "
-       id="polygon19936" />
-    <line
-       x1="1391.04"
-       y1="426.13"
-       x2="1389.6"
-       y2="425.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1061.54,467.27 1061.23,467.64 1071.35,470.46 "
-       id="polygon19940" />
-    <line
-       x1="1416.77"
-       y1="423.97"
-       x2="1415.59"
-       y2="424.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19942" />
-    <line
-       x1="1395.03"
-       y1="355.29001"
-       x2="1395.76"
-       y2="355.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.79,469.2 1060.83,469.69 1070.95,472.51 "
-       id="polygon19946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.91,462.44 1067.21,462.07 1055.48,458.8 "
-       id="polygon19948" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1061.23,467.64 1061,468.12 1071.11,470.94 "
-       id="polygon19950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.84,468.66 1060.79,469.2 1070.89,472.02 "
-       id="polygon19952" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1423.33,495.95 1422.8,495.76 1420.46,498.8 "
-       id="polygon19954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1061,468.12 1060.84,468.66 1070.95,471.48 "
-       id="polygon19956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.67,462.91 1066.91,462.44 1055.18,459.18 "
-       id="polygon19958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.51,463.45 1066.67,462.91 1054.94,459.66 "
-       id="polygon19960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.46,463.99 1066.51,463.45 1054.78,460.19 "
-       id="polygon19962" />
-    <line
-       x1="1392.52"
-       y1="426.47"
-       x2="1391.04"
-       y2="426.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19964" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1070.05,473.64 1070.38,473.41 1059.55,470.38 "
-       id="polygon19966" />
-    <line
-       x1="1415.59"
-       y1="424.44"
-       x2="1414.3199"
-       y2="424.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19968" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1069.73,476.72 1069.49,476.46 1058.66,473.43 "
-       id="polygon19970" />
-    <line
-       x1="1450.33"
-       y1="494.94"
-       x2="1450.96"
-       y2="494.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19972" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1069.75,474.02 1070.05,473.64 1059.22,470.61 "
-       id="polygon19974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.49,476.46 1069.34,476.06 1058.51,473.03 "
-       id="polygon19976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.5,474.49 1069.75,474.02 1058.91,470.99 "
-       id="polygon19978" />
-    <line
-       x1="1410.4301"
-       y1="388.35999"
-       x2="1410.1801"
-       y2="388.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.34,476.06 1069.29,475.57 1058.46,472.54 "
-       id="polygon19982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.35,475.03 1069.5,474.49 1058.68,471.46 "
-       id="polygon19984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.29,475.57 1069.35,475.03 1058.52,472 "
-       id="polygon19986" />
-    <line
-       x1="1414.3199"
-       y1="424.88"
-       x2="1412.97"
-       y2="425.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19988" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1059.89,465.2 1060.12,465.46 1068.76,467.88 "
-       id="polygon19990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.51,463.45 1066.46,463.99 1078.22,467.27 "
-       id="polygon19992" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1060.77,462.16 1060.44,462.39 1069.08,464.79 "
-       id="polygon19994" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1071.65,470.09 1071.98,469.86 1061.87,467.04 "
-       id="polygon19996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.73,464.81 1059.89,465.2 1068.52,467.61 "
-       id="polygon19998" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1071.33,473.17 1071.09,472.91 1060.98,470.09 "
-       id="polygon20000" />
-    <line
-       x1="1412.97"
-       y1="425.29999"
-       x2="1411.5601"
-       y2="425.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20002" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1060.44,462.39 1060.14,462.76 1068.78,465.16 "
-       id="polygon20004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1071.35,470.46 1071.65,470.09 1061.54,467.27 "
-       id="polygon20006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.69,464.31 1059.73,464.81 1068.38,467.21 "
-       id="polygon20008" />
-    <line
-       x1="1449.6801"
-       y1="495.35999"
-       x2="1450.33"
-       y2="494.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20010" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1071.09,472.91 1070.95,472.51 1060.83,469.69 "
-       id="polygon20012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1060.14,462.76 1059.9,463.24 1068.54,465.64 "
-       id="polygon20014" />
-    <line
-       x1="1397.25"
-       y1="427.10001"
-       x2="1395.64"
-       y2="426.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.74,463.77 1059.69,464.31 1068.32,466.72 "
-       id="polygon20018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1059.9,463.24 1059.74,463.77 1068.38,466.18 "
-       id="polygon20020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1071.11,470.94 1071.35,470.46 1061.23,467.64 "
-       id="polygon20022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1070.95,472.51 1070.89,472.02 1060.79,469.2 "
-       id="polygon20024" />
-    <line
-       x1="1411.5601"
-       y1="425.69"
-       x2="1410.09"
-       y2="426.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1070.95,471.48 1071.11,470.94 1061,468.12 "
-       id="polygon20028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1070.89,472.02 1070.95,471.48 1060.84,468.66 "
-       id="polygon20030" />
-    <line
-       x1="1398.87"
-       y1="427.17001"
-       x2="1397.25"
-       y2="427.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20032" />
-    <line
-       x1="1396.39"
-       y1="355.25"
-       x2="1396.9301"
-       y2="355.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20034" />
-    <line
-       x1="1410.09"
-       y1="426.04999"
-       x2="1408.5699"
-       y2="426.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20036" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1070.71,473.34 1070.38,473.41 1070.38,473.74 "
-       id="polygon20038" />
-    <line
-       x1="1400.51"
-       y1="427.17999"
-       x2="1398.87"
-       y2="427.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20040" />
-    <line
-       x1="1408.5699"
-       y1="426.35999"
-       x2="1407.01"
-       y2="426.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20042" />
-    <line
-       x1="1402.16"
-       y1="427.13"
-       x2="1400.51"
-       y2="427.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20044" />
-    <line
-       x1="1407.01"
-       y1="426.63"
-       x2="1405.41"
-       y2="426.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20046" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1074.51,469.54 1074.18,469.77 1085.73,472.98 "
-       id="polygon20048" />
-    <line
-       x1="1403.79"
-       y1="427.01999"
-       x2="1402.16"
-       y2="427.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20050" />
-    <line
-       x1="1405.41"
-       y1="426.85001"
-       x2="1403.79"
-       y2="427.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1074.18,469.77 1073.88,470.14 1085.43,473.36 "
-       id="polygon20054" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1068.76,467.88 1068.52,467.61 1059.89,465.2 "
-       id="polygon20056" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1068.78,465.16 1069.08,464.79 1060.44,462.39 "
-       id="polygon20058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.52,467.61 1068.38,467.21 1059.73,464.81 "
-       id="polygon20060" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1419.9,498.77 1420.46,498.8 1422.8,495.76 "
-       id="polygon20062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.54,465.64 1068.78,465.16 1060.14,462.76 "
-       id="polygon20064" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1068.41,462.13 1068.17,461.87 1079.94,465.14 "
-       id="polygon20066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.38,467.21 1068.32,466.72 1059.69,464.31 "
-       id="polygon20068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.38,466.18 1068.54,465.64 1059.9,463.24 "
-       id="polygon20070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.32,466.72 1068.38,466.18 1059.74,463.77 "
-       id="polygon20072" />
-    <line
-       x1="1448.36"
-       y1="495.94"
-       x2="1449.02"
-       y2="495.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20074" />
-    <line
-       x1="1409.34"
-       y1="389.64001"
-       x2="1408.75"
-       y2="390.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20076" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1067.54,461.83 1067.21,462.07 1078.98,465.34 "
-       id="polygon20078" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1070.71,473.34 1070.38,473.41 1081.24,476.44 "
-       id="polygon20080" />
-    <line
-       x1="1370.9"
-       y1="391.20001"
-       x2="1369.95"
-       y2="390.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1067.21,462.07 1066.91,462.44 1078.68,465.71 "
-       id="polygon20084" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1071.63,473.27 1071.96,473.2 1082.1,476.04 "
-       id="polygon20086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.91,462.44 1066.67,462.91 1078.44,466.19 "
-       id="polygon20088" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1070.38,473.41 1070.05,473.64 1080.91,476.68 "
-       id="polygon20090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1066.67,462.91 1066.51,463.45 1078.28,466.72 "
-       id="polygon20092" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1085.73,472.98 1086.06,472.75 1074.51,469.54 "
-       id="polygon20094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.34,476.06 1069.49,476.46 1080.36,479.5 "
-       id="polygon20096" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1070.05,473.64 1069.75,474.02 1080.61,477.05 "
-       id="polygon20098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1085.43,473.36 1085.73,472.98 1074.18,469.77 "
-       id="polygon20100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.29,475.57 1069.34,476.06 1080.21,479.1 "
-       id="polygon20102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1085.19,473.84 1085.43,473.36 1073.88,470.14 "
-       id="polygon20104" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1072.31,469.79 1071.98,469.86 1082.12,472.68 "
-       id="polygon20106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.75,474.02 1069.5,474.49 1080.37,477.53 "
-       id="polygon20108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.35,475.03 1069.29,475.57 1080.16,478.61 "
-       id="polygon20110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1069.5,474.49 1069.35,475.03 1080.21,478.07 "
-       id="polygon20112" />
-    <line
-       x1="1408.75"
-       y1="390.10001"
-       x2="1408.04"
-       y2="390.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20114" />
-    <line
-       x1="1371.9399"
-       y1="391.94"
-       x2="1370.9"
-       y2="391.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20116" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1071.98,469.86 1071.65,470.09 1081.79,472.92 "
-       id="polygon20118" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1070.95,472.51 1071.09,472.91 1081.23,475.74 "
-       id="polygon20120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1071.65,470.09 1071.35,470.46 1081.49,473.29 "
-       id="polygon20122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1070.89,472.02 1070.95,472.51 1081.09,475.34 "
-       id="polygon20124" />
-    <line
-       x1="1397.6899"
-       y1="355.63"
-       x2="1397.9"
-       y2="355.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1071.35,470.46 1071.11,470.94 1081.25,473.77 "
-       id="polygon20128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1070.95,471.48 1070.89,472.02 1081.04,474.85 "
-       id="polygon20130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1071.11,470.94 1070.95,471.48 1081.09,474.31 "
-       id="polygon20132" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1079.31,465.1 1079.64,465.04 1067.88,461.77 "
-       id="polygon20134" />
-    <line
-       x1="1408.04"
-       y1="390.57999"
-       x2="1407.23"
-       y2="391.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20136" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1081.22,479.79 1080.89,479.86 1070.03,476.82 "
-       id="polygon20138" />
-    <line
-       x1="1447.02"
-       y1="496.14001"
-       x2="1447.6801"
-       y2="496.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20140" />
-    <line
-       x1="1373.0699"
-       y1="392.63"
-       x2="1371.9399"
-       y2="391.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20142" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1078.98,465.34 1079.31,465.1 1067.54,461.83 "
-       id="polygon20144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.38,467.21 1068.52,467.61 1077.19,470.02 "
-       id="polygon20146" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1069.08,464.79 1068.78,465.16 1077.44,467.57 "
-       id="polygon20148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1421.44,501.8 1421.77,501.38 1421.45,501.2 "
-       id="polygon20150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.32,466.72 1068.38,467.21 1077.04,469.63 "
-       id="polygon20152" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1080.91,476.68 1081.24,476.44 1070.38,473.41 "
-       id="polygon20154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.68,465.71 1078.98,465.34 1067.21,462.07 "
-       id="polygon20156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.78,465.16 1068.54,465.64 1077.2,468.05 "
-       id="polygon20158" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1080.59,479.76 1080.36,479.5 1069.49,476.46 "
-       id="polygon20160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.38,466.18 1068.32,466.72 1076.99,469.13 "
-       id="polygon20162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1068.54,465.64 1068.38,466.18 1077.04,468.59 "
-       id="polygon20164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.44,466.19 1078.68,465.71 1066.91,462.44 "
-       id="polygon20166" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1082.12,472.68 1082.45,472.62 1072.31,469.79 "
-       id="polygon20168" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1080.61,477.05 1080.91,476.68 1070.05,473.64 "
-       id="polygon20170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.28,466.72 1078.44,466.19 1066.67,462.91 "
-       id="polygon20172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.36,479.5 1080.21,479.1 1069.34,476.06 "
-       id="polygon20174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.22,467.27 1078.28,466.72 1066.51,463.45 "
-       id="polygon20176" />
-    <line
-       x1="1374.29"
-       y1="393.23999"
-       x2="1373.0699"
-       y2="392.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.37,477.53 1080.61,477.05 1069.75,474.02 "
-       id="polygon20180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.21,479.1 1080.16,478.61 1069.29,475.57 "
-       id="polygon20182" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1081.79,472.92 1082.12,472.68 1071.98,469.86 "
-       id="polygon20184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.21,478.07 1080.37,477.53 1069.5,474.49 "
-       id="polygon20186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.16,478.61 1080.21,478.07 1069.35,475.03 "
-       id="polygon20188" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1081.47,476 1081.23,475.74 1071.09,472.91 "
-       id="polygon20190" />
-    <line
-       x1="1446.36"
-       y1="496.09"
-       x2="1447.02"
-       y2="496.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.49,473.29 1081.79,472.92 1071.65,470.09 "
-       id="polygon20194" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1081.23,475.74 1081.09,475.34 1070.95,472.51 "
-       id="polygon20196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.25,473.77 1081.49,473.29 1071.35,470.46 "
-       id="polygon20198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.09,475.34 1081.04,474.85 1070.89,472.02 "
-       id="polygon20200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.09,474.31 1081.25,473.77 1071.11,470.94 "
-       id="polygon20202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.04,474.85 1081.09,474.31 1070.95,471.48 "
-       id="polygon20204" />
-    <line
-       x1="1375.59"
-       y1="393.79001"
-       x2="1374.29"
-       y2="393.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20206" />
-    <line
-       x1="1406.3199"
-       y1="391.56"
-       x2="1405.3"
-       y2="392.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20208" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1077.42,470.29 1077.19,470.02 1068.52,467.61 "
-       id="polygon20210" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1077.44,467.57 1077.74,467.2 1069.08,464.79 "
-       id="polygon20212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.19,470.02 1077.04,469.63 1068.38,467.21 "
-       id="polygon20214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.2,468.05 1077.44,467.57 1068.78,465.16 "
-       id="polygon20216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.04,469.63 1076.99,469.13 1068.32,466.72 "
-       id="polygon20218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.04,468.59 1077.2,468.05 1068.54,465.64 "
-       id="polygon20220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1076.99,469.13 1077.04,468.59 1068.38,466.18 "
-       id="polygon20222" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1081.24,476.44 1081.57,476.38 1081.51,476.72 "
-       id="polygon20224" />
-    <line
-       x1="1376.96"
-       y1="394.26999"
-       x2="1375.59"
-       y2="393.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20226" />
-    <line
-       x1="1378.4"
-       y1="394.67999"
-       x2="1376.96"
-       y2="394.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20228" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1086.06,472.75 1085.73,472.98 1097.32,476.21 "
-       id="polygon20230" />
-    <line
-       x1="1397.98"
-       y1="356.45999"
-       x2="1397.84"
-       y2="356.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20232" />
-    <line
-       x1="1404.2"
-       y1="392.51999"
-       x2="1403.01"
-       y2="392.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1085.73,472.98 1085.43,473.36 1097.02,476.59 "
-       id="polygon20236" />
-    <line
-       x1="1445.08"
-       y1="495.73001"
-       x2="1445.71"
-       y2="495.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20238" />
-    <line
-       x1="1379.89"
-       y1="395.01999"
-       x2="1378.4"
-       y2="394.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20240" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1420.46,498.8 1419.9,498.77 1417.54,501.83 "
-       id="polygon20242" />
-    <line
-       x1="1403.01"
-       y1="392.98001"
-       x2="1401.73"
-       y2="393.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20244" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1082.11,476.74 1081.87,476.48 1092.77,479.52 "
-       id="polygon20246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1096.78,477.07 1097.02,476.59 1085.43,473.36 "
-       id="polygon20248" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1082.99,472.98 1082.75,472.72 1092.92,475.55 "
-       id="polygon20250" />
-    <line
-       x1="1381.4301"
-       y1="395.29001"
-       x2="1379.89"
-       y2="395.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20252" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1079.64,465.04 1079.31,465.1 1089.82,468.02 "
-       id="polygon20254" />
-    <line
-       x1="1401.73"
-       y1="393.42999"
-       x2="1400.38"
-       y2="393.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20256" />
-    <line
-       x1="1444.48"
-       y1="495.41"
-       x2="1445.08"
-       y2="495.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20258" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1079.31,465.1 1078.98,465.34 1089.49,468.26 "
-       id="polygon20260" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1080.36,479.5 1080.59,479.76 1091.49,482.81 "
-       id="polygon20262" />
-    <line
-       x1="1383.01"
-       y1="395.5"
-       x2="1381.4301"
-       y2="395.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20264" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1081.24,476.44 1080.91,476.68 1091.81,479.72 "
-       id="polygon20266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.98,465.34 1078.68,465.71 1089.19,468.63 "
-       id="polygon20268" />
-    <line
-       x1="1400.38"
-       y1="393.84"
-       x2="1398.97"
-       y2="394.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20270" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1081.23,475.74 1081.47,476 1091.64,478.84 "
-       id="polygon20272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.21,479.1 1080.36,479.5 1091.25,482.55 "
-       id="polygon20274" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1080.91,476.68 1080.61,477.05 1091.51,480.1 "
-       id="polygon20276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.68,465.71 1078.44,466.19 1088.95,469.11 "
-       id="polygon20278" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1082.12,472.68 1081.79,472.92 1091.96,475.75 "
-       id="polygon20280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.28,466.72 1078.22,467.27 1088.74,470.19 "
-       id="polygon20282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1078.44,466.19 1078.28,466.72 1088.79,469.65 "
-       id="polygon20284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.16,478.61 1080.21,479.1 1091.11,482.15 "
-       id="polygon20286" />
-    <line
-       x1="1384.62"
-       y1="395.63"
-       x2="1383.01"
-       y2="395.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20288" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.61,477.05 1080.37,477.53 1091.27,480.58 "
-       id="polygon20290" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1081.09,475.34 1081.23,475.74 1091.41,478.58 "
-       id="polygon20292" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1097.32,476.21 1097.65,475.98 1086.06,472.75 "
-       id="polygon20294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.21,478.07 1080.16,478.61 1091.05,481.66 "
-       id="polygon20296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1080.37,477.53 1080.21,478.07 1091.11,481.11 "
-       id="polygon20298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.79,472.92 1081.49,473.29 1091.66,476.13 "
-       id="polygon20300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.04,474.85 1081.09,475.34 1091.26,478.18 "
-       id="polygon20302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.49,473.29 1081.25,473.77 1091.42,476.61 "
-       id="polygon20304" />
-    <line
-       x1="1386.25"
-       y1="395.70001"
-       x2="1384.62"
-       y2="395.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1097.02,476.59 1097.32,476.21 1085.73,472.98 "
-       id="polygon20308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.09,474.31 1081.04,474.85 1091.21,477.69 "
-       id="polygon20310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1081.25,473.77 1081.09,474.31 1091.27,477.15 "
-       id="polygon20312" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1077.19,470.02 1077.42,470.29 1089.07,473.53 "
-       id="polygon20314" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1078.07,466.97 1077.74,467.2 1089.39,470.44 "
-       id="polygon20316" />
-    <line
-       x1="1387.89"
-       y1="395.70999"
-       x2="1386.25"
-       y2="395.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20318" />
-    <line
-       x1="1395.97"
-       y1="394.89001"
-       x2="1394.4"
-       y2="395.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.04,469.63 1077.19,470.02 1088.84,473.27 "
-       id="polygon20322" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1077.74,467.2 1077.44,467.57 1089.09,470.82 "
-       id="polygon20324" />
-    <line
-       x1="1389.54"
-       y1="395.66"
-       x2="1387.89"
-       y2="395.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20326" />
-    <line
-       x1="1394.4"
-       y1="395.16"
-       x2="1392.8"
-       y2="395.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20328" />
-    <line
-       x1="1391.1801"
-       y1="395.54999"
-       x2="1389.54"
-       y2="395.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1076.99,469.13 1077.04,469.63 1088.69,472.87 "
-       id="polygon20332" />
-    <line
-       x1="1392.8"
-       y1="395.38"
-       x2="1391.1801"
-       y2="395.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.44,467.57 1077.2,468.05 1088.85,471.3 "
-       id="polygon20336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.04,468.59 1076.99,469.13 1088.64,472.38 "
-       id="polygon20338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1077.2,468.05 1077.04,468.59 1088.69,471.84 "
-       id="polygon20340" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1089.82,468.02 1090.16,467.95 1079.64,465.04 "
-       id="polygon20342" />
-    <line
-       x1="1397.22"
-       y1="357.63"
-       x2="1396.73"
-       y2="358.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20344" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1089.49,468.26 1089.82,468.02 1079.31,465.1 "
-       id="polygon20346" />
-    <line
-       x1="1443.36"
-       y1="494.51001"
-       x2="1443.9"
-       y2="495.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20348" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1091.81,479.72 1092.14,479.49 1081.24,476.44 "
-       id="polygon20350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1089.19,468.63 1089.49,468.26 1078.98,465.34 "
-       id="polygon20352" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1091.49,482.81 1091.25,482.55 1080.36,479.5 "
-       id="polygon20354" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1091.96,475.75 1092.29,475.52 1082.12,472.68 "
-       id="polygon20356" />
-    <line
-       x1="1369.8101"
-       y1="342.70001"
-       x2="1369.9"
-       y2="341.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20358" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1417.02,501.97 1417.54,501.83 1419.9,498.77 "
-       id="polygon20360" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1091.64,478.84 1091.41,478.58 1081.23,475.74 "
-       id="polygon20362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.95,469.11 1089.19,468.63 1078.68,465.71 "
-       id="polygon20364" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1091.51,480.1 1091.81,479.72 1080.91,476.68 "
-       id="polygon20366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.25,482.55 1091.11,482.15 1080.21,479.1 "
-       id="polygon20368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.79,469.65 1088.95,469.11 1078.44,466.19 "
-       id="polygon20370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.74,470.19 1088.79,469.65 1078.28,466.72 "
-       id="polygon20372" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1418.09,501.85 1418.63,502.05 1420.98,498.99 "
-       id="polygon20374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.66,476.13 1091.96,475.75 1081.79,472.92 "
-       id="polygon20376" />
-    <line
-       x1="1369.76"
-       y1="343.45001"
-       x2="1369.8101"
-       y2="342.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20378" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1091.41,478.58 1091.26,478.18 1081.09,475.34 "
-       id="polygon20380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.27,480.58 1091.51,480.1 1080.61,477.05 "
-       id="polygon20382" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1418.63,502.05 1419.07,502.39 1421.43,499.33 "
-       id="polygon20384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.11,482.15 1091.05,481.66 1080.16,478.61 "
-       id="polygon20386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.11,481.11 1091.27,480.58 1080.37,477.53 "
-       id="polygon20388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.05,481.66 1091.11,481.11 1080.21,478.07 "
-       id="polygon20390" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.42,476.61 1091.66,476.13 1081.49,473.29 "
-       id="polygon20392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.26,478.18 1091.21,477.69 1081.04,474.85 "
-       id="polygon20394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.27,477.15 1091.42,476.61 1081.25,473.77 "
-       id="polygon20396" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.21,477.69 1091.27,477.15 1081.09,474.31 "
-       id="polygon20398" />
-    <line
-       x1="1369.77"
-       y1="344.95001"
-       x2="1369.74"
-       y2="344.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20400" />
-    <line
-       x1="1369.83"
-       y1="345.67999"
-       x2="1369.77"
-       y2="344.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20402" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1089.09,470.82 1089.39,470.44 1077.74,467.2 "
-       id="polygon20404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.84,473.27 1088.69,472.87 1077.04,469.63 "
-       id="polygon20406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.85,471.3 1089.09,470.82 1077.44,467.57 "
-       id="polygon20408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.69,472.87 1088.64,472.38 1076.99,469.13 "
-       id="polygon20410" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1092.64,479.85 1092.4,479.77 1092.47,479.42 "
-       id="polygon20412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.69,471.84 1088.85,471.3 1077.2,468.05 "
-       id="polygon20414" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.64,472.38 1088.69,471.84 1077.04,468.59 "
-       id="polygon20416" />
-    <line
-       x1="1396.14"
-       y1="358.53"
-       x2="1395.4301"
-       y2="359"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20418" />
-    <line
-       x1="1370.08"
-       y1="347.12"
-       x2="1369.9301"
-       y2="346.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20420" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1092.63,475.45 1092.29,475.52 1092.29,475.86 "
-       id="polygon20422" />
-    <line
-       x1="1442.39"
-       y1="493.26999"
-       x2="1442.85"
-       y2="493.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20424" />
-    <line
-       x1="1370.27"
-       y1="347.82001"
-       x2="1370.08"
-       y2="347.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20426" />
-    <line
-       x1="1370.03"
-       y1="341.17999"
-       x2="1363.52"
-       y2="323.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20428" />
-    <line
-       x1="1370.49"
-       y1="348.51999"
-       x2="1370.27"
-       y2="347.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20430" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1097.65,475.98 1097.32,476.21 1108.95,479.46 "
-       id="polygon20432" />
-    <line
-       x1="1371.0601"
-       y1="349.85001"
-       x2="1370.76"
-       y2="349.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20434" />
-    <line
-       x1="1441.97"
-       y1="492.53"
-       x2="1442.39"
-       y2="493.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1097.32,476.21 1097.02,476.59 1108.65,479.83 "
-       id="polygon20438" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1416.24,502.7 1416.57,502.27 1416.82,502.54 "
-       id="polygon20440" />
-    <line
-       x1="1371.41"
-       y1="350.48999"
-       x2="1371.0601"
-       y2="349.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20442" />
-    <line
-       x1="1394.61"
-       y1="359.48001"
-       x2="1393.7"
-       y2="359.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20444" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1419.57,503.38 1419.58,503.93 1419.23,503.85 "
-       id="polygon20446" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1092.63,475.45 1092.29,475.52 1102.5,478.36 "
-       id="polygon20448" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1089.82,468.02 1089.49,468.26 1100.04,471.19 "
-       id="polygon20450" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1092.47,479.42 1092.14,479.49 1103.07,482.54 "
-       id="polygon20452" />
-    <line
-       x1="1372.21"
-       y1="351.70999"
-       x2="1371.79"
-       y2="351.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20454" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1092.29,475.52 1091.96,475.75 1102.16,478.6 "
-       id="polygon20456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1089.49,468.26 1089.19,468.63 1099.74,471.56 "
-       id="polygon20458" />
-    <line
-       x1="1441.61"
-       y1="491.70999"
-       x2="1441.97"
-       y2="492.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20460" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1091.26,478.18 1091.41,478.58 1101.61,481.43 "
-       id="polygon20462" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1092.14,479.49 1091.81,479.72 1102.74,482.78 "
-       id="polygon20464" />
-    <line
-       x1="1393.7"
-       y1="359.95999"
-       x2="1393.1801"
-       y2="359.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1089.19,468.63 1088.95,469.11 1099.5,472.04 "
-       id="polygon20468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.96,475.75 1091.66,476.13 1101.86,478.98 "
-       id="polygon20470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.79,469.65 1088.74,470.19 1099.29,473.13 "
-       id="polygon20472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.95,469.11 1088.79,469.65 1099.34,472.58 "
-       id="polygon20474" />
-    <polygon
-       style="opacity:1;fill:#00e900"
-       points="1103.68,485.29 1103.38,485.67 1092.45,482.61 "
-       id="polygon20476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.11,482.15 1091.25,482.55 1102.18,485.61 "
-       id="polygon20478" />
-    <line
-       x1="1372.67"
-       y1="352.29999"
-       x2="1372.21"
-       y2="351.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.21,477.69 1091.26,478.18 1101.46,481.03 "
-       id="polygon20482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1103.92,483.83 1103.88,483.43 1092.95,480.38 "
-       id="polygon20484" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1091.81,479.72 1091.51,480.1 1102.44,483.15 "
-       id="polygon20486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.66,476.13 1091.42,476.61 1101.62,479.46 "
-       id="polygon20488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.27,477.15 1091.21,477.69 1101.41,480.54 "
-       id="polygon20490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.42,476.61 1091.27,477.15 1101.46,480 "
-       id="polygon20492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.05,481.66 1091.11,482.15 1102.04,485.21 "
-       id="polygon20494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1103.88,484.26 1103.92,483.83 1092.99,480.77 "
-       id="polygon20496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.51,480.1 1091.27,480.58 1102.2,483.63 "
-       id="polygon20498" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.11,481.11 1091.05,481.66 1101.99,484.71 "
-       id="polygon20500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1103.75,484.69 1103.88,484.26 1092.94,481.21 "
-       id="polygon20502" />
-    <line
-       x1="1103.0601"
-       y1="484.22"
-       x2="1092.13"
-       y2="481.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1091.27,480.58 1091.11,481.11 1102.04,484.17 "
-       id="polygon20506" />
-    <line
-       x1="1373.6899"
-       y1="353.41"
-       x2="1373.16"
-       y2="352.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20508" />
-    <line
-       x1="1392.64"
-       y1="359.89999"
-       x2="1392.0601"
-       y2="359.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20510" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1108.95,479.46 1109.28,479.22 1097.65,475.98 "
-       id="polygon20512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1108.65,479.83 1108.95,479.46 1097.32,476.21 "
-       id="polygon20514" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1101.39,476.82 1101.05,476.89 1089.37,473.63 "
-       id="polygon20516" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1088.84,473.27 1089.07,473.53 1100.76,476.79 "
-       id="polygon20518" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1100.37,470.95 1100.7,470.88 1090.16,467.95 "
-       id="polygon20520" />
-    <line
-       x1="1374.83"
-       y1="354.42001"
-       x2="1374.24"
-       y2="353.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20522" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1103.05,485.9 1102.71,485.97 1091.79,482.91 "
-       id="polygon20524" />
-    <line
-       x1="1391.45"
-       y1="359.82001"
-       x2="1390.8199"
-       y2="359.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.69,472.87 1088.84,473.27 1100.52,476.53 "
-       id="polygon20528" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1100.04,471.19 1100.37,470.95 1089.82,468.02 "
-       id="polygon20530" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1089.39,470.44 1089.09,470.82 1100.78,474.07 "
-       id="polygon20532" />
-    <line
-       x1="1375.45"
-       y1="354.89001"
-       x2="1374.83"
-       y2="354.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.64,472.38 1088.69,472.87 1100.38,476.13 "
-       id="polygon20536" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1102.16,478.6 1102.5,478.36 1092.29,475.52 "
-       id="polygon20538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1089.09,470.82 1088.85,471.3 1100.54,474.55 "
-       id="polygon20540" />
-    <line
-       x1="1390.8199"
-       y1="359.76999"
-       x2="1390.16"
-       y2="359.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20542" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1101.84,481.7 1101.61,481.43 1091.41,478.58 "
-       id="polygon20544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.69,471.84 1088.64,472.38 1100.32,475.63 "
-       id="polygon20546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.74,471.56 1100.04,471.19 1089.49,468.26 "
-       id="polygon20548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1088.85,471.3 1088.69,471.84 1100.38,475.09 "
-       id="polygon20550" />
-    <line
-       x1="1441.04"
-       y1="489.87"
-       x2="1441.29"
-       y2="490.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.86,478.98 1102.16,478.6 1091.96,475.75 "
-       id="polygon20554" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1102.74,482.78 1103.07,482.54 1092.14,479.49 "
-       id="polygon20556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.5,472.04 1099.74,471.56 1089.19,468.63 "
-       id="polygon20558" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1101.61,481.43 1101.46,481.03 1091.26,478.18 "
-       id="polygon20560" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1102.42,485.87 1102.18,485.61 1091.25,482.55 "
-       id="polygon20562" />
-    <line
-       x1="1376.76"
-       y1="355.76999"
-       x2="1376.09"
-       y2="355.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.34,472.58 1099.5,472.04 1088.95,469.11 "
-       id="polygon20566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.29,473.13 1099.34,472.58 1088.79,469.65 "
-       id="polygon20568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.62,479.46 1101.86,478.98 1091.66,476.13 "
-       id="polygon20570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.46,481.03 1101.41,480.54 1091.21,477.69 "
-       id="polygon20572" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1102.44,483.15 1102.74,482.78 1091.81,479.72 "
-       id="polygon20574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.46,480 1101.62,479.46 1091.42,476.61 "
-       id="polygon20576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.41,480.54 1101.46,480 1091.27,477.15 "
-       id="polygon20578" />
-    <line
-       x1="1389.48"
-       y1="359.64001"
-       x2="1388.78"
-       y2="359.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20580" />
-    <line
-       x1="1377.45"
-       y1="356.17001"
-       x2="1376.76"
-       y2="355.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.18,485.61 1102.04,485.21 1091.11,482.15 "
-       id="polygon20584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.2,483.63 1102.44,483.15 1091.51,480.1 "
-       id="polygon20586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.04,485.21 1101.99,484.71 1091.05,481.66 "
-       id="polygon20588" />
-    <line
-       x1="1378.16"
-       y1="356.54999"
-       x2="1377.45"
-       y2="356.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.04,484.17 1102.2,483.63 1091.27,480.58 "
-       id="polygon20592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.99,484.71 1102.04,484.17 1091.11,481.11 "
-       id="polygon20594" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1418.09,501.85 1417.54,501.83 1415.17,504.9 "
-       id="polygon20596" />
-    <line
-       x1="1388.05"
-       y1="359.45999"
-       x2="1387.3199"
-       y2="359.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.8,322.7 1362.33,322.91 1363.07,333.64 "
-       id="polygon20600" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1419.07,502.39 1418.63,502.05 1416.25,505.12 "
-       id="polygon20602" />
-    <line
-       x1="1387.3199"
-       y1="359.35001"
-       x2="1386.5699"
-       y2="359.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20604" />
-    <line
-       x1="1440.86"
-       y1="488.85001"
-       x2="1441.04"
-       y2="489.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20606" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1419.4,502.85 1419.07,502.39 1416.7,505.46 "
-       id="polygon20608" />
-    <line
-       x1="1380.38"
-       y1="357.54999"
-       x2="1379.63"
-       y2="357.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20610" />
-    <line
-       x1="1386.5699"
-       y1="359.23001"
-       x2="1385.8"
-       y2="359.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20612" />
-    <line
-       x1="1385.8"
-       y1="359.09"
-       x2="1385.04"
-       y2="358.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20614" />
-    <line
-       x1="1381.92"
-       y1="358.09"
-       x2="1381.15"
-       y2="357.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20616" />
-    <line
-       x1="1382.7"
-       y1="358.32999"
-       x2="1381.92"
-       y2="358.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20618" />
-    <line
-       x1="1384.26"
-       y1="358.75"
-       x2="1383.48"
-       y2="358.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20620" />
-    <line
-       x1="1383.48"
-       y1="358.54999"
-       x2="1382.7"
-       y2="358.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20622" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1103.71,478.56 1103.42,478.46 1103.35,478.81 "
-       id="polygon20624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.34,472.58 1099.29,473.13 1109.86,476.07 "
-       id="polygon20626" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1101.08,473.7 1101.41,473.46 1089.72,470.21 "
-       id="polygon20628" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1100.76,476.79 1100.52,476.53 1088.84,473.27 "
-       id="polygon20630" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1100.78,474.07 1101.08,473.7 1089.39,470.44 "
-       id="polygon20632" />
-    <line
-       x1="1440.73"
-       y1="487.78"
-       x2="1440.86"
-       y2="488.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.52,476.53 1100.38,476.13 1088.69,472.87 "
-       id="polygon20636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.54,474.55 1100.78,474.07 1089.09,470.82 "
-       id="polygon20638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.38,476.13 1100.32,475.63 1088.64,472.38 "
-       id="polygon20640" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1102.36,485.33 1102.55,485.54 1102.42,485.87 "
-       id="polygon20642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.38,475.09 1100.54,474.55 1088.85,471.3 "
-       id="polygon20644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.32,475.63 1100.38,475.09 1088.69,471.84 "
-       id="polygon20646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.46,480 1101.41,480.54 1102,480.7 "
-       id="polygon20648" />
-    <line
-       x1="1440.6801"
-       y1="486.64999"
-       x2="1440.73"
-       y2="487.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20650" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1109.61,479.15 1109.28,479.22 1120.95,482.47 "
-       id="polygon20652" />
-    <line
-       x1="1101.9"
-       y1="477.39999"
-       x2="1101.89"
-       y2="477.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20654" />
-    <line
-       x1="1102.62"
-       y1="478.14001"
-       x2="1102.61"
-       y2="478.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20656" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1100.7,470.88 1100.37,470.95 1110.95,473.89 "
-       id="polygon20658" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1363.4"
-       y2="323.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.54,333.43 1364.09,333.32 1363.34,322.59 "
-       id="polygon20662" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1109.28,479.22 1108.95,479.46 1120.62,482.71 "
-       id="polygon20664" />
-    <line
-       x1="1440.6899"
-       y1="485.47"
-       x2="1440.6801"
-       y2="486.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1108.95,479.46 1108.65,479.83 1120.32,483.09 "
-       id="polygon20668" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1100.37,470.95 1100.04,471.19 1110.62,474.13 "
-       id="polygon20670" />
-    <line
-       x1="1102.39"
-       y1="477.10999"
-       x2="1102.38"
-       y2="477.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.04,471.19 1099.74,471.56 1110.32,474.5 "
-       id="polygon20674" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1415.17,504.9 1415.72,504.92 1418.09,501.85 "
-       id="polygon20676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.74,471.56 1099.5,472.04 1110.08,474.98 "
-       id="polygon20678" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1415.72,504.92 1416.25,505.12 1418.63,502.05 "
-       id="polygon20680" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1102.2,481.6 1102.43,481.86 1113.69,485 "
-       id="polygon20682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1099.5,472.04 1099.34,472.58 1109.92,475.52 "
-       id="polygon20684" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="1417.03,505.92 1417.21,506.45 1419.57,503.38 "
-       id="polygon20686" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1103.09,478.53 1102.76,478.77 1114.02,481.9 "
-       id="polygon20688" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1102.05,481.2 1102.2,481.6 1113.46,484.74 "
-       id="polygon20690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.38,475.09 1100.32,475.63 1100.92,475.8 "
-       id="polygon20692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.76,478.77 1102.46,479.14 1113.71,482.28 "
-       id="polygon20694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102,480.7 1102.05,481.2 1113.31,484.34 "
-       id="polygon20696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.46,479.14 1102.21,479.62 1113.47,482.76 "
-       id="polygon20698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.06,480.16 1102,480.7 1113.26,483.85 "
-       id="polygon20700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1102.21,479.62 1102.06,480.16 1113.32,483.3 "
-       id="polygon20702" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1110.95,473.89 1111.28,473.82 1100.7,470.88 "
-       id="polygon20704" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1120.62,482.71 1120.95,482.47 1109.28,479.22 "
-       id="polygon20706" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1110.62,474.13 1110.95,473.89 1100.37,470.95 "
-       id="polygon20708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.32,483.09 1120.62,482.71 1108.95,479.46 "
-       id="polygon20710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1110.32,474.5 1110.62,474.13 1100.04,471.19 "
-       id="polygon20712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.07,483.57 1120.32,483.09 1108.65,479.83 "
-       id="polygon20714" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1114.34,481.67 1114.68,481.6 1103.42,478.46 "
-       id="polygon20716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1110.08,474.98 1110.32,474.5 1099.74,471.56 "
-       id="polygon20718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1109.92,475.52 1110.08,474.98 1099.5,472.04 "
-       id="polygon20720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1109.86,476.07 1109.92,475.52 1099.34,472.58 "
-       id="polygon20722" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1114.02,481.9 1114.34,481.67 1103.09,478.53 "
-       id="polygon20724" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1113.69,485 1113.46,484.74 1102.2,481.6 "
-       id="polygon20726" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1101.12,476.69 1101.35,476.96 1114.52,480.63 "
-       id="polygon20728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.71,482.28 1114.02,481.9 1102.76,478.77 "
-       id="polygon20730" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1113.46,484.74 1113.31,484.34 1102.05,481.2 "
-       id="polygon20732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.47,482.76 1113.71,482.28 1102.46,479.14 "
-       id="polygon20734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.31,484.34 1113.26,483.85 1102,480.7 "
-       id="polygon20736" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.97,476.29 1101.12,476.69 1114.28,480.36 "
-       id="polygon20738" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.32,483.3 1113.47,482.76 1102.21,479.62 "
-       id="polygon20740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.26,483.85 1113.32,483.3 1102.06,480.16 "
-       id="polygon20742" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1101.68,473.86 1101.38,474.23 1114.54,477.9 "
-       id="polygon20744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.92,475.8 1100.97,476.29 1114.13,479.96 "
-       id="polygon20746" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1414.8,505.36 1414.45,505.61 1414.19,505.34 "
-       id="polygon20748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.38,474.23 1101.13,474.71 1114.3,478.38 "
-       id="polygon20750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1100.98,475.25 1100.92,475.8 1114.08,479.46 "
-       id="polygon20752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1101.13,474.71 1100.98,475.25 1114.14,478.92 "
-       id="polygon20754" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1416.25,505.12 1416.7,505.46 1416.45,505.7 "
-       id="polygon20756" />
-    <line
-       x1="1569.62"
-       y1="551.53003"
-       x2="1569.62"
-       y2="551.53003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20758" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1570.57,550.56 1570.14,550.46 1561.21,550.51 "
-       id="polygon20760" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1364.64,333.32 1364.09,333.32 1364.83,344.09 "
-       id="polygon20762" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1571.49,551.75 1571.29,551.24 1562.36,551.29 "
-       id="polygon20764" />
-    <line
-       x1="1569.21"
-       y1="550.92999"
-       x2="1569.21"
-       y2="550.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20766" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1570.97,553.74 1571.28,553.36 1562.36,553.41 "
-       id="polygon20768" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1571.48,552.86 1571.55,552.3 1562.63,552.36 "
-       id="polygon20770" />
-    <line
-       x1="1442.96"
-       y1="476.37"
-       x2="1442.4"
-       y2="477.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20772" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1114.52,480.63 1114.28,480.36 1101.12,476.69 "
-       id="polygon20774" />
-    <line
-       x1="1360.91"
-       y1="318.69"
-       x2="1363.4"
-       y2="323.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20776" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1114.54,477.9 1114.84,477.52 1101.68,473.86 "
-       id="polygon20778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.28,480.36 1114.13,479.96 1100.97,476.29 "
-       id="polygon20780" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1111.28,473.82 1110.95,473.89 1121.56,476.84 "
-       id="polygon20782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.3,478.38 1114.54,477.9 1101.38,474.23 "
-       id="polygon20784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.13,479.96 1114.08,479.46 1100.92,475.8 "
-       id="polygon20786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.14,478.92 1114.3,478.38 1101.13,474.71 "
-       id="polygon20788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.08,479.46 1114.14,478.92 1100.98,475.25 "
-       id="polygon20790" />
-    <line
-       x1="1443.61"
-       y1="475.01999"
-       x2="1442.96"
-       y2="476.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20792" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1110.95,473.89 1110.62,474.13 1121.23,477.08 "
-       id="polygon20794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1110.62,474.13 1110.32,474.5 1120.93,477.45 "
-       id="polygon20796" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1120.95,482.47 1120.62,482.71 1132.32,485.97 "
-       id="polygon20798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1110.32,474.5 1110.08,474.98 1120.69,477.93 "
-       id="polygon20800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1109.92,475.52 1109.86,476.07 1120.48,479.02 "
-       id="polygon20802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1110.08,474.98 1109.92,475.52 1120.53,478.48 "
-       id="polygon20804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.62,482.71 1120.32,483.09 1132.02,486.35 "
-       id="polygon20806" />
-    <line
-       x1="1444.34"
-       y1="473.67001"
-       x2="1443.61"
-       y2="475.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20808" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1114.68,481.6 1114.34,481.67 1125.64,484.82 "
-       id="polygon20810" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1113.46,484.74 1113.69,485 1124.98,488.16 "
-       id="polygon20812" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1366.35,344.43 1366.65,344.74 1365.91,333.97 "
-       id="polygon20814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.45,344.71 1363.81,344.41 1363.07,333.64 "
-       id="polygon20816" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1114.34,481.67 1114.02,481.9 1125.31,485.05 "
-       id="polygon20818" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1416.25,505.12 1415.72,504.92 1413.34,508.01 "
-       id="polygon20820" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1416.7,505.46 1416.25,505.12 1413.87,508.2 "
-       id="polygon20822" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1113.31,484.34 1113.46,484.74 1124.75,487.89 "
-       id="polygon20824" />
-    <polygon
-       style="opacity:1;fill:#00d000"
-       points="1417.21,507 1417.21,506.45 1414.82,509.54 "
-       id="polygon20826" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1562.36,553.41 1562.04,553.8 1570.97,553.74 "
-       id="polygon20828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.02,481.9 1113.71,482.28 1125.01,485.43 "
-       id="polygon20830" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1365.39,344.09 1365.91,344.21 1365.17,333.44 "
-       id="polygon20832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.29,344.2 1364.83,344.09 1364.09,333.32 "
-       id="polygon20834" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1562.36,551.29 1562.56,551.8 1571.49,551.75 "
-       id="polygon20836" />
-    <line
-       x1="1445.14"
-       y1="472.34"
-       x2="1444.34"
-       y2="473.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.26,483.85 1113.31,484.34 1124.6,487.5 "
-       id="polygon20840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.71,482.28 1113.47,482.76 1124.77,485.91 "
-       id="polygon20842" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1562.63,552.36 1562.56,552.91 1571.48,552.86 "
-       id="polygon20844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.32,483.3 1113.26,483.85 1124.55,487 "
-       id="polygon20846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1113.47,482.76 1113.32,483.3 1124.61,486.45 "
-       id="polygon20848" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1121.56,476.84 1121.89,476.77 1111.28,473.82 "
-       id="polygon20850" />
-    <line
-       x1="1446.02"
-       y1="471.01999"
-       x2="1445.14"
-       y2="472.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20852" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1114.52,480.63 1114.28,480.36 1114.46,480.08 "
-       id="polygon20854" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1121.23,477.08 1121.56,476.84 1110.95,473.89 "
-       id="polygon20856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.93,477.45 1121.23,477.08 1110.62,474.13 "
-       id="polygon20858" />
-    <line
-       x1="1446.98"
-       y1="469.73001"
-       x2="1446.02"
-       y2="471.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.69,477.93 1120.93,477.45 1110.32,474.5 "
-       id="polygon20862" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1132.32,485.97 1132.66,485.73 1120.95,482.47 "
-       id="polygon20864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.53,478.48 1120.69,477.93 1110.08,474.98 "
-       id="polygon20866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.48,479.02 1120.53,478.48 1109.92,475.52 "
-       id="polygon20868" />
-    <line
-       x1="1517.4301"
-       y1="468.01999"
-       x2="1514.8199"
-       y2="465.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20870" />
-    <line
-       x1="1519.86"
-       y1="470.72"
-       x2="1517.4301"
-       y2="468.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20872" />
-    <line
-       x1="1514.8199"
-       y1="465.51999"
-       x2="1512.0601"
-       y2="463.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20874" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="1363.36,345.79 1363.21,345.43 1363.57,345.4 "
-       id="polygon20876" />
-    <line
-       x1="1522.11"
-       y1="473.59"
-       x2="1519.86"
-       y2="470.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20878" />
-    <line
-       x1="1512.0601"
-       y1="463.20999"
-       x2="1509.15"
-       y2="461.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20880" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1125.64,484.82 1125.97,484.75 1114.68,481.6 "
-       id="polygon20882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1132.02,486.35 1132.32,485.97 1120.62,482.71 "
-       id="polygon20884" />
-    <line
-       x1="1524.16"
-       y1="476.60999"
-       x2="1522.11"
-       y2="473.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20886" />
-    <line
-       x1="1509.15"
-       y1="461.12"
-       x2="1506.1"
-       y2="459.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20888" />
-    <line
-       x1="1448.02"
-       y1="468.45999"
-       x2="1446.98"
-       y2="469.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20890" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1125.31,485.05 1125.64,484.82 1114.34,481.67 "
-       id="polygon20892" />
-    <line
-       x1="1506.1"
-       y1="459.25"
-       x2="1502.9399"
-       y2="457.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20894" />
-    <line
-       x1="1526"
-       y1="479.76999"
-       x2="1524.16"
-       y2="476.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20896" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1124.98,488.16 1124.75,487.89 1113.46,484.74 "
-       id="polygon20898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1125.01,485.43 1125.31,485.05 1114.02,481.9 "
-       id="polygon20900" />
-    <line
-       x1="1502.9399"
-       y1="457.63"
-       x2="1499.67"
-       y2="456.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20902" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1124.75,487.89 1124.6,487.5 1113.31,484.34 "
-       id="polygon20904" />
-    <line
-       x1="1527.64"
-       y1="483.04999"
-       x2="1526"
-       y2="479.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.77,485.91 1125.01,485.43 1113.71,482.28 "
-       id="polygon20908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.6,487.5 1124.55,487 1113.26,483.85 "
-       id="polygon20910" />
-    <line
-       x1="1499.67"
-       y1="456.26001"
-       x2="1496.3199"
-       y2="455.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.61,486.45 1124.77,485.91 1113.47,482.76 "
-       id="polygon20914" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.55,487 1124.61,486.45 1113.32,483.3 "
-       id="polygon20916" />
-    <line
-       x1="1529.05"
-       y1="486.42999"
-       x2="1527.64"
-       y2="483.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20918" />
-    <line
-       x1="1496.3199"
-       y1="455.14001"
-       x2="1492.9"
-       y2="454.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20920" />
-    <line
-       x1="1450.3199"
-       y1="466.04999"
-       x2="1449.13"
-       y2="467.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20922" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="1411.8,508.43 1412.25,508.13 1414.64,505.04 "
-       id="polygon20924" />
-    <line
-       x1="1492.9"
-       y1="454.29001"
-       x2="1489.4301"
-       y2="453.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20926" />
-    <line
-       x1="1530.25"
-       y1="489.89001"
-       x2="1529.05"
-       y2="486.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20928" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1412.78,507.98 1413.34,508.01 1415.72,504.92 "
-       id="polygon20930" />
-    <line
-       x1="1451.5699"
-       y1="464.91"
-       x2="1450.3199"
-       y2="466.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20932" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1114.28,480.36 1114.52,480.63 1127.73,484.3 "
-       id="polygon20934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.53,478.48 1120.48,479.02 1131.12,481.98 "
-       id="polygon20936" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1115.17,477.29 1114.84,477.52 1128.05,481.2 "
-       id="polygon20938" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1414.32,508.55 1414.65,509.01 1417.03,505.92 "
-       id="polygon20940" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="1414.65,509.01 1414.82,509.54 1417.21,506.45 "
-       id="polygon20942" />
-    <line
-       x1="1489.4301"
-       y1="453.70001"
-       x2="1485.92"
-       y2="453.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.13,479.96 1114.28,480.36 1127.49,484.04 "
-       id="polygon20946" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1114.84,477.52 1114.54,477.9 1127.75,481.57 "
-       id="polygon20948" />
-    <line
-       x1="1531.21"
-       y1="493.39999"
-       x2="1530.25"
-       y2="489.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20950" />
-    <line
-       x1="1452.88"
-       y1="463.82001"
-       x2="1451.5699"
-       y2="464.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.08,479.46 1114.13,479.96 1127.35,483.64 "
-       id="polygon20954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.54,477.9 1114.3,478.38 1127.51,482.06 "
-       id="polygon20956" />
-    <line
-       x1="1485.92"
-       y1="453.38"
-       x2="1482.4"
-       y2="453.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.14,478.92 1114.08,479.46 1127.3,483.14 "
-       id="polygon20960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1114.3,478.38 1114.14,478.92 1127.36,482.6 "
-       id="polygon20962" />
-    <line
-       x1="1454.27"
-       y1="462.79999"
-       x2="1452.88"
-       y2="463.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20964" />
-    <line
-       x1="1482.4"
-       y1="453.34"
-       x2="1478.88"
-       y2="453.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20966" />
-    <line
-       x1="1531.95"
-       y1="496.95001"
-       x2="1531.21"
-       y2="493.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20968" />
-    <line
-       x1="1455.7"
-       y1="461.82999"
-       x2="1454.27"
-       y2="462.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20970" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1364.1,356.6 1363.96,356.24 1363.21,345.43 "
-       id="polygon20972" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1363.45,344.71 1363.25,345.06 1363.99,355.87 "
-       id="polygon20974" />
-    <line
-       x1="1478.88"
-       y1="453.57001"
-       x2="1475.39"
-       y2="454.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20976" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1562.56,551.8 1562.36,551.29 1553.4,551.34 "
-       id="polygon20978" />
-    <line
-       x1="1475.39"
-       y1="454.07001"
-       x2="1471.9301"
-       y2="454.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20980" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1366.65,344.74 1366.35,344.43 1367.1,355.25 "
-       id="polygon20982" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1562.04,553.8 1562.36,553.41 1553.39,553.46 "
-       id="polygon20984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.29,344.2 1363.81,344.41 1364.55,355.22 "
-       id="polygon20986" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1121.56,476.84 1121.23,477.08 1131.88,480.04 "
-       id="polygon20988" />
-    <line
-       x1="1532.46"
-       y1="500.51999"
-       x2="1531.95"
-       y2="496.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20990" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1562.56,552.91 1562.63,552.36 1553.67,552.41 "
-       id="polygon20992" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1366.35,344.43 1365.91,344.21 1366.66,355.02 "
-       id="polygon20994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.83,344.09 1364.29,344.2 1365.03,355.01 "
-       id="polygon20996" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1365.91,344.21 1365.39,344.09 1366.14,354.9 "
-       id="polygon20998" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1365.39,344.09 1364.83,344.09 1365.57,354.9 "
-       id="polygon21000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1121.23,477.08 1120.93,477.45 1131.57,480.41 "
-       id="polygon21002" />
-    <line
-       x1="1471.9301"
-       y1="454.84"
-       x2="1468.53"
-       y2="455.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.93,477.45 1120.69,477.93 1131.33,480.89 "
-       id="polygon21006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1143.53,490.11 1143.77,489.63 1132.02,486.35 "
-       id="polygon21008" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1126.5,485.11 1126.27,484.85 1137.6,488.01 "
-       id="polygon21010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1120.69,477.93 1120.53,478.48 1131.18,481.44 "
-       id="polygon21012" />
-    <line
-       x1="1468.53"
-       y1="455.85999"
-       x2="1465.2"
-       y2="457.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21014" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1132.98,485.66 1132.66,485.73 1144.4,489.01 "
-       id="polygon21016" />
-    <line
-       x1="1532.73"
-       y1="504.09"
-       x2="1532.46"
-       y2="500.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21018" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1127.73,484.3 1127.49,484.04 1114.28,480.36 "
-       id="polygon21020" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1132.66,485.73 1132.32,485.97 1144.07,489.25 "
-       id="polygon21022" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1127.75,481.57 1128.05,481.2 1114.84,477.52 "
-       id="polygon21024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.49,484.04 1127.35,483.64 1114.13,479.96 "
-       id="polygon21026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1132.32,485.97 1132.02,486.35 1143.77,489.63 "
-       id="polygon21028" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1124.75,487.89 1124.98,488.16 1136.31,491.32 "
-       id="polygon21030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.51,482.06 1127.75,481.57 1114.54,477.9 "
-       id="polygon21032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.35,483.64 1127.3,483.14 1114.08,479.46 "
-       id="polygon21034" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1125.64,484.82 1125.31,485.05 1136.64,488.21 "
-       id="polygon21036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.36,482.6 1127.51,482.06 1114.3,478.38 "
-       id="polygon21038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.3,483.14 1127.36,482.6 1114.14,478.92 "
-       id="polygon21040" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1124.6,487.5 1124.75,487.89 1136.08,491.06 "
-       id="polygon21042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1125.31,485.05 1125.01,485.43 1136.34,488.59 "
-       id="polygon21044" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1132.21,479.8 1132.54,479.73 1121.89,476.77 "
-       id="polygon21046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.55,487 1124.6,487.5 1135.93,490.66 "
-       id="polygon21048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1414.34,509.16 1414.47,509.58 1414.82,509.54 "
-       id="polygon21050" />
-    <line
-       x1="1532.78"
-       y1="507.63"
-       x2="1532.73"
-       y2="504.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1125.01,485.43 1124.77,485.91 1136.1,489.07 "
-       id="polygon21054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.61,486.45 1124.55,487 1135.88,490.16 "
-       id="polygon21056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1124.77,485.91 1124.61,486.45 1135.94,489.62 "
-       id="polygon21058" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1131.88,480.04 1132.21,479.8 1121.56,476.84 "
-       id="polygon21060" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1367.4,355.55 1367.55,355.9 1366.8,345.09 "
-       id="polygon21062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.57,480.41 1131.88,480.04 1121.23,477.08 "
-       id="polygon21064" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1553.39,553.46 1553.08,553.85 1562.04,553.8 "
-       id="polygon21066" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1553.4,551.34 1553.6,551.85 1562.56,551.8 "
-       id="polygon21068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.2,355.52 1364.55,355.22 1363.81,344.41 "
-       id="polygon21070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.33,480.89 1131.57,480.41 1120.93,477.45 "
-       id="polygon21072" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1553.67,552.41 1553.6,552.97 1562.56,552.91 "
-       id="polygon21074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.18,481.44 1131.33,480.89 1120.69,477.93 "
-       id="polygon21076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.12,481.98 1131.18,481.44 1120.53,478.48 "
-       id="polygon21078" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1366.66,355.02 1367.1,355.25 1366.35,344.43 "
-       id="polygon21080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.55,355.22 1365.03,355.01 1364.29,344.2 "
-       id="polygon21082" />
-    <line
-       x1="1532.6"
-       y1="511.12"
-       x2="1532.78"
-       y2="507.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21084" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1366.14,354.9 1366.66,355.02 1365.91,344.21 "
-       id="polygon21086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.03,355.01 1365.57,354.9 1364.83,344.09 "
-       id="polygon21088" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1365.57,354.9 1366.14,354.9 1365.39,344.09 "
-       id="polygon21090" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1144.07,489.25 1144.4,489.01 1132.66,485.73 "
-       id="polygon21092" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1136.97,487.98 1137.3,487.91 1125.97,484.75 "
-       id="polygon21094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1143.77,489.63 1144.07,489.25 1132.32,485.97 "
-       id="polygon21096" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1136.64,488.21 1136.97,487.98 1125.64,484.82 "
-       id="polygon21098" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1136.34,488.59 1136.64,488.21 1125.31,485.05 "
-       id="polygon21100" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1136.08,491.06 1135.93,490.66 1124.6,487.5 "
-       id="polygon21102" />
-    <line
-       x1="1532.2"
-       y1="514.53998"
-       x2="1532.6"
-       y2="511.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1136.1,489.07 1136.34,488.59 1125.01,485.43 "
-       id="polygon21106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1135.93,490.66 1135.88,490.16 1124.55,487 "
-       id="polygon21108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1135.94,489.62 1136.1,489.07 1124.77,485.91 "
-       id="polygon21110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1135.88,490.16 1135.94,489.62 1124.61,486.45 "
-       id="polygon21112" />
-    <line
-       x1="1360.49"
-       y1="317.63"
-       x2="1360.13"
-       y2="316.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21114" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1412.78,507.98 1412.25,508.13 1409.86,511.23 "
-       id="polygon21116" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1413.34,508.01 1412.78,507.98 1410.38,511.09 "
-       id="polygon21118" />
-    <line
-       x1="1531.58"
-       y1="517.88"
-       x2="1532.2"
-       y2="514.53998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21120" />
-    <line
-       x1="1360.13"
-       y1="316.54999"
-       x2="1359.8199"
-       y2="315.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21122" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1413.87,508.2 1413.34,508.01 1410.94,511.11 "
-       id="polygon21124" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="1414.82,509.54 1414.65,509.01 1412.26,512.11 "
-       id="polygon21126" />
-    <line
-       x1="1359.8199"
-       y1="315.45001"
-       x2="1359.59"
-       y2="314.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21128" />
-    <line
-       x1="1359.59"
-       y1="314.34"
-       x2="1359.4301"
-       y2="313.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21130" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1132.54,479.73 1132.21,479.8 1142.88,482.77 "
-       id="polygon21132" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1127.49,484.04 1127.73,484.3 1140.99,488 "
-       id="polygon21134" />
-    <line
-       x1="1359.4301"
-       y1="313.22"
-       x2="1359.3199"
-       y2="312.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.18,481.44 1131.12,481.98 1141.8,484.95 "
-       id="polygon21138" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1128.39,480.96 1128.05,481.2 1141.32,484.89 "
-       id="polygon21140" />
-    <line
-       x1="1530.76"
-       y1="521.09998"
-       x2="1531.58"
-       y2="517.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21142" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1132.21,479.8 1131.88,480.04 1142.55,483 "
-       id="polygon21144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.35,483.64 1127.49,484.04 1140.76,487.74 "
-       id="polygon21146" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1128.05,481.2 1127.75,481.57 1141.02,485.27 "
-       id="polygon21148" />
-    <line
-       x1="1359.3199"
-       y1="312.09"
-       x2="1359.29"
-       y2="310.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.3,483.14 1127.35,483.64 1140.61,487.34 "
-       id="polygon21152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.88,480.04 1131.57,480.41 1142.25,483.38 "
-       id="polygon21154" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.75,481.57 1127.51,482.06 1140.78,485.75 "
-       id="polygon21156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.36,482.6 1127.3,483.14 1140.56,486.84 "
-       id="polygon21158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1127.51,482.06 1127.36,482.6 1140.62,486.29 "
-       id="polygon21160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.57,480.41 1131.33,480.89 1142.01,483.86 "
-       id="polygon21162" />
-    <line
-       x1="1560.25"
-       y1="538.07001"
-       x2="1569.21"
-       y2="550.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1131.33,480.89 1131.18,481.44 1141.86,484.41 "
-       id="polygon21166" />
-    <line
-       x1="1359.29"
-       y1="310.95999"
-       x2="1359.3199"
-       y2="309.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21168" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1367.31,356.63 1367.51,356.27 1368.27,367.13 "
-       id="polygon21170" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1137.83,488.27 1137.6,488.01 1148.96,491.18 "
-       id="polygon21172" />
-    <line
-       x1="1359.3199"
-       y1="309.84"
-       x2="1359.42"
-       y2="308.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21174" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1553.6,551.85 1553.4,551.34 1544.4,551.39 "
-       id="polygon21176" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1364.85,367.45 1364.7,367.09 1363.96,356.24 "
-       id="polygon21178" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1364.2,355.52 1363.99,355.87 1364.74,366.72 "
-       id="polygon21180" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1553.08,553.85 1553.39,553.46 1544.4,553.52 "
-       id="polygon21182" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1553.6,552.97 1553.67,552.41 1544.67,552.46 "
-       id="polygon21184" />
-    <line
-       x1="1359.42"
-       y1="308.72"
-       x2="1359.58"
-       y2="307.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21186" />
-    <line
-       x1="1529.73"
-       y1="524.20001"
-       x2="1530.76"
-       y2="521.09998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.55,355.22 1364.2,355.52 1364.95,366.37 "
-       id="polygon21190" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1367.4,355.55 1367.1,355.25 1367.85,366.1 "
-       id="polygon21192" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1137.3,487.91 1136.97,487.98 1148.34,491.15 "
-       id="polygon21194" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1144.4,489.01 1144.07,489.25 1155.86,492.53 "
-       id="polygon21196" />
-    <line
-       x1="1359.58"
-       y1="307.62"
-       x2="1359.8101"
-       y2="306.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21198" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1148.3,494.53 1147.98,494.6 1136.61,491.42 "
-       id="polygon21200" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1136.08,491.06 1136.31,491.32 1147.68,494.5 "
-       id="polygon21202" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1142.88,482.77 1143.21,482.7 1132.54,479.73 "
-       id="polygon21204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.57,354.9 1365.03,355.01 1365.78,365.86 "
-       id="polygon21206" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1366.66,355.02 1366.14,354.9 1366.89,365.75 "
-       id="polygon21208" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1136.97,487.98 1136.64,488.21 1148.01,491.38 "
-       id="polygon21210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1144.07,489.25 1143.77,489.63 1155.56,492.91 "
-       id="polygon21212" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1135.93,490.66 1136.08,491.06 1147.45,494.23 "
-       id="polygon21214" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1142.55,483 1142.88,482.77 1132.21,479.8 "
-       id="polygon21216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1136.64,488.21 1136.34,488.59 1147.71,491.76 "
-       id="polygon21218" />
-    <line
-       x1="1359.8101"
-       y1="306.53"
-       x2="1360.1"
-       y2="305.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21220" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1409.86,511.23 1410.38,511.09 1412.78,507.98 "
-       id="polygon21222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1135.88,490.16 1135.93,490.66 1147.3,493.84 "
-       id="polygon21224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1136.34,488.59 1136.1,489.07 1147.46,492.25 "
-       id="polygon21226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1135.94,489.62 1135.88,490.16 1147.25,493.34 "
-       id="polygon21228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1142.25,483.38 1142.55,483 1131.88,480.04 "
-       id="polygon21230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1136.1,489.07 1135.94,489.62 1147.31,492.79 "
-       id="polygon21232" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1411.47,511.31 1411.93,511.65 1414.32,508.55 "
-       id="polygon21234" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1411.93,511.65 1412.26,512.11 1414.65,509.01 "
-       id="polygon21236" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1140.99,488 1140.76,487.74 1127.49,484.04 "
-       id="polygon21238" />
-    <line
-       x1="1360.1"
-       y1="305.45999"
-       x2="1360.46"
-       y2="304.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1142.01,483.86 1142.25,483.38 1131.57,480.41 "
-       id="polygon21242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1141.86,484.41 1142.01,483.86 1131.33,480.89 "
-       id="polygon21244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1141.8,484.95 1141.86,484.41 1131.18,481.44 "
-       id="polygon21246" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1141.02,485.27 1141.32,484.89 1128.05,481.2 "
-       id="polygon21248" />
-    <line
-       x1="1528.52"
-       y1="527.15997"
-       x2="1529.73"
-       y2="524.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.76,487.74 1140.61,487.34 1127.35,483.64 "
-       id="polygon21252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.78,485.75 1141.02,485.27 1127.75,481.57 "
-       id="polygon21254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.61,487.34 1140.56,486.84 1127.3,483.14 "
-       id="polygon21256" />
-    <line
-       x1="1360.46"
-       y1="304.42001"
-       x2="1360.87"
-       y2="303.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.62,486.29 1140.78,485.75 1127.51,482.06 "
-       id="polygon21260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.56,486.84 1140.62,486.29 1127.36,482.6 "
-       id="polygon21262" />
-    <line
-       x1="1360.87"
-       y1="303.39999"
-       x2="1361.34"
-       y2="302.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21264" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1156.19,492.29 1156.52,492.22 1144.73,488.94 "
-       id="polygon21266" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1544.4,551.39 1544.61,551.9 1553.6,551.85 "
-       id="polygon21268" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1544.6,553.02 1544.4,553.52 1553.39,553.46 "
-       id="polygon21270" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1364.74,366.72 1364.95,366.37 1364.2,355.52 "
-       id="polygon21272" />
-    <line
-       x1="1361.34"
-       y1="302.42001"
-       x2="1361.87"
-       y2="301.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21274" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1155.86,492.53 1156.19,492.29 1144.4,489.01 "
-       id="polygon21276" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1148.01,491.38 1148.34,491.15 1136.97,487.98 "
-       id="polygon21278" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1147.68,494.5 1147.45,494.23 1136.08,491.06 "
-       id="polygon21280" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1367.85,366.1 1368.16,366.4 1367.4,355.55 "
-       id="polygon21282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1155.56,492.91 1155.86,492.53 1144.07,489.25 "
-       id="polygon21284" />
-    <line
-       x1="1527.13"
-       y1="529.95001"
-       x2="1528.52"
-       y2="527.15997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.71,491.76 1148.01,491.38 1136.64,488.21 "
-       id="polygon21288" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1367.41,365.88 1367.85,366.1 1367.1,355.25 "
-       id="polygon21290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.3,366.07 1365.78,365.86 1365.03,355.01 "
-       id="polygon21292" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1147.45,494.23 1147.3,493.84 1135.93,490.66 "
-       id="polygon21294" />
-    <line
-       x1="1361.87"
-       y1="301.47"
-       x2="1362.45"
-       y2="300.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.46,492.25 1147.71,491.76 1136.34,488.59 "
-       id="polygon21298" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1366.32,365.75 1366.89,365.75 1366.14,354.9 "
-       id="polygon21300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.3,493.84 1147.25,493.34 1135.88,490.16 "
-       id="polygon21302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.31,492.79 1147.46,492.25 1136.1,489.07 "
-       id="polygon21304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.25,493.34 1147.31,492.79 1135.94,489.62 "
-       id="polygon21306" />
-    <line
-       x1="1362.45"
-       y1="300.56"
-       x2="1363.08"
-       y2="299.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21308" />
-    <line
-       x1="1363.08"
-       y1="299.70001"
-       x2="1363.76"
-       y2="298.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.86,511.23 1409.4,511.54 1409.66,511.8 "
-       id="polygon21312" />
-    <line
-       x1="1525.5699"
-       y1="532.56"
-       x2="1527.13"
-       y2="529.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.93,511.65 1411.47,511.31 1411.31,511.61 "
-       id="polygon21316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1148.08,488.86 1148.28,488.47 1142.32,486.82 "
-       id="polygon21318" />
-    <line
-       x1="1364.48"
-       y1="298.10001"
-       x2="1365.25"
-       y2="297.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21320" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.61,487.34 1140.76,487.74 1146.71,489.4 "
-       id="polygon21322" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1142.88,482.77 1142.55,483 1154.25,486.25 "
-       id="polygon21324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1141.8,484.95 1141.84,485.45 1153.54,488.71 "
-       id="polygon21326" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1153.69,489.11 1153.54,488.71 1141.84,485.45 "
-       id="polygon21328" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1141.32,484.89 1141.02,485.27 1146.98,486.93 "
-       id="polygon21330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.56,486.84 1140.61,487.34 1146.57,489 "
-       id="polygon21332" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1153.92,489.37 1153.69,489.11 1141.99,485.85 "
-       id="polygon21334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1141.02,485.27 1140.78,485.75 1146.73,487.41 "
-       id="polygon21336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.62,486.29 1140.56,486.84 1146.52,488.5 "
-       id="polygon21338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1142.55,483 1142.25,483.38 1153.95,486.63 "
-       id="polygon21340" />
-    <line
-       x1="1147.59"
-       y1="488"
-       x2="1141.63"
-       y2="486.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1140.78,485.75 1140.62,486.29 1146.58,487.95 "
-       id="polygon21344" />
-    <line
-       x1="1365.25"
-       y1="297.38"
-       x2="1366.05"
-       y2="296.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1142.25,483.38 1142.01,483.86 1153.71,487.12 "
-       id="polygon21348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1141.86,484.41 1141.8,484.95 1153.5,488.21 "
-       id="polygon21350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1142.01,483.86 1141.86,484.41 1153.55,487.66 "
-       id="polygon21352" />
-    <line
-       x1="1523.85"
-       y1="534.97998"
-       x2="1525.5699"
-       y2="532.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21354" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1146.95,489.66 1146.71,489.4 1140.76,487.74 "
-       id="polygon21356" />
-    <line
-       x1="1366.05"
-       y1="296.72"
-       x2="1366.89"
-       y2="296.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.54,488.71 1153.5,488.21 1141.8,484.95 "
-       id="polygon21360" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1146.98,486.93 1147.28,486.55 1141.32,484.89 "
-       id="polygon21362" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1157.04,492.59 1156.81,492.32 1168.64,495.62 "
-       id="polygon21364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1146.71,489.4 1146.57,489 1140.61,487.34 "
-       id="polygon21366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1146.73,487.41 1146.98,486.93 1141.02,485.27 "
-       id="polygon21368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1146.57,489 1146.52,488.5 1140.56,486.84 "
-       id="polygon21370" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1147.31,489.41 1147.58,489.35 1147.57,489.69 "
-       id="polygon21372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1146.58,487.95 1146.73,487.41 1140.78,485.75 "
-       id="polygon21374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1146.52,488.5 1146.58,487.95 1140.62,486.29 "
-       id="polygon21376" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1148.67,491.07 1148.34,491.15 1159.74,494.33 "
-       id="polygon21378" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1147.45,494.23 1147.68,494.5 1159.08,497.68 "
-       id="polygon21380" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1154.58,486.02 1154.91,485.95 1143.21,482.7 "
-       id="polygon21382" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1147.28,486.55 1147.61,486.31 1147.61,486.65 "
-       id="polygon21384" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1148.34,491.15 1148.01,491.38 1159.41,494.56 "
-       id="polygon21386" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1544.61,551.9 1544.4,551.39 1535.38,551.44 "
-       id="polygon21388" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1156.19,492.29 1155.86,492.53 1167.68,495.83 "
-       id="polygon21390" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1147.3,493.84 1147.45,494.23 1158.85,497.42 "
-       id="polygon21392" />
-    <line
-       x1="1367.76"
-       y1="295.56"
-       x2="1368.65"
-       y2="295.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21394" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1154.25,486.25 1154.58,486.02 1142.88,482.77 "
-       id="polygon21396" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1544.6,553.02 1544.67,552.46 1535.64,552.52 "
-       id="polygon21398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1148.01,491.38 1147.71,491.76 1159.11,494.95 "
-       id="polygon21400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1155.86,492.53 1155.56,492.91 1167.39,496.21 "
-       id="polygon21402" />
-    <line
-       x1="1521.99"
-       y1="537.17999"
-       x2="1523.85"
-       y2="534.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21404" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.25,493.34 1147.3,493.84 1158.7,497.02 "
-       id="polygon21406" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.71,491.76 1147.46,492.25 1158.87,495.43 "
-       id="polygon21408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.95,486.63 1154.25,486.25 1142.55,483 "
-       id="polygon21410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.31,492.79 1147.25,493.34 1158.66,496.52 "
-       id="polygon21412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1147.46,492.25 1147.31,492.79 1158.71,495.97 "
-       id="polygon21414" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1368.3,366.76 1368.16,366.4 1368.91,377.3 "
-       id="polygon21416" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1410.94,511.11 1410.38,511.09 1407.97,514.2 "
-       id="polygon21418" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.3,366.07 1364.95,366.37 1365.69,377.27 "
-       id="polygon21420" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.71,487.12 1153.95,486.63 1142.25,483.38 "
-       id="polygon21422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.55,487.66 1153.71,487.12 1142.01,483.86 "
-       id="polygon21424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.5,488.21 1153.55,487.66 1141.86,484.41 "
-       id="polygon21426" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1412.26,512.11 1411.93,511.65 1409.52,514.77 "
-       id="polygon21428" />
-    <polygon
-       style="opacity:1;fill:#00bc00"
-       points="1412.43,512.65 1412.26,512.11 1409.85,515.23 "
-       id="polygon21430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.78,365.86 1365.3,366.07 1366.05,376.97 "
-       id="polygon21432" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1367.85,366.1 1367.41,365.88 1368.17,376.77 "
-       id="polygon21434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.32,365.75 1365.78,365.86 1366.53,376.75 "
-       id="polygon21436" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1367.41,365.88 1366.89,365.75 1367.64,376.65 "
-       id="polygon21438" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1366.89,365.75 1366.32,365.75 1367.08,376.64 "
-       id="polygon21440" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1168.02,495.59 1168.34,495.52 1156.52,492.22 "
-       id="polygon21442" />
-    <line
-       x1="1520.01"
-       y1="539.16998"
-       x2="1521.99"
-       y2="537.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21444" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1159.41,494.56 1159.74,494.33 1148.34,491.15 "
-       id="polygon21446" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1159.08,497.68 1158.85,497.42 1147.45,494.23 "
-       id="polygon21448" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1167.68,495.83 1168.02,495.59 1156.19,492.29 "
-       id="polygon21450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1159.11,494.95 1159.41,494.56 1148.01,491.38 "
-       id="polygon21452" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1158.85,497.42 1158.7,497.02 1147.3,493.84 "
-       id="polygon21454" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1535.38,551.44 1535.58,551.95 1544.61,551.9 "
-       id="polygon21456" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1167.39,496.21 1167.68,495.83 1155.86,492.53 "
-       id="polygon21458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.87,495.43 1159.11,494.95 1147.71,491.76 "
-       id="polygon21460" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1535.57,553.07 1535.37,553.57 1544.4,553.52 "
-       id="polygon21462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.7,497.02 1158.66,496.52 1147.25,493.34 "
-       id="polygon21464" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1535.58,551.95 1535.64,552.52 1544.67,552.46 "
-       id="polygon21466" />
-    <line
-       x1="1371.4399"
-       y1="293.97"
-       x2="1372.4"
-       y2="293.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.71,495.97 1158.87,495.43 1147.46,492.25 "
-       id="polygon21470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.66,496.52 1158.71,495.97 1147.31,492.79 "
-       id="polygon21472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1167.14,496.69 1167.39,496.21 1155.56,492.91 "
-       id="polygon21474" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1365.49,377.62 1365.69,377.27 1364.95,366.37 "
-       id="polygon21476" />
-    <line
-       x1="1372.4"
-       y1="293.73999"
-       x2="1373.36"
-       y2="293.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21478" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1368.61,376.99 1368.91,377.3 1368.16,366.4 "
-       id="polygon21480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.69,377.27 1366.05,376.97 1365.3,366.07 "
-       id="polygon21482" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1368.17,376.77 1368.61,376.99 1367.85,366.1 "
-       id="polygon21484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.05,376.97 1366.53,376.75 1365.78,365.86 "
-       id="polygon21486" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1367.64,376.65 1368.17,376.77 1367.41,365.88 "
-       id="polygon21488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.53,376.75 1367.08,376.64 1366.32,365.75 "
-       id="polygon21490" />
-    <line
-       x1="1517.92"
-       y1="540.91998"
-       x2="1520.01"
-       y2="539.16998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21492" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1367.08,376.64 1367.64,376.65 1366.89,365.75 "
-       id="polygon21494" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1407.44,514.35 1407.97,514.2 1410.38,511.09 "
-       id="polygon21496" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1408.54,514.23 1409.07,514.43 1411.47,511.31 "
-       id="polygon21498" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1409.07,514.43 1409.52,514.77 1411.93,511.65 "
-       id="polygon21500" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1159.41,494.56 1159.74,494.33 1159.74,494.66 "
-       id="polygon21502" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1154.91,485.95 1154.58,486.02 1166.32,489.28 "
-       id="polygon21504" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1153.69,489.11 1153.92,489.37 1165.66,492.64 "
-       id="polygon21506" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1154.58,486.02 1154.25,486.25 1165.99,489.52 "
-       id="polygon21508" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1153.54,488.71 1153.69,489.11 1165.43,492.38 "
-       id="polygon21510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1154.25,486.25 1153.95,486.63 1165.69,489.89 "
-       id="polygon21512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.5,488.21 1153.54,488.71 1165.28,491.97 "
-       id="polygon21514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.95,486.63 1153.71,487.12 1165.45,490.38 "
-       id="polygon21516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.55,487.66 1153.5,488.21 1165.23,491.47 "
-       id="polygon21518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1153.71,487.12 1153.55,487.66 1165.29,490.93 "
-       id="polygon21520" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1160.07,494.25 1159.74,494.33 1171.19,497.52 "
-       id="polygon21522" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1158.85,497.42 1159.08,497.68 1170.53,500.88 "
-       id="polygon21524" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1159.74,494.33 1159.41,494.56 1170.86,497.75 "
-       id="polygon21526" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1168.34,495.52 1168.02,495.59 1179.88,498.9 "
-       id="polygon21528" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1166.32,489.28 1166.65,489.21 1154.91,485.95 "
-       id="polygon21530" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1158.7,497.02 1158.85,497.42 1170.29,500.62 "
-       id="polygon21532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1159.41,494.56 1159.11,494.95 1170.55,498.14 "
-       id="polygon21534" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1168.02,495.59 1167.68,495.83 1179.55,499.14 "
-       id="polygon21536" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.66,496.52 1158.7,497.02 1170.15,500.21 "
-       id="polygon21538" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1165.99,489.52 1166.32,489.28 1154.58,486.02 "
-       id="polygon21540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1159.11,494.95 1158.87,495.43 1170.32,498.62 "
-       id="polygon21542" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1165.66,492.64 1165.43,492.38 1153.69,489.11 "
-       id="polygon21544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.71,495.97 1158.66,496.52 1170.1,499.71 "
-       id="polygon21546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1158.87,495.43 1158.71,495.97 1170.16,499.17 "
-       id="polygon21548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1167.68,495.83 1167.39,496.21 1179.25,499.52 "
-       id="polygon21550" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.25,514.91 1407.61,514.67 1407.44,514.35 "
-       id="polygon21552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.69,489.89 1165.99,489.52 1154.25,486.25 "
-       id="polygon21554" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1165.43,492.38 1165.28,491.97 1153.54,488.71 "
-       id="polygon21556" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1535.58,551.95 1535.38,551.44 1526.32,551.49 "
-       id="polygon21558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.45,490.38 1165.69,489.89 1153.95,486.63 "
-       id="polygon21560" />
-    <line
-       x1="1378.09"
-       y1="293.70999"
-       x2="1378.99"
-       y2="293.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.28,491.97 1165.23,491.47 1153.5,488.21 "
-       id="polygon21564" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1535.64,552.52 1535.58,551.95 1526.52,552.01 "
-       id="polygon21566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.07,514.43 1408.54,514.23 1408.48,514.58 "
-       id="polygon21568" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1535.37,553.57 1535.57,553.07 1526.52,553.13 "
-       id="polygon21570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.29,490.93 1165.45,490.38 1153.71,487.12 "
-       id="polygon21572" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1365.45,377.99 1365.6,378.34 1366.35,389.28 "
-       id="polygon21574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.23,491.47 1165.29,490.93 1153.55,487.66 "
-       id="polygon21576" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1368.82,378.37 1369.02,378.02 1369.78,388.96 "
-       id="polygon21578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1179.01,500 1179.25,499.52 1167.39,496.21 "
-       id="polygon21580" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1171.19,497.52 1171.52,497.45 1160.07,494.25 "
-       id="polygon21582" />
-    <line
-       x1="1560.25"
-       y1="538.07001"
-       x2="1559.67"
-       y2="536.16998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.53,376.75 1366.05,376.97 1366.8,387.91 "
-       id="polygon21586" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1170.86,497.75 1171.19,497.52 1159.74,494.33 "
-       id="polygon21588" />
-    <line
-       x1="1559.67"
-       y1="536.16998"
-       x2="1559.2"
-       y2="534.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21590" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1368.61,376.99 1368.17,376.77 1368.93,387.71 "
-       id="polygon21592" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1170.53,500.88 1170.29,500.62 1158.85,497.42 "
-       id="polygon21594" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1367.64,376.65 1367.08,376.64 1367.83,387.58 "
-       id="polygon21596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.55,498.14 1170.86,497.75 1159.41,494.56 "
-       id="polygon21598" />
-    <line
-       x1="1559.2"
-       y1="534.25"
-       x2="1558.83"
-       y2="532.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21600" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1170.29,500.62 1170.15,500.21 1158.7,497.02 "
-       id="polygon21602" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1179.55,499.14 1179.88,498.9 1168.02,495.59 "
-       id="polygon21604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.32,498.62 1170.55,498.14 1159.11,494.95 "
-       id="polygon21606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.15,500.21 1170.1,499.71 1158.66,496.52 "
-       id="polygon21608" />
-    <line
-       x1="1558.83"
-       y1="532.31"
-       x2="1558.5699"
-       y2="530.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.16,499.17 1170.32,498.62 1158.87,495.43 "
-       id="polygon21612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.1,499.71 1170.16,499.17 1158.71,495.97 "
-       id="polygon21614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1179.25,499.52 1179.55,499.14 1167.68,495.83 "
-       id="polygon21616" />
-    <line
-       x1="1558.5699"
-       y1="530.35999"
-       x2="1558.42"
-       y2="528.40997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21618" />
-    <line
-       x1="1380.71"
-       y1="294.54999"
-       x2="1381.52"
-       y2="294.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21620" />
-    <line
-       x1="1558.42"
-       y1="528.40997"
-       x2="1558.38"
-       y2="526.46002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21622" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1526.52,553.13 1526.31,553.63 1535.37,553.57 "
-       id="polygon21624" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1526.52,552.01 1526.59,552.57 1535.64,552.52 "
-       id="polygon21626" />
-    <line
-       x1="1558.38"
-       y1="526.46002"
-       x2="1558.4399"
-       y2="524.53003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21628" />
-    <line
-       x1="1381.52"
-       y1="294.95001"
-       x2="1382.3"
-       y2="295.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21630" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1171.18,497.86 1171.45,497.8 1171.52,497.45 "
-       id="polygon21632" />
-    <line
-       x1="1558.4399"
-       y1="524.53003"
-       x2="1558.61"
-       y2="522.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21634" />
-    <line
-       x1="1508.78"
-       y1="545.38"
-       x2="1511.14"
-       y2="544.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21636" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1369.67,388.23 1369.82,388.59 1369.05,377.65 "
-       id="polygon21638" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1409.52,514.77 1409.07,514.43 1406.65,517.56 "
-       id="polygon21640" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1369.37,387.93 1369.67,388.23 1368.91,377.3 "
-       id="polygon21642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.45,388.2 1366.8,387.91 1366.05,376.97 "
-       id="polygon21644" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1409.85,515.23 1409.52,514.77 1407.1,517.91 "
-       id="polygon21646" />
-    <line
-       x1="1558.61"
-       y1="522.60999"
-       x2="1558.89"
-       y2="520.71997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21648" />
-    <line
-       x1="1382.3"
-       y1="295.39999"
-       x2="1383.04"
-       y2="295.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21650" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1166.65,489.21 1166.32,489.28 1178.1,492.55 "
-       id="polygon21652" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1368.4,387.59 1368.93,387.71 1368.17,376.77 "
-       id="polygon21654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.29,387.69 1367.83,387.58 1367.08,376.64 "
-       id="polygon21656" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1165.43,492.38 1165.66,492.64 1177.44,495.91 "
-       id="polygon21658" />
-    <line
-       x1="1558.89"
-       y1="520.71997"
-       x2="1559.26"
-       y2="518.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21660" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1166.32,489.28 1165.99,489.52 1177.77,492.79 "
-       id="polygon21662" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1165.28,491.97 1165.43,492.38 1177.21,495.65 "
-       id="polygon21664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.99,489.52 1165.69,489.89 1177.47,493.17 "
-       id="polygon21666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.23,491.47 1165.28,491.97 1177.06,495.25 "
-       id="polygon21668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.69,489.89 1165.45,490.38 1177.23,493.66 "
-       id="polygon21670" />
-    <line
-       x1="1559.26"
-       y1="518.85999"
-       x2="1559.73"
-       y2="517.03998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.29,490.93 1165.23,491.47 1177.02,494.75 "
-       id="polygon21674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1165.45,490.38 1165.29,490.93 1177.07,494.2 "
-       id="polygon21676" />
-    <line
-       x1="1506.39"
-       y1="545.83002"
-       x2="1508.78"
-       y2="545.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21678" />
-    <line
-       x1="1559.73"
-       y1="517.03998"
-       x2="1560.3"
-       y2="515.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21680" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1180.73,499.19 1180.5,498.93 1192.41,502.24 "
-       id="polygon21682" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1171.52,497.45 1171.19,497.52 1182.67,500.72 "
-       id="polygon21684" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1170.29,500.62 1170.53,500.88 1182,504.09 "
-       id="polygon21686" />
-    <line
-       x1="1560.3"
-       y1="515.26001"
-       x2="1560.97"
-       y2="513.53003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21688" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1171.19,497.52 1170.86,497.75 1182.34,500.96 "
-       id="polygon21690" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1170.15,500.21 1170.29,500.62 1181.77,503.82 "
-       id="polygon21692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.86,497.75 1170.55,498.14 1182.04,501.34 "
-       id="polygon21694" />
-    <line
-       x1="1384.38"
-       y1="297.07001"
-       x2="1384.97"
-       y2="297.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.1,499.71 1170.15,500.21 1181.63,503.42 "
-       id="polygon21698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.55,498.14 1170.32,498.62 1181.8,501.82 "
-       id="polygon21700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.16,499.17 1170.1,499.71 1181.58,502.92 "
-       id="polygon21702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1170.32,498.62 1170.16,499.17 1181.64,502.37 "
-       id="polygon21704" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1179.88,498.9 1179.55,499.14 1191.46,502.45 "
-       id="polygon21706" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1177.77,492.79 1178.1,492.55 1166.32,489.28 "
-       id="polygon21708" />
-    <line
-       x1="1560.97"
-       y1="513.53003"
-       x2="1561.72"
-       y2="511.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21710" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1177.44,495.91 1177.21,495.65 1165.43,492.38 "
-       id="polygon21712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1179.55,499.14 1179.25,499.52 1191.16,502.84 "
-       id="polygon21714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.47,493.17 1177.77,492.79 1165.99,489.52 "
-       id="polygon21716" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="1404.57,517.79 1405.02,517.48 1407.44,514.35 "
-       id="polygon21718" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1177.21,495.65 1177.06,495.25 1165.28,491.97 "
-       id="polygon21720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.23,493.66 1177.47,493.17 1165.69,489.89 "
-       id="polygon21722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.06,495.25 1177.02,494.75 1165.23,491.47 "
-       id="polygon21724" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1405.55,517.34 1406.11,517.36 1408.54,514.23 "
-       id="polygon21726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.07,494.2 1177.23,493.66 1165.45,490.38 "
-       id="polygon21728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.02,494.75 1177.07,494.2 1165.29,490.93 "
-       id="polygon21730" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1406.11,517.36 1406.65,517.56 1409.07,514.43 "
-       id="polygon21732" />
-    <line
-       x1="1561.72"
-       y1="511.85999"
-       x2="1562.55"
-       y2="510.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21734" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1526.52,552.01 1526.32,551.49 1517.22,551.55 "
-       id="polygon21736" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1526.59,552.57 1526.52,552.01 1517.43,552.06 "
-       id="polygon21738" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1526.31,553.63 1526.52,553.13 1517.42,553.18 "
-       id="polygon21740" />
-    <line
-       x1="1385.52"
-       y1="298.41"
-       x2="1386"
-       y2="299.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21742" />
-    <line
-       x1="1562.55"
-       y1="510.25"
-       x2="1563.47"
-       y2="508.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21744" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1182.34,500.96 1182.67,500.72 1171.19,497.52 "
-       id="polygon21746" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1366.21,388.92 1366.35,389.28 1367.11,400.26 "
-       id="polygon21748" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1182,504.09 1181.77,503.82 1170.29,500.62 "
-       id="polygon21750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1182.04,501.34 1182.34,500.96 1170.86,497.75 "
-       id="polygon21752" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1191.79,502.21 1192.12,502.14 1180.21,498.82 "
-       id="polygon21754" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1181.77,503.82 1181.63,503.42 1170.15,500.21 "
-       id="polygon21756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.8,501.82 1182.04,501.34 1170.55,498.14 "
-       id="polygon21758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.63,503.42 1181.58,502.92 1170.1,499.71 "
-       id="polygon21760" />
-    <line
-       x1="1563.47"
-       y1="508.70001"
-       x2="1564.46"
-       y2="507.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21762" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1366.45,388.2 1366.24,388.55 1367,399.53 "
-       id="polygon21764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.64,502.37 1181.8,501.82 1170.32,498.62 "
-       id="polygon21766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.58,502.92 1181.64,502.37 1170.16,499.17 "
-       id="polygon21768" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1191.46,502.45 1191.79,502.21 1179.88,498.9 "
-       id="polygon21770" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.8,387.91 1366.45,388.2 1367.2,399.18 "
-       id="polygon21772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1191.16,502.84 1191.46,502.45 1179.55,499.14 "
-       id="polygon21774" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1369.67,388.23 1369.37,387.93 1370.13,398.91 "
-       id="polygon21776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.29,387.69 1366.8,387.91 1367.56,398.88 "
-       id="polygon21778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1190.92,503.32 1191.16,502.84 1179.25,499.52 "
-       id="polygon21780" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1369.37,387.93 1368.93,387.71 1369.69,398.68 "
-       id="polygon21782" />
-    <line
-       x1="1386.4301"
-       y1="299.89001"
-       x2="1386.8"
-       y2="300.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.83,387.58 1367.29,387.69 1368.04,398.67 "
-       id="polygon21786" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1368.93,387.71 1368.4,387.59 1369.16,398.57 "
-       id="polygon21788" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1368.4,387.59 1367.83,387.58 1368.59,398.56 "
-       id="polygon21790" />
-    <line
-       x1="1564.46"
-       y1="507.23001"
-       x2="1565.53"
-       y2="505.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21792" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1516.91,551.13 1517.22,551.55 1526.32,551.49 "
-       id="polygon21794" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1517.42,553.18 1517.22,553.68 1526.31,553.63 "
-       id="polygon21796" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1517.43,552.06 1517.49,552.63 1526.59,552.57 "
-       id="polygon21798" />
-    <line
-       x1="1386.8"
-       y1="300.69"
-       x2="1387.61"
-       y2="302.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21800" />
-    <line
-       x1="1565.53"
-       y1="505.84"
-       x2="1566.65"
-       y2="504.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21802" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1178.96,492.84 1178.72,492.58 1190.54,495.86 "
-       id="polygon21804" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1405.02,517.48 1405.55,517.34 1405.61,517.69 "
-       id="polygon21806" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1178.43,492.48 1178.1,492.55 1189.92,495.83 "
-       id="polygon21808" />
-    <line
-       x1="1566.65"
-       y1="504.51999"
-       x2="1567.84"
-       y2="503.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21810" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1178.1,492.55 1177.77,492.79 1189.59,496.07 "
-       id="polygon21812" />
-    <line
-       x1="1387.61"
-       y1="302.82999"
-       x2="1388.24"
-       y2="305.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21814" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1177.06,495.25 1177.21,495.65 1189.03,498.94 "
-       id="polygon21816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.77,492.79 1177.47,493.17 1189.29,496.45 "
-       id="polygon21818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.02,494.75 1177.06,495.25 1188.88,498.54 "
-       id="polygon21820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.47,493.17 1177.23,493.66 1189.05,496.94 "
-       id="polygon21822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.2,399.18 1367.56,398.88 1366.8,387.91 "
-       id="polygon21824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.07,494.2 1177.02,494.75 1188.84,498.04 "
-       id="polygon21826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1202.87,506.66 1203.11,506.17 1191.16,502.84 "
-       id="polygon21828" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1183.52,501.01 1183.29,500.75 1194.81,503.96 "
-       id="polygon21830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1177.23,493.66 1177.07,494.2 1188.89,497.49 "
-       id="polygon21832" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1369.69,398.68 1370.13,398.91 1369.37,387.93 "
-       id="polygon21834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.56,398.88 1368.04,398.67 1367.29,387.69 "
-       id="polygon21836" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1369.16,398.57 1369.69,398.68 1368.93,387.71 "
-       id="polygon21838" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.04,398.67 1368.59,398.56 1367.83,387.58 "
-       id="polygon21840" />
-    <line
-       x1="1567.84"
-       y1="503.29999"
-       x2="1569.08"
-       y2="502.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21842" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1368.59,398.56 1369.16,398.57 1368.4,387.59 "
-       id="polygon21844" />
-    <line
-       x1="1388.24"
-       y1="305.04001"
-       x2="1388.6801"
-       y2="307.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21846" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1183,500.64 1182.67,500.72 1194.19,503.93 "
-       id="polygon21848" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1192.64,502.51 1192.41,502.24 1204.36,505.57 "
-       id="polygon21850" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1181.77,503.82 1182,504.09 1193.52,507.3 "
-       id="polygon21852" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1182.67,500.72 1182.34,500.96 1193.86,504.17 "
-       id="polygon21854" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1181.63,503.42 1181.77,503.82 1193.29,507.04 "
-       id="polygon21856" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1189.88,499.23 1189.55,499.3 1177.73,496.02 "
-       id="polygon21858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1182.34,500.96 1182.04,501.34 1193.56,504.55 "
-       id="polygon21860" />
-    <line
-       x1="1569.08"
-       y1="502.16"
-       x2="1570.36"
-       y2="501.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21862" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.58,502.92 1181.63,503.42 1193.15,506.64 "
-       id="polygon21864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1182.04,501.34 1181.8,501.82 1193.32,505.04 "
-       id="polygon21866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.64,502.37 1181.58,502.92 1193.1,506.14 "
-       id="polygon21868" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1192.12,502.14 1191.79,502.21 1203.74,505.55 "
-       id="polygon21870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1181.8,501.82 1181.64,502.37 1193.16,505.59 "
-       id="polygon21872" />
-    <line
-       x1="1388.6801"
-       y1="307.29001"
-       x2="1388.92"
-       y2="309.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21874" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1189.59,496.07 1189.92,495.83 1178.1,492.55 "
-       id="polygon21876" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1191.79,502.21 1191.46,502.45 1203.41,505.79 "
-       id="polygon21878" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1189.26,499.21 1189.03,498.94 1177.21,495.65 "
-       id="polygon21880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1189.29,496.45 1189.59,496.07 1177.77,492.79 "
-       id="polygon21882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1191.46,502.45 1191.16,502.84 1203.11,506.17 "
-       id="polygon21884" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1189.03,498.94 1188.88,498.54 1177.06,495.25 "
-       id="polygon21886" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1405.55,517.34 1405.02,517.48 1402.58,520.63 "
-       id="polygon21888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1189.05,496.94 1189.29,496.45 1177.47,493.17 "
-       id="polygon21890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1188.88,498.54 1188.84,498.04 1177.02,494.75 "
-       id="polygon21892" />
-    <line
-       x1="1570.36"
-       y1="501.10999"
-       x2="1571.6899"
-       y2="500.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1188.89,497.49 1189.05,496.94 1177.23,493.66 "
-       id="polygon21896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1188.84,498.04 1188.89,497.49 1177.07,494.2 "
-       id="polygon21898" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1370.58,399.57 1370.43,399.21 1370.1,399.32 "
-       id="polygon21900" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1406.65,517.56 1406.11,517.36 1403.68,520.51 "
-       id="polygon21902" />
-    <line
-       x1="1388.92"
-       y1="309.57001"
-       x2="1388.97"
-       y2="311.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21904" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1517.22,551.55 1516.91,551.13 1507.78,551.18 "
-       id="polygon21906" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1193.86,504.17 1194.19,503.93 1182.67,500.72 "
-       id="polygon21908" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1193.52,507.3 1193.29,507.04 1181.77,503.82 "
-       id="polygon21910" />
-    <line
-       x1="1571.6899"
-       y1="500.17001"
-       x2="1573.05"
-       y2="499.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.56,504.55 1193.86,504.17 1182.34,500.96 "
-       id="polygon21914" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1517.49,552.63 1517.43,552.06 1508.3,552.11 "
-       id="polygon21916" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1517.22,553.68 1517.42,553.18 1508.3,553.24 "
-       id="polygon21918" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1193.29,507.04 1193.15,506.64 1181.63,503.42 "
-       id="polygon21920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.32,505.04 1193.56,504.55 1182.04,501.34 "
-       id="polygon21922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.15,506.64 1193.1,506.14 1181.58,502.92 "
-       id="polygon21924" />
-    <line
-       x1="1388.97"
-       y1="311.88"
-       x2="1388.84"
-       y2="314.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.16,505.59 1193.32,505.04 1181.8,501.82 "
-       id="polygon21928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.1,506.14 1193.16,505.59 1181.64,502.37 "
-       id="polygon21930" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1203.41,505.79 1203.74,505.55 1191.79,502.21 "
-       id="polygon21932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1203.11,506.17 1203.41,505.79 1191.46,502.45 "
-       id="polygon21934" />
-    <line
-       x1="1573.05"
-       y1="499.32001"
-       x2="1574.4301"
-       y2="498.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21936" />
-    <line
-       x1="1492.5601"
-       y1="542.81"
-       x2="1494.71"
-       y2="543.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21938" />
-    <line
-       x1="1388.84"
-       y1="314.19"
-       x2="1388.5"
-       y2="316.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21940" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1367.86,411.28 1367.72,410.92 1366.96,399.9 "
-       id="polygon21942" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1367.2,399.18 1367,399.53 1367.75,410.55 "
-       id="polygon21944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.56,398.88 1367.2,399.18 1367.96,410.2 "
-       id="polygon21946" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1370.43,399.21 1370.13,398.91 1370.89,409.93 "
-       id="polygon21948" />
-    <line
-       x1="1574.4301"
-       y1="498.57001"
-       x2="1575.84"
-       y2="497.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.59,398.56 1368.04,398.67 1368.8,409.69 "
-       id="polygon21952" />
-    <line
-       x1="1388.5"
-       y1="316.48001"
-       x2="1387.98"
-       y2="318.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21954" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="1402.13,520.94 1402.58,520.63 1405.02,517.48 "
-       id="polygon21956" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1369.69,398.68 1369.16,398.57 1369.92,409.59 "
-       id="polygon21958" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1507.78,551.18 1508.1,551.6 1517.22,551.55 "
-       id="polygon21960" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1402.58,520.63 1403.12,520.49 1405.55,517.34 "
-       id="polygon21962" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1403.12,520.49 1403.68,520.51 1406.11,517.36 "
-       id="polygon21964" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1508.3,553.24 1508.09,553.74 1517.22,553.68 "
-       id="polygon21966" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1508.3,552.11 1508.37,552.68 1517.49,552.63 "
-       id="polygon21968" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1404.21,520.71 1404.67,521.06 1407.1,517.91 "
-       id="polygon21970" />
-    <line
-       x1="1490.51"
-       y1="541.38"
-       x2="1492.5601"
-       y2="542.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21972" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1190.25,495.76 1189.92,495.83 1201.78,499.13 "
-       id="polygon21974" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1189.03,498.94 1189.26,499.21 1201.11,502.51 "
-       id="polygon21976" />
-    <line
-       x1="1387.98"
-       y1="318.75"
-       x2="1387.26"
-       y2="320.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21978" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1189.92,495.83 1189.59,496.07 1201.45,499.37 "
-       id="polygon21980" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1188.88,498.54 1189.03,498.94 1200.88,502.24 "
-       id="polygon21982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1189.59,496.07 1189.29,496.45 1201.15,499.75 "
-       id="polygon21984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1188.84,498.04 1188.88,498.54 1200.74,501.84 "
-       id="polygon21986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1189.29,496.45 1189.05,496.94 1200.91,500.24 "
-       id="polygon21988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1188.89,497.49 1188.84,498.04 1200.7,501.34 "
-       id="polygon21990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1189.05,496.94 1188.89,497.49 1200.75,500.79 "
-       id="polygon21992" />
-    <line
-       x1="1387.26"
-       y1="320.98001"
-       x2="1386.36"
-       y2="323.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21994" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1194.52,503.86 1194.19,503.93 1205.74,507.15 "
-       id="polygon21996" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1193.29,507.04 1193.52,507.3 1205.08,510.53 "
-       id="polygon21998" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1367.75,410.55 1367.96,410.2 1367.2,399.18 "
-       id="polygon22000" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1194.19,503.93 1193.86,504.17 1205.41,507.39 "
-       id="polygon22002" />
-    <line
-       x1="1488.5699"
-       y1="539.71002"
-       x2="1490.51"
-       y2="541.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22004" />
-    <line
-       x1="1577.26"
-       y1="497.38"
-       x2="1578.6801"
-       y2="496.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22006" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1370.89,409.93 1371.2,410.23 1370.43,399.21 "
-       id="polygon22008" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1193.15,506.64 1193.29,507.04 1204.85,510.27 "
-       id="polygon22010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.86,504.17 1193.56,504.55 1205.11,507.78 "
-       id="polygon22012" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1370.45,409.71 1370.89,409.93 1370.13,398.91 "
-       id="polygon22014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.32,409.91 1368.8,409.69 1368.04,398.67 "
-       id="polygon22016" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.1,506.14 1193.15,506.64 1204.7,509.86 "
-       id="polygon22018" />
-    <line
-       x1="1386.36"
-       y1="323.14999"
-       x2="1385.28"
-       y2="325.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.56,504.55 1193.32,505.04 1204.88,508.27 "
-       id="polygon22022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.16,505.59 1193.1,506.14 1204.66,509.36 "
-       id="polygon22024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1193.32,505.04 1193.16,505.59 1204.72,508.81 "
-       id="polygon22026" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1369.35,409.58 1369.92,409.59 1369.16,398.57 "
-       id="polygon22028" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1201.78,499.13 1202.11,499.05 1190.25,495.76 "
-       id="polygon22030" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1204.07,505.47 1203.74,505.55 1215.73,508.89 "
-       id="polygon22032" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1201.45,499.37 1201.78,499.13 1189.92,495.83 "
-       id="polygon22034" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1201.11,502.51 1200.88,502.24 1189.03,498.94 "
-       id="polygon22036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1203.74,505.55 1203.41,505.79 1215.4,509.13 "
-       id="polygon22038" />
-    <line
-       x1="1385.28"
-       y1="325.25"
-       x2="1384.03"
-       y2="327.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1201.15,499.75 1201.45,499.37 1189.59,496.07 "
-       id="polygon22042" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1200.88,502.24 1200.74,501.84 1188.88,498.54 "
-       id="polygon22044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1203.41,505.79 1203.11,506.17 1215.1,509.51 "
-       id="polygon22046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.91,500.24 1201.15,499.75 1189.29,496.45 "
-       id="polygon22048" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.74,501.84 1200.7,501.34 1188.84,498.04 "
-       id="polygon22050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.75,500.79 1200.91,500.24 1189.05,496.94 "
-       id="polygon22052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.7,501.34 1200.75,500.79 1188.89,497.49 "
-       id="polygon22054" />
-    <line
-       x1="1486.77"
-       y1="537.81"
-       x2="1488.5699"
-       y2="539.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22056" />
-    <line
-       x1="1384.03"
-       y1="327.26999"
-       x2="1382.61"
-       y2="329.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22058" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1205.41,507.39 1205.74,507.15 1194.19,503.93 "
-       id="polygon22060" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1205.08,510.53 1204.85,510.27 1193.29,507.04 "
-       id="polygon22062" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1506.5,554.35 1506.93,554.45 1497.77,554.51 "
-       id="polygon22064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1205.11,507.78 1205.41,507.39 1193.86,504.17 "
-       id="polygon22066" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1204.85,510.27 1204.7,509.86 1193.15,506.64 "
-       id="polygon22068" />
-    <line
-       x1="1580.11"
-       y1="496.60999"
-       x2="1581.52"
-       y2="496.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22070" />
-    <line
-       x1="1382.61"
-       y1="329.17999"
-       x2="1381.03"
-       y2="330.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.88,508.27 1205.11,507.78 1193.56,504.55 "
-       id="polygon22074" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.7,509.86 1204.66,509.36 1193.1,506.14 "
-       id="polygon22076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.72,508.81 1204.88,508.27 1193.32,505.04 "
-       id="polygon22078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.66,509.36 1204.72,508.81 1193.16,505.59 "
-       id="polygon22080" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1508.1,551.6 1507.78,551.18 1498.62,551.23 "
-       id="polygon22082" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1215.73,508.89 1216.06,508.81 1204.07,505.47 "
-       id="polygon22084" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1508.37,552.68 1508.3,552.11 1499.14,552.17 "
-       id="polygon22086" />
-    <line
-       x1="1485.13"
-       y1="535.67999"
-       x2="1486.77"
-       y2="537.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22088" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1508.09,553.74 1508.3,553.24 1499.13,553.3 "
-       id="polygon22090" />
-    <line
-       x1="1381.03"
-       y1="330.98999"
-       x2="1379.3"
-       y2="332.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22092" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1215.4,509.13 1215.73,508.89 1203.74,505.55 "
-       id="polygon22094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1215.1,509.51 1215.4,509.13 1203.41,505.79 "
-       id="polygon22096" />
-    <line
-       x1="1581.52"
-       y1="496.38"
-       x2="1582.92"
-       y2="496.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22098" />
-    <line
-       x1="1379.3"
-       y1="332.67999"
-       x2="1377.4399"
-       y2="334.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22100" />
-    <line
-       x1="1377.4399"
-       y1="334.23001"
-       x2="1375.45"
-       y2="335.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22102" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1371.1,411.31 1371.31,410.96 1372.08,422.02 "
-       id="polygon22104" />
-    <line
-       x1="1483.63"
-       y1="533.34998"
-       x2="1485.13"
-       y2="535.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22106" />
-    <line
-       x1="1375.45"
-       y1="335.64001"
-       x2="1373.34"
-       y2="336.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22108" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1403.68,520.51 1403.12,520.49 1400.67,523.65 "
-       id="polygon22110" />
-    <line
-       x1="1582.92"
-       y1="496.26001"
-       x2="1584.3"
-       y2="496.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22112" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1371.34,410.59 1371.2,410.23 1371.97,421.3 "
-       id="polygon22114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.32,409.91 1367.96,410.2 1368.72,421.27 "
-       id="polygon22116" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1202.11,499.05 1201.78,499.13 1213.68,502.43 "
-       id="polygon22118" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1498.62,551.23 1498.94,551.65 1508.1,551.6 "
-       id="polygon22120" />
-    <line
-       x1="1373.34"
-       y1="336.89001"
-       x2="1371.13"
-       y2="337.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22122" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1371.2,410.23 1370.89,409.93 1371.66,420.99 "
-       id="polygon22124" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1200.88,502.24 1201.11,502.51 1213.01,505.82 "
-       id="polygon22126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.8,409.69 1368.32,409.91 1369.09,420.97 "
-       id="polygon22128" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1201.78,499.13 1201.45,499.37 1213.35,502.68 "
-       id="polygon22130" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1499.13,553.3 1498.93,553.8 1508.09,553.74 "
-       id="polygon22132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.35,409.58 1368.8,409.69 1369.57,420.75 "
-       id="polygon22134" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1499.14,552.17 1499.21,552.73 1508.37,552.68 "
-       id="polygon22136" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1370.45,409.71 1369.92,409.59 1370.69,420.65 "
-       id="polygon22138" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1369.92,409.59 1369.35,409.58 1370.12,420.64 "
-       id="polygon22140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1226.89,513.36 1227.13,512.86 1215.1,509.51 "
-       id="polygon22142" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1206.59,507.45 1206.36,507.18 1217.96,510.41 "
-       id="polygon22144" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1200.74,501.84 1200.88,502.24 1212.79,505.55 "
-       id="polygon22146" />
-    <line
-       x1="1371.13"
-       y1="337.98001"
-       x2="1368.8199"
-       y2="338.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1201.45,499.37 1201.15,499.75 1213.05,503.06 "
-       id="polygon22150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.7,501.34 1200.74,501.84 1212.64,505.15 "
-       id="polygon22152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1201.15,499.75 1200.91,500.24 1212.81,503.55 "
-       id="polygon22154" />
-    <line
-       x1="1482.3199"
-       y1="530.83002"
-       x2="1483.63"
-       y2="533.34998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.75,500.79 1200.7,501.34 1212.59,504.65 "
-       id="polygon22158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1200.91,500.24 1200.75,500.79 1212.65,504.09 "
-       id="polygon22160" />
-    <line
-       x1="1368.8199"
-       y1="338.91"
-       x2="1366.45"
-       y2="339.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22162" />
-    <line
-       x1="1366.45"
-       y1="339.66"
-       x2="1364.01"
-       y2="340.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22164" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1217.29,513.8 1216.96,513.87 1205.37,510.63 "
-       id="polygon22166" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1204.85,510.27 1205.08,510.53 1216.67,513.77 "
-       id="polygon22168" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1205.74,507.15 1205.41,507.39 1217.01,510.63 "
-       id="polygon22170" />
-    <line
-       x1="1364.01"
-       y1="340.22"
-       x2="1361.52"
-       y2="340.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22172" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1204.7,509.86 1204.85,510.27 1216.45,513.5 "
-       id="polygon22174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1205.41,507.39 1205.11,507.78 1216.71,511.01 "
-       id="polygon22176" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1216.58,509.18 1216.35,508.91 1228.38,512.27 "
-       id="polygon22178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.66,509.36 1204.7,509.86 1216.3,513.1 "
-       id="polygon22180" />
-    <line
-       x1="1361.52"
-       y1="340.60001"
-       x2="1359.01"
-       y2="340.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1205.11,507.78 1204.88,508.27 1216.47,511.5 "
-       id="polygon22184" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1368.63,422.34 1368.48,421.99 1367.72,410.92 "
-       id="polygon22186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.72,508.81 1204.66,509.36 1216.25,512.6 "
-       id="polygon22188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1204.88,508.27 1204.72,508.81 1216.31,512.05 "
-       id="polygon22190" />
-    <line
-       x1="1359.01"
-       y1="340.79001"
-       x2="1356.48"
-       y2="340.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22192" />
-    <line
-       x1="1481.1899"
-       y1="528.13"
-       x2="1482.3199"
-       y2="530.83002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22194" />
-    <line
-       x1="1356.48"
-       y1="340.79001"
-       x2="1353.9399"
-       y2="340.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22196" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1213.68,502.43 1214.01,502.36 1202.11,499.05 "
-       id="polygon22198" />
-    <line
-       x1="1353.9399"
-       y1="340.60001"
-       x2="1351.42"
-       y2="340.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22200" />
-    <line
-       x1="1585.65"
-       y1="496.32001"
-       x2="1586.96"
-       y2="496.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22202" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1368.51,421.62 1368.72,421.27 1367.96,410.2 "
-       id="polygon22204" />
-    <line
-       x1="1351.42"
-       y1="340.20999"
-       x2="1348.9301"
-       y2="339.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22206" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1213.35,502.68 1213.68,502.43 1201.78,499.13 "
-       id="polygon22208" />
-    <line
-       x1="1325.41"
-       y1="317.66"
-       x2="1324.66"
-       y2="315.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22210" />
-    <line
-       x1="1327.45"
-       y1="322.39001"
-       x2="1326.34"
-       y2="320.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22212" />
-    <line
-       x1="1324.66"
-       y1="315.20001"
-       x2="1324.1"
-       y2="312.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22214" />
-    <line
-       x1="1328.73"
-       y1="324.63"
-       x2="1327.45"
-       y2="322.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22216" />
-    <line
-       x1="1330.1801"
-       y1="326.76999"
-       x2="1328.73"
-       y2="324.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22218" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1213.01,505.82 1212.79,505.55 1200.88,502.24 "
-       id="polygon22220" />
-    <line
-       x1="1324.1"
-       y1="312.69"
-       x2="1323.73"
-       y2="310.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22222" />
-    <line
-       x1="1331.78"
-       y1="328.79001"
-       x2="1330.1801"
-       y2="326.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22224" />
-    <line
-       x1="1346.48"
-       y1="338.88"
-       x2="1344.1"
-       y2="337.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22226" />
-    <line
-       x1="1333.53"
-       y1="330.69"
-       x2="1331.78"
-       y2="328.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22228" />
-    <line
-       x1="1323.73"
-       y1="310.14999"
-       x2="1323.5601"
-       y2="307.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22230" />
-    <line
-       x1="1344.1"
-       y1="337.94"
-       x2="1341.79"
-       y2="336.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22232" />
-    <line
-       x1="1335.42"
-       y1="332.45001"
-       x2="1333.53"
-       y2="330.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22234" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1215.73,508.89 1215.4,509.13 1227.43,512.48 "
-       id="polygon22236" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1371.66,420.99 1371.97,421.3 1371.2,410.23 "
-       id="polygon22238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.72,421.27 1369.09,420.97 1368.32,409.91 "
-       id="polygon22240" />
-    <line
-       x1="1337.4301"
-       y1="334.07001"
-       x2="1335.42"
-       y2="332.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22242" />
-    <line
-       x1="1341.79"
-       y1="336.82001"
-       x2="1339.5601"
-       y2="335.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22244" />
-    <line
-       x1="1339.5601"
-       y1="335.51999"
-       x2="1337.4301"
-       y2="334.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22246" />
-    <line
-       x1="1323.5601"
-       y1="307.59"
-       x2="1323.58"
-       y2="305.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1213.05,503.06 1213.35,502.68 1201.45,499.37 "
-       id="polygon22250" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1212.79,505.55 1212.64,505.15 1200.74,501.84 "
-       id="polygon22252" />
-    <line
-       x1="1323.58"
-       y1="305.03"
-       x2="1323.8"
-       y2="302.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22254" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1371.22,420.77 1371.66,420.99 1370.89,409.93 "
-       id="polygon22256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.09,420.97 1369.57,420.75 1368.8,409.69 "
-       id="polygon22258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1215.4,509.13 1215.1,509.51 1227.13,512.86 "
-       id="polygon22260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.81,503.55 1213.05,503.06 1201.15,499.75 "
-       id="polygon22262" />
-    <line
-       x1="1323.8"
-       y1="302.48001"
-       x2="1324.2"
-       y2="299.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22264" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1370.69,420.65 1371.22,420.77 1370.45,409.71 "
-       id="polygon22266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.57,420.75 1370.12,420.64 1369.35,409.58 "
-       id="polygon22268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.64,505.15 1212.59,504.65 1200.7,501.34 "
-       id="polygon22270" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1400.13,523.8 1400.67,523.65 1403.12,520.49 "
-       id="polygon22272" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1370.12,420.64 1370.69,420.65 1369.92,409.59 "
-       id="polygon22274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.65,504.09 1212.81,503.55 1200.91,500.24 "
-       id="polygon22276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.59,504.65 1212.65,504.09 1200.75,500.79 "
-       id="polygon22278" />
-    <line
-       x1="1324.2"
-       y1="299.95999"
-       x2="1324.8"
-       y2="297.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22280" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1217.34,510.39 1217.67,510.31 1206.07,507.08 "
-       id="polygon22282" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1401.23,523.68 1401.77,523.88 1404.21,520.71 "
-       id="polygon22284" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1401.77,523.88 1402.23,524.23 1404.67,521.06 "
-       id="polygon22286" />
-    <line
-       x1="1324.8"
-       y1="297.48001"
-       x2="1325.5699"
-       y2="295.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22288" />
-    <line
-       x1="1480.26"
-       y1="525.27002"
-       x2="1481.1899"
-       y2="528.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22290" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1217.01,510.63 1217.34,510.39 1205.74,507.15 "
-       id="polygon22292" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1216.67,513.77 1216.45,513.5 1204.85,510.27 "
-       id="polygon22294" />
-    <line
-       x1="1325.5699"
-       y1="295.04999"
-       x2="1326.53"
-       y2="292.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22296" />
-    <line
-       x1="1586.96"
-       y1="496.51001"
-       x2="1588.23"
-       y2="496.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.71,511.01 1217.01,510.63 1205.41,507.39 "
-       id="polygon22300" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1216.45,513.5 1216.3,513.1 1204.7,509.86 "
-       id="polygon22302" />
-    <line
-       x1="1326.53"
-       y1="292.70001"
-       x2="1327.66"
-       y2="290.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22304" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.47,511.5 1216.71,511.01 1205.11,507.78 "
-       id="polygon22306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.3,513.1 1216.25,512.6 1204.66,509.36 "
-       id="polygon22308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.31,512.05 1216.47,511.5 1204.88,508.27 "
-       id="polygon22310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.25,512.6 1216.31,512.05 1204.72,508.81 "
-       id="polygon22312" />
-    <line
-       x1="1327.66"
-       y1="290.44"
-       x2="1328.96"
-       y2="288.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22314" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1497.33,554.4 1497.77,554.51 1488.58,554.57 "
-       id="polygon22316" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1227.76,512.24 1228.09,512.16 1216.06,508.81 "
-       id="polygon22318" />
-    <line
-       x1="1479.54"
-       y1="522.26001"
-       x2="1480.26"
-       y2="525.27002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22320" />
-    <line
-       x1="1328.96"
-       y1="288.26999"
-       x2="1330.42"
-       y2="286.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22322" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1227.43,512.48 1227.76,512.24 1215.73,508.89 "
-       id="polygon22324" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1498.94,551.65 1498.62,551.23 1489.43,551.29 "
-       id="polygon22326" />
-    <line
-       x1="1330.42"
-       y1="286.20999"
-       x2="1332.02"
-       y2="284.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22328" />
-    <line
-       x1="1588.23"
-       y1="496.79001"
-       x2="1589.45"
-       y2="497.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.13,512.86 1227.43,512.48 1215.4,509.13 "
-       id="polygon22332" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1499.21,552.73 1499.14,552.17 1489.94,552.22 "
-       id="polygon22334" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1498.93,553.8 1499.13,553.3 1489.94,553.35 "
-       id="polygon22336" />
-    <line
-       x1="1332.02"
-       y1="284.26999"
-       x2="1333.76"
-       y2="282.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22338" />
-    <line
-       x1="1479.03"
-       y1="519.14001"
-       x2="1479.54"
-       y2="522.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22340" />
-    <line
-       x1="1333.76"
-       y1="282.47"
-       x2="1335.63"
-       y2="280.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22342" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1214.53,502.73 1214.3,502.46 1226.24,505.78 "
-       id="polygon22344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.68,524.11 1399.35,524.54 1399.67,524.72 "
-       id="polygon22346" />
-    <line
-       x1="1589.45"
-       y1="497.17001"
-       x2="1590.62"
-       y2="497.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22348" />
-    <line
-       x1="1335.63"
-       y1="280.81"
-       x2="1337.61"
-       y2="279.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22350" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1488.58,554.57 1488.14,554.46 1497.33,554.4 "
-       id="polygon22352" />
-    <line
-       x1="1478.75"
-       y1="515.90997"
-       x2="1479.03"
-       y2="519.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22354" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1212.79,505.55 1213.01,505.82 1224.95,509.14 "
-       id="polygon22356" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1371.87,422.37 1372.08,422.02 1372.85,433.13 "
-       id="polygon22358" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1213.68,502.43 1213.35,502.68 1225.29,505.99 "
-       id="polygon22360" />
-    <line
-       x1="1337.61"
-       y1="279.29999"
-       x2="1339.7"
-       y2="277.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22362" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1212.64,505.15 1212.79,505.55 1224.72,508.88 "
-       id="polygon22364" />
-    <line
-       x1="1563.86"
-       y1="475.39001"
-       x2="1561.22"
-       y2="472.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1213.35,502.68 1213.05,503.06 1224.99,506.38 "
-       id="polygon22368" />
-    <line
-       x1="1566.33"
-       y1="478.12"
-       x2="1563.86"
-       y2="475.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22370" />
-    <line
-       x1="1561.22"
-       y1="472.84"
-       x2="1558.41"
-       y2="470.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22372" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1489.43,551.29 1489.74,551.7 1498.94,551.65 "
-       id="polygon22374" />
-    <line
-       x1="1568.61"
-       y1="481.03"
-       x2="1566.33"
-       y2="478.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.59,504.65 1212.64,505.15 1224.58,508.47 "
-       id="polygon22378" />
-    <line
-       x1="1558.41"
-       y1="470.5"
-       x2="1555.46"
-       y2="468.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1213.05,503.06 1212.81,503.55 1224.75,506.87 "
-       id="polygon22382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.65,504.09 1212.59,504.65 1224.54,507.97 "
-       id="polygon22384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1212.81,503.55 1212.65,504.09 1224.59,507.41 "
-       id="polygon22386" />
-    <line
-       x1="1570.6899"
-       y1="484.10001"
-       x2="1568.61"
-       y2="481.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22388" />
-    <line
-       x1="1555.46"
-       y1="468.38"
-       x2="1552.38"
-       y2="466.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22390" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1217.67,510.31 1217.34,510.39 1228.97,513.63 "
-       id="polygon22392" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1489.94,553.35 1489.73,553.85 1498.93,553.8 "
-       id="polygon22394" />
-    <line
-       x1="1478.6899"
-       y1="512.60999"
-       x2="1478.75"
-       y2="515.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22396" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1489.94,552.22 1490.01,552.79 1499.21,552.73 "
-       id="polygon22398" />
-    <line
-       x1="1339.7"
-       y1="277.95999"
-       x2="1341.88"
-       y2="276.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22400" />
-    <line
-       x1="1590.62"
-       y1="497.64001"
-       x2="1591.72"
-       y2="498.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22402" />
-    <line
-       x1="1552.38"
-       y1="466.48999"
-       x2="1549.17"
-       y2="464.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22404" />
-    <line
-       x1="1572.5699"
-       y1="487.31"
-       x2="1570.6899"
-       y2="484.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22406" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1216.45,513.5 1216.67,513.77 1228.3,517.02 "
-       id="polygon22408" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.57,420.75 1369.09,420.97 1369.85,432.07 "
-       id="polygon22410" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1217.34,510.39 1217.01,510.63 1228.64,513.87 "
-       id="polygon22412" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1371.66,420.99 1371.22,420.77 1371.99,431.88 "
-       id="polygon22414" />
-    <line
-       x1="1549.17"
-       y1="464.85001"
-       x2="1545.86"
-       y2="463.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22416" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1216.3,513.1 1216.45,513.5 1228.08,516.75 "
-       id="polygon22418" />
-    <line
-       x1="1574.23"
-       y1="490.63"
-       x2="1572.5699"
-       y2="487.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22420" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1370.69,420.65 1370.12,420.64 1370.89,431.75 "
-       id="polygon22422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1217.01,510.63 1216.71,511.01 1228.34,514.26 "
-       id="polygon22424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.25,512.6 1216.3,513.1 1227.93,516.35 "
-       id="polygon22426" />
-    <line
-       x1="1545.86"
-       y1="463.45001"
-       x2="1542.46"
-       y2="462.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.71,511.01 1216.47,511.5 1228.11,514.75 "
-       id="polygon22430" />
-    <line
-       x1="1341.88"
-       y1="276.79001"
-       x2="1344.13"
-       y2="275.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.31,512.05 1216.25,512.6 1227.89,515.85 "
-       id="polygon22434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1216.47,511.5 1216.31,512.05 1227.95,515.3 "
-       id="polygon22436" />
-    <line
-       x1="1575.67"
-       y1="494.06"
-       x2="1574.23"
-       y2="490.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22438" />
-    <line
-       x1="1478.87"
-       y1="509.23001"
-       x2="1478.6899"
-       y2="512.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22440" />
-    <line
-       x1="1542.46"
-       y1="462.32001"
-       x2="1538.99"
-       y2="461.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22442" />
-    <line
-       x1="1538.99"
-       y1="461.45001"
-       x2="1535.48"
-       y2="460.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22444" />
-    <line
-       x1="1576.89"
-       y1="497.57001"
-       x2="1575.67"
-       y2="494.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22446" />
-    <line
-       x1="1344.13"
-       y1="275.79001"
-       x2="1346.45"
-       y2="274.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22448" />
-    <line
-       x1="1591.72"
-       y1="498.20001"
-       x2="1592.76"
-       y2="498.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22450" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1228.09,512.16 1227.76,512.24 1239.84,515.61 "
-       id="polygon22452" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1488.58,554.57 1488.14,554.46 1488.23,554.12 "
-       id="polygon22454" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1225.29,505.99 1225.62,505.75 1213.68,502.43 "
-       id="polygon22456" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1224.95,509.14 1224.72,508.88 1212.79,505.55 "
-       id="polygon22458" />
-    <line
-       x1="1479.28"
-       y1="505.82999"
-       x2="1478.87"
-       y2="509.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22460" />
-    <line
-       x1="1535.48"
-       y1="460.85999"
-       x2="1531.92"
-       y2="460.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22462" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1227.76,512.24 1227.43,512.48 1239.51,515.84 "
-       id="polygon22464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.99,506.38 1225.29,505.99 1213.35,502.68 "
-       id="polygon22466" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1224.72,508.88 1224.58,508.47 1212.64,505.15 "
-       id="polygon22468" />
-    <line
-       x1="1577.88"
-       y1="501.13"
-       x2="1576.89"
-       y2="497.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.43,512.48 1227.13,512.86 1239.21,516.23 "
-       id="polygon22472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.75,506.87 1224.99,506.38 1213.05,503.06 "
-       id="polygon22474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1489.74,551.7 1489.43,551.29 1489.26,551.58 "
-       id="polygon22476" />
-    <line
-       x1="1531.92"
-       y1="460.54001"
-       x2="1528.36"
-       y2="460.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22478" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.58,508.47 1224.54,507.97 1212.59,504.65 "
-       id="polygon22480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1238.97,516.72 1239.21,516.23 1227.13,512.86 "
-       id="polygon22482" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1228.97,513.63 1229.3,513.55 1217.67,510.31 "
-       id="polygon22484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.59,507.41 1224.75,506.87 1212.81,503.55 "
-       id="polygon22486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.54,507.97 1224.59,507.41 1212.65,504.09 "
-       id="polygon22488" />
-    <line
-       x1="1346.45"
-       y1="274.95999"
-       x2="1348.8"
-       y2="274.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22490" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1401.23,523.68 1400.67,523.65 1398.21,526.84 "
-       id="polygon22492" />
-    <line
-       x1="1479.92"
-       y1="502.41"
-       x2="1479.28"
-       y2="505.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22494" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1228.64,513.87 1228.97,513.63 1217.34,510.39 "
-       id="polygon22496" />
-    <line
-       x1="1528.36"
-       y1="460.5"
-       x2="1524.79"
-       y2="460.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22498" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1372.74,432.41 1372.88,432.76 1372.11,421.65 "
-       id="polygon22500" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1402.23,524.23 1401.77,523.88 1399.31,527.06 "
-       id="polygon22502" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1228.3,517.02 1228.08,516.75 1216.45,513.5 "
-       id="polygon22504" />
-    <line
-       x1="1578.63"
-       y1="504.73999"
-       x2="1577.88"
-       y2="501.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1228.34,514.26 1228.64,513.87 1217.01,510.63 "
-       id="polygon22508" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1372.43,432.1 1372.74,432.41 1371.97,421.3 "
-       id="polygon22510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.49,432.37 1369.85,432.07 1369.09,420.97 "
-       id="polygon22512" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1228.08,516.75 1227.93,516.35 1216.3,513.1 "
-       id="polygon22514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1560.13,342.13 1559.74,342.05 1551.12,352.03 "
-       id="polygon22516" />
-    <line
-       x1="1524.79"
-       y1="460.73001"
-       x2="1521.25"
-       y2="461.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1228.11,514.75 1228.34,514.26 1216.71,511.01 "
-       id="polygon22520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.93,516.35 1227.89,515.85 1216.25,512.6 "
-       id="polygon22522" />
-    <line
-       x1="1480.8"
-       y1="498.98999"
-       x2="1479.92"
-       y2="502.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.95,515.3 1228.11,514.75 1216.47,511.5 "
-       id="polygon22526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.89,515.85 1227.95,515.3 1216.31,512.05 "
-       id="polygon22528" />
-    <line
-       x1="1348.8"
-       y1="274.32999"
-       x2="1351.2"
-       y2="273.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22530" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1371.46,431.76 1371.99,431.88 1371.22,420.77 "
-       id="polygon22532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.33,431.86 1370.89,431.75 1370.12,420.64 "
-       id="polygon22534" />
-    <line
-       x1="1521.25"
-       y1="461.23999"
-       x2="1517.75"
-       y2="462.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22536" />
-    <line
-       x1="1579.15"
-       y1="508.35999"
-       x2="1578.63"
-       y2="504.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1561.04,342.63 1560.58,342.32 1551.95,352.31 "
-       id="polygon22540" />
-    <line
-       x1="1481.92"
-       y1="495.60001"
-       x2="1480.8"
-       y2="498.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22542" />
-    <line
-       x1="1517.75"
-       y1="462.01999"
-       x2="1514.3"
-       y2="463.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22544" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1239.84,515.61 1240.16,515.53 1228.09,512.16 "
-       id="polygon22546" />
-    <line
-       x1="1351.2"
-       y1="273.89001"
-       x2="1353.61"
-       y2="273.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22548" />
-    <line
-       x1="1483.26"
-       y1="492.25"
-       x2="1481.92"
-       y2="495.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22550" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1239.51,515.84 1239.84,515.61 1227.76,512.24 "
-       id="polygon22552" />
-    <line
-       x1="1579.4399"
-       y1="511.98001"
-       x2="1579.15"
-       y2="508.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.21,516.23 1239.51,515.84 1227.43,512.48 "
-       id="polygon22556" />
-    <line
-       x1="1593.72"
-       y1="499.57999"
-       x2="1594.61"
-       y2="500.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22558" />
-    <line
-       x1="1484.83"
-       y1="488.98001"
-       x2="1483.26"
-       y2="492.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22560" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1553.48,353.81 1553.61,354.18 1562.23,344.19 "
-       id="polygon22562" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1489.74,551.7 1489.43,551.29 1480.2,551.34 "
-       id="polygon22564" />
-    <line
-       x1="1486.62"
-       y1="485.79999"
-       x2="1484.83"
-       y2="488.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22566" />
-    <line
-       x1="1353.61"
-       y1="273.63"
-       x2="1356.02"
-       y2="273.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22568" />
-    <line
-       x1="1488.62"
-       y1="482.73001"
-       x2="1486.62"
-       y2="485.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22570" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1490.01,552.79 1489.94,552.22 1480.71,552.27 "
-       id="polygon22572" />
-    <line
-       x1="1490.8199"
-       y1="479.79999"
-       x2="1488.62"
-       y2="482.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22574" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1369.49,432.37 1369.28,432.72 1369.63,432.77 "
-       id="polygon22576" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1489.73,553.85 1489.94,553.35 1480.71,553.41 "
-       id="polygon22578" />
-    <line
-       x1="1493.22"
-       y1="477.01001"
-       x2="1490.8199"
-       y2="479.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22580" />
-    <line
-       x1="1579.5"
-       y1="515.57001"
-       x2="1579.4399"
-       y2="511.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22582" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="1372.52,432.79 1372.4,432.51 1372.74,432.41 "
-       id="polygon22584" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1593.7,405.05 1593.82,404.79 1604.59,397.45 "
-       id="polygon22586" />
-    <line
-       x1="1356.02"
-       y1="273.57001"
-       x2="1358.42"
-       y2="273.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22588" />
-    <line
-       x1="1594.61"
-       y1="500.39001"
-       x2="1595.41"
-       y2="501.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22590" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1398.21,526.84 1398.77,526.86 1401.23,523.68 "
-       id="polygon22592" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1398.77,526.86 1399.31,527.06 1401.77,523.88 "
-       id="polygon22594" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1225.95,505.68 1225.62,505.75 1237.6,509.08 "
-       id="polygon22596" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1229.82,513.92 1229.59,513.66 1241.27,516.91 "
-       id="polygon22598" />
-    <line
-       x1="1579.33"
-       y1="519.10999"
-       x2="1579.5"
-       y2="515.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22600" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1224.72,508.88 1224.95,509.14 1236.93,512.48 "
-       id="polygon22602" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1604.41"
-       y2="398.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22604" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1594.05,404.68 1594.37,404.72 1605.14,397.37 "
-       id="polygon22606" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1225.62,505.75 1225.29,505.99 1237.27,509.32 "
-       id="polygon22608" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1224.58,508.47 1224.72,508.88 1236.7,512.21 "
-       id="polygon22610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1225.29,505.99 1224.99,506.38 1236.97,509.71 "
-       id="polygon22612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.54,507.97 1224.58,508.47 1236.56,511.8 "
-       id="polygon22614" />
-    <line
-       x1="1358.42"
-       y1="273.70001"
-       x2="1360.79"
-       y2="274.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.99,506.38 1224.75,506.87 1236.73,510.2 "
-       id="polygon22618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.59,507.41 1224.54,507.97 1236.52,511.3 "
-       id="polygon22620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1224.75,506.87 1224.59,507.41 1236.57,510.75 "
-       id="polygon22622" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1228.08,516.75 1228.3,517.02 1239.98,520.28 "
-       id="polygon22624" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1228.97,513.63 1228.64,513.87 1240.32,517.13 "
-       id="polygon22626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1551.5,352.11 1551.12,352.03 1542.47,362.04 "
-       id="polygon22628" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1480.19,554.3 1479.79,554.55 1489.02,554.49 "
-       id="polygon22630" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1606.1"
-       y2="399.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22632" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1595.51,405.66 1595.83,406.14 1606.6,398.79 "
-       id="polygon22634" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1227.93,516.35 1228.08,516.75 1239.75,520.02 "
-       id="polygon22636" />
-    <line
-       x1="1578.9301"
-       y1="522.59003"
-       x2="1579.33"
-       y2="519.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22638" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1480.2,551.34 1480.51,551.75 1489.74,551.7 "
-       id="polygon22640" />
-    <line
-       x1="1595.41"
-       y1="501.26999"
-       x2="1596.13"
-       y2="502.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1228.64,513.87 1228.34,514.26 1240.02,517.51 "
-       id="polygon22644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1551.95,352.31 1551.5,352.11 1542.86,362.11 "
-       id="polygon22646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.89,515.85 1227.93,516.35 1239.61,519.61 "
-       id="polygon22648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1228.34,514.26 1228.11,514.75 1239.78,518 "
-       id="polygon22650" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1480.71,553.41 1480.51,553.91 1489.73,553.85 "
-       id="polygon22652" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1553.61,354.18 1553.48,353.81 1544.84,363.82 "
-       id="polygon22654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1227.95,515.3 1227.89,515.85 1239.56,519.11 "
-       id="polygon22656" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1480.71,552.27 1480.78,552.84 1490.01,552.79 "
-       id="polygon22658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1228.11,514.75 1227.95,515.3 1239.62,518.55 "
-       id="polygon22660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1552.42,352.61 1551.95,352.31 1543.31,362.32 "
-       id="polygon22662" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1370.16,444.6 1370.01,444.25 1369.24,433.09 "
-       id="polygon22664" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1369.49,432.37 1369.28,432.72 1370.04,443.88 "
-       id="polygon22666" />
-    <line
-       x1="1360.79"
-       y1="274.01999"
-       x2="1363.12"
-       y2="274.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22668" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1553.48,353.81 1553.22,353.4 1544.58,363.41 "
-       id="polygon22670" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1552.86,352.99 1552.42,352.61 1543.77,362.62 "
-       id="polygon22672" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1553.22,353.4 1552.86,352.99 1544.21,363 "
-       id="polygon22674" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1240.68,515.89 1240.45,515.63 1252.57,519 "
-       id="polygon22676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.33,431.86 1369.85,432.07 1370.62,443.23 "
-       id="polygon22678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1542.19,362.09 1542.47,362.04 1551.12,352.03 "
-       id="polygon22680" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1372.43,432.1 1371.99,431.88 1372.76,443.03 "
-       id="polygon22682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.89,431.75 1370.33,431.86 1371.1,443.01 "
-       id="polygon22684" />
-    <line
-       x1="1578.3199"
-       y1="525.96997"
-       x2="1578.9301"
-       y2="522.59003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22686" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1371.46,431.76 1370.89,431.75 1371.66,442.9 "
-       id="polygon22688" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1544.96,364.18 1544.95,364.47 1553.59,354.46 "
-       id="polygon22690" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1237.27,509.32 1237.6,509.08 1225.62,505.75 "
-       id="polygon22692" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1236.93,512.48 1236.7,512.21 1224.72,508.88 "
-       id="polygon22694" />
-    <line
-       x1="1596.13"
-       y1="502.20999"
-       x2="1596.75"
-       y2="503.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22696" />
-    <line
-       x1="1363.12"
-       y1="274.51999"
-       x2="1365.39"
-       y2="275.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.97,509.71 1237.27,509.32 1225.29,505.99 "
-       id="polygon22700" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1239.84,515.61 1239.51,515.84 1251.62,519.22 "
-       id="polygon22702" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1544.84,363.82 1544.96,364.18 1553.61,354.18 "
-       id="polygon22704" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1236.7,512.21 1236.56,511.8 1224.58,508.47 "
-       id="polygon22706" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1240.65,516.88 1240.97,516.81 1229.3,513.55 "
-       id="polygon22708" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1582.91,412.41 1583.03,412.15 1593.82,404.79 "
-       id="polygon22710" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1594.37,404.72 1594.05,404.68 1583.27,412.04 "
-       id="polygon22712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1542.86,362.11 1543.31,362.32 1551.95,352.31 "
-       id="polygon22714" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1397.84,527.31 1397.47,527.55 1397.21,527.29 "
-       id="polygon22716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.73,510.2 1236.97,509.71 1224.99,506.38 "
-       id="polygon22718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.56,511.8 1236.52,511.3 1224.54,507.97 "
-       id="polygon22720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.51,515.84 1239.21,516.23 1251.32,519.61 "
-       id="polygon22722" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1544.58,363.41 1544.84,363.82 1553.48,353.81 "
-       id="polygon22724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1543.31,362.32 1543.77,362.62 1552.42,352.61 "
-       id="polygon22726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.57,510.75 1236.73,510.2 1224.75,506.87 "
-       id="polygon22728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.52,511.3 1236.57,510.75 1224.59,507.41 "
-       id="polygon22730" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1240.32,517.13 1240.65,516.88 1228.97,513.63 "
-       id="polygon22732" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1544.21,363 1544.58,363.41 1553.22,353.4 "
-       id="polygon22734" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1543.77,362.62 1544.21,363 1552.86,352.99 "
-       id="polygon22736" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1594.75,404.91 1594.37,404.72 1583.58,412.08 "
-       id="polygon22738" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1239.98,520.28 1239.75,520.02 1228.08,516.75 "
-       id="polygon22740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1479.35,554.63 1479.79,554.55 1479.7,554.2 "
-       id="polygon22742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1240.02,517.51 1240.32,517.13 1228.64,513.87 "
-       id="polygon22744" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1239.75,520.02 1239.61,519.61 1227.93,516.35 "
-       id="polygon22746" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1595.14,405.23 1594.75,404.91 1583.96,412.28 "
-       id="polygon22748" />
-    <line
-       x1="1577.5"
-       y1="529.25"
-       x2="1578.3199"
-       y2="525.96997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.78,518 1240.02,517.51 1228.34,514.26 "
-       id="polygon22752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.61,519.61 1239.56,519.11 1227.89,515.85 "
-       id="polygon22754" />
-    <line
-       x1="1365.39"
-       y1="275.20999"
-       x2="1367.59"
-       y2="276.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.62,518.55 1239.78,518 1228.11,514.75 "
-       id="polygon22758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.56,519.11 1239.62,518.55 1227.95,515.3 "
-       id="polygon22760" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1595.51,405.66 1595.14,405.23 1584.35,412.6 "
-       id="polygon22762" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1596.18,407.09 1596.06,406.63 1585.27,414 "
-       id="polygon22764" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1595.83,406.14 1595.51,405.66 1584.72,413.02 "
-       id="polygon22766" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1596.06,406.63 1595.83,406.14 1585.04,413.5 "
-       id="polygon22768" />
-    <line
-       x1="1596.75"
-       y1="503.22"
-       x2="1597.29"
-       y2="504.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22770" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1373.51,443.55 1373.66,443.91 1372.88,432.76 "
-       id="polygon22772" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1585.39,414.83 1585.26,415.08 1596.05,407.72 "
-       id="polygon22774" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1373.2,443.25 1373.51,443.55 1372.74,432.41 "
-       id="polygon22776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.25,443.52 1370.62,443.23 1369.85,432.07 "
-       id="polygon22778" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1251.95,518.98 1252.27,518.91 1240.16,515.53 "
-       id="polygon22780" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1583.58,412.08 1583.96,412.28 1594.75,404.91 "
-       id="polygon22782" />
-    <line
-       x1="1367.59"
-       y1="276.07999"
-       x2="1369.7"
-       y2="277.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22784" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1372.76,443.03 1373.2,443.25 1372.43,432.1 "
-       id="polygon22786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.62,443.23 1371.1,443.01 1370.33,431.86 "
-       id="polygon22788" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1585.39,414.45 1585.39,414.83 1596.18,407.46 "
-       id="polygon22790" />
-    <polygon
-       style="opacity:1;fill:#009200"
-       points="1533.35,372.57 1533.37,372.29 1542.03,362.26 "
-       id="polygon22792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1542.47,362.04 1542.19,362.09 1533.53,372.11 "
-       id="polygon22794" />
-    <line
-       x1="1576.48"
-       y1="532.40002"
-       x2="1577.5"
-       y2="529.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22796" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1372.23,442.91 1372.76,443.03 1371.99,431.88 "
-       id="polygon22798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.1,443.01 1371.66,442.9 1370.89,431.75 "
-       id="polygon22800" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1251.62,519.22 1251.95,518.98 1239.84,515.61 "
-       id="polygon22802" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1371.66,442.9 1372.23,442.91 1371.46,431.76 "
-       id="polygon22804" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1583.96,412.28 1584.35,412.6 1595.14,405.23 "
-       id="polygon22806" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1585.27,414 1585.39,414.45 1596.18,407.09 "
-       id="polygon22808" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1584.35,412.6 1584.72,413.02 1595.51,405.66 "
-       id="polygon22810" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1585.04,413.5 1585.27,414 1596.06,406.63 "
-       id="polygon22812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.32,519.61 1251.62,519.22 1239.51,515.84 "
-       id="polygon22814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1542.86,362.11 1542.47,362.04 1533.81,372.06 "
-       id="polygon22816" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1584.72,413.02 1585.04,413.5 1595.83,406.14 "
-       id="polygon22818" />
-    <line
-       x1="1597.29"
-       y1="504.28"
-       x2="1597.71"
-       y2="505.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.08,520.1 1251.32,519.61 1239.21,516.23 "
-       id="polygon22822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1543.31,362.32 1542.86,362.11 1534.2,372.14 "
-       id="polygon22824" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1544.96,364.18 1544.84,363.82 1536.18,373.85 "
-       id="polygon22826" />
-    <line
-       x1="1369.7"
-       y1="277.12"
-       x2="1371.71"
-       y2="278.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1543.77,362.62 1543.31,362.32 1534.65,372.34 "
-       id="polygon22830" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1544.84,363.82 1544.58,363.41 1535.92,373.44 "
-       id="polygon22832" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1544.21,363 1543.77,362.62 1535.11,372.65 "
-       id="polygon22834" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1544.58,363.41 1544.21,363 1535.55,373.03 "
-       id="polygon22836" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1480.51,551.75 1480.2,551.34 1470.94,551.39 "
-       id="polygon22838" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1479.79,554.55 1480.19,554.3 1470.93,554.36 "
-       id="polygon22840" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1238.45,509.38 1238.22,509.11 1250.24,512.45 "
-       id="polygon22842" />
-    <line
-       x1="1575.27"
-       y1="535.40002"
-       x2="1576.48"
-       y2="532.40002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22844" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1480.78,552.84 1480.71,552.27 1471.45,552.33 "
-       id="polygon22846" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1480.51,553.91 1480.71,553.41 1471.45,553.46 "
-       id="polygon22848" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1398.21,526.84 1397.67,526.98 1395.2,530.18 "
-       id="polygon22850" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1536.3,374.21 1536.29,374.5 1544.95,364.47 "
-       id="polygon22852" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1241.49,517.18 1241.27,516.91 1252.98,520.18 "
-       id="polygon22854" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1399.31,527.06 1398.77,526.86 1396.3,530.06 "
-       id="polygon22856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1533.81,372.06 1534.2,372.14 1542.86,362.11 "
-       id="polygon22858" />
-    <line
-       x1="1597.71"
-       y1="505.39001"
-       x2="1598.05"
-       y2="506.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22860" />
-    <line
-       x1="1612.62"
-       y1="411.54999"
-       x2="1606.1"
-       y2="399.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22862" />
-    <line
-       x1="1371.71"
-       y1="278.32999"
-       x2="1373.61"
-       y2="279.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22864" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1399.77,527.41 1399.31,527.06 1396.84,530.26 "
-       id="polygon22866" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1536.18,373.85 1536.3,374.21 1544.96,364.18 "
-       id="polygon22868" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1236.7,512.21 1236.93,512.48 1248.95,515.82 "
-       id="polygon22870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1534.2,372.14 1534.65,372.34 1543.31,362.32 "
-       id="polygon22872" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1370.62,443.23 1370.25,443.52 1370.57,443.63 "
-       id="polygon22874" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1237.6,509.08 1237.27,509.32 1249.29,512.66 "
-       id="polygon22876" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1535.92,373.44 1536.18,373.85 1544.84,363.82 "
-       id="polygon22878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1534.65,372.34 1535.11,372.65 1543.77,362.62 "
-       id="polygon22880" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1236.56,511.8 1236.7,512.21 1248.73,515.55 "
-       id="polygon22882" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1583.96,412.28 1583.58,412.08 1572.77,419.46 "
-       id="polygon22884" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1585.26,415.08 1585.39,414.83 1574.57,422.21 "
-       id="polygon22886" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1535.55,373.03 1535.92,373.44 1544.58,363.41 "
-       id="polygon22888" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1240.97,516.81 1240.65,516.88 1252.36,520.15 "
-       id="polygon22890" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1535.11,372.65 1535.55,373.03 1544.21,363 "
-       id="polygon22892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1237.27,509.32 1236.97,509.71 1249,513.05 "
-       id="polygon22894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.52,511.3 1236.56,511.8 1248.58,515.15 "
-       id="polygon22896" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1252.3,523.57 1251.98,523.65 1240.27,520.38 "
-       id="polygon22898" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1239.75,520.02 1239.98,520.28 1251.69,523.55 "
-       id="polygon22900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.97,509.71 1236.73,510.2 1248.75,513.54 "
-       id="polygon22902" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1584.35,412.6 1583.96,412.28 1573.14,419.66 "
-       id="polygon22904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.57,510.75 1236.52,511.3 1248.54,514.64 "
-       id="polygon22906" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1585.39,414.83 1585.39,414.45 1574.58,421.84 "
-       id="polygon22908" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1236.73,510.2 1236.57,510.75 1248.6,514.09 "
-       id="polygon22910" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1240.65,516.88 1240.32,517.13 1252.03,520.39 "
-       id="polygon22912" />
-    <line
-       x1="1573.87"
-       y1="538.22998"
-       x2="1575.27"
-       y2="535.40002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22914" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1239.61,519.61 1239.75,520.02 1251.46,523.29 "
-       id="polygon22916" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1584.72,413.02 1584.35,412.6 1573.54,419.98 "
-       id="polygon22918" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1585.39,414.45 1585.27,414 1574.46,421.38 "
-       id="polygon22920" />
-    <line
-       x1="1373.61"
-       y1="279.69"
-       x2="1375.38"
-       y2="281.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1240.32,517.13 1240.02,517.51 1251.73,520.78 "
-       id="polygon22924" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1585.04,413.5 1584.72,413.02 1573.91,420.4 "
-       id="polygon22926" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1585.27,414 1585.04,413.5 1574.23,420.89 "
-       id="polygon22928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.56,519.11 1239.61,519.61 1251.32,522.88 "
-       id="polygon22930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1240.02,517.51 1239.78,518 1251.49,521.27 "
-       id="polygon22932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.62,518.55 1239.56,519.11 1251.27,522.38 "
-       id="polygon22934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1239.78,518 1239.62,518.55 1251.33,521.82 "
-       id="polygon22936" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1572.45,419.42 1572.77,419.46 1583.58,412.08 "
-       id="polygon22938" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1470.93,554.36 1470.53,554.61 1479.79,554.55 "
-       id="polygon22940" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1470.94,551.39 1471.25,551.81 1480.51,551.75 "
-       id="polygon22942" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1252.79,519.27 1252.57,519 1264.72,522.39 "
-       id="polygon22944" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1572.77,419.46 1573.14,419.66 1583.96,412.28 "
-       id="polygon22946" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1471.45,553.46 1471.24,553.96 1480.51,553.91 "
-       id="polygon22948" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1574.58,421.84 1574.57,422.21 1585.39,414.83 "
-       id="polygon22950" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1471.45,552.33 1471.52,552.9 1480.78,552.84 "
-       id="polygon22952" />
-    <line
-       x1="1375.38"
-       y1="281.20001"
-       x2="1377.02"
-       y2="282.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22954" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1249.63,512.42 1249.95,512.35 1237.93,509.01 "
-       id="polygon22956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1533.81,372.06 1533.53,372.11 1524.85,382.16 "
-       id="polygon22958" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1573.14,419.66 1573.54,419.98 1584.35,412.6 "
-       id="polygon22960" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1574.46,421.38 1574.58,421.84 1585.39,414.45 "
-       id="polygon22962" />
-    <line
-       x1="1572.3"
-       y1="540.89001"
-       x2="1573.87"
-       y2="538.22998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22964" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1573.54,419.98 1573.91,420.4 1584.72,413.02 "
-       id="polygon22966" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1574.23,420.89 1574.46,421.38 1585.27,414 "
-       id="polygon22968" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1249.29,512.66 1249.63,512.42 1237.6,509.08 "
-       id="polygon22970" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1573.91,420.4 1574.23,420.89 1585.04,413.5 "
-       id="polygon22972" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1252.27,518.91 1251.95,518.98 1264.11,522.37 "
-       id="polygon22974" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1248.95,515.82 1248.73,515.55 1236.7,512.21 "
-       id="polygon22976" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1370.25,443.52 1370.04,443.88 1370.82,455.07 "
-       id="polygon22978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1534.2,372.14 1533.81,372.06 1525.13,382.11 "
-       id="polygon22980" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1536.29,374.5 1536.3,374.21 1527.63,384.27 "
-       id="polygon22982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1249,513.05 1249.29,512.66 1237.27,509.32 "
-       id="polygon22984" />
-    <polygon
-       style="opacity:1;fill:#00ce00"
-       points="1572.88,419.77 1572.63,419.73 1572.45,419.42 "
-       id="polygon22986" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1251.95,518.98 1251.62,519.22 1263.78,522.61 "
-       id="polygon22988" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1248.73,515.55 1248.58,515.15 1236.56,511.8 "
-       id="polygon22990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.62,443.23 1370.25,443.52 1371.02,454.72 "
-       id="polygon22992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1534.65,372.34 1534.2,372.14 1525.52,382.19 "
-       id="polygon22994" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1252.03,520.39 1252.36,520.15 1240.65,516.88 "
-       id="polygon22996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.75,513.54 1249,513.05 1236.97,509.71 "
-       id="polygon22998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.58,515.15 1248.54,514.64 1236.52,511.3 "
-       id="polygon23000" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1373.51,443.55 1373.2,443.25 1373.98,454.45 "
-       id="polygon23002" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1251.69,523.55 1251.46,523.29 1239.75,520.02 "
-       id="polygon23004" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1536.3,374.21 1536.18,373.85 1527.5,383.9 "
-       id="polygon23006" />
-    <line
-       x1="1598.27"
-       y1="507.75"
-       x2="1598.86"
-       y2="511.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.62,519.22 1251.32,519.61 1263.48,523 "
-       id="polygon23010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.6,514.09 1248.75,513.54 1236.73,510.2 "
-       id="polygon23012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.54,514.64 1248.6,514.09 1236.57,510.75 "
-       id="polygon23014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1535.11,372.65 1534.65,372.34 1525.97,382.39 "
-       id="polygon23016" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1373.2,443.25 1372.76,443.03 1373.54,454.22 "
-       id="polygon23018" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.73,520.78 1252.03,520.39 1240.32,517.13 "
-       id="polygon23020" />
-    <line
-       x1="1377.02"
-       y1="282.85001"
-       x2="1378.51"
-       y2="284.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23022" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1536.18,373.85 1535.92,373.44 1527.24,383.49 "
-       id="polygon23024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.66,442.9 1371.1,443.01 1371.88,454.21 "
-       id="polygon23026" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1395.73,530.04 1396.3,530.06 1398.77,526.86 "
-       id="polygon23028" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1251.46,523.29 1251.32,522.88 1239.61,519.61 "
-       id="polygon23030" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1372.76,443.03 1372.23,442.91 1373,454.11 "
-       id="polygon23032" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1535.55,373.03 1535.11,372.65 1526.43,382.7 "
-       id="polygon23034" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1535.92,373.44 1535.55,373.03 1526.87,383.08 "
-       id="polygon23036" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.49,521.27 1251.73,520.78 1240.02,517.51 "
-       id="polygon23038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.32,522.88 1251.27,522.38 1239.56,519.11 "
-       id="polygon23040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.33,521.82 1251.49,521.27 1239.78,518 "
-       id="polygon23042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.27,522.38 1251.33,521.82 1239.62,518.55 "
-       id="polygon23044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1524.85,382.16 1525.13,382.11 1533.81,372.06 "
-       id="polygon23046" />
-    <line
-       x1="1570.58"
-       y1="543.34003"
-       x2="1572.3"
-       y2="540.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23048" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1527.63,384.27 1527.61,384.55 1536.29,374.5 "
-       id="polygon23050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1470.76,554.06 1470.44,554.26 1470.53,554.61 "
-       id="polygon23052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1525.13,382.11 1525.52,382.19 1534.2,372.14 "
-       id="polygon23054" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1561.27,427.18 1561.39,426.92 1572.22,419.53 "
-       id="polygon23056" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1572.77,419.46 1572.45,419.42 1561.62,426.81 "
-       id="polygon23058" />
-    <line
-       x1="1378.51"
-       y1="284.63"
-       x2="1379.84"
-       y2="286.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23060" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1527.5,383.9 1527.63,384.27 1536.3,374.21 "
-       id="polygon23062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1525.52,382.19 1525.97,382.39 1534.65,372.34 "
-       id="polygon23064" />
-    <line
-       x1="1590.84"
-       y1="399.41"
-       x2="1604.41"
-       y2="398.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23066" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1573.14,419.66 1572.77,419.46 1561.94,426.86 "
-       id="polygon23068" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1527.24,383.49 1527.5,383.9 1536.18,373.85 "
-       id="polygon23070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1525.97,382.39 1526.43,382.7 1535.11,372.65 "
-       id="polygon23072" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1526.87,383.08 1527.24,383.49 1535.92,373.44 "
-       id="polygon23074" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1526.43,382.7 1526.87,383.08 1535.55,373.03 "
-       id="polygon23076" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1573.54,419.98 1573.14,419.66 1562.31,427.05 "
-       id="polygon23078" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1574.57,422.21 1574.58,421.84 1563.74,429.23 "
-       id="polygon23080" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1263.78,522.61 1264.11,522.37 1251.95,518.98 "
-       id="polygon23082" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1573.91,420.4 1573.54,419.98 1562.7,427.38 "
-       id="polygon23084" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1574.58,421.84 1574.46,421.38 1563.62,428.77 "
-       id="polygon23086" />
-    <line
-       x1="1598.86"
-       y1="511.17999"
-       x2="1599.14"
-       y2="514.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23088" />
-    <polygon
-       style="opacity:1;fill:#00b900"
-       points="1527.19,384.46 1527.32,384.32 1527.61,384.55 "
-       id="polygon23090" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1574.23,420.89 1573.91,420.4 1563.07,427.8 "
-       id="polygon23092" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1574.46,421.38 1574.23,420.89 1563.39,428.28 "
-       id="polygon23094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.48,523 1263.78,522.61 1251.62,519.22 "
-       id="polygon23096" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1370.82,455.07 1371.02,454.72 1370.25,443.52 "
-       id="polygon23098" />
-    <line
-       x1="1379.84"
-       y1="286.51999"
-       x2="1381.01"
-       y2="288.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.24,523.49 1263.48,523 1251.32,519.61 "
-       id="polygon23102" />
-    <line
-       x1="1568.71"
-       y1="545.59003"
-       x2="1570.58"
-       y2="543.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23104" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1373.54,454.22 1373.98,454.45 1373.2,443.25 "
-       id="polygon23106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.39,454.42 1371.88,454.21 1371.1,443.01 "
-       id="polygon23108" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1563.74,429.61 1563.62,429.86 1574.45,422.46 "
-       id="polygon23110" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1372.43,454.1 1373,454.11 1372.23,442.91 "
-       id="polygon23112" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1561.94,426.86 1562.31,427.05 1573.14,419.66 "
-       id="polygon23114" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1563.74,429.23 1563.74,429.61 1574.57,422.21 "
-       id="polygon23116" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1250.47,512.71 1250.24,512.45 1262.3,515.8 "
-       id="polygon23118" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1562.31,427.05 1562.7,427.38 1573.54,419.98 "
-       id="polygon23120" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1563.62,428.77 1563.74,429.23 1574.58,421.84 "
-       id="polygon23122" />
-    <line
-       x1="1381.01"
-       y1="288.51999"
-       x2="1382"
-       y2="290.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23124" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1562.7,427.38 1563.07,427.8 1573.91,420.4 "
-       id="polygon23126" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1563.39,428.28 1563.62,428.77 1574.46,421.38 "
-       id="polygon23128" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1563.07,427.8 1563.39,428.28 1574.23,420.89 "
-       id="polygon23130" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1471.25,551.81 1470.94,551.39 1461.64,551.44 "
-       id="polygon23132" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1470.53,554.61 1470.93,554.36 1461.63,554.42 "
-       id="polygon23134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.25,530.41 1396.68,530.57 1396.84,530.26 "
-       id="polygon23136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1525.52,382.19 1525.13,382.11 1516.44,392.18 "
-       id="polygon23138" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1471.52,552.9 1471.45,552.33 1462.16,552.38 "
-       id="polygon23140" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1471.24,553.96 1471.45,553.46 1462.15,553.52 "
-       id="polygon23142" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1248.73,515.55 1248.95,515.82 1261.02,519.18 "
-       id="polygon23144" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1525.97,382.39 1525.52,382.19 1516.82,392.26 "
-       id="polygon23146" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1249.63,512.42 1249.29,512.66 1261.36,516.02 "
-       id="polygon23148" />
-    <line
-       x1="1599.14"
-       y1="514.67999"
-       x2="1599.1"
-       y2="518.21997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23150" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1252.68,520.07 1252.36,520.15 1264.11,523.43 "
-       id="polygon23152" />
-    <line
-       x1="1566.73"
-       y1="547.59998"
-       x2="1568.71"
-       y2="545.59003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23154" />
-    <polygon
-       style="opacity:1;fill:#009200"
-       points="1515.98,392.68 1515.99,392.4 1524.69,382.33 "
-       id="polygon23156" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1527.63,384.27 1527.5,383.9 1518.8,393.97 "
-       id="polygon23158" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1248.58,515.15 1248.73,515.55 1260.79,518.91 "
-       id="polygon23160" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1251.46,523.29 1251.69,523.55 1263.44,526.83 "
-       id="polygon23162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1526.43,382.7 1525.97,382.39 1517.27,392.46 "
-       id="polygon23164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1249.29,512.66 1249,513.05 1261.06,516.4 "
-       id="polygon23166" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1527.5,383.9 1527.24,383.49 1518.54,393.56 "
-       id="polygon23168" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1252.36,520.15 1252.03,520.39 1263.78,523.67 "
-       id="polygon23170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.54,514.64 1248.58,515.15 1260.64,518.51 "
-       id="polygon23172" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1526.87,383.08 1526.43,382.7 1517.73,392.77 "
-       id="polygon23174" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1527.24,383.49 1526.87,383.08 1518.17,393.15 "
-       id="polygon23176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1249,513.05 1248.75,513.54 1260.82,516.89 "
-       id="polygon23178" />
-    <line
-       x1="1382"
-       y1="290.60999"
-       x2="1382.8199"
-       y2="292.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.6,514.09 1248.54,514.64 1260.6,518 "
-       id="polygon23182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1248.75,513.54 1248.6,514.09 1260.66,517.45 "
-       id="polygon23184" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1251.32,522.88 1251.46,523.29 1263.21,526.57 "
-       id="polygon23186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1252.03,520.39 1251.73,520.78 1263.48,524.06 "
-       id="polygon23188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.27,522.38 1251.32,522.88 1263.07,526.16 "
-       id="polygon23190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.73,520.78 1251.49,521.27 1263.24,524.55 "
-       id="polygon23192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.15,392.23 1516.44,392.18 1525.13,382.11 "
-       id="polygon23194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.33,521.82 1251.27,522.38 1263.02,525.66 "
-       id="polygon23196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1251.49,521.27 1251.33,521.82 1263.09,525.1 "
-       id="polygon23198" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1518.93,394.34 1518.91,394.62 1527.61,384.55 "
-       id="polygon23200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.44,392.18 1516.82,392.26 1525.52,382.19 "
-       id="polygon23202" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1518.8,393.97 1518.93,394.34 1527.63,384.27 "
-       id="polygon23204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.82,392.26 1517.27,392.46 1525.97,382.39 "
-       id="polygon23206" />
-    <line
-       x1="1382.8199"
-       y1="292.76999"
-       x2="1383.45"
-       y2="295"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23208" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1562.31,427.05 1561.94,426.86 1551.08,434.26 "
-       id="polygon23210" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1563.62,429.86 1563.74,429.61 1552.89,437.02 "
-       id="polygon23212" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1518.54,393.56 1518.8,393.97 1527.5,383.9 "
-       id="polygon23214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1517.27,392.46 1517.73,392.77 1526.43,382.7 "
-       id="polygon23216" />
-    <line
-       x1="1612.62"
-       y1="411.54999"
-       x2="1611.95"
-       y2="411.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23218" />
-    <line
-       x1="1564.62"
-       y1="549.38"
-       x2="1566.73"
-       y2="547.59998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23220" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1518.17,393.15 1518.54,393.56 1527.24,383.49 "
-       id="polygon23222" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1517.73,392.77 1518.17,393.15 1526.87,383.08 "
-       id="polygon23224" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1562.7,427.38 1562.31,427.05 1551.45,434.46 "
-       id="polygon23226" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1563.74,429.61 1563.74,429.23 1552.89,436.64 "
-       id="polygon23228" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1461.63,554.42 1461.23,554.67 1470.53,554.61 "
-       id="polygon23230" />
-    <line
-       x1="1599.1"
-       y1="518.21997"
-       x2="1598.74"
-       y2="521.78003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23232" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1461.64,551.44 1461.95,551.86 1471.25,551.81 "
-       id="polygon23234" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1563.07,427.8 1562.7,427.38 1551.84,434.79 "
-       id="polygon23236" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1563.74,429.23 1563.62,428.77 1552.77,436.19 "
-       id="polygon23238" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1563.39,428.28 1563.07,427.8 1552.22,435.21 "
-       id="polygon23240" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1563.62,428.77 1563.39,428.28 1552.54,435.69 "
-       id="polygon23242" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1261.36,516.02 1261.69,515.77 1249.63,512.42 "
-       id="polygon23244" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1261.02,519.18 1260.79,518.91 1248.73,515.55 "
-       id="polygon23246" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1264.43,522.29 1264.11,522.37 1276.3,525.77 "
-       id="polygon23248" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1462.16,552.38 1462.22,552.95 1471.52,552.9 "
-       id="polygon23250" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1462.22,552.95 1462.15,553.52 1471.45,553.46 "
-       id="polygon23252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1261.06,516.4 1261.36,516.02 1249.29,512.66 "
-       id="polygon23254" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1263.78,523.67 1264.11,523.43 1252.36,520.15 "
-       id="polygon23256" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1260.79,518.91 1260.64,518.51 1248.58,515.15 "
-       id="polygon23258" />
-    <line
-       x1="1383.45"
-       y1="295"
-       x2="1383.89"
-       y2="297.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23260" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1263.44,526.83 1263.21,526.57 1251.46,523.29 "
-       id="polygon23262" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1264.11,522.37 1263.78,522.61 1275.98,526.01 "
-       id="polygon23264" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1550.77,434.22 1551.08,434.26 1561.94,426.86 "
-       id="polygon23266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.82,516.89 1261.06,516.4 1249,513.05 "
-       id="polygon23268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.64,518.51 1260.6,518 1248.54,514.64 "
-       id="polygon23270" />
-    <line
-       x1="1611.29"
-       y1="412.29999"
-       x2="1610.64"
-       y2="412.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.48,524.06 1263.78,523.67 1252.03,520.39 "
-       id="polygon23274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.66,517.45 1260.82,516.89 1248.75,513.54 "
-       id="polygon23276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.6,518 1260.66,517.45 1248.6,514.09 "
-       id="polygon23278" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1263.21,526.57 1263.07,526.16 1251.32,522.88 "
-       id="polygon23280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.78,522.61 1263.48,523 1275.68,526.4 "
-       id="polygon23282" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1395.73,530.04 1395.2,530.18 1392.71,533.4 "
-       id="polygon23284" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1374.19,455.82 1374.4,455.47 1375.18,466.71 "
-       id="polygon23286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.24,524.55 1263.48,524.06 1251.73,520.78 "
-       id="polygon23288" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1396.3,530.06 1395.73,530.04 1393.25,533.25 "
-       id="polygon23290" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.07,526.16 1263.02,525.66 1251.27,522.38 "
-       id="polygon23292" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1551.08,434.26 1551.45,434.46 1562.31,427.05 "
-       id="polygon23294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.09,525.1 1263.24,524.55 1251.49,521.27 "
-       id="polygon23296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.02,525.66 1263.09,525.1 1251.33,521.82 "
-       id="polygon23298" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1396.84,530.26 1396.3,530.06 1393.82,533.28 "
-       id="polygon23300" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1552.89,436.64 1552.89,437.02 1563.74,429.61 "
-       id="polygon23302" />
-    <line
-       x1="1610.64"
-       y1="412.60001"
-       x2="1609.99"
-       y2="412.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23304" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1551.45,434.46 1551.84,434.79 1562.7,427.38 "
-       id="polygon23306" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1552.77,436.19 1552.89,436.64 1563.74,429.23 "
-       id="polygon23308" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1374.43,455.11 1374.29,454.75 1375.07,465.99 "
-       id="polygon23310" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1551.84,434.79 1552.22,435.21 1563.07,427.8 "
-       id="polygon23312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.44,392.18 1516.15,392.23 1507.43,402.32 "
-       id="polygon23314" />
-    <line
-       x1="1562.42"
-       y1="550.90997"
-       x2="1564.62"
-       y2="549.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23316" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1552.54,435.69 1552.77,436.19 1563.62,428.77 "
-       id="polygon23318" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.39,454.42 1371.02,454.72 1371.8,465.96 "
-       id="polygon23320" />
-    <line
-       x1="1383.89"
-       y1="297.26999"
-       x2="1384.14"
-       y2="299.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23322" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1552.22,435.21 1552.54,435.69 1563.39,428.28 "
-       id="polygon23324" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1374.29,454.75 1373.98,454.45 1374.76,465.68 "
-       id="polygon23326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.88,454.21 1371.39,454.42 1372.16,465.66 "
-       id="polygon23328" />
-    <line
-       x1="1609.99"
-       y1="412.85999"
-       x2="1609.36"
-       y2="413.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23330" />
-    <line
-       x1="1598.74"
-       y1="521.78003"
-       x2="1598.0699"
-       y2="525.33002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.82,392.26 1516.44,392.18 1507.72,402.27 "
-       id="polygon23334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.43,454.1 1371.88,454.21 1372.65,465.45 "
-       id="polygon23336" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1373.54,454.22 1373,454.11 1373.78,465.34 "
-       id="polygon23338" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1373,454.11 1372.43,454.1 1373.21,465.34 "
-       id="polygon23340" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1518.91,394.62 1518.93,394.34 1510.22,404.43 "
-       id="polygon23342" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1264.43,523.35 1264.73,523.45 1264.6,523.79 "
-       id="polygon23344" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1461.24,551.17 1461.64,551.44 1461.47,551.73 "
-       id="polygon23346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1517.27,392.46 1516.82,392.26 1508.11,402.35 "
-       id="polygon23348" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1518.93,394.34 1518.8,393.97 1510.09,404.07 "
-       id="polygon23350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1517.73,392.77 1517.27,392.46 1508.55,402.55 "
-       id="polygon23352" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1276.3,525.77 1276.63,525.69 1264.43,522.29 "
-       id="polygon23354" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1518.8,393.97 1518.54,393.56 1509.82,403.66 "
-       id="polygon23356" />
-    <line
-       x1="1384.14"
-       y1="299.57999"
-       x2="1384.1899"
-       y2="301.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23358" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1518.17,393.15 1517.73,392.77 1509.02,402.86 "
-       id="polygon23360" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1518.54,393.56 1518.17,393.15 1509.46,403.24 "
-       id="polygon23362" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1275.98,526.01 1276.3,525.77 1264.11,522.37 "
-       id="polygon23364" />
-    <line
-       x1="1608.74"
-       y1="413.20999"
-       x2="1608.14"
-       y2="413.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1507.43,402.32 1507.72,402.27 1516.44,392.18 "
-       id="polygon23368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.68,526.4 1275.98,526.01 1263.78,522.61 "
-       id="polygon23370" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1551.08,434.26 1550.77,434.22 1539.89,441.64 "
-       id="polygon23372" />
-    <line
-       x1="1560.15"
-       y1="552.17999"
-       x2="1562.42"
-       y2="550.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23374" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1510.22,404.43 1510.2,404.71 1518.91,394.62 "
-       id="polygon23376" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1371.7,467.03 1371.55,466.68 1370.78,455.44 "
-       id="polygon23378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1507.72,402.27 1508.11,402.35 1516.82,392.26 "
-       id="polygon23380" />
-    <line
-       x1="1384.1899"
-       y1="301.89999"
-       x2="1384.05"
-       y2="304.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23382" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1551.45,434.46 1551.08,434.26 1540.2,441.69 "
-       id="polygon23384" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1510.09,404.07 1510.22,404.43 1518.93,394.34 "
-       id="polygon23386" />
-    <line
-       x1="1598.0699"
-       y1="525.33002"
-       x2="1597.09"
-       y2="528.84998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1508.11,402.35 1508.55,402.55 1517.27,392.46 "
-       id="polygon23390" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1509.82,403.66 1510.09,404.07 1518.8,393.97 "
-       id="polygon23392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1508.55,402.55 1509.02,402.86 1517.73,392.77 "
-       id="polygon23394" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1551.84,434.79 1551.45,434.46 1540.57,441.88 "
-       id="polygon23396" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1552.89,437.02 1552.89,436.64 1542.01,444.07 "
-       id="polygon23398" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1371.59,466.3 1371.8,465.96 1371.02,454.72 "
-       id="polygon23400" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1509.46,403.24 1509.82,403.66 1518.54,393.56 "
-       id="polygon23402" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1509.02,402.86 1509.46,403.24 1518.17,393.15 "
-       id="polygon23404" />
-    <line
-       x1="1607.5601"
-       y1="413.39001"
-       x2="1607.01"
-       y2="413.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23406" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1552.22,435.21 1551.84,434.79 1540.96,442.21 "
-       id="polygon23408" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1552.89,436.64 1552.77,436.19 1541.89,443.61 "
-       id="polygon23410" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1374.76,465.68 1375.07,465.99 1374.29,454.75 "
-       id="polygon23412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.8,465.96 1372.16,465.66 1371.39,454.42 "
-       id="polygon23414" />
-    <polygon
-       style="opacity:1;fill:#007200"
-       points="1392.25,533.71 1392.71,533.4 1395.2,530.18 "
-       id="polygon23416" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1552.54,435.69 1552.22,435.21 1541.34,442.64 "
-       id="polygon23418" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1552.77,436.19 1552.54,435.69 1541.66,443.12 "
-       id="polygon23420" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1392.71,533.4 1393.25,533.25 1395.73,530.04 "
-       id="polygon23422" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1374.32,465.46 1374.76,465.68 1373.98,454.45 "
-       id="polygon23424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.16,465.66 1372.65,465.45 1371.88,454.21 "
-       id="polygon23426" />
-    <line
-       x1="1384.05"
-       y1="304.23001"
-       x2="1383.71"
-       y2="306.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23428" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1262.01,515.7 1261.69,515.77 1273.79,519.14 "
-       id="polygon23430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.65,465.45 1373.21,465.34 1372.43,454.1 "
-       id="polygon23432" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1373.21,465.34 1373.78,465.34 1373,454.11 "
-       id="polygon23434" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1260.79,518.91 1261.02,519.18 1273.12,522.55 "
-       id="polygon23436" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1261.69,515.77 1261.36,516.02 1273.46,519.38 "
-       id="polygon23438" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1542.01,444.44 1541.89,444.7 1552.77,437.27 "
-       id="polygon23440" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1461.95,551.86 1461.64,551.44 1452.31,551.5 "
-       id="polygon23442" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1263.21,526.57 1263.44,526.83 1275.23,530.13 "
-       id="polygon23444" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1461.23,554.67 1461.63,554.42 1452.3,554.48 "
-       id="polygon23446" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1260.64,518.51 1260.79,518.91 1272.89,522.28 "
-       id="polygon23448" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1264.11,523.43 1263.78,523.67 1275.57,526.96 "
-       id="polygon23450" />
-    <line
-       x1="1557.8101"
-       y1="553.19"
-       x2="1560.15"
-       y2="552.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23452" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1540.2,441.69 1540.57,441.88 1551.45,434.46 "
-       id="polygon23454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1261.36,516.02 1261.06,516.4 1273.16,519.77 "
-       id="polygon23456" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1263.07,526.16 1263.21,526.57 1275,529.86 "
-       id="polygon23458" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1542.01,444.07 1542.01,444.44 1552.89,437.02 "
-       id="polygon23460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.6,518 1260.64,518.51 1272.75,521.88 "
-       id="polygon23462" />
-    <line
-       x1="1606.49"
-       y1="413.38"
-       x2="1606"
-       y2="413.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23464" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1462.22,552.95 1462.16,552.38 1452.82,552.43 "
-       id="polygon23466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.78,523.67 1263.48,524.06 1275.27,527.35 "
-       id="polygon23468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1261.06,516.4 1260.82,516.89 1272.93,520.26 "
-       id="polygon23470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.66,517.45 1260.6,518 1272.71,521.37 "
-       id="polygon23472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1260.82,516.89 1260.66,517.45 1272.77,520.81 "
-       id="polygon23474" />
-    <line
-       x1="1597.09"
-       y1="528.84998"
-       x2="1595.8"
-       y2="532.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.02,525.66 1263.07,526.16 1274.86,529.45 "
-       id="polygon23478" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1540.57,441.88 1540.96,442.21 1551.84,434.79 "
-       id="polygon23480" />
-    <line
-       x1="1383.71"
-       y1="306.54999"
-       x2="1383.1801"
-       y2="308.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.48,524.06 1263.24,524.55 1275.03,527.84 "
-       id="polygon23484" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1541.89,443.61 1542.01,444.07 1552.89,436.64 "
-       id="polygon23486" />
-    <line
-       x1="1488.61"
-       y1="491.98999"
-       x2="1489.73"
-       y2="487.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.09,525.1 1263.02,525.66 1274.82,528.95 "
-       id="polygon23490" />
-    <line
-       x1="1487.78"
-       y1="496.14999"
-       x2="1488.61"
-       y2="491.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1263.24,524.55 1263.09,525.1 1274.88,528.39 "
-       id="polygon23494" />
-    <line
-       x1="1489.73"
-       y1="487.91"
-       x2="1491.15"
-       y2="483.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23496" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1540.96,442.21 1541.34,442.64 1552.22,435.21 "
-       id="polygon23498" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1541.66,443.12 1541.89,443.61 1552.77,436.19 "
-       id="polygon23500" />
-    <line
-       x1="1487.26"
-       y1="500.37"
-       x2="1487.78"
-       y2="496.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23502" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1541.34,442.64 1541.66,443.12 1552.54,435.69 "
-       id="polygon23504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1507.72,402.27 1507.43,402.32 1498.7,412.43 "
-       id="polygon23506" />
-    <line
-       x1="1491.15"
-       y1="483.94"
-       x2="1492.85"
-       y2="480.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23508" />
-    <line
-       x1="1487.05"
-       y1="504.63"
-       x2="1487.26"
-       y2="500.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23510" />
-    <line
-       x1="1492.85"
-       y1="480.09"
-       x2="1494.8101"
-       y2="476.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1508.11,402.35 1507.72,402.27 1498.98,412.38 "
-       id="polygon23514" />
-    <line
-       x1="1487.15"
-       y1="508.89001"
-       x2="1487.05"
-       y2="504.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23516" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1510.2,404.71 1510.22,404.43 1501.48,414.54 "
-       id="polygon23518" />
-    <line
-       x1="1383.1801"
-       y1="308.84"
-       x2="1382.45"
-       y2="311.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1508.55,402.55 1508.11,402.35 1499.37,412.46 "
-       id="polygon23522" />
-    <line
-       x1="1605.54"
-       y1="413.20001"
-       x2="1605.12"
-       y2="413.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23524" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1510.22,404.43 1510.09,404.07 1501.36,414.18 "
-       id="polygon23526" />
-    <line
-       x1="1487.5699"
-       y1="513.13"
-       x2="1487.15"
-       y2="508.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1509.02,402.86 1508.55,402.55 1499.82,412.67 "
-       id="polygon23530" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1273.79,519.14 1274.12,519.06 1262.01,515.7 "
-       id="polygon23532" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1510.09,404.07 1509.82,403.66 1501.09,413.77 "
-       id="polygon23534" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1509.46,403.24 1509.02,402.86 1500.29,412.98 "
-       id="polygon23536" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1509.82,403.66 1509.46,403.24 1500.72,413.36 "
-       id="polygon23538" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1275.9,526.71 1276.23,526.64 1264.43,523.35 "
-       id="polygon23540" />
-    <line
-       x1="1555.4301"
-       y1="553.91998"
-       x2="1557.8101"
-       y2="553.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23542" />
-    <line
-       x1="1595.8"
-       y1="532.32001"
-       x2="1594.2"
-       y2="535.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23544" />
-    <line
-       x1="1488.3"
-       y1="517.34003"
-       x2="1487.5699"
-       y2="513.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23546" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1273.46,519.38 1273.79,519.14 1261.69,515.77 "
-       id="polygon23548" />
-    <line
-       x1="1382.45"
-       y1="311.09"
-       x2="1381.54"
-       y2="313.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23550" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1275.57,526.96 1275.9,526.71 1264.11,523.43 "
-       id="polygon23552" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1275.23,530.13 1275,529.86 1263.21,526.57 "
-       id="polygon23554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1498.7,412.43 1498.98,412.38 1507.72,402.27 "
-       id="polygon23556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1273.16,519.77 1273.46,519.38 1261.36,516.02 "
-       id="polygon23558" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1452.3,554.48 1451.9,554.73 1461.23,554.67 "
-       id="polygon23560" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1272.89,522.28 1272.75,521.88 1260.64,518.51 "
-       id="polygon23562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.27,527.35 1275.57,526.96 1263.78,523.67 "
-       id="polygon23564" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1275,529.86 1274.86,529.45 1263.07,526.16 "
-       id="polygon23566" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1276.3,525.77 1275.98,526.01 1288.22,529.42 "
-       id="polygon23568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.93,520.26 1273.16,519.77 1261.06,516.4 "
-       id="polygon23570" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1501.48,414.54 1501.47,414.82 1510.2,404.71 "
-       id="polygon23572" />
-    <line
-       x1="1489.34"
-       y1="521.48999"
-       x2="1488.3"
-       y2="517.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23574" />
-    <line
-       x1="1499.5"
-       y1="469.48999"
-       x2="1502.1801"
-       y2="466.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.75,521.88 1272.71,521.37 1260.6,518 "
-       id="polygon23578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1498.98,412.38 1499.37,412.46 1508.11,402.35 "
-       id="polygon23580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.03,527.84 1275.27,527.35 1263.48,524.06 "
-       id="polygon23582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.77,520.81 1272.93,520.26 1260.82,516.89 "
-       id="polygon23584" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.71,521.37 1272.77,520.81 1260.66,517.45 "
-       id="polygon23586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1274.86,529.45 1274.82,528.95 1263.02,525.66 "
-       id="polygon23588" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1540.57,441.88 1540.2,441.69 1529.3,449.13 "
-       id="polygon23590" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1541.89,444.7 1542.01,444.44 1531.11,451.88 "
-       id="polygon23592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.98,526.01 1275.68,526.4 1287.92,529.81 "
-       id="polygon23594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1274.88,528.39 1275.03,527.84 1263.24,524.55 "
-       id="polygon23596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1274.82,528.95 1274.88,528.39 1263.09,525.1 "
-       id="polygon23598" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1452.82,552.43 1452.89,553.01 1462.22,552.95 "
-       id="polygon23600" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1452.89,553.01 1452.82,553.57 1462.15,553.52 "
-       id="polygon23602" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1501.36,414.18 1501.48,414.54 1510.22,404.43 "
-       id="polygon23604" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1393.77,533.63 1393.31,533.61 1393.25,533.25 "
-       id="polygon23606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1499.37,412.46 1499.82,412.67 1508.55,402.55 "
-       id="polygon23608" />
-    <line
-       x1="1381.54"
-       y1="313.29001"
-       x2="1380.45"
-       y2="315.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23610" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1540.96,442.21 1540.57,441.88 1529.67,449.32 "
-       id="polygon23612" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1542.01,444.44 1542.01,444.07 1531.11,451.51 "
-       id="polygon23614" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1501.09,413.77 1501.36,414.18 1510.09,404.07 "
-       id="polygon23616" />
-    <line
-       x1="1490.6801"
-       y1="525.56"
-       x2="1489.34"
-       y2="521.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1499.82,412.67 1500.29,412.98 1509.02,402.86 "
-       id="polygon23620" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1500.72,413.36 1501.09,413.77 1509.82,403.66 "
-       id="polygon23622" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1500.29,412.98 1500.72,413.36 1509.46,403.24 "
-       id="polygon23624" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1541.34,442.64 1540.96,442.21 1530.06,449.65 "
-       id="polygon23626" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1542.01,444.07 1541.89,443.61 1530.98,451.05 "
-       id="polygon23628" />
-    <line
-       x1="1502.1801"
-       y1="466.35001"
-       x2="1505.0699"
-       y2="463.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23630" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1541.66,443.12 1541.34,442.64 1530.44,450.07 "
-       id="polygon23632" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1541.89,443.61 1541.66,443.12 1530.75,450.56 "
-       id="polygon23634" />
-    <line
-       x1="1589.3199"
-       y1="399.82001"
-       x2="1590.84"
-       y2="399.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23636" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1374.97,467.06 1375.18,466.71 1375.96,478 "
-       id="polygon23638" />
-    <line
-       x1="1553.03"
-       y1="554.38"
-       x2="1555.4301"
-       y2="553.91998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23640" />
-    <line
-       x1="1380.45"
-       y1="315.41"
-       x2="1379.1801"
-       y2="317.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23642" />
-    <line
-       x1="1492.33"
-       y1="529.52002"
-       x2="1490.6801"
-       y2="525.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23644" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1528.99,449.08 1529.3,449.13 1540.2,441.69 "
-       id="polygon23646" />
-    <line
-       x1="1587.79"
-       y1="400.14001"
-       x2="1589.3199"
-       y2="399.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23648" />
-    <line
-       x1="1586.23"
-       y1="400.38"
-       x2="1587.79"
-       y2="400.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23650" />
-    <line
-       x1="1505.0699"
-       y1="463.42001"
-       x2="1508.15"
-       y2="460.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23652" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1529.3,449.13 1529.67,449.32 1540.57,441.88 "
-       id="polygon23654" />
-    <line
-       x1="1584.66"
-       y1="400.53"
-       x2="1586.23"
-       y2="400.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23656" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1531.11,451.51 1531.11,451.88 1542.01,444.44 "
-       id="polygon23658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.16,465.66 1371.8,465.96 1372.57,477.24 "
-       id="polygon23660" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1288.54,529.18 1288.87,529.1 1276.63,525.69 "
-       id="polygon23662" />
-    <line
-       x1="1494.27"
-       y1="533.34003"
-       x2="1492.33"
-       y2="529.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23664" />
-    <line
-       x1="1583.09"
-       y1="400.59"
-       x2="1584.66"
-       y2="400.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23666" />
-    <line
-       x1="1379.1801"
-       y1="317.44"
-       x2="1377.75"
-       y2="319.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23668" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1451.81,554.37 1451.46,554.43 1451.46,554.8 "
-       id="polygon23670" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1529.67,449.32 1530.06,449.65 1540.96,442.21 "
-       id="polygon23672" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1530.98,451.05 1531.11,451.51 1542.01,444.07 "
-       id="polygon23674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.65,465.45 1372.16,465.66 1372.94,476.94 "
-       id="polygon23676" />
-    <line
-       x1="1581.51"
-       y1="400.57001"
-       x2="1583.09"
-       y2="400.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23678" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1374.76,465.68 1374.32,465.46 1375.1,476.75 "
-       id="polygon23680" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1530.06,449.65 1530.44,450.07 1541.34,442.64 "
-       id="polygon23682" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1288.22,529.42 1288.54,529.18 1276.3,525.77 "
-       id="polygon23684" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1530.75,450.56 1530.98,451.05 1541.89,443.61 "
-       id="polygon23686" />
-    <line
-       x1="1579.9301"
-       y1="400.45999"
-       x2="1581.51"
-       y2="400.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23688" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1530.44,450.07 1530.75,450.56 1541.66,443.12 "
-       id="polygon23690" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1374.32,465.46 1373.78,465.34 1374.56,476.63 "
-       id="polygon23692" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1373.78,465.34 1373.21,465.34 1373.98,476.62 "
-       id="polygon23694" />
-    <line
-       x1="1592.3101"
-       y1="538.98999"
-       x2="1590.14"
-       y2="542.15997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23696" />
-    <line
-       x1="1578.36"
-       y1="400.26999"
-       x2="1579.9301"
-       y2="400.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1498.98,412.38 1498.7,412.43 1489.95,422.56 "
-       id="polygon23700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1287.92,529.81 1288.22,529.42 1275.98,526.01 "
-       id="polygon23702" />
-    <line
-       x1="1496.48"
-       y1="537.02002"
-       x2="1494.27"
-       y2="533.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23704" />
-    <line
-       x1="1576.8"
-       y1="399.98999"
-       x2="1578.36"
-       y2="400.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23706" />
-    <line
-       x1="1377.75"
-       y1="319.38"
-       x2="1376.15"
-       y2="321.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23708" />
-    <line
-       x1="1508.15"
-       y1="460.73001"
-       x2="1511.39"
-       y2="458.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1287.68,530.3 1287.92,529.81 1275.68,526.4 "
-       id="polygon23712" />
-    <line
-       x1="1575.27"
-       y1="399.63"
-       x2="1576.8"
-       y2="399.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1499.37,412.46 1498.98,412.38 1490.23,422.51 "
-       id="polygon23716" />
-    <line
-       x1="1573.75"
-       y1="399.17999"
-       x2="1575.27"
-       y2="399.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23718" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1501.47,414.82 1501.48,414.54 1492.73,424.68 "
-       id="polygon23720" />
-    <line
-       x1="1550.62"
-       y1="554.56"
-       x2="1553.03"
-       y2="554.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23722" />
-    <line
-       x1="1572.27"
-       y1="398.64999"
-       x2="1573.75"
-       y2="399.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1499.82,412.67 1499.37,412.46 1490.62,422.6 "
-       id="polygon23726" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1501.48,414.54 1501.36,414.18 1492.6,424.32 "
-       id="polygon23728" />
-    <line
-       x1="1570.8199"
-       y1="398.04999"
-       x2="1572.27"
-       y2="398.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23730" />
-    <line
-       x1="1376.15"
-       y1="321.20001"
-       x2="1374.41"
-       y2="322.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23732" />
-    <line
-       x1="1498.97"
-       y1="540.53003"
-       x2="1496.48"
-       y2="537.02002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1500.29,412.98 1499.82,412.67 1491.06,422.8 "
-       id="polygon23736" />
-    <line
-       x1="1569.41"
-       y1="397.37"
-       x2="1570.8199"
-       y2="398.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23738" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1501.36,414.18 1501.09,413.77 1492.34,423.91 "
-       id="polygon23740" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1500.72,413.36 1500.29,412.98 1491.53,423.11 "
-       id="polygon23742" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1501.09,413.77 1500.72,413.36 1491.97,423.49 "
-       id="polygon23744" />
-    <line
-       x1="1568.04"
-       y1="396.60999"
-       x2="1569.41"
-       y2="397.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23746" />
-    <line
-       x1="1603.52"
-       y1="411.42999"
-       x2="1603.42"
-       y2="411.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23748" />
-    <line
-       x1="1590.14"
-       y1="542.15997"
-       x2="1587.6899"
-       y2="545.16998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23750" />
-    <line
-       x1="1511.39"
-       y1="458.29999"
-       x2="1514.78"
-       y2="456.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23752" />
-    <line
-       x1="1566.72"
-       y1="395.79001"
-       x2="1568.04"
-       y2="396.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23754" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1393.82,533.28 1393.25,533.25 1390.75,536.48 "
-       id="polygon23756" />
-    <line
-       x1="1374.41"
-       y1="322.91"
-       x2="1372.52"
-       y2="324.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23758" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1276.23,526.64 1275.9,526.71 1287.73,530.01 "
-       id="polygon23760" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1274.12,519.06 1273.79,519.14 1285.94,522.51 "
-       id="polygon23762" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1517.72,456.89 1517.84,456.64 1528.76,449.19 "
-       id="polygon23764" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1529.3,449.13 1528.99,449.08 1518.06,456.53 "
-       id="polygon23766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1489.95,422.56 1490.23,422.51 1498.98,412.38 "
-       id="polygon23768" />
-    <line
-       x1="1501.71"
-       y1="543.84003"
-       x2="1498.97"
-       y2="540.53003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23770" />
-    <line
-       x1="1565.45"
-       y1="394.89999"
-       x2="1566.72"
-       y2="395.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23772" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1287.67,533.45 1287.35,533.53 1275.52,530.23 "
-       id="polygon23774" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1275,529.86 1275.23,530.13 1287.05,533.43 "
-       id="polygon23776" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1285.88,525.95 1285.55,526.03 1273.41,522.65 "
-       id="polygon23778" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1272.89,522.28 1273.12,522.55 1285.27,525.93 "
-       id="polygon23780" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1275.9,526.71 1275.57,526.96 1287.4,530.26 "
-       id="polygon23782" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1273.79,519.14 1273.46,519.38 1285.61,522.75 "
-       id="polygon23784" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1492.73,424.68 1492.72,424.96 1501.47,414.82 "
-       id="polygon23786" />
-    <line
-       x1="1564.24"
-       y1="393.95001"
-       x2="1565.45"
-       y2="394.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23788" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1372.36,477.59 1372.57,477.24 1371.8,465.96 "
-       id="polygon23790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1490.23,422.51 1490.62,422.6 1499.37,412.46 "
-       id="polygon23792" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1529.67,449.32 1529.3,449.13 1518.38,456.58 "
-       id="polygon23794" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1274.86,529.45 1275,529.86 1286.83,533.16 "
-       id="polygon23796" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1272.75,521.88 1272.89,522.28 1285.04,525.66 "
-       id="polygon23798" />
-    <line
-       x1="1372.52"
-       y1="324.47"
-       x2="1370.51"
-       y2="325.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23800" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.57,526.96 1275.27,527.35 1287.1,530.64 "
-       id="polygon23802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1273.46,519.38 1273.16,519.77 1285.31,523.14 "
-       id="polygon23804" />
-    <line
-       x1="1563.09"
-       y1="392.94"
-       x2="1564.24"
-       y2="393.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23806" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1375.54,476.97 1375.85,477.27 1375.07,465.99 "
-       id="polygon23808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.57,477.24 1372.94,476.94 1372.16,465.66 "
-       id="polygon23810" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1492.6,424.32 1492.73,424.68 1501.48,414.54 "
-       id="polygon23812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1274.82,528.95 1274.86,529.45 1286.69,532.76 "
-       id="polygon23814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.71,521.37 1272.75,521.88 1284.89,525.25 "
-       id="polygon23816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.27,527.35 1275.03,527.84 1286.86,531.14 "
-       id="polygon23818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1490.62,422.6 1491.06,422.8 1499.82,412.67 "
-       id="polygon23820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1273.16,519.77 1272.93,520.26 1285.07,523.64 "
-       id="polygon23822" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1530.06,449.65 1529.67,449.32 1518.75,456.78 "
-       id="polygon23824" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1531.11,451.88 1531.11,451.51 1520.18,458.97 "
-       id="polygon23826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1274.88,528.39 1274.82,528.95 1286.64,532.25 "
-       id="polygon23828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.77,520.81 1272.71,521.37 1284.85,524.75 "
-       id="polygon23830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1275.03,527.84 1274.88,528.39 1286.71,531.7 "
-       id="polygon23832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1272.93,520.26 1272.77,520.81 1284.91,524.19 "
-       id="polygon23834" />
-    <line
-       x1="1504.6899"
-       y1="546.95001"
-       x2="1501.71"
-       y2="543.84003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23836" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1375.1,476.75 1375.54,476.97 1374.76,465.68 "
-       id="polygon23838" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1492.34,423.91 1492.6,424.32 1501.36,414.18 "
-       id="polygon23840" />
-    <line
-       x1="1562"
-       y1="391.87"
-       x2="1563.09"
-       y2="392.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23842" />
-    <line
-       x1="1548.22"
-       y1="554.46997"
-       x2="1550.62"
-       y2="554.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1491.06,422.8 1491.53,423.11 1500.29,412.98 "
-       id="polygon23846" />
-    <line
-       x1="1587.6899"
-       y1="545.16998"
-       x2="1584.98"
-       y2="548.02002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23848" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1451.9,554.73 1452.3,554.48 1442.93,554.54 "
-       id="polygon23850" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1530.44,450.07 1530.06,449.65 1519.14,457.11 "
-       id="polygon23852" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1374.56,476.63 1375.1,476.75 1374.32,465.46 "
-       id="polygon23854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.43,476.73 1373.98,476.62 1373.21,465.34 "
-       id="polygon23856" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1531.11,451.51 1530.98,451.05 1520.06,458.51 "
-       id="polygon23858" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1373.98,476.62 1374.56,476.63 1373.78,465.34 "
-       id="polygon23860" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1491.97,423.49 1492.34,423.91 1501.09,413.77 "
-       id="polygon23862" />
-    <line
-       x1="1370.51"
-       y1="325.89001"
-       x2="1368.38"
-       y2="327.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23864" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1491.53,423.11 1491.97,423.49 1500.72,413.36 "
-       id="polygon23866" />
-    <line
-       x1="1514.78"
-       y1="456.13"
-       x2="1518.29"
-       y2="454.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23868" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1530.75,450.56 1530.44,450.07 1519.51,457.53 "
-       id="polygon23870" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1530.98,451.05 1530.75,450.56 1519.83,458.02 "
-       id="polygon23872" />
-    <line
-       x1="1560.98"
-       y1="390.76001"
-       x2="1562"
-       y2="391.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23874" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1452.89,553.01 1452.82,552.43 1443.46,552.49 "
-       id="polygon23876" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1452.82,553.57 1452.89,553.01 1443.52,553.06 "
-       id="polygon23878" />
-    <line
-       x1="1368.38"
-       y1="327.16"
-       x2="1366.14"
-       y2="328.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23880" />
-    <line
-       x1="1560.03"
-       y1="389.60001"
-       x2="1560.98"
-       y2="390.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23882" />
-    <line
-       x1="1507.9"
-       y1="549.83002"
-       x2="1504.6899"
-       y2="546.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23884" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1520.19,459.34 1520.07,459.59 1530.99,452.14 "
-       id="polygon23886" />
-    <line
-       x1="1603.38"
-       y1="410.26999"
-       x2="1603.4399"
-       y2="409.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23888" />
-    <line
-       x1="1559.15"
-       y1="388.39999"
-       x2="1560.03"
-       y2="389.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23890" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1518.38,456.58 1518.75,456.78 1529.67,449.32 "
-       id="polygon23892" />
-    <line
-       x1="1366.14"
-       y1="328.26999"
-       x2="1363.8101"
-       y2="329.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23894" />
-    <line
-       x1="1584.98"
-       y1="548.02002"
-       x2="1582.04"
-       y2="550.66998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23896" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1520.18,458.97 1520.19,459.34 1531.11,451.88 "
-       id="polygon23898" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1285.94,522.51 1286.26,522.43 1274.12,519.06 "
-       id="polygon23900" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1518.75,456.78 1519.14,457.11 1530.06,449.65 "
-       id="polygon23902" />
-    <line
-       x1="1558.35"
-       y1="387.17001"
-       x2="1559.15"
-       y2="388.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23904" />
-    <line
-       x1="1511.3101"
-       y1="552.46002"
-       x2="1507.9"
-       y2="549.83002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23906" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1520.06,458.51 1520.18,458.97 1531.11,451.51 "
-       id="polygon23908" />
-    <line
-       x1="1363.8101"
-       y1="329.20001"
-       x2="1361.41"
-       y2="329.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23910" />
-    <line
-       x1="1518.29"
-       y1="454.23001"
-       x2="1521.91"
-       y2="452.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23912" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1519.14,457.11 1519.51,457.53 1530.44,450.07 "
-       id="polygon23914" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1287.4,530.26 1287.73,530.01 1275.9,526.71 "
-       id="polygon23916" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1519.83,458.02 1520.06,458.51 1530.98,451.05 "
-       id="polygon23918" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1519.51,457.53 1519.83,458.02 1530.75,450.56 "
-       id="polygon23920" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1285.61,522.75 1285.94,522.51 1273.79,519.14 "
-       id="polygon23922" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1285.27,525.93 1285.04,525.66 1272.89,522.28 "
-       id="polygon23924" />
-    <line
-       x1="1557.62"
-       y1="385.91"
-       x2="1558.35"
-       y2="387.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23926" />
-    <line
-       x1="1361.41"
-       y1="329.95001"
-       x2="1358.95"
-       y2="330.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23928" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1288.87,529.1 1288.54,529.18 1300.83,532.6 "
-       id="polygon23930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1287.1,530.64 1287.4,530.26 1275.57,526.96 "
-       id="polygon23932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1490.23,422.51 1489.95,422.56 1481.18,432.71 "
-       id="polygon23934" />
-    <line
-       x1="1545.86"
-       y1="554.09003"
-       x2="1548.22"
-       y2="554.46997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23936" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1286.83,533.16 1286.69,532.76 1274.86,529.45 "
-       id="polygon23938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1285.31,523.14 1285.61,522.75 1273.46,519.38 "
-       id="polygon23940" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1285.04,525.66 1284.89,525.25 1272.75,521.88 "
-       id="polygon23942" />
-    <line
-       x1="1514.91"
-       y1="554.84998"
-       x2="1511.3101"
-       y2="552.46002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23944" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.86,531.14 1287.1,530.64 1275.27,527.35 "
-       id="polygon23946" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.69,532.76 1286.64,532.25 1274.82,528.95 "
-       id="polygon23948" />
-    <line
-       x1="1358.95"
-       y1="330.51999"
-       x2="1356.4301"
-       y2="330.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23950" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="1372.36,477.59 1372.57,477.24 1372.89,477.35 "
-       id="polygon23952" />
-    <line
-       x1="1582.04"
-       y1="550.66998"
-       x2="1578.86"
-       y2="553.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1285.07,523.64 1285.31,523.14 1273.16,519.77 "
-       id="polygon23956" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1288.54,529.18 1288.22,529.42 1300.5,532.85 "
-       id="polygon23958" />
-    <line
-       x1="1556.97"
-       y1="384.62"
-       x2="1557.62"
-       y2="385.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1284.89,525.25 1284.85,524.75 1272.71,521.37 "
-       id="polygon23962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.71,531.7 1286.86,531.14 1275.03,527.84 "
-       id="polygon23964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.64,532.25 1286.71,531.7 1274.88,528.39 "
-       id="polygon23966" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1284.91,524.19 1285.07,523.64 1272.93,520.26 "
-       id="polygon23968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1284.85,524.75 1284.91,524.19 1272.77,520.81 "
-       id="polygon23970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1490.62,422.6 1490.23,422.51 1481.46,432.66 "
-       id="polygon23972" />
-    <line
-       x1="1603.55"
-       y1="409.42001"
-       x2="1603.72"
-       y2="408.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23974" />
-    <line
-       x1="1356.4301"
-       y1="330.89999"
-       x2="1353.89"
-       y2="331.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23976" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1442.54,551.27 1442.94,551.55 1452.31,551.5 "
-       id="polygon23978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1288.22,529.42 1287.92,529.81 1300.2,533.23 "
-       id="polygon23980" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1492.72,424.96 1492.73,424.68 1483.96,434.84 "
-       id="polygon23982" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1390.21,536.63 1390.75,536.48 1393.25,533.25 "
-       id="polygon23984" />
-    <line
-       x1="1353.89"
-       y1="331.09"
-       x2="1351.33"
-       y2="331.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23986" />
-    <line
-       x1="1556.4"
-       y1="383.31"
-       x2="1556.97"
-       y2="384.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1491.06,422.8 1490.62,422.6 1481.84,432.75 "
-       id="polygon23990" />
-    <line
-       x1="1518.67"
-       y1="556.96002"
-       x2="1514.91"
-       y2="554.84998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23992" />
-    <polygon
-       style="opacity:1;fill:#009b00"
-       points="1391.32,536.51 1391.86,536.71 1394.36,533.48 "
-       id="polygon23994" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1492.73,424.68 1492.6,424.32 1483.83,434.47 "
-       id="polygon23996" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1443.25,554.14 1442.93,554.54 1452.3,554.48 "
-       id="polygon23998" />
-    <line
-       x1="1351.33"
-       y1="331.09"
-       x2="1348.77"
-       y2="330.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1491.53,423.11 1491.06,422.8 1482.29,432.96 "
-       id="polygon24002" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1492.6,424.32 1492.34,423.91 1483.57,434.07 "
-       id="polygon24004" />
-    <line
-       x1="1348.77"
-       y1="330.89999"
-       x2="1346.22"
-       y2="330.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24006" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1443.46,552.49 1443.52,553.06 1452.89,553.01 "
-       id="polygon24008" />
-    <line
-       x1="1578.86"
-       y1="553.12"
-       x2="1575.47"
-       y2="555.34998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24010" />
-    <line
-       x1="1521.91"
-       y1="452.62"
-       x2="1525.6"
-       y2="451.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24012" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1443.52,553.06 1443.45,553.63 1452.82,553.57 "
-       id="polygon24014" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1491.97,423.49 1491.53,423.11 1482.76,433.27 "
-       id="polygon24016" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1492.34,423.91 1491.97,423.49 1483.2,433.65 "
-       id="polygon24018" />
-    <line
-       x1="1555.91"
-       y1="382"
-       x2="1556.4"
-       y2="383.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24020" />
-    <line
-       x1="1320.87"
-       y1="310.14999"
-       x2="1319.9301"
-       y2="307.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24022" />
-    <line
-       x1="1319.9301"
-       y1="307.72"
-       x2="1319.1801"
-       y2="305.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24024" />
-    <line
-       x1="1321.99"
-       y1="312.5"
-       x2="1320.87"
-       y2="310.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24026" />
-    <line
-       x1="1319.1801"
-       y1="305.23001"
-       x2="1318.61"
-       y2="302.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24028" />
-    <line
-       x1="1323.29"
-       y1="314.76999"
-       x2="1321.99"
-       y2="312.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24030" />
-    <line
-       x1="1343.7"
-       y1="329.92999"
-       x2="1341.23"
-       y2="329.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24032" />
-    <line
-       x1="1324.75"
-       y1="316.92999"
-       x2="1323.29"
-       y2="314.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24034" />
-    <line
-       x1="1318.61"
-       y1="302.70001"
-       x2="1318.24"
-       y2="300.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24036" />
-    <line
-       x1="1326.37"
-       y1="318.97"
-       x2="1324.75"
-       y2="316.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24038" />
-    <line
-       x1="1341.23"
-       y1="329.16"
-       x2="1338.8199"
-       y2="328.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24040" />
-    <line
-       x1="1328.14"
-       y1="320.89001"
-       x2="1326.37"
-       y2="318.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24042" />
-    <line
-       x1="1318.24"
-       y1="300.13"
-       x2="1318.0601"
-       y2="297.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24044" />
-    <line
-       x1="1338.8199"
-       y1="328.20999"
-       x2="1336.48"
-       y2="327.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24046" />
-    <line
-       x1="1330.05"
-       y1="322.67001"
-       x2="1328.14"
-       y2="320.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24048" />
-    <line
-       x1="1332.08"
-       y1="324.29999"
-       x2="1330.05"
-       y2="322.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24050" />
-    <line
-       x1="1336.48"
-       y1="327.07999"
-       x2="1334.23"
-       y2="325.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24052" />
-    <line
-       x1="1334.23"
-       y1="325.76999"
-       x2="1332.08"
-       y2="324.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24054" />
-    <line
-       x1="1522.5699"
-       y1="558.78998"
-       x2="1518.67"
-       y2="556.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24056" />
-    <line
-       x1="1318.0601"
-       y1="297.54001"
-       x2="1318.09"
-       y2="294.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1481.18,432.71 1481.46,432.66 1490.23,422.51 "
-       id="polygon24060" />
-    <line
-       x1="1318.09"
-       y1="294.95001"
-       x2="1318.3"
-       y2="292.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24062" />
-    <line
-       x1="1555.51"
-       y1="380.67001"
-       x2="1555.91"
-       y2="382"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24064" />
-    <line
-       x1="1318.3"
-       y1="292.37"
-       x2="1318.71"
-       y2="289.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24066" />
-    <line
-       x1="1603.95"
-       y1="408.54001"
-       x2="1604.23"
-       y2="408.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24068" />
-    <line
-       x1="1575.47"
-       y1="555.34998"
-       x2="1571.9"
-       y2="557.33002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24070" />
-    <line
-       x1="1543.54"
-       y1="553.45001"
-       x2="1545.86"
-       y2="554.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24072" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1518.75,456.78 1518.38,456.58 1507.43,464.05 "
-       id="polygon24074" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1520.07,459.59 1520.19,459.34 1509.24,466.82 "
-       id="polygon24076" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1483.96,434.84 1483.95,435.12 1492.72,424.96 "
-       id="polygon24078" />
-    <line
-       x1="1318.71"
-       y1="289.82001"
-       x2="1319.3101"
-       y2="287.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1481.46,432.66 1481.84,432.75 1490.62,422.6 "
-       id="polygon24082" />
-    <line
-       x1="1526.6"
-       y1="560.33002"
-       x2="1522.5699"
-       y2="558.78998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24084" />
-    <line
-       x1="1319.3101"
-       y1="287.32001"
-       x2="1320.1"
-       y2="284.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24086" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1519.14,457.11 1518.75,456.78 1507.8,464.25 "
-       id="polygon24088" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1520.19,459.34 1520.18,458.97 1509.24,466.44 "
-       id="polygon24090" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1483.83,434.47 1483.96,434.84 1492.73,424.68 "
-       id="polygon24092" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1300.83,532.6 1301.15,532.52 1288.87,529.1 "
-       id="polygon24094" />
-    <line
-       x1="1555.1801"
-       y1="379.34"
-       x2="1555.51"
-       y2="380.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1481.84,432.75 1482.29,432.96 1491.06,422.8 "
-       id="polygon24098" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1519.51,457.53 1519.14,457.11 1508.19,464.57 "
-       id="polygon24100" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1520.18,458.97 1520.06,458.51 1509.11,465.98 "
-       id="polygon24102" />
-    <line
-       x1="1320.1"
-       y1="284.87"
-       x2="1321.0699"
-       y2="282.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24104" />
-    <line
-       x1="1571.9"
-       y1="557.33002"
-       x2="1568.15"
-       y2="559.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24106" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1375.75,478.34 1375.96,478 1376.75,489.32 "
-       id="polygon24108" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1483.57,434.07 1483.83,434.47 1492.6,424.32 "
-       id="polygon24110" />
-    <line
-       x1="1530.72"
-       y1="561.57001"
-       x2="1526.6"
-       y2="560.33002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1482.29,432.96 1482.76,433.27 1491.53,423.11 "
-       id="polygon24114" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1519.83,458.02 1519.51,457.53 1508.56,465 "
-       id="polygon24116" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1520.06,458.51 1519.83,458.02 1508.88,465.49 "
-       id="polygon24118" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1300.5,532.85 1300.83,532.6 1288.54,529.18 "
-       id="polygon24120" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1483.2,433.65 1483.57,434.07 1492.34,423.91 "
-       id="polygon24122" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1482.76,433.27 1483.2,433.65 1491.97,423.49 "
-       id="polygon24124" />
-    <line
-       x1="1525.6"
-       y1="451.29999"
-       x2="1529.34"
-       y2="450.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24126" />
-    <line
-       x1="1321.0699"
-       y1="282.48999"
-       x2="1322.21"
-       y2="280.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1300.2,533.23 1300.5,532.85 1288.22,529.42 "
-       id="polygon24130" />
-    <line
-       x1="1554.9399"
-       y1="378.01999"
-       x2="1555.1801"
-       y2="379.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24132" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1372.57,477.24 1372.36,477.59 1373.14,488.91 "
-       id="polygon24134" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1442.77,551.84 1442.45,551.62 1442.54,551.27 "
-       id="polygon24136" />
-    <line
-       x1="1534.92"
-       y1="562.51001"
-       x2="1530.72"
-       y2="561.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24138" />
-    <line
-       x1="1568.15"
-       y1="559.06"
-       x2="1564.26"
-       y2="560.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24140" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1507.12,464 1507.43,464.05 1518.38,456.58 "
-       id="polygon24142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1299.96,533.73 1300.2,533.23 1287.92,529.81 "
-       id="polygon24144" />
-    <line
-       x1="1322.21"
-       y1="280.20001"
-       x2="1323.52"
-       y2="278"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24146" />
-    <line
-       x1="1604.5601"
-       y1="407.66"
-       x2="1604.9399"
-       y2="407.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24148" />
-    <line
-       x1="1539.16"
-       y1="563.14001"
-       x2="1534.92"
-       y2="562.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24150" />
-    <line
-       x1="1564.26"
-       y1="560.52002"
-       x2="1560.25"
-       y2="561.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.43,476.73 1372.94,476.94 1373.72,488.27 "
-       id="polygon24154" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1507.43,464.05 1507.8,464.25 1518.75,456.78 "
-       id="polygon24156" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1288.57,530.3 1288.34,530.04 1300.21,533.34 "
-       id="polygon24158" />
-    <line
-       x1="1554.78"
-       y1="376.70001"
-       x2="1554.9399"
-       y2="378.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24160" />
-    <line
-       x1="1323.52"
-       y1="278"
-       x2="1324.99"
-       y2="275.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24162" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1375.54,476.97 1375.1,476.75 1375.88,488.07 "
-       id="polygon24164" />
-    <line
-       x1="1543.4301"
-       y1="563.46997"
-       x2="1539.16"
-       y2="563.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24166" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1509.24,466.44 1509.24,466.82 1520.19,459.34 "
-       id="polygon24168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.98,476.62 1373.43,476.73 1374.21,488.05 "
-       id="polygon24170" />
-    <line
-       x1="1560.25"
-       y1="561.70001"
-       x2="1556.13"
-       y2="562.59998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24172" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1374.56,476.63 1373.98,476.62 1374.77,487.95 "
-       id="polygon24174" />
-    <line
-       x1="1547.7"
-       y1="563.47998"
-       x2="1543.4301"
-       y2="563.46997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24176" />
-    <line
-       x1="1541.29"
-       y1="552.52002"
-       x2="1543.54"
-       y2="553.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24178" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1507.8,464.25 1508.19,464.57 1519.14,457.11 "
-       id="polygon24180" />
-    <line
-       x1="1556.13"
-       y1="562.59998"
-       x2="1551.95"
-       y2="563.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24182" />
-    <line
-       x1="1551.95"
-       y1="563.19"
-       x2="1547.7"
-       y2="563.47998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24184" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1509.11,465.98 1509.24,466.44 1520.18,458.97 "
-       id="polygon24186" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1508.19,464.57 1508.56,465 1519.51,457.53 "
-       id="polygon24188" />
-    <line
-       x1="1324.99"
-       y1="275.92999"
-       x2="1326.61"
-       y2="273.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24190" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1508.88,465.49 1509.11,465.98 1520.06,458.51 "
-       id="polygon24192" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1508.56,465 1508.88,465.49 1519.83,458.02 "
-       id="polygon24194" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1288.05,529.94 1287.73,530.01 1299.6,533.32 "
-       id="polygon24196" />
-    <line
-       x1="1554.7"
-       y1="375.41"
-       x2="1554.78"
-       y2="376.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24198" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1286.83,533.16 1287.05,533.43 1298.93,536.75 "
-       id="polygon24200" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1286.26,522.43 1285.94,522.51 1298.13,525.9 "
-       id="polygon24202" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1481.46,432.66 1481.18,432.71 1472.39,442.88 "
-       id="polygon24204" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1287.73,530.01 1287.4,530.26 1299.27,533.57 "
-       id="polygon24206" />
-    <line
-       x1="1326.61"
-       y1="273.95999"
-       x2="1328.37"
-       y2="272.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24208" />
-    <line
-       x1="1529.34"
-       y1="450.28"
-       x2="1533.12"
-       y2="449.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24210" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1298.07,529.34 1297.74,529.42 1285.55,526.03 "
-       id="polygon24212" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1285.04,525.66 1285.27,525.93 1297.45,529.32 "
-       id="polygon24214" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1286.69,532.76 1286.83,533.16 1298.7,536.48 "
-       id="polygon24216" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1285.94,522.51 1285.61,522.75 1297.8,526.14 "
-       id="polygon24218" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1287.4,530.26 1287.1,530.64 1298.97,533.96 "
-       id="polygon24220" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1284.89,525.25 1285.04,525.66 1297.23,529.05 "
-       id="polygon24222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1481.84,432.75 1481.46,432.66 1472.67,442.84 "
-       id="polygon24224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.64,532.25 1286.69,532.76 1298.56,536.07 "
-       id="polygon24226" />
-    <line
-       x1="1554.7"
-       y1="374.13"
-       x2="1554.7"
-       y2="375.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1287.1,530.64 1286.86,531.14 1298.73,534.45 "
-       id="polygon24230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1285.61,522.75 1285.31,523.14 1297.5,526.53 "
-       id="polygon24232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.71,531.7 1286.64,532.25 1298.52,535.57 "
-       id="polygon24234" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1286.86,531.14 1286.71,531.7 1298.57,535.01 "
-       id="polygon24236" />
-    <line
-       x1="1328.37"
-       y1="272.14001"
-       x2="1330.26"
-       y2="270.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1284.85,524.75 1284.89,525.25 1297.09,528.65 "
-       id="polygon24240" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1285.31,523.14 1285.07,523.64 1297.26,527.03 "
-       id="polygon24242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1284.91,524.19 1284.85,524.75 1297.04,528.14 "
-       id="polygon24244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1482.29,432.96 1481.84,432.75 1473.05,442.93 "
-       id="polygon24246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1285.07,523.64 1284.91,524.19 1297.1,527.58 "
-       id="polygon24248" />
-    <line
-       x1="1605.87"
-       y1="406.37"
-       x2="1606.4"
-       y2="405.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1482.76,433.27 1482.29,432.96 1473.5,443.14 "
-       id="polygon24252" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1483.83,434.47 1483.57,434.07 1474.78,444.25 "
-       id="polygon24254" />
-    <line
-       x1="1554.78"
-       y1="372.87"
-       x2="1554.7"
-       y2="374.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24256" />
-    <line
-       x1="1539.13"
-       y1="551.34003"
-       x2="1541.29"
-       y2="552.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24258" />
-    <line
-       x1="1330.26"
-       y1="270.45999"
-       x2="1332.26"
-       y2="268.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24260" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1483.2,433.65 1482.76,433.27 1473.97,443.45 "
-       id="polygon24262" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1442.94,551.55 1442.54,551.27 1433.14,551.32 "
-       id="polygon24264" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1483.57,434.07 1483.2,433.65 1474.41,443.83 "
-       id="polygon24266" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1376.64,488.6 1376.78,488.95 1376,477.63 "
-       id="polygon24268" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1495.81,471.84 1495.93,471.59 1506.89,464.11 "
-       id="polygon24270" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1507.43,464.05 1507.12,464 1496.15,471.48 "
-       id="polygon24272" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1376.33,488.3 1376.64,488.6 1375.85,477.27 "
-       id="polygon24274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.36,488.57 1373.72,488.27 1372.94,476.94 "
-       id="polygon24276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.39,442.88 1472.67,442.84 1481.46,432.66 "
-       id="polygon24278" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1442.93,554.54 1443.25,554.14 1433.85,554.2 "
-       id="polygon24280" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1507.8,464.25 1507.43,464.05 1496.46,471.53 "
-       id="polygon24282" />
-    <line
-       x1="1332.26"
-       y1="268.94"
-       x2="1334.37"
-       y2="267.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.72,488.27 1374.21,488.05 1373.43,476.73 "
-       id="polygon24286" />
-    <polygon
-       style="opacity:1;fill:#009d00"
-       points="1443.52,553.06 1443.46,552.49 1434.05,552.54 "
-       id="polygon24288" />
-    <line
-       x1="1554.9399"
-       y1="371.64999"
-       x2="1554.78"
-       y2="372.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24290" />
-    <line
-       x1="1533.12"
-       y1="449.56"
-       x2="1536.9"
-       y2="449.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24292" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1443.45,553.63 1443.52,553.06 1434.13,553.12 "
-       id="polygon24294" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1375.34,487.95 1375.88,488.07 1375.1,476.75 "
-       id="polygon24296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.21,488.05 1374.77,487.95 1373.98,476.62 "
-       id="polygon24298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.67,442.84 1473.05,442.93 1481.84,432.75 "
-       id="polygon24300" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1508.19,464.57 1507.8,464.25 1496.83,471.73 "
-       id="polygon24302" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1509.24,466.82 1509.24,466.44 1498.27,473.93 "
-       id="polygon24304" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1301.67,532.89 1301.44,532.63 1313.77,536.06 "
-       id="polygon24306" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1298.13,525.9 1298.45,525.82 1286.26,522.43 "
-       id="polygon24308" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1299.27,533.57 1299.6,533.32 1287.73,530.01 "
-       id="polygon24310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.05,442.93 1473.5,443.14 1482.29,432.96 "
-       id="polygon24312" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1298.93,536.75 1298.7,536.48 1286.83,533.16 "
-       id="polygon24314" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1508.56,465 1508.19,464.57 1497.22,472.06 "
-       id="polygon24316" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1509.24,466.44 1509.11,465.98 1498.14,473.47 "
-       id="polygon24318" />
-    <line
-       x1="1334.37"
-       y1="267.57999"
-       x2="1336.5699"
-       y2="266.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24320" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1508.88,465.49 1508.56,465 1497.59,472.49 "
-       id="polygon24322" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1509.11,465.98 1508.88,465.49 1497.91,472.98 "
-       id="polygon24324" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1474.78,444.25 1475.04,444.65 1483.83,434.47 "
-       id="polygon24326" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1297.8,526.14 1298.13,525.9 1285.94,522.51 "
-       id="polygon24328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.5,443.14 1473.97,443.45 1482.76,433.27 "
-       id="polygon24330" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.97,533.96 1299.27,533.57 1287.4,530.26 "
-       id="polygon24332" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1297.45,529.32 1297.23,529.05 1285.04,525.66 "
-       id="polygon24334" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1298.7,536.48 1298.56,536.07 1286.69,532.76 "
-       id="polygon24336" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1474.41,443.83 1474.78,444.25 1483.57,434.07 "
-       id="polygon24338" />
-    <line
-       x1="1555.17"
-       y1="370.45999"
-       x2="1554.9399"
-       y2="371.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24340" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1473.97,443.45 1474.41,443.83 1483.2,433.65 "
-       id="polygon24342" />
-    <line
-       x1="1607.62"
-       y1="405.20999"
-       x2="1608.3"
-       y2="404.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.73,534.45 1298.97,533.96 1287.1,530.64 "
-       id="polygon24346" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.56,536.07 1298.52,535.57 1286.64,532.25 "
-       id="polygon24348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.5,526.53 1297.8,526.14 1285.61,522.75 "
-       id="polygon24350" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1297.23,529.05 1297.09,528.65 1284.89,525.25 "
-       id="polygon24352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.57,535.01 1298.73,534.45 1286.86,531.14 "
-       id="polygon24354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.52,535.57 1298.57,535.01 1286.71,531.7 "
-       id="polygon24356" />
-    <line
-       x1="1537.0699"
-       y1="549.89001"
-       x2="1539.13"
-       y2="551.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24358" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1496.15,471.48 1496.46,471.53 1507.43,464.05 "
-       id="polygon24360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.26,527.03 1297.5,526.53 1285.31,523.14 "
-       id="polygon24362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.09,528.65 1297.04,528.14 1284.85,524.75 "
-       id="polygon24364" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1498.28,474.3 1498.16,474.55 1509.13,467.07 "
-       id="polygon24366" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1300.83,532.6 1300.5,532.85 1312.83,536.28 "
-       id="polygon24368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.1,527.58 1297.26,527.03 1285.07,523.64 "
-       id="polygon24370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.04,528.14 1297.1,527.58 1284.91,524.19 "
-       id="polygon24372" />
-    <line
-       x1="1336.5699"
-       y1="266.39001"
-       x2="1338.84"
-       y2="265.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24374" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1496.46,471.53 1496.83,471.73 1507.8,464.25 "
-       id="polygon24376" />
-    <line
-       x1="1608.3"
-       y1="404.85999"
-       x2="1609.02"
-       y2="404.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1300.5,532.85 1300.2,533.23 1312.53,536.67 "
-       id="polygon24380" />
-    <line
-       x1="1555.47"
-       y1="369.32001"
-       x2="1555.17"
-       y2="370.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24382" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1498.27,473.93 1498.28,474.3 1509.24,466.82 "
-       id="polygon24384" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1496.83,471.73 1497.22,472.06 1508.19,464.57 "
-       id="polygon24386" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1498.14,473.47 1498.27,473.93 1509.24,466.44 "
-       id="polygon24388" />
-    <line
-       x1="1536.9"
-       y1="449.14999"
-       x2="1540.66"
-       y2="449.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24390" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1497.22,472.06 1497.59,472.49 1508.56,465 "
-       id="polygon24392" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1433.14,551.32 1433.54,551.6 1442.94,551.55 "
-       id="polygon24394" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1497.91,472.98 1498.14,473.47 1509.11,465.98 "
-       id="polygon24396" />
-    <line
-       x1="1338.84"
-       y1="265.38"
-       x2="1341.1801"
-       y2="264.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24398" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1497.59,472.49 1497.91,472.98 1508.88,465.49 "
-       id="polygon24400" />
-    <line
-       x1="1609.02"
-       y1="404.54001"
-       x2="1609.77"
-       y2="404.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24402" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1373.72,488.27 1373.36,488.57 1373.67,488.68 "
-       id="polygon24404" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1433.85,554.2 1433.53,554.59 1442.93,554.54 "
-       id="polygon24406" />
-    <line
-       x1="1555.85"
-       y1="368.23001"
-       x2="1555.47"
-       y2="369.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24408" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="1376.33,488.3 1376.64,488.6 1376.3,488.7 "
-       id="polygon24410" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1433.86,552.02 1434.05,552.54 1443.46,552.49 "
-       id="polygon24412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.67,442.84 1472.39,442.88 1463.58,453.08 "
-       id="polygon24414" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1434.13,553.12 1434.05,553.69 1443.45,553.63 "
-       id="polygon24416" />
-    <line
-       x1="1609.77"
-       y1="404.25"
-       x2="1610.5699"
-       y2="403.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24418" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1299.27,533.57 1299.6,533.32 1299.59,533.67 "
-       id="polygon24420" />
-    <line
-       x1="1535.12"
-       y1="548.20001"
-       x2="1537.0699"
-       y2="549.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24422" />
-    <line
-       x1="1341.1801"
-       y1="264.54999"
-       x2="1343.5699"
-       y2="263.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.05,442.93 1472.67,442.84 1463.86,453.04 "
-       id="polygon24426" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1475.16,445.29 1475.18,445.02 1466.37,455.21 "
-       id="polygon24428" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1313.15,536.04 1313.48,535.96 1301.15,532.52 "
-       id="polygon24430" />
-    <line
-       x1="1556.29"
-       y1="367.17999"
-       x2="1555.85"
-       y2="368.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.5,443.14 1473.05,442.93 1464.25,453.13 "
-       id="polygon24434" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1475.18,445.02 1475.04,444.65 1466.23,454.86 "
-       id="polygon24436" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1312.83,536.28 1313.15,536.04 1300.83,532.6 "
-       id="polygon24438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.97,443.45 1473.5,443.14 1464.69,453.34 "
-       id="polygon24440" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1475.04,444.65 1474.78,444.25 1465.97,454.45 "
-       id="polygon24442" />
-    <line
-       x1="1343.5699"
-       y1="263.91"
-       x2="1345.98"
-       y2="263.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24444" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1474.41,443.83 1473.97,443.45 1465.16,453.65 "
-       id="polygon24446" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1474.78,444.25 1474.41,443.83 1465.6,454.03 "
-       id="polygon24448" />
-    <line
-       x1="1611.4"
-       y1="403.76999"
-       x2="1612.26"
-       y2="403.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24450" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1312.53,536.67 1312.83,536.28 1300.5,532.85 "
-       id="polygon24452" />
-    <line
-       x1="1540.66"
-       y1="449.04999"
-       x2="1544.37"
-       y2="449.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1312.29,537.17 1312.53,536.67 1300.2,533.23 "
-       id="polygon24456" />
-    <line
-       x1="1556.79"
-       y1="366.19"
-       x2="1556.29"
-       y2="367.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24458" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1300.44,533.61 1300.21,533.34 1312.12,536.66 "
-       id="polygon24460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1463.58,453.08 1463.86,453.04 1472.67,442.84 "
-       id="polygon24462" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1496.83,471.73 1496.46,471.53 1485.47,479.03 "
-       id="polygon24464" />
-    <line
-       x1="1612.26"
-       y1="403.57999"
-       x2="1613.15"
-       y2="403.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24466" />
-    <line
-       x1="1533.3199"
-       y1="546.28003"
-       x2="1535.12"
-       y2="548.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24468" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1466.37,455.21 1466.36,455.5 1475.16,445.29 "
-       id="polygon24470" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1497.22,472.06 1496.83,471.73 1485.84,479.23 "
-       id="polygon24472" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1498.28,474.3 1498.27,473.93 1487.28,481.43 "
-       id="polygon24474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1463.86,453.04 1464.25,453.13 1473.05,442.93 "
-       id="polygon24476" />
-    <line
-       x1="1345.98"
-       y1="263.45001"
-       x2="1348.42"
-       y2="263.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24478" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1497.59,472.49 1497.22,472.06 1486.23,479.56 "
-       id="polygon24480" />
-    <line
-       x1="1613.15"
-       y1="403.42999"
-       x2="1614.0699"
-       y2="403.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24482" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1498.27,473.93 1498.14,473.47 1487.16,480.98 "
-       id="polygon24484" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1466.23,454.86 1466.37,455.21 1475.18,445.02 "
-       id="polygon24486" />
-    <polygon
-       style="opacity:1;fill:#009800"
-       points="1374.04,501.01 1373.89,500.66 1373.11,489.29 "
-       id="polygon24488" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1373.36,488.57 1373.14,488.91 1373.93,500.29 "
-       id="polygon24490" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1299.92,533.25 1299.6,533.32 1311.51,536.64 "
-       id="polygon24492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1464.25,453.13 1464.69,453.34 1473.5,443.14 "
-       id="polygon24494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1433.62,553.97 1433.36,554.29 1433.53,554.59 "
-       id="polygon24496" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1497.91,472.98 1497.59,472.49 1486.6,480 "
-       id="polygon24498" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1498.14,473.47 1497.91,472.98 1486.92,480.48 "
-       id="polygon24500" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1298.7,536.48 1298.93,536.75 1310.83,540.07 "
-       id="polygon24502" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1465.97,454.45 1466.23,454.86 1475.04,444.65 "
-       id="polygon24504" />
-    <line
-       x1="1557.36"
-       y1="365.26001"
-       x2="1556.79"
-       y2="366.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24506" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1464.69,453.34 1465.16,453.65 1473.97,443.45 "
-       id="polygon24508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.72,488.27 1373.36,488.57 1374.14,499.94 "
-       id="polygon24510" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1299.6,533.32 1299.27,533.57 1311.18,536.89 "
-       id="polygon24512" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1465.6,454.03 1465.97,454.45 1474.78,444.25 "
-       id="polygon24514" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1465.16,453.65 1465.6,454.03 1474.41,443.83 "
-       id="polygon24516" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1298.45,525.82 1298.13,525.9 1310.36,529.29 "
-       id="polygon24518" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1376.64,488.6 1376.33,488.3 1377.12,499.67 "
-       id="polygon24520" />
-    <line
-       x1="1614.0699"
-       y1="403.31"
-       x2="1615.01"
-       y2="403.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24522" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1388.24,539.73 1388.81,539.76 1391.32,536.51 "
-       id="polygon24524" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1298.56,536.07 1298.7,536.48 1310.61,539.8 "
-       id="polygon24526" />
-    <line
-       x1="1646.28"
-       y1="444.94"
-       x2="1645.25"
-       y2="446.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24528" />
-    <line
-       x1="1645.25"
-       y1="446.82001"
-       x2="1644.1"
-       y2="448.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24530" />
-    <line
-       x1="1647.1801"
-       y1="443"
-       x2="1646.28"
-       y2="444.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24532" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1485.16,478.98 1485.47,479.03 1496.46,471.53 "
-       id="polygon24534" />
-    <line
-       x1="1644.1"
-       y1="448.63"
-       x2="1642.84"
-       y2="450.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24536" />
-    <line
-       x1="1647.95"
-       y1="441.01001"
-       x2="1647.1801"
-       y2="443"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24538" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1297.23,529.05 1297.45,529.32 1309.68,532.73 "
-       id="polygon24540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1299.27,533.57 1298.97,533.96 1310.88,537.28 "
-       id="polygon24542" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1376.33,488.3 1375.88,488.07 1376.67,499.45 "
-       id="polygon24544" />
-    <line
-       x1="1348.42"
-       y1="263.20001"
-       x2="1350.86"
-       y2="263.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.77,487.95 1374.21,488.05 1374.99,499.43 "
-       id="polygon24548" />
-    <line
-       x1="1648.5699"
-       y1="438.97"
-       x2="1647.95"
-       y2="441.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24550" />
-    <line
-       x1="1642.84"
-       y1="450.35001"
-       x2="1641.47"
-       y2="451.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.52,535.57 1298.56,536.07 1310.46,539.4 "
-       id="polygon24554" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1298.13,525.9 1297.8,526.14 1310.03,529.54 "
-       id="polygon24556" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1375.88,488.07 1375.34,487.95 1376.13,499.32 "
-       id="polygon24558" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1375.34,487.95 1374.77,487.95 1375.55,499.32 "
-       id="polygon24560" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.97,533.96 1298.73,534.45 1310.64,537.78 "
-       id="polygon24562" />
-    <line
-       x1="1649.05"
-       y1="436.89999"
-       x2="1648.5699"
-       y2="438.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.57,535.01 1298.52,535.57 1310.43,538.89 "
-       id="polygon24566" />
-    <line
-       x1="1641.47"
-       y1="451.98001"
-       x2="1640"
-       y2="453.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24568" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1298.73,534.45 1298.57,535.01 1310.48,538.33 "
-       id="polygon24570" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1297.09,528.65 1297.23,529.05 1309.46,532.46 "
-       id="polygon24572" />
-    <line
-       x1="1615.01"
-       y1="403.23999"
-       x2="1615.96"
-       y2="403.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24574" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1485.47,479.03 1485.84,479.23 1496.83,471.73 "
-       id="polygon24576" />
-    <line
-       x1="1649.37"
-       y1="434.81"
-       x2="1649.05"
-       y2="436.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.8,526.14 1297.5,526.53 1309.73,529.93 "
-       id="polygon24580" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1487.28,481.43 1487.29,481.8 1498.28,474.3 "
-       id="polygon24582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.04,528.14 1297.09,528.65 1309.32,532.05 "
-       id="polygon24584" />
-    <line
-       x1="1649.54"
-       y1="432.70999"
-       x2="1649.37"
-       y2="434.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.5,526.53 1297.26,527.03 1309.49,530.43 "
-       id="polygon24588" />
-    <line
-       x1="1544.37"
-       y1="449.25"
-       x2="1548.02"
-       y2="449.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24590" />
-    <line
-       x1="1557.98"
-       y1="364.39001"
-       x2="1557.36"
-       y2="365.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.1,527.58 1297.04,528.14 1309.27,531.54 "
-       id="polygon24594" />
-    <line
-       x1="1531.66"
-       y1="544.13"
-       x2="1533.3199"
-       y2="546.28003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24596" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1485.84,479.23 1486.23,479.56 1497.22,472.06 "
-       id="polygon24598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1297.26,527.03 1297.1,527.58 1309.34,530.98 "
-       id="polygon24600" />
-    <line
-       x1="1638.45"
-       y1="454.94"
-       x2="1636.83"
-       y2="456.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24602" />
-    <line
-       x1="1649.5601"
-       y1="430.60999"
-       x2="1649.54"
-       y2="432.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24604" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1487.16,480.98 1487.28,481.43 1498.27,473.93 "
-       id="polygon24606" />
-    <line
-       x1="1615.96"
-       y1="403.20999"
-       x2="1616.9399"
-       y2="403.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24608" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1486.23,479.56 1486.6,480 1497.59,472.49 "
-       id="polygon24610" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1486.92,480.48 1487.16,480.98 1498.14,473.47 "
-       id="polygon24612" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1486.6,480 1486.92,480.48 1497.91,472.98 "
-       id="polygon24614" />
-    <line
-       x1="1649.42"
-       y1="428.53"
-       x2="1649.5601"
-       y2="430.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24616" />
-    <line
-       x1="1636.83"
-       y1="456.26001"
-       x2="1635.14"
-       y2="457.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24618" />
-    <line
-       x1="1350.86"
-       y1="263.13"
-       x2="1353.28"
-       y2="263.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24620" />
-    <line
-       x1="1649.12"
-       y1="426.45999"
-       x2="1649.42"
-       y2="428.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24622" />
-    <line
-       x1="1616.9399"
-       y1="403.23001"
-       x2="1617.9301"
-       y2="403.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24624" />
-    <line
-       x1="1635.14"
-       y1="457.45001"
-       x2="1633.39"
-       y2="458.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24626" />
-    <line
-       x1="1648.67"
-       y1="424.42999"
-       x2="1649.12"
-       y2="426.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1463.86,453.04 1463.58,453.08 1454.75,463.3 "
-       id="polygon24630" />
-    <line
-       x1="1558.65"
-       y1="363.59"
-       x2="1557.98"
-       y2="364.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24632" />
-    <line
-       x1="1648.0601"
-       y1="422.44"
-       x2="1648.67"
-       y2="424.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24634" />
-    <line
-       x1="1617.9301"
-       y1="403.29001"
-       x2="1618.92"
-       y2="403.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24636" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1433.54,551.6 1433.14,551.32 1423.71,551.38 "
-       id="polygon24638" />
-    <line
-       x1="1633.39"
-       y1="458.51999"
-       x2="1631.61"
-       y2="459.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24640" />
-    <line
-       x1="1647.3"
-       y1="420.51001"
-       x2="1648.0601"
-       y2="422.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1464.25,453.13 1463.86,453.04 1455.04,463.26 "
-       id="polygon24644" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1311.18,536.89 1311.51,536.64 1299.6,533.32 "
-       id="polygon24646" />
-    <line
-       x1="1353.28"
-       y1="263.26001"
-       x2="1355.6801"
-       y2="263.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24648" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1310.83,540.07 1310.61,539.8 1298.7,536.48 "
-       id="polygon24650" />
-    <line
-       x1="1646.39"
-       y1="418.64001"
-       x2="1647.3"
-       y2="420.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24652" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1313.99,536.32 1313.77,536.06 1326.13,539.5 "
-       id="polygon24654" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1466.36,455.5 1466.37,455.21 1457.54,465.44 "
-       id="polygon24656" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1434.05,552.54 1433.86,552.02 1424.42,552.07 "
-       id="polygon24658" />
-    <line
-       x1="1631.61"
-       y1="459.45999"
-       x2="1629.8"
-       y2="460.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24660" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1377.43,499.97 1377.57,500.32 1376.78,488.95 "
-       id="polygon24662" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1433.53,554.59 1433.85,554.2 1424.41,554.25 "
-       id="polygon24664" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1373.93,500.29 1374.14,499.94 1373.36,488.57 "
-       id="polygon24666" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.88,537.28 1311.18,536.89 1299.27,533.57 "
-       id="polygon24668" />
-    <line
-       x1="1645.34"
-       y1="416.85001"
-       x2="1646.39"
-       y2="418.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1464.69,453.34 1464.25,453.13 1455.42,463.34 "
-       id="polygon24672" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1310.61,539.8 1310.46,539.4 1298.56,536.07 "
-       id="polygon24674" />
-    <line
-       x1="1619.92"
-       y1="403.56"
-       x2="1622.09"
-       y2="403.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24676" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1434.05,553.69 1434.13,553.12 1424.69,553.17 "
-       id="polygon24678" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1466.37,455.21 1466.23,454.86 1457.41,465.07 "
-       id="polygon24680" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1310.03,529.54 1310.36,529.29 1298.13,525.9 "
-       id="polygon24682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.64,537.78 1310.88,537.28 1298.97,533.96 "
-       id="polygon24684" />
-    <line
-       x1="1644.15"
-       y1="415.14001"
-       x2="1645.34"
-       y2="416.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.46,539.4 1310.43,538.89 1298.52,535.57 "
-       id="polygon24688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1465.16,453.65 1464.69,453.34 1455.86,463.55 "
-       id="polygon24690" />
-    <line
-       x1="1559.38"
-       y1="362.87"
-       x2="1558.65"
-       y2="363.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24692" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.48,538.33 1310.64,537.78 1298.73,534.45 "
-       id="polygon24694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.43,538.89 1310.48,538.33 1298.57,535.01 "
-       id="polygon24696" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1466.23,454.86 1465.97,454.45 1457.14,464.67 "
-       id="polygon24698" />
-    <line
-       x1="1622.09"
-       y1="403.64001"
-       x2="1624.25"
-       y2="403.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24700" />
-    <line
-       x1="1642.8199"
-       y1="413.51999"
-       x2="1644.15"
-       y2="415.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24702" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1473.81,486.86 1473.92,486.61 1484.94,479.09 "
-       id="polygon24704" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1485.47,479.03 1485.16,478.98 1474.15,486.5 "
-       id="polygon24706" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1465.6,454.03 1465.16,453.65 1456.33,463.87 "
-       id="polygon24708" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.73,529.93 1310.03,529.54 1297.8,526.14 "
-       id="polygon24710" />
-    <line
-       x1="1629.8"
-       y1="460.26999"
-       x2="1627.97"
-       y2="460.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24712" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1376.67,499.45 1377.12,499.67 1376.33,488.3 "
-       id="polygon24714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.5,499.64 1374.99,499.43 1374.21,488.05 "
-       id="polygon24716" />
-    <line
-       x1="1548.02"
-       y1="449.75"
-       x2="1551.5699"
-       y2="450.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24718" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1465.97,454.45 1465.6,454.03 1456.77,464.25 "
-       id="polygon24720" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1313.48,535.96 1313.15,536.04 1325.52,539.48 "
-       id="polygon24722" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1309.46,532.46 1309.32,532.05 1297.09,528.65 "
-       id="polygon24724" />
-    <line
-       x1="1641.38"
-       y1="412"
-       x2="1642.8199"
-       y2="413.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24726" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1376.13,499.32 1376.67,499.45 1375.88,488.07 "
-       id="polygon24728" />
-    <line
-       x1="1624.25"
-       y1="403.87"
-       x2="1626.39"
-       y2="404.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24730" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1375.55,499.32 1376.13,499.32 1375.34,487.95 "
-       id="polygon24732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.49,530.43 1309.73,529.93 1297.5,526.53 "
-       id="polygon24734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.32,532.05 1309.27,531.54 1297.04,528.14 "
-       id="polygon24736" />
-    <line
-       x1="1639.8101"
-       y1="410.59"
-       x2="1641.38"
-       y2="412"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24738" />
-    <line
-       x1="1626.39"
-       y1="404.23001"
-       x2="1628.5"
-       y2="404.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.34,530.98 1309.49,530.43 1297.26,527.03 "
-       id="polygon24742" />
-    <line
-       x1="1355.6801"
-       y1="263.57999"
-       x2="1358.03"
-       y2="264.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.27,531.54 1309.34,530.98 1297.1,527.58 "
-       id="polygon24746" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1313.15,536.04 1312.83,536.28 1325.2,539.73 "
-       id="polygon24748" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1485.84,479.23 1485.47,479.03 1474.46,486.55 "
-       id="polygon24750" />
-    <line
-       x1="1638.14"
-       y1="409.29999"
-       x2="1639.8101"
-       y2="410.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24752" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1487.17,482.06 1487.29,481.8 1476.27,489.32 "
-       id="polygon24754" />
-    <line
-       x1="1628.5"
-       y1="404.73001"
-       x2="1630.5601"
-       y2="405.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1454.75,463.3 1455.04,463.26 1463.86,453.04 "
-       id="polygon24758" />
-    <line
-       x1="1636.37"
-       y1="408.13"
-       x2="1638.14"
-       y2="409.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24760" />
-    <line
-       x1="1630.5601"
-       y1="405.38"
-       x2="1632.5699"
-       y2="406.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24762" />
-    <line
-       x1="1634.51"
-       y1="407.07999"
-       x2="1636.37"
-       y2="408.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24764" />
-    <line
-       x1="1632.5699"
-       y1="406.16"
-       x2="1634.51"
-       y2="407.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24766" />
-    <line
-       x1="1627.97"
-       y1="460.95001"
-       x2="1626.14"
-       y2="461.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24768" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1312.83,536.28 1312.53,536.67 1324.9,540.12 "
-       id="polygon24770" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1486.23,479.56 1485.84,479.23 1474.82,486.75 "
-       id="polygon24772" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1487.29,481.8 1487.28,481.43 1476.27,488.95 "
-       id="polygon24774" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1457.54,465.44 1457.54,465.71 1466.36,455.5 "
-       id="polygon24776" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1455.04,463.26 1455.42,463.34 1464.25,453.13 "
-       id="polygon24778" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1486.6,480 1486.23,479.56 1475.21,487.08 "
-       id="polygon24780" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1487.28,481.43 1487.16,480.98 1476.14,488.5 "
-       id="polygon24782" />
-    <line
-       x1="1528.84"
-       y1="539.20001"
-       x2="1530.16"
-       y2="541.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24784" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1457.41,465.07 1457.54,465.44 1466.37,455.21 "
-       id="polygon24786" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1486.92,480.48 1486.6,480 1475.59,487.51 "
-       id="polygon24788" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1487.16,480.98 1486.92,480.48 1475.91,488 "
-       id="polygon24790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1455.42,463.34 1455.86,463.55 1464.69,453.34 "
-       id="polygon24792" />
-    <line
-       x1="1626.14"
-       y1="461.48001"
-       x2="1624.3101"
-       y2="461.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24794" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1457.14,464.67 1457.41,465.07 1466.23,454.86 "
-       id="polygon24796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1455.86,463.55 1456.33,463.87 1465.16,453.65 "
-       id="polygon24798" />
-    <line
-       x1="1358.03"
-       y1="264.09"
-       x2="1360.3199"
-       y2="264.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24800" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1456.77,464.25 1457.14,464.67 1465.97,454.45 "
-       id="polygon24802" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1456.33,463.87 1456.77,464.25 1465.6,454.03 "
-       id="polygon24804" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1474.15,486.5 1474.46,486.55 1485.47,479.03 "
-       id="polygon24806" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1423.71,551.38 1424.1,551.65 1433.54,551.6 "
-       id="polygon24808" />
-    <line
-       x1="1624.3101"
-       y1="461.88"
-       x2="1622.5"
-       y2="462.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24810" />
-    <line
-       x1="1560.95"
-       y1="361.64001"
-       x2="1560.14"
-       y2="362.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24812" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1474.46,486.55 1474.82,486.75 1485.84,479.23 "
-       id="polygon24814" />
-    <polygon
-       style="opacity:1;fill:#00b300"
-       points="1377.57,500.32 1377.54,500.7 1377.18,500.65 "
-       id="polygon24816" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1424.41,554.25 1424.09,554.65 1433.53,554.59 "
-       id="polygon24818" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1309.46,532.46 1309.68,532.73 1309.81,532.38 "
-       id="polygon24820" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1424.42,552.07 1424.62,552.6 1434.05,552.54 "
-       id="polygon24822" />
-    <polygon
-       style="opacity:1;fill:#00b900"
-       points="1457.54,465.44 1457.54,465.71 1457.24,465.49 "
-       id="polygon24824" />
-    <line
-       x1="1551.5699"
-       y1="450.54999"
-       x2="1555.01"
-       y2="451.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24826" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1474.82,486.75 1475.21,487.08 1486.23,479.56 "
-       id="polygon24828" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1424.69,553.17 1424.61,553.74 1434.05,553.69 "
-       id="polygon24830" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1476.14,488.5 1476.27,488.95 1487.28,481.43 "
-       id="polygon24832" />
-    <line
-       x1="1527.71"
-       y1="536.46002"
-       x2="1528.84"
-       y2="539.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24834" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1475.21,487.08 1475.59,487.51 1486.6,480 "
-       id="polygon24836" />
-    <line
-       x1="1360.3199"
-       y1="264.78"
-       x2="1362.54"
-       y2="265.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24838" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1475.91,488 1476.14,488.5 1487.16,480.98 "
-       id="polygon24840" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1475.59,487.51 1475.91,488 1486.92,480.48 "
-       id="polygon24842" />
-    <line
-       x1="1622.5"
-       y1="462.13"
-       x2="1620.73"
-       y2="462.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24844" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1325.2,539.73 1325.52,539.48 1313.15,536.04 "
-       id="polygon24846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1324.9,540.12 1325.2,539.73 1312.83,536.28 "
-       id="polygon24848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1324.66,540.62 1324.9,540.12 1312.53,536.67 "
-       id="polygon24850" />
-    <line
-       x1="1563.4301"
-       y1="360.47"
-       x2="1560.95"
-       y2="361.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24852" />
-    <line
-       x1="1620.73"
-       y1="462.23999"
-       x2="1619"
-       y2="462.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24854" />
-    <line
-       x1="1362.54"
-       y1="265.64999"
-       x2="1364.67"
-       y2="266.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24856" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1311.2,529.59 1310.97,529.32 1323.24,532.73 "
-       id="polygon24858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1455.42,463.34 1455.04,463.26 1446.19,473.5 "
-       id="polygon24860" />
-    <line
-       x1="1526.79"
-       y1="533.56"
-       x2="1527.71"
-       y2="536.46002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24862" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1457.54,465.71 1457.54,465.44 1448.7,475.68 "
-       id="polygon24864" />
-    <polygon
-       style="opacity:1;fill:#00da00"
-       points="1323.39,543.43 1323.07,543.51 1311.12,540.17 "
-       id="polygon24866" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1310.61,539.8 1310.83,540.07 1322.78,543.41 "
-       id="polygon24868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1455.86,463.55 1455.42,463.34 1446.57,473.59 "
-       id="polygon24870" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1311.51,536.64 1311.18,536.89 1323.13,540.22 "
-       id="polygon24872" />
-    <line
-       x1="1619"
-       y1="462.20999"
-       x2="1617.33"
-       y2="462.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24874" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1457.54,465.44 1457.41,465.07 1448.56,475.32 "
-       id="polygon24876" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1310.46,539.4 1310.61,539.8 1322.55,543.14 "
-       id="polygon24878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1456.33,463.87 1455.86,463.55 1447.02,473.8 "
-       id="polygon24880" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1310.68,529.22 1310.36,529.29 1322.63,532.7 "
-       id="polygon24882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1311.18,536.89 1310.88,537.28 1322.83,540.61 "
-       id="polygon24884" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1457.41,465.07 1457.14,464.67 1448.3,474.91 "
-       id="polygon24886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.43,538.89 1310.46,539.4 1322.41,542.73 "
-       id="polygon24888" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1456.77,464.25 1456.33,463.87 1447.48,474.11 "
-       id="polygon24890" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1457.14,464.67 1456.77,464.25 1447.93,474.5 "
-       id="polygon24892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.88,537.28 1310.64,537.78 1322.59,541.11 "
-       id="polygon24894" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1309.46,532.46 1309.68,532.73 1321.95,536.14 "
-       id="polygon24896" />
-    <line
-       x1="1555.01"
-       y1="451.64001"
-       x2="1558.3"
-       y2="453.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.48,538.33 1310.43,538.89 1322.38,542.23 "
-       id="polygon24900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.64,537.78 1310.48,538.33 1322.44,541.67 "
-       id="polygon24902" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1310.36,529.29 1310.03,529.54 1322.3,532.95 "
-       id="polygon24904" />
-    <line
-       x1="1364.67"
-       y1="266.70001"
-       x2="1366.7"
-       y2="267.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24906" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1474.82,486.75 1474.46,486.55 1463.42,494.08 "
-       id="polygon24908" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1309.32,532.05 1309.46,532.46 1321.73,535.88 "
-       id="polygon24910" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1310.03,529.54 1309.73,529.93 1322.01,533.34 "
-       id="polygon24912" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1374.14,499.94 1373.93,500.29 1374.71,511.7 "
-       id="polygon24914" />
-    <line
-       x1="1565.99"
-       y1="359.54001"
-       x2="1563.4301"
-       y2="360.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24916" />
-    <line
-       x1="1617.33"
-       y1="462.04999"
-       x2="1615.72"
-       y2="461.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.27,531.54 1309.32,532.05 1321.59,535.46 "
-       id="polygon24920" />
-    <line
-       x1="1526.0699"
-       y1="530.52002"
-       x2="1526.79"
-       y2="533.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24922" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1475.21,487.08 1474.82,486.75 1463.79,494.28 "
-       id="polygon24924" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1476.27,489.32 1476.27,488.95 1465.23,496.49 "
-       id="polygon24926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.73,529.93 1309.49,530.43 1321.77,533.84 "
-       id="polygon24928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.34,530.98 1309.27,531.54 1321.55,534.96 "
-       id="polygon24930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1309.49,530.43 1309.34,530.98 1321.61,534.39 "
-       id="polygon24932" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1325.52,539.48 1325.2,539.73 1325.25,540.02 "
-       id="polygon24934" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1448.7,475.68 1448.69,475.96 1457.54,465.71 "
-       id="polygon24936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.5,499.64 1374.14,499.94 1374.92,511.35 "
-       id="polygon24938" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1475.59,487.51 1475.21,487.08 1464.18,494.61 "
-       id="polygon24940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1446.19,473.5 1446.57,473.59 1455.42,463.34 "
-       id="polygon24942" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1476.27,488.95 1476.14,488.5 1465.1,496.03 "
-       id="polygon24944" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1377.43,499.97 1377.12,499.67 1377.91,511.08 "
-       id="polygon24946" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1475.91,488 1475.59,487.51 1464.55,495.05 "
-       id="polygon24948" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1476.14,488.5 1475.91,488 1464.87,495.54 "
-       id="polygon24950" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1448.56,475.32 1448.7,475.68 1457.54,465.44 "
-       id="polygon24952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1446.57,473.59 1447.02,473.8 1455.86,463.55 "
-       id="polygon24954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.55,499.32 1374.99,499.43 1375.78,510.84 "
-       id="polygon24956" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1376.67,499.45 1376.13,499.32 1376.92,510.74 "
-       id="polygon24958" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1448.3,474.91 1448.56,475.32 1457.41,465.07 "
-       id="polygon24960" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1447.02,473.8 1447.48,474.11 1456.33,463.87 "
-       id="polygon24962" />
-    <line
-       x1="1615.72"
-       y1="461.75"
-       x2="1614.1899"
-       y2="461.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24964" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1463.11,494.03 1463.42,494.08 1474.46,486.55 "
-       id="polygon24966" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1447.93,474.5 1448.3,474.91 1457.14,464.67 "
-       id="polygon24968" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1447.48,474.11 1447.93,474.5 1456.77,464.25 "
-       id="polygon24970" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1323.46,539.97 1323.78,539.9 1311.83,536.57 "
-       id="polygon24972" />
-    <line
-       x1="1525.5699"
-       y1="527.34998"
-       x2="1526.0699"
-       y2="530.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24974" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1463.42,494.08 1463.79,494.28 1474.82,486.75 "
-       id="polygon24976" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1323.13,540.22 1323.46,539.97 1311.51,536.64 "
-       id="polygon24978" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1322.78,543.41 1322.55,543.14 1310.61,539.8 "
-       id="polygon24980" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1465.23,496.49 1465.24,496.86 1476.27,489.32 "
-       id="polygon24982" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1463.79,494.28 1464.18,494.61 1475.21,487.08 "
-       id="polygon24984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.83,540.61 1323.13,540.22 1311.18,536.89 "
-       id="polygon24986" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1322.55,543.14 1322.41,542.73 1310.46,539.4 "
-       id="polygon24988" />
-    <line
-       x1="1568.62"
-       y1="358.85001"
-       x2="1565.99"
-       y2="359.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24990" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1465.1,496.03 1465.23,496.49 1476.27,488.95 "
-       id="polygon24992" />
-    <line
-       x1="1614.1899"
-       y1="461.32001"
-       x2="1612.75"
-       y2="460.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24994" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1464.18,494.61 1464.55,495.05 1475.59,487.51 "
-       id="polygon24996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.59,541.11 1322.83,540.61 1310.88,537.28 "
-       id="polygon24998" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1464.87,495.54 1465.1,496.03 1476.14,488.5 "
-       id="polygon25000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.41,542.73 1322.38,542.23 1310.43,538.89 "
-       id="polygon25002" />
-    <line
-       x1="1558.3"
-       y1="453.01999"
-       x2="1561.4399"
-       y2="454.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25004" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1464.55,495.05 1464.87,495.54 1475.91,488 "
-       id="polygon25006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.44,541.67 1322.59,541.11 1310.64,537.78 "
-       id="polygon25008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.38,542.23 1322.44,541.67 1310.48,538.33 "
-       id="polygon25010" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1322.3,532.95 1322.63,532.7 1310.36,529.29 "
-       id="polygon25012" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1321.95,536.14 1321.73,535.88 1309.46,532.46 "
-       id="polygon25014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.01,533.34 1322.3,532.95 1310.03,529.54 "
-       id="polygon25016" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1321.73,535.88 1321.59,535.46 1309.32,532.05 "
-       id="polygon25018" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1424.62,552.6 1424.42,552.07 1414.95,552.13 "
-       id="polygon25020" />
-    <line
-       x1="1525.29"
-       y1="524.08002"
-       x2="1525.5699"
-       y2="527.34998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25022" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1325.85,539.41 1325.52,539.48 1337.93,542.94 "
-       id="polygon25024" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1424.09,554.65 1424.41,554.25 1414.94,554.31 "
-       id="polygon25026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.77,533.84 1322.01,533.34 1309.73,529.93 "
-       id="polygon25028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.59,535.46 1321.55,534.96 1309.27,531.54 "
-       id="polygon25030" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1424.61,553.74 1424.69,553.17 1415.21,553.23 "
-       id="polygon25032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.61,534.39 1321.77,533.84 1309.49,530.43 "
-       id="polygon25034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.55,534.96 1321.61,534.39 1309.34,530.98 "
-       id="polygon25036" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1325.52,539.48 1325.2,539.73 1337.61,543.19 "
-       id="polygon25038" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1446.19,473.5 1445.91,473.54 1437.04,483.8 "
-       id="polygon25040" />
-    <line
-       x1="1612.75"
-       y1="460.76999"
-       x2="1611.41"
-       y2="460.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25042" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1374.71,511.7 1374.92,511.35 1374.14,499.94 "
-       id="polygon25044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1325.2,539.73 1324.9,540.12 1337.31,543.58 "
-       id="polygon25046" />
-    <line
-       x1="1611.64"
-       y1="482.95999"
-       x2="1608.96"
-       y2="480.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25048" />
-    <line
-       x1="1614.15"
-       y1="485.73999"
-       x2="1611.64"
-       y2="482.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25050" />
-    <line
-       x1="1608.96"
-       y1="480.38"
-       x2="1606.12"
-       y2="478.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25052" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1377.91,511.08 1378.22,511.39 1377.43,499.97 "
-       id="polygon25054" />
-    <line
-       x1="1616.46"
-       y1="488.70001"
-       x2="1614.15"
-       y2="485.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25056" />
-    <line
-       x1="1606.12"
-       y1="478.01001"
-       x2="1603.13"
-       y2="475.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25058" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1446.57,473.59 1446.19,473.5 1437.32,483.76 "
-       id="polygon25060" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1377.46,510.86 1377.91,511.08 1377.12,499.67 "
-       id="polygon25062" />
-    <line
-       x1="1618.58"
-       y1="491.81"
-       x2="1616.46"
-       y2="488.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.29,511.05 1375.78,510.84 1374.99,499.43 "
-       id="polygon25066" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1448.69,475.96 1448.7,475.68 1439.84,485.95 "
-       id="polygon25068" />
-    <line
-       x1="1603.13"
-       y1="475.85999"
-       x2="1600"
-       y2="473.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25070" />
-    <line
-       x1="1525.24"
-       y1="520.72998"
-       x2="1525.29"
-       y2="524.08002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25072" />
-    <line
-       x1="1571.29"
-       y1="358.41"
-       x2="1568.62"
-       y2="358.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25074" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1376.34,510.73 1376.92,510.74 1376.13,499.32 "
-       id="polygon25076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1447.02,473.8 1446.57,473.59 1437.71,483.85 "
-       id="polygon25078" />
-    <line
-       x1="1600"
-       y1="473.94"
-       x2="1596.75"
-       y2="472.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25080" />
-    <line
-       x1="1620.48"
-       y1="495.06"
-       x2="1618.58"
-       y2="491.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25082" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1448.7,475.68 1448.56,475.32 1439.7,485.59 "
-       id="polygon25084" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1451.72,501.93 1451.83,501.68 1462.89,494.13 "
-       id="polygon25086" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1463.42,494.08 1463.11,494.03 1452.05,501.57 "
-       id="polygon25088" />
-    <line
-       x1="1611.41"
-       y1="460.09"
-       x2="1610.17"
-       y2="459.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1447.48,474.11 1447.02,473.8 1438.15,484.06 "
-       id="polygon25092" />
-    <line
-       x1="1596.75"
-       y1="472.26999"
-       x2="1593.39"
-       y2="470.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25094" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1448.56,475.32 1448.3,474.91 1439.43,485.18 "
-       id="polygon25096" />
-    <line
-       x1="1622.1801"
-       y1="498.44"
-       x2="1620.48"
-       y2="495.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25098" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1447.93,474.5 1447.48,474.11 1438.62,484.38 "
-       id="polygon25100" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1448.3,474.91 1447.93,474.5 1439.06,484.76 "
-       id="polygon25102" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1463.79,494.28 1463.42,494.08 1452.36,501.63 "
-       id="polygon25104" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1465.13,497.11 1465.24,496.86 1454.18,504.41 "
-       id="polygon25106" />
-    <line
-       x1="1593.39"
-       y1="470.85999"
-       x2="1589.95"
-       y2="469.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25108" />
-    <line
-       x1="1561.4399"
-       y1="454.66"
-       x2="1564.4"
-       y2="456.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25110" />
-    <line
-       x1="1623.64"
-       y1="501.91"
-       x2="1622.1801"
-       y2="498.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25112" />
-    <line
-       x1="1525.4301"
-       y1="517.31"
-       x2="1525.24"
-       y2="520.72998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.04,483.8 1437.32,483.76 1446.19,473.5 "
-       id="polygon25116" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1464.18,494.61 1463.79,494.28 1452.73,501.83 "
-       id="polygon25118" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1465.24,496.86 1465.23,496.49 1454.17,504.04 "
-       id="polygon25120" />
-    <line
-       x1="1589.95"
-       y1="469.70999"
-       x2="1586.4301"
-       y2="468.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25122" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1464.55,495.05 1464.18,494.61 1453.12,502.16 "
-       id="polygon25124" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1465.23,496.49 1465.1,496.03 1454.04,503.58 "
-       id="polygon25126" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1337.93,542.94 1338.26,542.86 1325.85,539.41 "
-       id="polygon25128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.32,483.76 1437.71,483.85 1446.57,473.59 "
-       id="polygon25130" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1464.87,495.54 1464.55,495.05 1453.49,502.6 "
-       id="polygon25132" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1465.1,496.03 1464.87,495.54 1453.81,503.09 "
-       id="polygon25134" />
-    <line
-       x1="1610.17"
-       y1="459.29999"
-       x2="1609.05"
-       y2="458.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25136" />
-    <line
-       x1="1586.4301"
-       y1="468.82999"
-       x2="1582.87"
-       y2="468.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25138" />
-    <line
-       x1="1624.89"
-       y1="505.47"
-       x2="1623.64"
-       y2="501.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25140" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1414.94,554.31 1414.62,554.71 1424.09,554.65 "
-       id="polygon25142" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1439.7,485.59 1439.84,485.95 1448.7,475.68 "
-       id="polygon25144" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1337.61,543.19 1337.93,542.94 1325.52,539.48 "
-       id="polygon25146" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1414.95,552.13 1415.15,552.65 1424.62,552.6 "
-       id="polygon25148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.71,483.85 1438.15,484.06 1447.02,473.8 "
-       id="polygon25150" />
-    <line
-       x1="1525.86"
-       y1="513.85999"
-       x2="1525.4301"
-       y2="517.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25152" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1415.21,553.23 1415.14,553.8 1424.61,553.74 "
-       id="polygon25154" />
-    <line
-       x1="1582.87"
-       y1="468.23001"
-       x2="1579.27"
-       y2="467.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25156" />
-    <line
-       x1="1574"
-       y1="358.20999"
-       x2="1571.29"
-       y2="358.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25158" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1452.05,501.57 1452.36,501.63 1463.42,494.08 "
-       id="polygon25160" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1439.43,485.18 1439.7,485.59 1448.56,475.32 "
-       id="polygon25162" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1337.31,543.58 1337.61,543.19 1325.2,539.73 "
-       id="polygon25164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1438.15,484.06 1438.62,484.38 1447.48,474.11 "
-       id="polygon25166" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1439.06,484.76 1439.43,485.18 1448.3,474.91 "
-       id="polygon25168" />
-    <line
-       x1="1625.89"
-       y1="509.09"
-       x2="1624.89"
-       y2="505.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25170" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1438.62,484.38 1439.06,484.76 1447.93,474.5 "
-       id="polygon25172" />
-    <line
-       x1="1373.5699"
-       y1="274.26999"
-       x2="1374.91"
-       y2="276.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25174" />
-    <line
-       x1="1579.27"
-       y1="467.91"
-       x2="1575.66"
-       y2="467.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25176" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1452.36,501.63 1452.73,501.83 1463.79,494.28 "
-       id="polygon25178" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1454.17,504.04 1454.18,504.41 1465.24,496.86 "
-       id="polygon25180" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1323.78,539.9 1323.46,539.97 1335.45,543.32 "
-       id="polygon25182" />
-    <line
-       x1="1609.05"
-       y1="458.41"
-       x2="1608.0601"
-       y2="457.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25184" />
-    <line
-       x1="1526.52"
-       y1="510.39001"
-       x2="1525.86"
-       y2="513.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25186" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1323.47,533 1323.24,532.73 1335.56,536.15 "
-       id="polygon25188" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1452.73,501.83 1453.12,502.16 1464.18,494.61 "
-       id="polygon25190" />
-    <line
-       x1="1575.66"
-       y1="467.85999"
-       x2="1572.04"
-       y2="468.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25192" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1322.55,543.14 1322.78,543.41 1334.77,546.76 "
-       id="polygon25194" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1454.04,503.58 1454.17,504.04 1465.23,496.49 "
-       id="polygon25196" />
-    <line
-       x1="1626.67"
-       y1="512.75"
-       x2="1625.89"
-       y2="509.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25198" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1323.46,539.97 1323.13,540.22 1335.12,543.56 "
-       id="polygon25200" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1453.12,502.16 1453.49,502.6 1464.55,495.05 "
-       id="polygon25202" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1453.81,503.09 1454.04,503.58 1465.1,496.03 "
-       id="polygon25204" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1453.49,502.6 1453.81,503.09 1464.87,495.54 "
-       id="polygon25206" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1322.41,542.73 1322.55,543.14 1334.55,546.49 "
-       id="polygon25208" />
-    <line
-       x1="1572.04"
-       y1="468.10001"
-       x2="1568.45"
-       y2="468.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1323.13,540.22 1322.83,540.61 1334.82,543.96 "
-       id="polygon25212" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.38,542.23 1322.41,542.73 1334.41,546.08 "
-       id="polygon25214" />
-    <line
-       x1="1527.42"
-       y1="506.92001"
-       x2="1526.52"
-       y2="510.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25216" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.83,540.61 1322.59,541.11 1334.59,544.46 "
-       id="polygon25218" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1322.95,532.63 1322.63,532.7 1334.95,536.13 "
-       id="polygon25220" />
-    <line
-       x1="1374.91"
-       y1="276.17999"
-       x2="1376.09"
-       y2="278.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25222" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.44,541.67 1322.38,542.23 1334.36,545.57 "
-       id="polygon25224" />
-    <line
-       x1="1564.4"
-       y1="456.57001"
-       x2="1567.15"
-       y2="458.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.59,541.11 1322.44,541.67 1334.43,545.01 "
-       id="polygon25228" />
-    <line
-       x1="1568.45"
-       y1="468.62"
-       x2="1564.9"
-       y2="469.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25230" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1321.73,535.88 1321.95,536.14 1334.27,539.57 "
-       id="polygon25232" />
-    <line
-       x1="1627.21"
-       y1="516.42999"
-       x2="1626.67"
-       y2="512.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25234" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1322.63,532.7 1322.3,532.95 1334.62,536.37 "
-       id="polygon25236" />
-    <line
-       x1="1576.71"
-       y1="358.26999"
-       x2="1574"
-       y2="358.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25238" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1321.59,535.46 1321.73,535.88 1334.04,539.3 "
-       id="polygon25240" />
-    <line
-       x1="1528.55"
-       y1="503.48001"
-       x2="1527.42"
-       y2="506.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25242" />
-    <line
-       x1="1564.9"
-       y1="469.41"
-       x2="1561.41"
-       y2="470.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.3,532.95 1322.01,533.34 1334.32,536.77 "
-       id="polygon25246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.32,483.76 1437.04,483.8 1428.16,494.08 "
-       id="polygon25248" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.55,534.96 1321.59,535.46 1333.9,538.89 "
-       id="polygon25250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1322.01,533.34 1321.77,533.84 1334.08,537.27 "
-       id="polygon25252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.61,534.39 1321.55,534.96 1333.86,538.38 "
-       id="polygon25254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1321.77,533.84 1321.61,534.39 1333.93,537.82 "
-       id="polygon25256" />
-    <line
-       x1="1561.41"
-       y1="470.45999"
-       x2="1558"
-       y2="471.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25258" />
-    <line
-       x1="1529.9301"
-       y1="500.09"
-       x2="1528.55"
-       y2="503.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.71,483.85 1437.32,483.76 1428.44,494.04 "
-       id="polygon25262" />
-    <line
-       x1="1376.09"
-       y1="278.20001"
-       x2="1377.1"
-       y2="280.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25264" />
-    <line
-       x1="1627.51"
-       y1="520.09998"
-       x2="1627.21"
-       y2="516.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25266" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1439.83,486.22 1439.84,485.95 1430.95,496.23 "
-       id="polygon25268" />
-    <line
-       x1="1558"
-       y1="471.79001"
-       x2="1554.6801"
-       y2="473.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1438.15,484.06 1437.71,483.85 1428.82,494.14 "
-       id="polygon25272" />
-    <line
-       x1="1531.52"
-       y1="496.76999"
-       x2="1529.9301"
-       y2="500.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25274" />
-    <line
-       x1="1607.2"
-       y1="456.31"
-       x2="1606.47"
-       y2="455.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25276" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1452.36,501.63 1452.05,501.57 1440.97,509.14 "
-       id="polygon25278" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1335.45,543.32 1335.77,543.24 1323.78,539.9 "
-       id="polygon25280" />
-    <line
-       x1="1554.6801"
-       y1="473.35999"
-       x2="1551.46"
-       y2="475.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1438.62,484.38 1438.15,484.06 1429.27,494.35 "
-       id="polygon25284" />
-    <line
-       x1="1533.34"
-       y1="493.54001"
-       x2="1531.52"
-       y2="496.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25286" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1439.7,485.59 1439.43,485.18 1430.55,495.46 "
-       id="polygon25288" />
-    <line
-       x1="1551.46"
-       y1="475.17999"
-       x2="1548.38"
-       y2="477.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25290" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1439.06,484.76 1438.62,484.38 1429.73,494.66 "
-       id="polygon25292" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1335.12,543.56 1335.45,543.32 1323.46,539.97 "
-       id="polygon25294" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1439.43,485.18 1439.06,484.76 1430.18,495.05 "
-       id="polygon25296" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1378.36,511.74 1378.22,511.39 1379.02,522.85 "
-       id="polygon25298" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1452.73,501.83 1452.36,501.63 1441.28,509.19 "
-       id="polygon25300" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1334.77,546.76 1334.55,546.49 1322.55,543.14 "
-       id="polygon25302" />
-    <line
-       x1="1535.37"
-       y1="490.42999"
-       x2="1533.34"
-       y2="493.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25304" />
-    <line
-       x1="1548.38"
-       y1="477.23001"
-       x2="1545.4399"
-       y2="479.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25306" />
-    <line
-       x1="1545.4399"
-       y1="479.48999"
-       x2="1542.65"
-       y2="481.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25308" />
-    <line
-       x1="1537.61"
-       y1="487.45001"
-       x2="1535.37"
-       y2="490.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25310" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1378.22,511.39 1377.91,511.08 1378.7,522.55 "
-       id="polygon25312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.82,543.96 1335.12,543.56 1323.13,540.22 "
-       id="polygon25314" />
-    <line
-       x1="1542.65"
-       y1="481.95999"
-       x2="1540.04"
-       y2="484.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25316" />
-    <line
-       x1="1540.04"
-       y1="484.62"
-       x2="1537.61"
-       y2="487.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25318" />
-    <line
-       x1="1627.58"
-       y1="523.75"
-       x2="1627.51"
-       y2="520.09998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25320" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1334.55,546.49 1334.41,546.08 1322.41,542.73 "
-       id="polygon25322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.78,510.84 1375.29,511.05 1376.08,522.52 "
-       id="polygon25324" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1453.12,502.16 1452.73,501.83 1441.64,509.39 "
-       id="polygon25326" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1454.18,504.41 1454.17,504.04 1443.09,511.61 "
-       id="polygon25328" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1377.91,511.08 1377.46,510.86 1378.25,522.32 "
-       id="polygon25330" />
-    <line
-       x1="1579.41"
-       y1="358.57999"
-       x2="1576.71"
-       y2="358.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.59,544.46 1334.82,543.96 1322.83,540.61 "
-       id="polygon25334" />
-    <line
-       x1="1377.1"
-       y1="280.31"
-       x2="1377.92"
-       y2="282.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.34,510.73 1375.78,510.84 1376.57,522.3 "
-       id="polygon25338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.41,546.08 1334.36,545.57 1322.38,542.23 "
-       id="polygon25340" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1377.46,510.86 1376.92,510.74 1377.71,522.2 "
-       id="polygon25342" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1376.92,510.74 1376.34,510.73 1377.13,522.2 "
-       id="polygon25344" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1453.49,502.6 1453.12,502.16 1442.03,509.73 "
-       id="polygon25346" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1454.17,504.04 1454.04,503.58 1442.96,511.15 "
-       id="polygon25348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.43,545.01 1334.59,544.46 1322.59,541.11 "
-       id="polygon25350" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.36,545.57 1334.43,545.01 1322.44,541.67 "
-       id="polygon25352" />
-    <line
-       x1="1567.15"
-       y1="458.72"
-       x2="1569.6801"
-       y2="461.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25354" />
-    <line
-       x1="1606.47"
-       y1="455.14001"
-       x2="1605.89"
-       y2="453.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25356" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1453.81,503.09 1453.49,502.6 1442.41,510.16 "
-       id="polygon25358" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1454.04,503.58 1453.81,503.09 1442.72,510.65 "
-       id="polygon25360" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1430.95,496.23 1430.95,496.51 1439.83,486.22 "
-       id="polygon25362" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1334.62,536.37 1334.95,536.13 1322.63,532.7 "
-       id="polygon25364" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1334.27,539.57 1334.04,539.3 1321.73,535.88 "
-       id="polygon25366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.32,536.77 1334.62,536.37 1322.3,532.95 "
-       id="polygon25368" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1334.04,539.3 1333.9,538.89 1321.59,535.46 "
-       id="polygon25370" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1440.97,509.14 1441.28,509.19 1452.36,501.63 "
-       id="polygon25372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.08,537.27 1334.32,536.77 1322.01,533.34 "
-       id="polygon25374" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1430.55,495.46 1430.82,495.88 1439.7,485.59 "
-       id="polygon25376" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1443.1,511.98 1442.98,512.23 1454.07,504.66 "
-       id="polygon25378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1333.9,538.89 1333.86,538.38 1321.55,534.96 "
-       id="polygon25380" />
-    <line
-       x1="1627.42"
-       y1="527.34003"
-       x2="1627.58"
-       y2="523.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.27,494.35 1429.73,494.66 1438.62,484.38 "
-       id="polygon25384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1333.93,537.82 1334.08,537.27 1321.77,533.84 "
-       id="polygon25386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1333.86,538.38 1333.93,537.82 1321.61,534.39 "
-       id="polygon25388" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1429.73,494.66 1430.18,495.05 1439.06,484.76 "
-       id="polygon25390" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1441.28,509.19 1441.64,509.39 1452.73,501.83 "
-       id="polygon25392" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1337.93,542.94 1337.61,543.19 1350.07,546.66 "
-       id="polygon25394" />
-    <line
-       x1="1377.92"
-       y1="282.48999"
-       x2="1378.5601"
-       y2="284.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25396" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1443.09,511.61 1443.1,511.98 1454.18,504.41 "
-       id="polygon25398" />
-    <line
-       x1="1605.89"
-       y1="453.88"
-       x2="1605.46"
-       y2="452.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25400" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1414.62,554.71 1414.94,554.31 1405.43,554.37 "
-       id="polygon25402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1337.61,543.19 1337.31,543.58 1349.77,547.05 "
-       id="polygon25404" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1441.64,509.39 1442.03,509.73 1453.12,502.16 "
-       id="polygon25406" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1442.96,511.15 1443.09,511.61 1454.17,504.04 "
-       id="polygon25408" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1415.14,553.8 1415.21,553.23 1405.71,553.29 "
-       id="polygon25410" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1442.03,509.73 1442.41,510.16 1453.49,502.6 "
-       id="polygon25412" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1442.72,510.65 1442.96,511.15 1454.04,503.58 "
-       id="polygon25414" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1442.41,510.16 1442.72,510.65 1453.81,503.09 "
-       id="polygon25416" />
-    <line
-       x1="1582.09"
-       y1="359.14001"
-       x2="1579.41"
-       y2="358.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25418" />
-    <line
-       x1="1627.04"
-       y1="530.87"
-       x2="1627.42"
-       y2="527.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25420" />
-    <line
-       x1="1378.5601"
-       y1="284.73999"
-       x2="1379"
-       y2="287.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25422" />
-    <polygon
-       style="opacity:1;fill:#00b700"
-       points="1334.27,539.57 1334.56,539.67 1334.63,539.3 "
-       id="polygon25424" />
-    <line
-       x1="1605.46"
-       y1="452.57001"
-       x2="1605.1801"
-       y2="451.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25426" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1378.7,522.55 1379.02,522.85 1378.22,511.39 "
-       id="polygon25428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.71,522.81 1376.08,522.52 1375.29,511.05 "
-       id="polygon25430" />
-    <line
-       x1="1569.6801"
-       y1="461.10999"
-       x2="1571.98"
-       y2="463.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25432" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1378.25,522.32 1378.7,522.55 1377.91,511.08 "
-       id="polygon25434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.08,522.52 1376.57,522.3 1375.78,510.84 "
-       id="polygon25436" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1377.71,522.2 1378.25,522.32 1377.46,510.86 "
-       id="polygon25438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.57,522.3 1377.13,522.2 1376.34,510.73 "
-       id="polygon25440" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1377.13,522.2 1377.71,522.2 1376.92,510.74 "
-       id="polygon25442" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1350.39,546.41 1350.71,546.34 1338.26,542.86 "
-       id="polygon25444" />
-    <line
-       x1="1626.4301"
-       y1="534.31"
-       x2="1627.04"
-       y2="530.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25446" />
-    <line
-       x1="1379"
-       y1="287.04001"
-       x2="1379.25"
-       y2="289.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25448" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1430.95,496.51 1430.95,496.23 1422.05,506.54 "
-       id="polygon25450" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1350.07,546.66 1350.39,546.41 1337.93,542.94 "
-       id="polygon25452" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1429.54,517.07 1429.64,516.82 1440.75,509.24 "
-       id="polygon25454" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1441.28,509.19 1440.97,509.14 1429.86,516.71 "
-       id="polygon25456" />
-    <line
-       x1="1605.1801"
-       y1="451.19"
-       x2="1605.05"
-       y2="449.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25458" />
-    <line
-       x1="1584.72"
-       y1="359.94"
-       x2="1582.09"
-       y2="359.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.77,547.05 1350.07,546.66 1337.61,543.19 "
-       id="polygon25462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.73,494.66 1429.27,494.35 1420.36,504.66 "
-       id="polygon25464" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1441.64,509.39 1441.28,509.19 1430.17,516.77 "
-       id="polygon25466" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1430.82,495.88 1430.55,495.46 1421.65,505.77 "
-       id="polygon25468" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1442.98,512.23 1443.1,511.98 1431.99,519.56 "
-       id="polygon25470" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1405.43,554.37 1405.11,554.77 1414.62,554.71 "
-       id="polygon25472" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1430.18,495.05 1429.73,494.66 1420.83,504.97 "
-       id="polygon25474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.53,547.55 1349.77,547.05 1337.31,543.58 "
-       id="polygon25476" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1430.55,495.46 1430.18,495.05 1421.27,505.36 "
-       id="polygon25478" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1335.77,543.24 1335.45,543.32 1347.48,546.67 "
-       id="polygon25480" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1405.71,553.29 1405.63,553.86 1415.14,553.8 "
-       id="polygon25482" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1334.55,546.49 1334.77,546.76 1346.8,550.12 "
-       id="polygon25484" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1442.03,509.73 1441.64,509.39 1430.54,516.97 "
-       id="polygon25486" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1443.1,511.98 1443.09,511.61 1431.98,519.19 "
-       id="polygon25488" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1335.45,543.32 1335.12,543.56 1347.15,546.92 "
-       id="polygon25490" />
-    <line
-       x1="1379.25"
-       y1="289.37"
-       x2="1379.3"
-       y2="291.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25492" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1442.41,510.16 1442.03,509.73 1430.93,517.31 "
-       id="polygon25494" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1443.09,511.61 1442.96,511.15 1431.86,518.73 "
-       id="polygon25496" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1334.41,546.08 1334.55,546.49 1346.57,549.85 "
-       id="polygon25498" />
-    <line
-       x1="1625.61"
-       y1="537.64001"
-       x2="1626.4301"
-       y2="534.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25500" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1335.12,543.56 1334.82,543.96 1346.86,547.31 "
-       id="polygon25502" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1442.72,510.65 1442.41,510.16 1431.3,517.74 "
-       id="polygon25504" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1442.96,511.15 1442.72,510.65 1431.62,518.23 "
-       id="polygon25506" />
-    <line
-       x1="1605.05"
-       y1="449.76999"
-       x2="1605.08"
-       y2="448.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25508" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.36,545.57 1334.41,546.08 1346.44,549.44 "
-       id="polygon25510" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1422.05,506.54 1422.05,506.82 1430.95,496.51 "
-       id="polygon25512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.82,543.96 1334.59,544.46 1346.62,547.81 "
-       id="polygon25514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1419.54,504.35 1419.92,504.44 1428.82,494.14 "
-       id="polygon25516" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.43,545.01 1334.36,545.57 1346.39,548.93 "
-       id="polygon25518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.59,544.46 1334.43,545.01 1346.46,548.37 "
-       id="polygon25520" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1347.91,539.58 1348.14,539.85 1335.78,536.42 "
-       id="polygon25522" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1335.27,536.05 1334.95,536.13 1347.3,539.56 "
-       id="polygon25524" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1421.91,506.18 1422.05,506.54 1430.95,496.23 "
-       id="polygon25526" />
-    <line
-       x1="1571.98"
-       y1="463.70999"
-       x2="1574.02"
-       y2="466.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25528" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1429.86,516.71 1430.17,516.77 1441.28,509.19 "
-       id="polygon25530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1419.92,504.44 1420.36,504.66 1429.27,494.35 "
-       id="polygon25532" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1334.04,539.3 1334.27,539.57 1346.63,543.01 "
-       id="polygon25534" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1334.95,536.13 1334.62,536.37 1346.98,539.81 "
-       id="polygon25536" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1421.65,505.77 1421.91,506.18 1430.82,495.88 "
-       id="polygon25538" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.36,504.66 1420.83,504.97 1429.73,494.66 "
-       id="polygon25540" />
-    <line
-       x1="1379.3"
-       y1="291.70999"
-       x2="1379.16"
-       y2="294.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25542" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1333.9,538.89 1334.04,539.3 1346.4,542.74 "
-       id="polygon25544" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1430.17,516.77 1430.54,516.97 1441.64,509.39 "
-       id="polygon25546" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1421.27,505.36 1421.65,505.77 1430.55,495.46 "
-       id="polygon25548" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1420.83,504.97 1421.27,505.36 1430.18,495.05 "
-       id="polygon25550" />
-    <line
-       x1="1587.28"
-       y1="360.98999"
-       x2="1584.72"
-       y2="359.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25552" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.62,536.37 1334.32,536.77 1346.68,540.2 "
-       id="polygon25554" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1431.98,519.19 1431.99,519.56 1443.1,511.98 "
-       id="polygon25556" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1333.86,538.38 1333.9,538.89 1346.26,542.33 "
-       id="polygon25558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.32,536.77 1334.08,537.27 1346.44,540.7 "
-       id="polygon25560" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1430.54,516.97 1430.93,517.31 1442.03,509.73 "
-       id="polygon25562" />
-    <line
-       x1="1605.08"
-       y1="448.32001"
-       x2="1605.27"
-       y2="446.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1333.93,537.82 1333.86,538.38 1346.22,541.82 "
-       id="polygon25566" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1334.08,537.27 1333.93,537.82 1346.28,541.26 "
-       id="polygon25568" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1431.86,518.73 1431.98,519.19 1443.09,511.61 "
-       id="polygon25570" />
-    <line
-       x1="1624.59"
-       y1="540.84003"
-       x2="1625.61"
-       y2="537.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25572" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1430.93,517.31 1431.3,517.74 1442.41,510.16 "
-       id="polygon25574" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1431.62,518.23 1431.86,518.73 1442.96,511.15 "
-       id="polygon25576" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1431.3,517.74 1431.62,518.23 1442.72,510.65 "
-       id="polygon25578" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1347.48,546.67 1347.8,546.59 1335.77,543.24 "
-       id="polygon25580" />
-    <line
-       x1="1379.16"
-       y1="294.07001"
-       x2="1378.8199"
-       y2="296.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25582" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1347.15,546.92 1347.48,546.67 1335.45,543.32 "
-       id="polygon25584" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1346.8,550.12 1346.57,549.85 1334.55,546.49 "
-       id="polygon25586" />
-    <line
-       x1="1605.27"
-       y1="446.84"
-       x2="1605.62"
-       y2="445.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.86,547.31 1347.15,546.92 1335.12,543.56 "
-       id="polygon25590" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1346.57,549.85 1346.44,549.44 1334.41,546.08 "
-       id="polygon25592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.62,547.81 1346.86,547.31 1334.82,543.96 "
-       id="polygon25594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.44,549.44 1346.39,548.93 1334.36,545.57 "
-       id="polygon25596" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.46,548.37 1346.62,547.81 1334.59,544.46 "
-       id="polygon25598" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1378.91,523.92 1379.13,523.57 1379.93,535.08 "
-       id="polygon25600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.39,548.93 1346.46,548.37 1334.43,545.01 "
-       id="polygon25602" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1419.54,504.35 1419.26,504.39 1410.34,514.71 "
-       id="polygon25604" />
-    <line
-       x1="1589.77"
-       y1="362.26999"
-       x2="1587.28"
-       y2="360.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25606" />
-    <line
-       x1="1378.8199"
-       y1="296.41"
-       x2="1378.28"
-       y2="298.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25608" />
-    <line
-       x1="1623.38"
-       y1="543.88"
-       x2="1624.59"
-       y2="540.84003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25610" />
-    <line
-       x1="1574.02"
-       y1="466.5"
-       x2="1575.79"
-       y2="469.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25612" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1346.98,539.81 1347.3,539.56 1334.95,536.13 "
-       id="polygon25614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1419.92,504.44 1419.54,504.35 1410.62,514.68 "
-       id="polygon25616" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1346.63,543.01 1346.4,542.74 1334.04,539.3 "
-       id="polygon25618" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1422.05,506.82 1422.05,506.54 1413.13,516.88 "
-       id="polygon25620" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1430.17,516.77 1429.86,516.71 1418.74,524.31 "
-       id="polygon25622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.68,540.2 1346.98,539.81 1334.62,536.37 "
-       id="polygon25624" />
-    <line
-       x1="1605.62"
-       y1="445.35001"
-       x2="1606.13"
-       y2="443.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25626" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1346.4,542.74 1346.26,542.33 1333.9,538.89 "
-       id="polygon25628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.36,504.66 1419.92,504.44 1411,514.77 "
-       id="polygon25630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.44,540.7 1346.68,540.2 1334.32,536.77 "
-       id="polygon25632" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1350.71,546.34 1350.39,546.41 1362.89,549.89 "
-       id="polygon25634" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1422.05,506.54 1421.91,506.18 1413,516.52 "
-       id="polygon25636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.26,542.33 1346.22,541.82 1333.86,538.38 "
-       id="polygon25638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.28,541.26 1346.44,540.7 1334.08,537.27 "
-       id="polygon25640" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1430.54,516.97 1430.17,516.77 1419.04,524.36 "
-       id="polygon25642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.22,541.82 1346.28,541.26 1333.93,537.82 "
-       id="polygon25644" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1378.7,522.55 1378.25,522.32 1379.05,533.83 "
-       id="polygon25646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.83,504.97 1420.36,504.66 1411.44,514.99 "
-       id="polygon25648" />
-    <line
-       x1="1378.28"
-       y1="298.72"
-       x2="1377.55"
-       y2="300.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25650" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1421.91,506.18 1421.65,505.77 1412.73,516.11 "
-       id="polygon25652" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1377.71,522.2 1377.13,522.2 1377.93,533.7 "
-       id="polygon25654" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1421.27,505.36 1420.83,504.97 1411.91,515.3 "
-       id="polygon25656" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1350.39,546.41 1350.07,546.66 1362.57,550.14 "
-       id="polygon25658" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1421.65,505.77 1421.27,505.36 1412.35,515.69 "
-       id="polygon25660" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1430.93,517.31 1430.54,516.97 1419.41,524.57 "
-       id="polygon25662" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1431.99,519.56 1431.98,519.19 1420.86,526.79 "
-       id="polygon25664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1350.07,546.66 1349.77,547.05 1362.27,550.54 "
-       id="polygon25666" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1431.3,517.74 1430.93,517.31 1419.8,524.9 "
-       id="polygon25668" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1431.98,519.19 1431.86,518.73 1420.72,526.33 "
-       id="polygon25670" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.34,514.71 1410.62,514.68 1419.54,504.35 "
-       id="polygon25672" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1431.62,518.23 1431.3,517.74 1420.17,525.34 "
-       id="polygon25674" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1431.86,518.73 1431.62,518.23 1420.49,525.83 "
-       id="polygon25676" />
-    <line
-       x1="1621.98"
-       y1="546.76001"
-       x2="1623.38"
-       y2="543.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25678" />
-    <line
-       x1="1606.13"
-       y1="443.85999"
-       x2="1606.79"
-       y2="442.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25680" />
-    <line
-       x1="1592.15"
-       y1="363.78"
-       x2="1589.77"
-       y2="362.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25682" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1413.13,516.88 1413.13,517.15 1422.05,506.82 "
-       id="polygon25684" />
-    <line
-       x1="1377.55"
-       y1="300.98999"
-       x2="1376.63"
-       y2="303.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25686" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1405.11,554.77 1405.43,554.37 1395.88,554.43 "
-       id="polygon25688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.62,514.68 1411,514.77 1419.92,504.44 "
-       id="polygon25690" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1405.63,553.86 1405.71,553.29 1396.16,553.34 "
-       id="polygon25692" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1418.74,524.31 1419.04,524.36 1430.17,516.77 "
-       id="polygon25694" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1413,516.52 1413.13,516.88 1422.05,506.54 "
-       id="polygon25696" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1420.86,527.16 1420.75,527.41 1431.88,519.81 "
-       id="polygon25698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411,514.77 1411.44,514.99 1420.36,504.66 "
-       id="polygon25700" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1412.73,516.11 1413,516.52 1421.91,506.18 "
-       id="polygon25702" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1419.04,524.36 1419.41,524.57 1430.54,516.97 "
-       id="polygon25704" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.44,514.99 1411.91,515.3 1420.83,504.97 "
-       id="polygon25706" />
-    <line
-       x1="1575.79"
-       y1="469.48001"
-       x2="1577.29"
-       y2="472.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25708" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1412.35,515.69 1412.73,516.11 1421.65,505.77 "
-       id="polygon25710" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1420.86,526.79 1420.86,527.16 1431.99,519.56 "
-       id="polygon25712" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1411.91,515.3 1412.35,515.69 1421.27,505.36 "
-       id="polygon25714" />
-    <line
-       x1="1606.79"
-       y1="442.38"
-       x2="1607.6"
-       y2="440.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25716" />
-    <line
-       x1="1376.63"
-       y1="303.20999"
-       x2="1375.52"
-       y2="305.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25718" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1419.41,524.57 1419.8,524.9 1430.93,517.31 "
-       id="polygon25720" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1420.72,526.33 1420.86,526.79 1431.98,519.19 "
-       id="polygon25722" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1419.8,524.9 1420.17,525.34 1431.3,517.74 "
-       id="polygon25724" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1420.49,525.83 1420.72,526.33 1431.86,518.73 "
-       id="polygon25726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.03,551.04 1362.27,550.54 1349.77,547.05 "
-       id="polygon25728" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1348.31,546.96 1348.09,546.69 1360.16,550.06 "
-       id="polygon25730" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1420.17,525.34 1420.49,525.83 1431.62,518.23 "
-       id="polygon25732" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1379.81,534.36 1379.96,534.71 1379.16,523.2 "
-       id="polygon25734" />
-    <line
-       x1="1620.41"
-       y1="549.46002"
-       x2="1621.98"
-       y2="546.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25736" />
-    <polygon
-       style="opacity:1;fill:#00a700"
-       points="1379.5,534.05 1379.81,534.36 1379.02,522.85 "
-       id="polygon25738" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1362.57,550.14 1362.89,549.89 1350.39,546.41 "
-       id="polygon25740" />
-    <line
-       x1="1375.52"
-       y1="305.35001"
-       x2="1374.24"
-       y2="307.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25742" />
-    <line
-       x1="1594.41"
-       y1="365.5"
-       x2="1592.15"
-       y2="363.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25744" />
-    <line
-       x1="1607.6"
-       y1="440.91"
-       x2="1608.55"
-       y2="439.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25746" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1347.8,546.59 1347.48,546.67 1359.55,550.04 "
-       id="polygon25748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.27,550.54 1362.57,550.14 1350.07,546.66 "
-       id="polygon25750" />
-    <polygon
-       style="opacity:1;fill:#008800"
-       points="1378.51,533.71 1379.05,533.83 1378.25,522.32 "
-       id="polygon25752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1377.36,533.81 1377.93,533.7 1377.13,522.2 "
-       id="polygon25754" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1346.57,549.85 1346.8,550.12 1358.87,553.49 "
-       id="polygon25756" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1347.48,546.67 1347.15,546.92 1359.23,550.29 "
-       id="polygon25758" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1346.44,549.44 1346.57,549.85 1358.64,553.22 "
-       id="polygon25760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1347.15,546.92 1346.86,547.31 1358.93,550.68 "
-       id="polygon25762" />
-    <line
-       x1="1374.24"
-       y1="307.39999"
-       x2="1372.79"
-       y2="309.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.62,514.68 1410.34,514.71 1401.39,525.06 "
-       id="polygon25766" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.39,548.93 1346.44,549.44 1358.51,552.81 "
-       id="polygon25768" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1395.88,554.43 1395.57,554.83 1405.11,554.77 "
-       id="polygon25770" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.86,547.31 1346.62,547.81 1358.69,551.18 "
-       id="polygon25772" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.46,548.37 1346.39,548.93 1358.46,552.3 "
-       id="polygon25774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.62,547.81 1346.46,548.37 1358.53,551.74 "
-       id="polygon25776" />
-    <line
-       x1="1608.55"
-       y1="439.48001"
-       x2="1609.66"
-       y2="438.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411,514.77 1410.62,514.68 1401.68,525.03 "
-       id="polygon25780" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1407.26,532.27 1407.37,532.02 1418.52,524.41 "
-       id="polygon25782" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1419.04,524.36 1418.74,524.31 1407.59,531.92 "
-       id="polygon25784" />
-    <line
-       x1="1618.6801"
-       y1="551.95001"
-       x2="1620.41"
-       y2="549.46002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25786" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1347.63,539.48 1347.3,539.56 1359.71,543 "
-       id="polygon25788" />
-    <line
-       x1="1577.29"
-       y1="472.60999"
-       x2="1578.48"
-       y2="475.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25790" />
-    <line
-       x1="1372.79"
-       y1="309.35999"
-       x2="1371.17"
-       y2="311.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25792" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1346.4,542.74 1346.63,543.01 1359.03,546.46 "
-       id="polygon25794" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.44,514.99 1411,514.77 1402.05,525.12 "
-       id="polygon25796" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1347.3,539.56 1346.98,539.81 1359.38,543.25 "
-       id="polygon25798" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1419.41,524.57 1419.04,524.36 1407.89,531.97 "
-       id="polygon25800" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1413.13,516.88 1413,516.52 1404.05,526.87 "
-       id="polygon25802" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1420.75,527.41 1420.86,527.16 1409.71,534.77 "
-       id="polygon25804" />
-    <line
-       x1="1596.55"
-       y1="367.44"
-       x2="1594.41"
-       y2="365.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25806" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1346.26,542.33 1346.4,542.74 1358.8,546.19 "
-       id="polygon25808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.91,515.3 1411.44,514.99 1402.5,525.34 "
-       id="polygon25810" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1413,516.52 1412.73,516.11 1403.79,526.46 "
-       id="polygon25812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.98,539.81 1346.68,540.2 1359.08,543.65 "
-       id="polygon25814" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1412.35,515.69 1411.91,515.3 1402.97,525.66 "
-       id="polygon25816" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1419.8,524.9 1419.41,524.57 1408.26,532.18 "
-       id="polygon25818" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1412.73,516.11 1412.35,515.69 1403.41,526.04 "
-       id="polygon25820" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1420.86,527.16 1420.86,526.79 1409.7,534.4 "
-       id="polygon25822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.22,541.82 1346.26,542.33 1358.66,545.78 "
-       id="polygon25824" />
-    <line
-       x1="1609.66"
-       y1="438.09"
-       x2="1610.9"
-       y2="436.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.68,540.2 1346.44,540.7 1358.84,544.15 "
-       id="polygon25828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.28,541.26 1346.22,541.82 1358.62,545.27 "
-       id="polygon25830" />
-    <line
-       x1="1371.17"
-       y1="311.20001"
-       x2="1369.41"
-       y2="312.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.44,540.7 1346.28,541.26 1358.68,544.71 "
-       id="polygon25834" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1420.17,525.34 1419.8,524.9 1408.64,532.52 "
-       id="polygon25836" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1420.86,526.79 1420.72,526.33 1409.57,533.94 "
-       id="polygon25838" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1420.49,525.83 1420.17,525.34 1409.02,532.95 "
-       id="polygon25840" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1420.72,526.33 1420.49,525.83 1409.34,533.44 "
-       id="polygon25842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.39,525.06 1401.68,525.03 1410.62,514.68 "
-       id="polygon25844" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1359.23,550.29 1359.55,550.04 1347.48,546.67 "
-       id="polygon25846" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1404.2,527.23 1404.19,527.5 1413.13,517.15 "
-       id="polygon25848" />
-    <line
-       x1="1369.41"
-       y1="312.92001"
-       x2="1367.5"
-       y2="314.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.68,525.03 1402.05,525.12 1411,514.77 "
-       id="polygon25852" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1407.59,531.92 1407.89,531.97 1419.04,524.36 "
-       id="polygon25854" />
-    <line
-       x1="1610.9"
-       y1="436.75"
-       x2="1612.27"
-       y2="435.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.93,550.68 1359.23,550.29 1347.15,546.92 "
-       id="polygon25858" />
-    <line
-       x1="1616.8101"
-       y1="554.22998"
-       x2="1618.6801"
-       y2="551.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25860" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1404.05,526.87 1404.2,527.23 1413.13,516.88 "
-       id="polygon25862" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1358.64,553.22 1358.51,552.81 1346.44,549.44 "
-       id="polygon25864" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.05,525.12 1402.5,525.34 1411.44,514.99 "
-       id="polygon25866" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.69,551.18 1358.93,550.68 1346.86,547.31 "
-       id="polygon25868" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1407.89,531.97 1408.26,532.18 1419.41,524.57 "
-       id="polygon25870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.51,552.81 1358.46,552.3 1346.39,548.93 "
-       id="polygon25872" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1403.79,526.46 1404.05,526.87 1413,516.52 "
-       id="polygon25874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.53,551.74 1358.69,551.18 1346.62,547.81 "
-       id="polygon25876" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1409.7,534.4 1409.71,534.77 1420.86,527.16 "
-       id="polygon25878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.46,552.3 1358.53,551.74 1346.46,548.37 "
-       id="polygon25880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.5,525.34 1402.97,525.66 1411.91,515.3 "
-       id="polygon25882" />
-    <line
-       x1="1367.5"
-       y1="314.5"
-       x2="1365.46"
-       y2="315.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25884" />
-    <line
-       x1="1598.53"
-       y1="369.57001"
-       x2="1596.55"
-       y2="367.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25886" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1403.41,526.04 1403.79,526.46 1412.73,516.11 "
-       id="polygon25888" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1402.97,525.66 1403.41,526.04 1412.35,515.69 "
-       id="polygon25890" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1408.26,532.18 1408.64,532.52 1419.8,524.9 "
-       id="polygon25892" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1409.57,533.94 1409.7,534.4 1420.86,526.79 "
-       id="polygon25894" />
-    <line
-       x1="1578.48"
-       y1="475.88"
-       x2="1579.38"
-       y2="479.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25896" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1408.64,532.52 1409.02,532.95 1420.17,525.34 "
-       id="polygon25898" />
-    <line
-       x1="1612.27"
-       y1="435.48001"
-       x2="1613.77"
-       y2="434.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25900" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1409.34,533.44 1409.57,533.94 1420.72,526.33 "
-       id="polygon25902" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1409.02,532.95 1409.34,533.44 1420.49,525.83 "
-       id="polygon25904" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1363.72,550.18 1363.5,549.92 1376.04,553.41 "
-       id="polygon25906" />
-    <line
-       x1="1365.46"
-       y1="315.94"
-       x2="1363.3"
-       y2="317.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25908" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1359.38,543.25 1359.71,543 1347.3,539.56 "
-       id="polygon25910" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1359.03,546.46 1358.8,546.19 1346.4,542.74 "
-       id="polygon25912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.08,543.65 1359.38,543.25 1346.98,539.81 "
-       id="polygon25914" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1358.8,546.19 1358.66,545.78 1346.26,542.33 "
-       id="polygon25916" />
-    <line
-       x1="1363.3"
-       y1="317.22"
-       x2="1361.05"
-       y2="318.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25918" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.84,544.15 1359.08,543.65 1346.68,540.2 "
-       id="polygon25920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.66,545.78 1358.62,545.27 1346.22,541.82 "
-       id="polygon25922" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.68,544.71 1358.84,544.15 1346.44,540.7 "
-       id="polygon25924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.62,545.27 1358.68,544.71 1346.28,541.26 "
-       id="polygon25926" />
-    <line
-       x1="1613.77"
-       y1="434.28"
-       x2="1615.38"
-       y2="433.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25928" />
-    <line
-       x1="1614.8101"
-       y1="556.28003"
-       x2="1616.8101"
-       y2="554.22998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25930" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1362.89,549.89 1362.57,550.14 1375.11,553.64 "
-       id="polygon25932" />
-    <line
-       x1="1361.05"
-       y1="318.34"
-       x2="1358.7"
-       y2="319.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25934" />
-    <line
-       x1="1600.35"
-       y1="371.89001"
-       x2="1598.53"
-       y2="369.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.57,550.14 1362.27,550.54 1374.81,554.04 "
-       id="polygon25938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.68,525.03 1401.39,525.06 1392.44,535.43 "
-       id="polygon25940" />
-    <line
-       x1="1358.7"
-       y1="319.26999"
-       x2="1356.27"
-       y2="320.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25942" />
-    <line
-       x1="1615.38"
-       y1="433.16"
-       x2="1617.09"
-       y2="432.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25944" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1407.89,531.97 1407.59,531.92 1396.41,539.54 "
-       id="polygon25946" />
-    <polygon
-       style="opacity:1;fill:#009900"
-       points="1379.5,534.05 1379.05,533.83 1379.85,545.38 "
-       id="polygon25948" />
-    <line
-       x1="1356.27"
-       y1="320.04001"
-       x2="1353.77"
-       y2="320.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.05,525.12 1401.68,525.03 1392.71,535.4 "
-       id="polygon25952" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1378.51,533.71 1377.93,533.7 1378.73,545.26 "
-       id="polygon25954" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1404.19,527.5 1404.2,527.23 1395.23,537.61 "
-       id="polygon25956" />
-    <line
-       x1="1579.38"
-       y1="479.26001"
-       x2="1579.96"
-       y2="482.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25958" />
-    <line
-       x1="1353.77"
-       y1="320.60999"
-       x2="1351.23"
-       y2="321"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25960" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1408.26,532.18 1407.89,531.97 1396.71,539.6 "
-       id="polygon25962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.5,525.34 1402.05,525.12 1393.09,535.5 "
-       id="polygon25964" />
-    <line
-       x1="1617.09"
-       y1="432.14001"
-       x2="1618.91"
-       y2="431.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25966" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1404.2,527.23 1404.05,526.87 1395.1,537.25 "
-       id="polygon25968" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1395.57,554.83 1395.88,554.43 1386.3,554.49 "
-       id="polygon25970" />
-    <line
-       x1="1351.23"
-       y1="321"
-       x2="1348.66"
-       y2="321.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.97,525.66 1402.5,525.34 1393.54,535.71 "
-       id="polygon25974" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1408.64,532.52 1408.26,532.18 1397.08,539.8 "
-       id="polygon25976" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1409.71,534.77 1409.7,534.4 1398.53,542.03 "
-       id="polygon25978" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1404.05,526.87 1403.79,526.46 1394.82,536.84 "
-       id="polygon25980" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1403.41,526.04 1402.97,525.66 1394.01,536.03 "
-       id="polygon25982" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1403.79,526.46 1403.41,526.04 1394.45,536.42 "
-       id="polygon25984" />
-    <line
-       x1="1348.66"
-       y1="321.19"
-       x2="1346.0699"
-       y2="321.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25986" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1409.02,532.95 1408.64,532.52 1397.47,540.14 "
-       id="polygon25988" />
-    <line
-       x1="1612.7"
-       y1="558.09003"
-       x2="1614.8101"
-       y2="556.28003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25990" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1409.7,534.4 1409.57,533.94 1398.39,541.57 "
-       id="polygon25992" />
-    <line
-       x1="1602"
-       y1="374.37"
-       x2="1600.35"
-       y2="371.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25994" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1409.34,533.44 1409.02,532.95 1397.84,540.58 "
-       id="polygon25996" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1409.57,533.94 1409.34,533.44 1398.16,541.07 "
-       id="polygon25998" />
-    <line
-       x1="1618.91"
-       y1="431.20999"
-       x2="1620.8101"
-       y2="430.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26000" />
-    <line
-       x1="1343.48"
-       y1="320.98999"
-       x2="1340.91"
-       y2="320.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.44,535.43 1392.71,535.4 1401.68,525.03 "
-       id="polygon26004" />
-    <line
-       x1="1340.91"
-       y1="320.60001"
-       x2="1338.37"
-       y2="320.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26006" />
-    <line
-       x1="1315.29"
-       y1="300.01999"
-       x2="1314.33"
-       y2="297.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26008" />
-    <line
-       x1="1314.33"
-       y1="297.56"
-       x2="1313.5699"
-       y2="295.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26010" />
-    <line
-       x1="1316.42"
-       y1="302.39001"
-       x2="1315.29"
-       y2="300.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26012" />
-    <line
-       x1="1313.5699"
-       y1="295.04999"
-       x2="1313"
-       y2="292.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26014" />
-    <line
-       x1="1317.73"
-       y1="304.67999"
-       x2="1316.42"
-       y2="302.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26016" />
-    <line
-       x1="1338.37"
-       y1="320.01001"
-       x2="1335.87"
-       y2="319.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26018" />
-    <line
-       x1="1319.21"
-       y1="306.87"
-       x2="1317.73"
-       y2="304.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26020" />
-    <line
-       x1="1313"
-       y1="292.48001"
-       x2="1312.63"
-       y2="289.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26022" />
-    <line
-       x1="1320.84"
-       y1="308.92999"
-       x2="1319.21"
-       y2="306.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26024" />
-    <line
-       x1="1335.87"
-       y1="319.23999"
-       x2="1333.4301"
-       y2="318.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26026" />
-    <line
-       x1="1322.63"
-       y1="310.87"
-       x2="1320.84"
-       y2="308.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26028" />
-    <line
-       x1="1312.63"
-       y1="289.88"
-       x2="1312.45"
-       y2="287.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26030" />
-    <line
-       x1="1333.4301"
-       y1="318.26999"
-       x2="1331.0601"
-       y2="317.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26032" />
-    <line
-       x1="1324.5601"
-       y1="312.67001"
-       x2="1322.63"
-       y2="310.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26034" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1375.11,553.64 1375.43,553.39 1362.89,549.89 "
-       id="polygon26036" />
-    <line
-       x1="1326.62"
-       y1="314.32001"
-       x2="1324.5601"
-       y2="312.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26038" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1395.23,537.61 1395.23,537.88 1404.19,527.5 "
-       id="polygon26040" />
-    <line
-       x1="1331.0601"
-       y1="317.13"
-       x2="1328.79"
-       y2="315.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26042" />
-    <line
-       x1="1328.79"
-       y1="315.79999"
-       x2="1326.62"
-       y2="314.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26044" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1396.41,539.54 1396.71,539.6 1407.89,531.97 "
-       id="polygon26046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.57,554.54 1374.81,554.04 1362.27,550.54 "
-       id="polygon26048" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1359.87,549.96 1359.55,550.04 1371.66,553.41 "
-       id="polygon26050" />
-    <line
-       x1="1312.45"
-       y1="287.26999"
-       x2="1312.47"
-       y2="284.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26052" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.71,535.4 1393.09,535.5 1402.05,525.12 "
-       id="polygon26054" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1398.54,542.4 1398.43,542.65 1409.61,535.02 "
-       id="polygon26056" />
-    <line
-       x1="1312.47"
-       y1="284.64999"
-       x2="1312.6899"
-       y2="282.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26058" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1358.64,553.22 1358.87,553.49 1370.98,556.88 "
-       id="polygon26060" />
-    <line
-       x1="1620.8101"
-       y1="430.39001"
-       x2="1622.79"
-       y2="429.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26062" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1395.1,537.25 1395.23,537.61 1404.2,527.23 "
-       id="polygon26064" />
-    <line
-       x1="1312.6899"
-       y1="282.04999"
-       x2="1313.1"
-       y2="279.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26066" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1359.55,550.04 1359.23,550.29 1371.34,553.66 "
-       id="polygon26068" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1396.71,539.6 1397.08,539.8 1408.26,532.18 "
-       id="polygon26070" />
-    <line
-       x1="1660"
-       y1="469.76999"
-       x2="1658.96"
-       y2="471.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26072" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.09,535.5 1393.54,535.71 1402.5,525.34 "
-       id="polygon26074" />
-    <line
-       x1="1658.96"
-       y1="471.66"
-       x2="1657.8"
-       y2="473.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26076" />
-    <line
-       x1="1660.9"
-       y1="467.81"
-       x2="1660"
-       y2="469.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26078" />
-    <line
-       x1="1657.8"
-       y1="473.48001"
-       x2="1656.52"
-       y2="475.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26080" />
-    <line
-       x1="1661.6801"
-       y1="465.79999"
-       x2="1660.9"
-       y2="467.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26082" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1398.53,542.03 1398.54,542.4 1409.71,534.77 "
-       id="polygon26084" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1358.51,552.81 1358.64,553.22 1370.76,556.61 "
-       id="polygon26086" />
-    <line
-       x1="1313.1"
-       y1="279.47"
-       x2="1313.71"
-       y2="276.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26088" />
-    <line
-       x1="1662.3"
-       y1="463.75"
-       x2="1661.6801"
-       y2="465.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26090" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1394.82,536.84 1395.1,537.25 1404.05,526.87 "
-       id="polygon26092" />
-    <line
-       x1="1656.52"
-       y1="475.22"
-       x2="1655.14"
-       y2="476.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.23,550.29 1358.93,550.68 1371.04,554.06 "
-       id="polygon26096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.54,535.71 1394.01,536.03 1402.97,525.66 "
-       id="polygon26098" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1397.08,539.8 1397.47,540.14 1408.64,532.52 "
-       id="polygon26100" />
-    <polygon
-       style="opacity:1;fill:#00ae00"
-       points="1360.54,543.3 1360.32,543.03 1372.76,546.48 "
-       id="polygon26102" />
-    <line
-       x1="1662.78"
-       y1="461.66"
-       x2="1662.3"
-       y2="463.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26104" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1394.45,536.42 1394.82,536.84 1403.79,526.46 "
-       id="polygon26106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.46,552.3 1358.51,552.81 1370.62,556.2 "
-       id="polygon26108" />
-    <line
-       x1="1655.14"
-       y1="476.87"
-       x2="1653.66"
-       y2="478.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26110" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1394.01,536.03 1394.45,536.42 1403.41,526.04 "
-       id="polygon26112" />
-    <line
-       x1="1313.71"
-       y1="276.92999"
-       x2="1314.5"
-       y2="274.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26114" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1398.39,541.57 1398.53,542.03 1409.7,534.4 "
-       id="polygon26116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.93,550.68 1358.69,551.18 1370.8,554.56 "
-       id="polygon26118" />
-    <line
-       x1="1622.79"
-       y1="429.67999"
-       x2="1624.83"
-       y2="429.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.53,551.74 1358.46,552.3 1370.58,555.68 "
-       id="polygon26122" />
-    <line
-       x1="1663.11"
-       y1="459.56"
-       x2="1662.78"
-       y2="461.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.69,551.18 1358.53,551.74 1370.64,555.12 "
-       id="polygon26126" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1397.47,540.14 1397.84,540.58 1409.02,532.95 "
-       id="polygon26128" />
-    <line
-       x1="1653.66"
-       y1="478.42001"
-       x2="1652.1"
-       y2="479.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26130" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1398.16,541.07 1398.39,541.57 1409.57,533.94 "
-       id="polygon26132" />
-    <line
-       x1="1579.96"
-       y1="482.73999"
-       x2="1580.23"
-       y2="486.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26134" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1397.84,540.58 1398.16,541.07 1409.34,533.44 "
-       id="polygon26136" />
-    <line
-       x1="1314.5"
-       y1="274.45999"
-       x2="1315.48"
-       y2="272.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26138" />
-    <line
-       x1="1603.45"
-       y1="377.01001"
-       x2="1602"
-       y2="374.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26140" />
-    <line
-       x1="1663.29"
-       y1="457.44"
-       x2="1663.11"
-       y2="459.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26142" />
-    <polygon
-       style="opacity:1;fill:#007300"
-       points="1392.71,535.4 1392.44,535.43 1392.7,535.7 "
-       id="polygon26144" />
-    <line
-       x1="1652.1"
-       y1="479.85999"
-       x2="1650.46"
-       y2="481.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26146" />
-    <line
-       x1="1663.3"
-       y1="455.32999"
-       x2="1663.29"
-       y2="457.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26148" />
-    <line
-       x1="1610.49"
-       y1="559.64001"
-       x2="1612.7"
-       y2="558.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26150" />
-    <line
-       x1="1624.83"
-       y1="429.09"
-       x2="1626.9301"
-       y2="428.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26152" />
-    <line
-       x1="1315.48"
-       y1="272.04999"
-       x2="1316.63"
-       y2="269.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26154" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1360.03,542.93 1359.71,543 1372.15,546.46 "
-       id="polygon26156" />
-    <line
-       x1="1663.16"
-       y1="453.22"
-       x2="1663.3"
-       y2="455.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26158" />
-    <line
-       x1="1650.46"
-       y1="481.19"
-       x2="1648.76"
-       y2="482.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26160" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1358.8,546.19 1359.03,546.46 1371.47,549.92 "
-       id="polygon26162" />
-    <line
-       x1="1662.86"
-       y1="451.14001"
-       x2="1663.16"
-       y2="453.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26164" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1359.71,543 1359.38,543.25 1371.83,546.71 "
-       id="polygon26166" />
-    <line
-       x1="1316.63"
-       y1="269.73999"
-       x2="1317.96"
-       y2="267.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26168" />
-    <line
-       x1="1626.9301"
-       y1="428.64001"
-       x2="1629.0699"
-       y2="428.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26170" />
-    <line
-       x1="1648.76"
-       y1="482.39001"
-       x2="1647"
-       y2="483.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26172" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1358.66,545.78 1358.8,546.19 1371.25,549.66 "
-       id="polygon26174" />
-    <line
-       x1="1662.41"
-       y1="449.09"
-       x2="1662.86"
-       y2="451.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.38,543.25 1359.08,543.65 1371.53,547.11 "
-       id="polygon26178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.62,545.27 1358.66,545.78 1371.11,549.25 "
-       id="polygon26180" />
-    <line
-       x1="1317.96"
-       y1="267.51999"
-       x2="1319.45"
-       y2="265.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26182" />
-    <line
-       x1="1661.79"
-       y1="447.09"
-       x2="1662.41"
-       y2="449.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26184" />
-    <polygon
-       style="opacity:1;fill:#13ff13"
-       points="1371.64,547.32 1371.45,547.73 1359.01,544.27 "
-       id="polygon26186" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.08,543.65 1358.84,544.15 1371.29,547.61 "
-       id="polygon26188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.68,544.71 1358.62,545.27 1371.07,548.73 "
-       id="polygon26190" />
-    <line
-       x1="1629.0699"
-       y1="428.29999"
-       x2="1631.23"
-       y2="428.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.84,544.15 1358.68,544.71 1371.13,548.17 "
-       id="polygon26194" />
-    <line
-       x1="1647"
-       y1="483.48001"
-       x2="1645.21"
-       y2="484.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26196" />
-    <line
-       x1="1661.03"
-       y1="445.14001"
-       x2="1661.79"
-       y2="447.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26198" />
-    <line
-       x1="1604.71"
-       y1="379.79001"
-       x2="1603.45"
-       y2="377.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26200" />
-    <line
-       x1="1319.45"
-       y1="265.41"
-       x2="1321.08"
-       y2="263.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26202" />
-    <line
-       x1="1660.11"
-       y1="443.26999"
-       x2="1661.03"
-       y2="445.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26204" />
-    <line
-       x1="1631.23"
-       y1="428.10999"
-       x2="1633.42"
-       y2="428.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26206" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1371.34,553.66 1371.66,553.41 1359.55,550.04 "
-       id="polygon26208" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1370.98,556.88 1370.76,556.61 1358.64,553.22 "
-       id="polygon26210" />
-    <line
-       x1="1645.21"
-       y1="484.42999"
-       x2="1643.38"
-       y2="485.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26212" />
-    <line
-       x1="1659.05"
-       y1="441.45999"
-       x2="1660.11"
-       y2="443.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.04,554.06 1371.34,553.66 1359.23,550.29 "
-       id="polygon26216" />
-    <line
-       x1="1633.42"
-       y1="428.04999"
-       x2="1635.61"
-       y2="428.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26218" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1370.76,556.61 1370.62,556.2 1358.51,552.81 "
-       id="polygon26220" />
-    <line
-       x1="1657.85"
-       y1="439.73001"
-       x2="1659.05"
-       y2="441.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26222" />
-    <line
-       x1="1321.08"
-       y1="263.42999"
-       x2="1322.86"
-       y2="261.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26224" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1388.83,545.11 1389.25,544.69 1385.52,547.24 "
-       id="polygon26226" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1387.53,546.41 1387.76,546.17 1385.88,547.45 "
-       id="polygon26228" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1391.15,543.09 1391.25,543.09 1384.89,547.53 "
-       id="polygon26230" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1384.89,547.53 1385,547.29 1391.15,543.09 "
-       id="polygon26232" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1389.25,544.69 1389.94,544.07 1385.21,547.18 "
-       id="polygon26234" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1385.21,547.18 1385.52,547.24 1389.25,544.69 "
-       id="polygon26236" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1387.76,546.17 1388.83,545.11 1385.52,547.24 "
-       id="polygon26238" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1385.52,547.24 1385.88,547.45 1387.76,546.17 "
-       id="polygon26240" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1387.53,546.41 1385.88,547.45 1386.27,547.79 "
-       id="polygon26242" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1395.23,537.88 1395.23,537.61 1386.26,548 "
-       id="polygon26244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.8,554.56 1371.04,554.06 1358.93,550.68 "
-       id="polygon26246" />
-    <line
-       x1="1580.23"
-       y1="486.28"
-       x2="1580.1899"
-       y2="489.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26248" />
-    <line
-       x1="1608.2"
-       y1="560.94"
-       x2="1610.49"
-       y2="559.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.62,556.2 1370.58,555.68 1358.46,552.3 "
-       id="polygon26252" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1397.08,539.8 1396.71,539.6 1389.25,544.69 "
-       id="polygon26254" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1388.83,545.11 1397.08,539.8 1389.25,544.69 "
-       id="polygon26256" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1398.43,542.65 1398.54,542.4 1387.34,550.04 "
-       id="polygon26258" />
-    <line
-       x1="1635.61"
-       y1="428.14001"
-       x2="1637.79"
-       y2="428.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26260" />
-    <line
-       x1="1656.52"
-       y1="438.10001"
-       x2="1657.85"
-       y2="439.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.64,555.12 1370.8,554.56 1358.69,551.18 "
-       id="polygon26264" />
-    <line
-       x1="1643.38"
-       y1="485.25"
-       x2="1641.54"
-       y2="485.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26266" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.58,555.68 1370.64,555.12 1358.53,551.74 "
-       id="polygon26268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.54,535.71 1393.09,535.5 1384.11,545.89 "
-       id="polygon26270" />
-    <line
-       x1="1655.0601"
-       y1="436.57001"
-       x2="1656.52"
-       y2="438.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26272" />
-    <line
-       x1="1637.79"
-       y1="428.37"
-       x2="1639.95"
-       y2="428.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26274" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1395.23,537.61 1395.1,537.25 1386.12,547.64 "
-       id="polygon26276" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1397.47,540.14 1397.08,539.8 1387.76,546.17 "
-       id="polygon26278" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1387.53,546.41 1397.47,540.14 1387.76,546.17 "
-       id="polygon26280" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1398.54,542.4 1398.53,542.03 1387.33,549.67 "
-       id="polygon26282" />
-    <line
-       x1="1653.48"
-       y1="435.14999"
-       x2="1655.0601"
-       y2="436.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26284" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1391.25,543.09 1391.15,543.09 1396.2,539.64 "
-       id="polygon26286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.01,536.03 1393.54,535.71 1384.56,546.11 "
-       id="polygon26288" />
-    <line
-       x1="1639.95"
-       y1="428.73001"
-       x2="1642.0699"
-       y2="429.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26290" />
-    <line
-       x1="1322.86"
-       y1="261.59"
-       x2="1324.77"
-       y2="259.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26292" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1395.1,537.25 1394.82,536.84 1385.85,547.23 "
-       id="polygon26294" />
-    <line
-       x1="1651.8"
-       y1="433.85001"
-       x2="1653.48"
-       y2="435.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26296" />
-    <line
-       x1="1642.0699"
-       y1="429.23999"
-       x2="1644.15"
-       y2="429.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26298" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1394.45,536.42 1394.01,536.03 1385.03,546.43 "
-       id="polygon26300" />
-    <line
-       x1="1650.01"
-       y1="432.66"
-       x2="1651.8"
-       y2="433.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26302" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1394.82,536.84 1394.45,536.42 1385.47,546.82 "
-       id="polygon26304" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1397.84,540.58 1397.47,540.14 1386.27,547.79 "
-       id="polygon26306" />
-    <line
-       x1="1644.15"
-       y1="429.89001"
-       x2="1646.1801"
-       y2="430.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26308" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1398.53,542.03 1398.39,541.57 1387.2,549.21 "
-       id="polygon26310" />
-    <line
-       x1="1648.13"
-       y1="431.60999"
-       x2="1650.01"
-       y2="432.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26312" />
-    <line
-       x1="1646.1801"
-       y1="430.67999"
-       x2="1648.13"
-       y2="431.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26314" />
-    <line
-       x1="1641.54"
-       y1="485.92999"
-       x2="1639.6899"
-       y2="486.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26316" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1398.16,541.07 1397.84,540.58 1386.64,548.22 "
-       id="polygon26318" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1398.39,541.57 1398.16,541.07 1386.96,548.71 "
-       id="polygon26320" />
-    <line
-       x1="1605.75"
-       y1="382.67999"
-       x2="1604.71"
-       y2="379.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26322" />
-    <polygon
-       style="opacity:1;fill:#007b00"
-       points="1371.83,546.71 1372.15,546.46 1359.71,543 "
-       id="polygon26324" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1371.47,549.92 1371.25,549.66 1358.8,546.19 "
-       id="polygon26326" />
-    <line
-       x1="1324.77"
-       y1="259.89001"
-       x2="1326.79"
-       y2="258.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.53,547.11 1371.83,546.71 1359.38,543.25 "
-       id="polygon26330" />
-    <polygon
-       style="opacity:1;fill:#007100"
-       points="1389.94,544.07 1389.25,544.69 1396.71,539.6 "
-       id="polygon26332" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1371.25,549.66 1371.11,549.25 1358.66,545.78 "
-       id="polygon26334" />
-    <line
-       x1="1639.6899"
-       y1="486.47"
-       x2="1637.85"
-       y2="486.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.29,547.61 1371.53,547.11 1359.08,543.65 "
-       id="polygon26338" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.73,545.8 1384.11,545.89 1393.09,535.5 "
-       id="polygon26340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.11,549.25 1371.07,548.73 1358.62,545.27 "
-       id="polygon26342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.13,548.17 1371.29,547.61 1358.84,544.15 "
-       id="polygon26344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.07,548.73 1371.13,548.17 1358.68,544.71 "
-       id="polygon26346" />
-    <polygon
-       style="opacity:1;fill:#007400"
-       points="1388.83,545.11 1387.76,546.17 1397.08,539.8 "
-       id="polygon26348" />
-    <line
-       x1="1326.79"
-       y1="258.35001"
-       x2="1328.92"
-       y2="256.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26350" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1387.33,549.67 1387.34,550.04 1398.54,542.4 "
-       id="polygon26352" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.11,545.89 1384.56,546.11 1393.54,535.71 "
-       id="polygon26354" />
-    <line
-       x1="1605.85"
-       y1="561.96002"
-       x2="1608.2"
-       y2="560.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26356" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1387.53,546.41 1397.47,540.14 1386.27,547.79 "
-       id="polygon26358" />
-    <polygon
-       style="opacity:1;fill:#008500"
-       points="1385.85,547.23 1386.12,547.64 1395.1,537.25 "
-       id="polygon26360" />
-    <line
-       x1="1637.85"
-       y1="486.87"
-       x2="1636.03"
-       y2="487.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.56,546.11 1385.03,546.43 1394.01,536.03 "
-       id="polygon26364" />
-    <polygon
-       style="opacity:1;fill:#008c00"
-       points="1387.2,549.21 1387.33,549.67 1398.53,542.03 "
-       id="polygon26366" />
-    <line
-       x1="1580.1899"
-       y1="489.85999"
-       x2="1579.8199"
-       y2="493.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26368" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1385.47,546.82 1385.85,547.23 1394.82,536.84 "
-       id="polygon26370" />
-    <polygon
-       style="opacity:1;fill:#007500"
-       points="1385.03,546.43 1385.47,546.82 1394.45,536.42 "
-       id="polygon26372" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1386.27,547.79 1386.64,548.22 1397.84,540.58 "
-       id="polygon26374" />
-    <line
-       x1="1606.58"
-       y1="385.67999"
-       x2="1605.75"
-       y2="382.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26376" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1386.96,548.71 1387.2,549.21 1398.39,541.57 "
-       id="polygon26378" />
-    <polygon
-       style="opacity:1;fill:#007c00"
-       points="1386.64,548.22 1386.96,548.71 1398.16,541.07 "
-       id="polygon26380" />
-    <line
-       x1="1328.92"
-       y1="256.97"
-       x2="1331.14"
-       y2="255.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26382" />
-    <line
-       x1="1636.03"
-       y1="487.13"
-       x2="1634.25"
-       y2="487.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26384" />
-    <polygon
-       style="opacity:1;fill:#009c00"
-       points="1372.63,546.83 1372.4,546.75 1372.47,546.38 "
-       id="polygon26386" />
-    <line
-       x1="1331.14"
-       y1="255.77"
-       x2="1333.4399"
-       y2="254.74001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26388" />
-    <line
-       x1="1520.17"
-       y1="412.26999"
-       x2="1521.64"
-       y2="415.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26390" />
-    <line
-       x1="1521.64"
-       y1="415.28"
-       x2="1523.34"
-       y2="418.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26392" />
-    <line
-       x1="1518.92"
-       y1="409.19"
-       x2="1520.17"
-       y2="412.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26394" />
-    <line
-       x1="1523.34"
-       y1="418.17999"
-       x2="1525.24"
-       y2="420.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26396" />
-    <line
-       x1="1607.1801"
-       y1="388.76001"
-       x2="1606.58"
-       y2="385.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26398" />
-    <line
-       x1="1634.25"
-       y1="487.25"
-       x2="1632.5"
-       y2="487.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26400" />
-    <line
-       x1="1517.9"
-       y1="406.04001"
-       x2="1518.92"
-       y2="409.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26402" />
-    <line
-       x1="1525.24"
-       y1="420.95999"
-       x2="1527.34"
-       y2="423.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26404" />
-    <line
-       x1="1517.12"
-       y1="402.85001"
-       x2="1517.9"
-       y2="406.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26406" />
-    <line
-       x1="1527.34"
-       y1="423.60999"
-       x2="1529.63"
-       y2="426.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26408" />
-    <line
-       x1="1603.46"
-       y1="562.71002"
-       x2="1605.85"
-       y2="561.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26410" />
-    <line
-       x1="1333.4399"
-       y1="254.74001"
-       x2="1335.8"
-       y2="253.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26412" />
-    <line
-       x1="1529.63"
-       y1="426.10999"
-       x2="1532.1"
-       y2="428.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26414" />
-    <line
-       x1="1516.5699"
-       y1="399.64001"
-       x2="1517.12"
-       y2="402.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26416" />
-    <line
-       x1="1579.8199"
-       y1="493.45999"
-       x2="1579.13"
-       y2="497.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26418" />
-    <line
-       x1="1632.5"
-       y1="487.23001"
-       x2="1630.8199"
-       y2="487.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26420" />
-    <line
-       x1="1532.1"
-       y1="428.45001"
-       x2="1534.73"
-       y2="430.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26422" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1378.87,544.22 1378.62,544.25 1380.29,529.53 "
-       id="polygon26424" />
-    <line
-       x1="1516.26"
-       y1="396.41"
-       x2="1516.5699"
-       y2="399.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26426" />
-    <line
-       x1="1607.55"
-       y1="391.91"
-       x2="1607.1801"
-       y2="388.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26428" />
-    <line
-       x1="1335.8"
-       y1="253.89999"
-       x2="1338.21"
-       y2="253.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26430" />
-    <line
-       x1="1370.61"
-       y1="551.40997"
-       x2="1370.7"
-       y2="551.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26432" />
-    <line
-       x1="1534.73"
-       y1="430.60001"
-       x2="1537.52"
-       y2="432.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26434" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1382.23,514.77 1381.97,514.8 1383.65,500.07 "
-       id="polygon26436" />
-    <line
-       x1="1370.8"
-       y1="550.66998"
-       x2="1370.9301"
-       y2="550.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26438" />
-    <line
-       x1="1370.5"
-       y1="552.09998"
-       x2="1370.55"
-       y2="551.76001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26440" />
-    <line
-       x1="1516.1899"
-       y1="393.20999"
-       x2="1516.26"
-       y2="396.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26442" />
-    <line
-       x1="1630.8199"
-       y1="487.07001"
-       x2="1629.2"
-       y2="486.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26444" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1383.93,530.04 1383.82,529.96 1385.5,515.23 "
-       id="polygon26446" />
-    <line
-       x1="1537.52"
-       y1="432.54999"
-       x2="1540.4301"
-       y2="434.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26448" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1383.82,529.96 1383.93,530.04 1382.25,544.77 "
-       id="polygon26450" />
-    <line
-       x1="1370.42"
-       y1="553.13"
-       x2="1370.4301"
-       y2="552.78998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26452" />
-    <line
-       x1="1371.41"
-       y1="549.20001"
-       x2="1371.61"
-       y2="548.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26454" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1387.26,470.58 1387.01,470.61 1388.69,455.87 "
-       id="polygon26456" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1382,514.94 1381.89,514.86 1380.21,529.59 "
-       id="polygon26458" />
-    <line
-       x1="1371.8199"
-       y1="548.53998"
-       x2="1372.04"
-       y2="548.22998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26460" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1380.21,529.59 1380.32,529.67 1382,514.94 "
-       id="polygon26462" />
-    <line
-       x1="1338.21"
-       y1="253.25"
-       x2="1340.66"
-       y2="252.78999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26464" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1387.29,500.58 1387.18,500.5 1388.86,485.77 "
-       id="polygon26466" />
-    <line
-       x1="1516.36"
-       y1="390.04001"
-       x2="1516.1899"
-       y2="393.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26468" />
-    <line
-       x1="1540.4301"
-       y1="434.29999"
-       x2="1543.47"
-       y2="435.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.59,529.77 1380.32,529.67 1378.64,544.4 "
-       id="polygon26472" />
-    <line
-       x1="1607.6801"
-       y1="395.10001"
-       x2="1607.55"
-       y2="391.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26474" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1388.96,485.85 1388.86,485.77 1390.54,471.04 "
-       id="polygon26476" />
-    <line
-       x1="1373.92"
-       y1="560.41998"
-       x2="1373.9399"
-       y2="560.41998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26478" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1388.86,485.77 1388.96,485.85 1387.29,500.58 "
-       id="polygon26480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1378.64,544.4 1378.91,544.5 1380.59,529.77 "
-       id="polygon26482" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1390.62,441.11 1390.37,441.14 1392.05,426.4 "
-       id="polygon26484" />
-    <line
-       x1="1601.04"
-       y1="563.17999"
-       x2="1603.46"
-       y2="562.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26486" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1381.92,544.87 1382.17,544.84 1383.85,530.11 "
-       id="polygon26488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.27,515.04 1382,514.94 1380.32,529.67 "
-       id="polygon26490" />
-    <line
-       x1="1372.8"
-       y1="559.38"
-       x2="1373.01"
-       y2="559.60999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26492" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1383.57,500.13 1383.68,500.21 1385.36,485.47 "
-       id="polygon26494" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.32,529.67 1380.59,529.77 1382.27,515.04 "
-       id="polygon26496" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1392.3,426.38 1392.05,426.4 1393.73,411.66 "
-       id="polygon26498" />
-    <line
-       x1="1372.83"
-       y1="547.35999"
-       x2="1373.13"
-       y2="547.09003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26500" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1387.04,470.74 1386.93,470.66 1385.25,485.39 "
-       id="polygon26502" />
-    <line
-       x1="1579.13"
-       y1="497.06"
-       x2="1578.12"
-       y2="500.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26504" />
-    <line
-       x1="1629.2"
-       y1="486.76999"
-       x2="1627.66"
-       y2="486.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26506" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1383.6,530.14 1383.85,530.11 1385.53,515.37 "
-       id="polygon26508" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1383.85,530.11 1383.6,530.14 1381.92,544.87 "
-       id="polygon26510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.95,500.3 1383.68,500.21 1382,514.94 "
-       id="polygon26512" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1385.25,485.39 1385.36,485.47 1387.04,470.74 "
-       id="polygon26514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1379.33,544.6 1379.86,544.7 1381.54,529.96 "
-       id="polygon26516" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1379.58,544.31 1379.63,544.64 1379.9,544.82 "
-       id="polygon26518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1381.01,529.87 1380.59,529.77 1378.91,544.5 "
-       id="polygon26520" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1392.32,456.38 1392.22,456.3 1393.9,441.57 "
-       id="polygon26522" />
-    <line
-       x1="1543.47"
-       y1="435.84"
-       x2="1546.61"
-       y2="437.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1378.91,544.5 1379.33,544.6 1381.01,529.87 "
-       id="polygon26526" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1392.22,456.3 1392.32,456.38 1390.64,471.11 "
-       id="polygon26528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382,514.94 1382.27,515.04 1383.95,500.3 "
-       id="polygon26530" />
-    <line
-       x1="1374.4399"
-       y1="546.08002"
-       x2="1374.41"
-       y2="546.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26532" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1381.52,544.87 1381.92,544.87 1383.6,530.14 "
-       id="polygon26534" />
-    <line
-       x1="1374.55"
-       y1="560.88"
-       x2="1374.77"
-       y2="561.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26536" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1385.28,515.4 1385.53,515.37 1387.21,500.64 "
-       id="polygon26538" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1385.53,515.37 1385.28,515.4 1383.6,530.14 "
-       id="polygon26540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.63,485.56 1385.36,485.47 1383.68,500.21 "
-       id="polygon26542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.69,515.13 1382.27,515.04 1380.59,529.77 "
-       id="polygon26544" />
-    <line
-       x1="1516.76"
-       y1="386.92001"
-       x2="1516.36"
-       y2="390.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.59,529.77 1381.01,529.87 1382.69,515.13 "
-       id="polygon26548" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1393.9,441.57 1394,441.64 1392.32,456.38 "
-       id="polygon26550" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.68,500.21 1383.95,500.3 1385.63,485.56 "
-       id="polygon26552" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1395.66,396.91 1395.41,396.93 1397.09,382.19 "
-       id="polygon26554" />
-    <line
-       x1="1373.77"
-       y1="546.59003"
-       x2="1374.11"
-       y2="546.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26556" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1390.39,441.26 1390.29,441.19 1388.61,455.93 "
-       id="polygon26558" />
-    <line
-       x1="1386.25"
-       y1="547.71002"
-       x2="1386.4301"
-       y2="547.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26560" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1383.6,530.14 1383.2,530.14 1381.52,544.87 "
-       id="polygon26562" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1381.54,529.96 1381.01,529.87 1379.33,544.6 "
-       id="polygon26564" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1383.2,530.14 1383.6,530.14 1385.28,515.4 "
-       id="polygon26566" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1386.96,500.67 1387.21,500.64 1388.89,485.9 "
-       id="polygon26568" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1387.21,500.64 1386.96,500.67 1385.28,515.4 "
-       id="polygon26570" />
-    <line
-       x1="1340.66"
-       y1="252.78999"
-       x2="1343.12"
-       y2="252.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.31,470.83 1387.04,470.74 1385.36,485.47 "
-       id="polygon26574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.37,500.4 1383.95,500.3 1382.27,515.04 "
-       id="polygon26576" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1381,544.84 1381.52,544.87 1383.2,530.14 "
-       id="polygon26578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.27,515.04 1382.69,515.13 1384.37,500.4 "
-       id="polygon26580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.36,485.47 1385.63,485.56 1387.31,470.83 "
-       id="polygon26582" />
-    <polygon
-       style="opacity:1;fill:#00f400"
-       points="1371.69,550.23 1371.47,550.58 1371.57,550.18 "
-       id="polygon26584" />
-    <line
-       x1="1385.3199"
-       y1="546.78998"
-       x2="1385.13"
-       y2="546.65002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26586" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1385.28,515.4 1384.88,515.4 1383.2,530.14 "
-       id="polygon26588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1379.86,544.7 1380.43,544.78 1382.11,530.05 "
-       id="polygon26590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.2,530.14 1382.68,530.11 1381,544.84 "
-       id="polygon26592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.21,515.23 1382.69,515.13 1381.01,529.87 "
-       id="polygon26594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.43,544.78 1381,544.84 1382.68,530.11 "
-       id="polygon26596" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1384.88,515.4 1385.28,515.4 1386.96,500.67 "
-       id="polygon26598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.11,530.05 1381.54,529.96 1379.86,544.7 "
-       id="polygon26600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1381.01,529.87 1381.54,529.96 1383.21,515.23 "
-       id="polygon26602" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1388.64,485.93 1388.89,485.9 1390.57,471.17 "
-       id="polygon26604" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1388.89,485.9 1388.64,485.93 1386.96,500.67 "
-       id="polygon26606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.99,456.09 1388.71,456 1387.04,470.74 "
-       id="polygon26608" />
-    <line
-       x1="1546.61"
-       y1="437.14001"
-       x2="1549.84"
-       y2="438.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26610" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1390.29,441.19 1390.39,441.26 1392.07,426.52 "
-       id="polygon26612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.05,485.66 1385.63,485.56 1383.95,500.3 "
-       id="polygon26614" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.68,530.11 1383.2,530.14 1384.88,515.4 "
-       id="polygon26616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.68,530.11 1382.11,530.05 1380.43,544.78 "
-       id="polygon26618" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1397.36,412.16 1397.26,412.09 1398.94,397.35 "
-       id="polygon26620" />
-    <line
-       x1="1385.97"
-       y1="547.44"
-       x2="1386.02"
-       y2="547.53998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26622" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.95,500.3 1384.37,500.4 1386.05,485.66 "
-       id="polygon26624" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1397.26,412.09 1397.36,412.16 1395.68,426.9 "
-       id="polygon26626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.04,470.74 1387.31,470.83 1388.99,456.09 "
-       id="polygon26628" />
-    <line
-       x1="1607.58"
-       y1="398.32001"
-       x2="1607.6801"
-       y2="395.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26630" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1393.75,411.78 1393.65,411.71 1391.97,426.45 "
-       id="polygon26632" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1386.96,500.67 1386.55,500.66 1384.88,515.4 "
-       id="polygon26634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1381.54,529.96 1382.11,530.05 1383.79,515.31 "
-       id="polygon26636" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.88,515.4 1384.36,515.37 1382.68,530.11 "
-       id="polygon26638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.89,500.49 1384.37,500.4 1382.69,515.13 "
-       id="polygon26640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.11,530.05 1382.68,530.11 1384.36,515.37 "
-       id="polygon26642" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1386.55,500.66 1386.96,500.67 1388.64,485.93 "
-       id="polygon26644" />
-    <line
-       x1="1388.12"
-       y1="555.57001"
-       x2="1388.05"
-       y2="555.84003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.79,515.31 1383.21,515.23 1381.54,529.96 "
-       id="polygon26648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1382.69,515.13 1383.21,515.23 1384.89,500.49 "
-       id="polygon26650" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1390.32,471.2 1390.57,471.17 1392.25,456.43 "
-       id="polygon26652" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1390.57,471.17 1390.32,471.2 1388.64,485.93 "
-       id="polygon26654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1390.67,441.35 1390.39,441.26 1388.71,456 "
-       id="polygon26656" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.73,470.93 1387.31,470.83 1385.63,485.56 "
-       id="polygon26658" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.36,515.37 1384.88,515.4 1386.55,500.66 "
-       id="polygon26660" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.36,515.37 1383.79,515.31 1382.11,530.05 "
-       id="polygon26662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.63,485.56 1386.05,485.66 1387.73,470.93 "
-       id="polygon26664" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.71,456 1388.99,456.09 1390.67,441.35 "
-       id="polygon26666" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1400.7,352.69 1400.45,352.7 1402.13,337.96 "
-       id="polygon26668" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1395.43,397.04 1395.33,396.97 1393.65,411.71 "
-       id="polygon26670" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1388.64,485.93 1388.23,485.93 1386.55,500.66 "
-       id="polygon26672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.21,515.23 1383.79,515.31 1385.47,500.57 "
-       id="polygon26674" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.55,500.66 1386.04,500.63 1384.36,515.37 "
-       id="polygon26676" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.57,485.76 1386.05,485.66 1384.37,500.4 "
-       id="polygon26678" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.79,515.31 1384.36,515.37 1386.04,500.63 "
-       id="polygon26680" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1388.23,485.93 1388.64,485.93 1390.32,471.2 "
-       id="polygon26682" />
-    <line
-       x1="1388.27"
-       y1="554.75"
-       x2="1388.23"
-       y2="555.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.47,500.57 1384.89,500.49 1383.21,515.23 "
-       id="polygon26686" />
-    <line
-       x1="1627.66"
-       y1="486.35001"
-       x2="1626.21"
-       y2="485.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.37,500.4 1384.89,500.49 1386.57,485.76 "
-       id="polygon26690" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1392,456.45 1392.25,456.43 1393.93,441.69 "
-       id="polygon26692" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1392.25,456.43 1392,456.45 1390.32,471.2 "
-       id="polygon26694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.35,426.61 1392.07,426.52 1390.39,441.26 "
-       id="polygon26696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.41,456.18 1388.99,456.09 1387.31,470.83 "
-       id="polygon26698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.04,500.63 1386.55,500.66 1388.23,485.93 "
-       id="polygon26700" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.04,500.63 1385.47,500.57 1383.79,515.31 "
-       id="polygon26702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.31,470.83 1387.73,470.93 1389.41,456.18 "
-       id="polygon26704" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1400.62,382.61 1400.73,382.68 1399.05,397.42 "
-       id="polygon26706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1390.39,441.26 1390.67,441.35 1392.35,426.61 "
-       id="polygon26708" />
-    <line
-       x1="1517.39"
-       y1="383.88"
-       x2="1516.76"
-       y2="386.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26710" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1397.11,382.3 1397.01,382.23 1395.33,396.97 "
-       id="polygon26712" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1390.32,471.2 1389.91,471.19 1388.23,485.93 "
-       id="polygon26714" />
-    <polygon
-       style="opacity:1;fill:#00bb00"
-       points="1373.35,559.42 1373.39,559.33 1373.59,559.58 "
-       id="polygon26716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.89,500.49 1385.47,500.57 1387.15,485.84 "
-       id="polygon26718" />
-    <line
-       x1="1387.46"
-       y1="549.71997"
-       x2="1387.5699"
-       y2="550"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26720" />
-    <line
-       x1="1549.84"
-       y1="438.20999"
-       x2="1553.14"
-       y2="439.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26722" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.23,485.93 1387.72,485.89 1386.04,500.63 "
-       id="polygon26724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.25,471.02 1387.73,470.93 1386.05,485.66 "
-       id="polygon26726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.47,500.57 1386.04,500.63 1387.72,485.89 "
-       id="polygon26728" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1389.91,471.19 1390.32,471.2 1392,456.45 "
-       id="polygon26730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.15,485.84 1386.57,485.76 1384.89,500.49 "
-       id="polygon26732" />
-    <line
-       x1="1375.9"
-       y1="561.54999"
-       x2="1376.14"
-       y2="561.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.05,485.66 1386.57,485.76 1388.25,471.02 "
-       id="polygon26736" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1393.68,441.71 1393.93,441.69 1395.61,426.95 "
-       id="polygon26738" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1393.93,441.69 1393.68,441.71 1392,456.45 "
-       id="polygon26740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.03,411.87 1393.75,411.78 1392.07,426.52 "
-       id="polygon26742" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1405.49,308.46 1405.74,308.45 1404.06,323.2 "
-       id="polygon26744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.09,441.45 1390.67,441.35 1388.99,456.09 "
-       id="polygon26746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.72,485.89 1388.23,485.93 1389.91,471.19 "
-       id="polygon26748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.72,485.89 1387.15,485.84 1385.47,500.57 "
-       id="polygon26750" />
-    <line
-       x1="1381.53"
-       y1="562.12"
-       x2="1381.8199"
-       y2="562.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26752" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1402.41,367.93 1402.3,367.87 1403.98,353.13 "
-       id="polygon26754" />
-    <line
-       x1="1377.62"
-       y1="562.13"
-       x2="1377.62"
-       y2="562.09998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.99,456.09 1389.41,456.18 1391.09,441.45 "
-       id="polygon26758" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1402.3,367.87 1402.41,367.93 1400.73,382.68 "
-       id="polygon26760" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.07,426.52 1392.35,426.61 1394.03,411.87 "
-       id="polygon26762" />
-    <line
-       x1="1383.22"
-       y1="561.53998"
-       x2="1382.95"
-       y2="561.65997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26764" />
-    <line
-       x1="1387.74"
-       y1="556.73999"
-       x2="1387.65"
-       y2="556.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26766" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1398.79,367.55 1398.69,367.49 1397.01,382.23 "
-       id="polygon26768" />
-    <polygon
-       style="opacity:1;fill:#00ea00"
-       points="1375.5,546.4 1375.53,546.57 1375.3,546.57 "
-       id="polygon26770" />
-    <line
-       x1="1375.48"
-       y1="545.95001"
-       x2="1375.27"
-       y2="545.96997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26772" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1392,456.45 1391.59,456.45 1389.91,471.19 "
-       id="polygon26774" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1386.57,485.76 1387.15,485.84 1388.83,471.1 "
-       id="polygon26776" />
-    <line
-       x1="1386.25"
-       y1="559.25"
-       x2="1386.25"
-       y2="559.23999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.91,471.19 1389.4,471.16 1387.72,485.89 "
-       id="polygon26780" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.93,456.28 1389.41,456.18 1387.73,470.93 "
-       id="polygon26782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.15,485.84 1387.72,485.89 1389.4,471.16 "
-       id="polygon26784" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1391.59,456.45 1392,456.45 1393.68,441.71 "
-       id="polygon26786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.83,471.1 1388.25,471.02 1386.57,485.76 "
-       id="polygon26788" />
-    <line
-       x1="1373.27"
-       y1="547.57001"
-       x2="1373.0699"
-       y2="547.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.73,470.93 1388.25,471.02 1389.93,456.28 "
-       id="polygon26792" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1395.36,426.97 1395.61,426.95 1397.29,412.21 "
-       id="polygon26794" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1395.61,426.95 1395.36,426.97 1393.68,441.71 "
-       id="polygon26796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.71,397.13 1395.43,397.04 1393.75,411.78 "
-       id="polygon26798" />
-    <line
-       x1="1343.12"
-       y1="252.53"
-       x2="1345.58"
-       y2="252.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26800" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1397.01,382.23 1397.11,382.3 1398.79,367.55 "
-       id="polygon26802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.77,426.7 1392.35,426.61 1390.67,441.35 "
-       id="polygon26804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.4,471.16 1389.91,471.19 1391.59,456.45 "
-       id="polygon26806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.4,471.16 1388.83,471.1 1387.15,485.84 "
-       id="polygon26808" />
-    <line
-       x1="1370.98"
-       y1="554.40002"
-       x2="1370.95"
-       y2="554.70001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1390.67,441.35 1391.09,441.45 1392.77,426.7 "
-       id="polygon26812" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.75,411.78 1394.03,411.87 1395.71,397.13 "
-       id="polygon26814" />
-    <line
-       x1="1380.65"
-       y1="562.25"
-       x2="1380.95"
-       y2="562.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26816" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1400.47,352.81 1400.37,352.74 1398.69,367.49 "
-       id="polygon26818" />
-    <polygon
-       style="opacity:1;fill:#00ed00"
-       points="1371.4,554.57 1371.46,554.25 1371.54,554.53 "
-       id="polygon26820" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1393.68,441.71 1393.27,441.71 1391.59,456.45 "
-       id="polygon26822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.25,471.02 1388.83,471.1 1390.51,456.36 "
-       id="polygon26824" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1379.58,544.31 1377.56,531.09 1379.9,544.82 "
-       id="polygon26826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.59,456.45 1391.08,456.42 1389.4,471.16 "
-       id="polygon26828" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.61,441.54 1391.09,441.45 1389.41,456.18 "
-       id="polygon26830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.83,471.1 1389.4,471.16 1391.08,456.42 "
-       id="polygon26832" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1393.27,441.71 1393.68,441.71 1395.36,426.97 "
-       id="polygon26834" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1390.51,456.36 1389.93,456.28 1388.25,471.02 "
-       id="polygon26836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.41,456.18 1389.93,456.28 1391.61,441.54 "
-       id="polygon26838" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1397.04,412.23 1397.29,412.21 1398.97,397.47 "
-       id="polygon26840" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1397.29,412.21 1397.04,412.23 1395.36,426.97 "
-       id="polygon26842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.39,382.38 1397.11,382.3 1395.43,397.04 "
-       id="polygon26844" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.45,411.96 1394.03,411.87 1392.35,426.61 "
-       id="polygon26846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.08,456.42 1391.59,456.45 1393.27,441.71 "
-       id="polygon26848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.08,456.42 1390.51,456.36 1388.83,471.1 "
-       id="polygon26850" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1412.46,249.46 1412.86,249.48 1411.18,264.23 "
-       id="polygon26852" />
-    <line
-       x1="1607.23"
-       y1="401.54001"
-       x2="1607.58"
-       y2="398.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26854" />
-    <polygon
-       style="opacity:1;fill:#00fb00"
-       points="1373.48,548.61 1373.43,548.42 1373.65,548.26 "
-       id="polygon26856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.35,426.61 1392.77,426.7 1394.45,411.96 "
-       id="polygon26858" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1405.66,338.38 1405.77,338.44 1404.09,353.19 "
-       id="polygon26860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.43,397.04 1395.71,397.13 1397.39,382.38 "
-       id="polygon26862" />
-    <line
-       x1="1553.14"
-       y1="439.04999"
-       x2="1556.48"
-       y2="439.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26864" />
-    <line
-       x1="1379.76"
-       y1="562.27002"
-       x2="1380.0601"
-       y2="562.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26866" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1395.36,426.97 1394.95,426.97 1393.27,441.71 "
-       id="polygon26868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.93,456.28 1390.51,456.36 1392.19,441.61 "
-       id="polygon26870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.27,441.71 1392.76,441.68 1391.08,456.42 "
-       id="polygon26872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.29,426.79 1392.77,426.7 1391.09,441.45 "
-       id="polygon26874" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1390.51,456.36 1391.08,456.42 1392.76,441.68 "
-       id="polygon26876" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1394.95,426.97 1395.36,426.97 1397.04,412.23 "
-       id="polygon26878" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.19,441.61 1391.61,441.54 1389.93,456.28 "
-       id="polygon26880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.09,441.45 1391.61,441.54 1393.29,426.79 "
-       id="polygon26882" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1398.72,397.49 1398.97,397.47 1400.65,382.72 "
-       id="polygon26884" />
-    <line
-       x1="1598.62"
-       y1="563.37"
-       x2="1601.04"
-       y2="563.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26886" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1398.97,397.47 1398.72,397.49 1397.04,412.23 "
-       id="polygon26888" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.07,367.63 1398.79,367.55 1397.11,382.3 "
-       id="polygon26890" />
-    <line
-       x1="1387.3199"
-       y1="557.58002"
-       x2="1387.2"
-       y2="557.78003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26892" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1410.53,264.22 1410.78,264.21 1409.1,278.96 "
-       id="polygon26894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.13,397.21 1395.71,397.13 1394.03,411.87 "
-       id="polygon26896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.76,441.68 1393.27,441.71 1394.95,426.97 "
-       id="polygon26898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.76,441.68 1392.19,441.61 1390.51,456.36 "
-       id="polygon26900" />
-    <line
-       x1="1384.46"
-       y1="560.78003"
-       x2="1384.23"
-       y2="560.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.03,411.87 1394.45,411.96 1396.13,397.21 "
-       id="polygon26904" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1407.34,323.64 1407.45,323.7 1405.77,338.44 "
-       id="polygon26906" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.11,382.3 1397.39,382.38 1399.07,367.63 "
-       id="polygon26908" />
-    <polygon
-       style="opacity:1;fill:#009f00"
-       points="1409.1,278.96 1408.85,278.97 1410.53,264.22 "
-       id="polygon26910" />
-    <line
-       x1="1578.12"
-       y1="500.63"
-       x2="1576.8"
-       y2="504.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26912" />
-    <line
-       x1="1371.14"
-       y1="553.47998"
-       x2="1371.0699"
-       y2="553.78998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26914" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1403.84,323.31 1403.73,323.25 1402.05,338 "
-       id="polygon26916" />
-    <line
-       x1="1372.4399"
-       y1="558.19"
-       x2="1372.24"
-       y2="558"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26918" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1397.04,412.23 1396.64,412.22 1394.95,426.97 "
-       id="polygon26920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.61,441.54 1392.19,441.61 1393.87,426.87 "
-       id="polygon26922" />
-    <line
-       x1="1372.5601"
-       y1="548.89001"
-       x2="1372.42"
-       y2="549.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.95,426.97 1394.44,426.93 1392.76,441.68 "
-       id="polygon26926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.98,412.05 1394.45,411.96 1392.77,426.7 "
-       id="polygon26928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.19,441.61 1392.76,441.68 1394.44,426.93 "
-       id="polygon26930" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1396.64,412.22 1397.04,412.23 1398.72,397.49 "
-       id="polygon26932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.87,426.87 1393.29,426.79 1391.61,441.54 "
-       id="polygon26934" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.77,426.7 1393.29,426.79 1394.98,412.05 "
-       id="polygon26936" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1400.4,382.74 1400.65,382.72 1402.33,367.98 "
-       id="polygon26938" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1400.65,382.72 1400.4,382.74 1398.72,397.49 "
-       id="polygon26940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.75,352.89 1400.47,352.81 1398.79,367.55 "
-       id="polygon26942" />
-    <line
-       x1="1378.5699"
-       y1="562.14001"
-       x2="1378.87"
-       y2="562.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26944" />
-    <line
-       x1="1626.21"
-       y1="485.79001"
-       x2="1624.86"
-       y2="485.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26946" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1402.05,338 1402.16,338.06 1403.84,323.31 "
-       id="polygon26948" />
-    <line
-       x1="1467.89"
-       y1="463.17001"
-       x2="1469.04"
-       y2="459.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26950" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.81,382.47 1397.39,382.38 1395.71,397.13 "
-       id="polygon26952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.44,426.93 1394.95,426.97 1396.64,412.22 "
-       id="polygon26954" />
-    <line
-       x1="1518.25"
-       y1="380.92999"
-       x2="1517.39"
-       y2="383.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26956" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.44,426.93 1393.87,426.87 1392.19,441.61 "
-       id="polygon26958" />
-    <polygon
-       style="opacity:1;fill:#00e900"
-       points="1376.65,546.48 1376.45,546.64 1376.42,546.45 "
-       id="polygon26960" />
-    <line
-       x1="1467.05"
-       y1="467.39001"
-       x2="1467.89"
-       y2="463.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.71,397.13 1396.13,397.21 1397.81,382.47 "
-       id="polygon26964" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.79,367.55 1399.07,367.63 1400.75,352.89 "
-       id="polygon26966" />
-    <line
-       x1="1469.04"
-       y1="459.01999"
-       x2="1470.48"
-       y2="454.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26968" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1405.52,308.56 1405.41,308.5 1403.73,323.25 "
-       id="polygon26970" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1398.72,397.49 1398.32,397.48 1396.64,412.22 "
-       id="polygon26972" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.29,426.79 1393.87,426.87 1395.55,412.13 "
-       id="polygon26974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.64,412.22 1396.13,412.19 1394.44,426.93 "
-       id="polygon26976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.66,397.3 1396.13,397.21 1394.45,411.96 "
-       id="polygon26978" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1393.87,426.87 1394.44,426.93 1396.13,412.19 "
-       id="polygon26980" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1398.32,397.48 1398.72,397.49 1400.4,382.74 "
-       id="polygon26982" />
-    <line
-       x1="1387.64"
-       y1="550.84998"
-       x2="1387.64"
-       y2="550.84998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.55,412.13 1394.98,412.05 1393.29,426.79 "
-       id="polygon26986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.45,411.96 1394.98,412.05 1396.66,397.3 "
-       id="polygon26988" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1402.08,368 1402.33,367.98 1404.01,353.23 "
-       id="polygon26990" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1402.33,367.98 1402.08,368 1400.4,382.74 "
-       id="polygon26992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.43,338.14 1402.16,338.06 1400.47,352.81 "
-       id="polygon26994" />
-    <line
-       x1="1372.29"
-       y1="549.60999"
-       x2="1372.1801"
-       y2="549.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26996" />
-    <line
-       x1="1466.52"
-       y1="471.67999"
-       x2="1467.05"
-       y2="467.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26998" />
-    <line
-       x1="1376.58"
-       y1="545.95001"
-       x2="1376.58"
-       y2="545.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.49,367.72 1399.07,367.63 1397.39,382.38 "
-       id="polygon27002" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.13,412.19 1396.64,412.22 1398.32,397.48 "
-       id="polygon27004" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.13,412.19 1395.55,412.13 1393.87,426.87 "
-       id="polygon27006" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1410.81,294.2 1410.7,294.14 1412.39,279.39 "
-       id="polygon27008" />
-    <line
-       x1="1556.48"
-       y1="439.63"
-       x2="1559.86"
-       y2="439.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27010" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.39,382.38 1397.81,382.47 1399.49,367.72 "
-       id="polygon27012" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1410.7,294.14 1410.81,294.2 1409.13,308.95 "
-       id="polygon27014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.47,352.81 1400.75,352.89 1402.43,338.14 "
-       id="polygon27016" />
-    <line
-       x1="1470.48"
-       y1="454.98001"
-       x2="1472.2"
-       y2="451.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27018" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1407.2,293.81 1407.09,293.75 1405.41,308.5 "
-       id="polygon27020" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1400.4,382.74 1400,382.73 1398.32,397.48 "
-       id="polygon27022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1394.98,412.05 1395.55,412.13 1397.23,397.38 "
-       id="polygon27024" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.32,397.48 1397.8,397.44 1396.13,412.19 "
-       id="polygon27026" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.34,382.56 1397.81,382.47 1396.13,397.21 "
-       id="polygon27028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.55,412.13 1396.13,412.19 1397.8,397.44 "
-       id="polygon27030" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1400,382.73 1400.4,382.74 1402.08,368 "
-       id="polygon27032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.23,397.38 1396.66,397.3 1394.98,412.05 "
-       id="polygon27034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.13,397.21 1396.66,397.3 1398.34,382.56 "
-       id="polygon27036" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1403.76,353.25 1404.01,353.23 1405.69,338.48 "
-       id="polygon27038" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1404.01,353.23 1403.76,353.25 1402.08,368 "
-       id="polygon27040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.11,323.39 1403.84,323.31 1402.16,338.06 "
-       id="polygon27042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.17,352.97 1400.75,352.89 1399.07,367.63 "
-       id="polygon27044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.8,397.44 1398.32,397.48 1400,382.73 "
-       id="polygon27046" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.8,397.44 1397.23,397.38 1395.55,412.13 "
-       id="polygon27048" />
-    <line
-       x1="1381.3199"
-       y1="545.54999"
-       x2="1381.05"
-       y2="545.54999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27050" />
-    <line
-       x1="1345.58"
-       y1="252.46001"
-       x2="1348.03"
-       y2="252.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27052" />
-    <line
-       x1="1466.3"
-       y1="476"
-       x2="1466.52"
-       y2="471.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27054" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.07,367.63 1399.49,367.72 1401.17,352.97 "
-       id="polygon27056" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.16,338.06 1402.43,338.14 1404.11,323.39 "
-       id="polygon27058" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1408.88,279.06 1408.77,279 1407.09,293.75 "
-       id="polygon27060" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1402.08,368 1401.68,367.98 1400,382.73 "
-       id="polygon27062" />
-    <line
-       x1="1381.48"
-       y1="561.92999"
-       x2="1381.36"
-       y2="561.90002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27064" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.66,397.3 1397.23,397.38 1398.91,382.63 "
-       id="polygon27066" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400,382.73 1399.48,382.7 1397.8,397.44 "
-       id="polygon27068" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.02,367.81 1399.49,367.72 1397.81,382.47 "
-       id="polygon27070" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.23,397.38 1397.8,397.44 1399.48,382.7 "
-       id="polygon27072" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1401.68,367.98 1402.08,368 1403.76,353.25 "
-       id="polygon27074" />
-    <line
-       x1="1606.64"
-       y1="404.75"
-       x2="1607.23"
-       y2="401.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.91,382.63 1398.34,382.56 1396.66,397.3 "
-       id="polygon27078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1397.81,382.47 1398.34,382.56 1400.02,367.81 "
-       id="polygon27080" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1405.44,338.5 1405.69,338.48 1407.37,323.73 "
-       id="polygon27082" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1405.69,338.48 1405.44,338.5 1403.76,353.25 "
-       id="polygon27084" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.79,308.64 1405.52,308.56 1403.84,323.31 "
-       id="polygon27086" />
-    <line
-       x1="1387.76"
-       y1="555.73999"
-       x2="1387.84"
-       y2="555.76001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27088" />
-    <polygon
-       style="opacity:1;fill:#00f600"
-       points="1375.72,547.52 1375.54,547.7 1375.48,547.5 "
-       id="polygon27090" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1407.09,293.75 1407.2,293.81 1408.88,279.06 "
-       id="polygon27092" />
-    <line
-       x1="1472.2"
-       y1="451.07001"
-       x2="1474.2"
-       y2="447.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.86,338.22 1402.43,338.14 1400.75,352.89 "
-       id="polygon27096" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.48,382.7 1400,382.73 1401.68,367.98 "
-       id="polygon27098" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1374.22,531.95 1374.3,531.7 1376.38,545.24 "
-       id="polygon27100" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1376.39,545.71 1376.66,545.89 1374.59,532.35 "
-       id="polygon27102" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.48,382.7 1398.91,382.63 1397.23,397.38 "
-       id="polygon27104" />
-    <line
-       x1="1371.88"
-       y1="551.59998"
-       x2="1371.71"
-       y2="551.91998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.75,352.89 1401.17,352.97 1402.86,338.22 "
-       id="polygon27108" />
-    <polygon
-       style="opacity:1;fill:#00e400"
-       points="1414.07,264.64 1414.17,264.69 1412.49,279.45 "
-       id="polygon27110" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.84,323.31 1404.11,323.39 1405.79,308.64 "
-       id="polygon27112" />
-    <line
-       x1="1378.53"
-       y1="561.90997"
-       x2="1378.36"
-       y2="561.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27114" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1403.76,353.25 1403.36,353.23 1401.68,367.98 "
-       id="polygon27116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.34,382.56 1398.91,382.63 1400.59,367.89 "
-       id="polygon27118" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1372.55,552.46 1372.42,552.65 1372.38,552.38 "
-       id="polygon27120" />
-    <line
-       x1="1386.13"
-       y1="548.53998"
-       x2="1386.11"
-       y2="548.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27122" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.68,367.98 1401.16,367.95 1399.48,382.7 "
-       id="polygon27124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.7,353.06 1401.17,352.97 1399.49,367.72 "
-       id="polygon27126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1398.91,382.63 1399.48,382.7 1401.16,367.95 "
-       id="polygon27128" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1403.36,353.23 1403.76,353.25 1405.44,338.5 "
-       id="polygon27130" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.59,367.89 1400.02,367.81 1398.34,382.56 "
-       id="polygon27132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.49,367.72 1400.02,367.81 1401.7,353.06 "
-       id="polygon27134" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1407.12,323.75 1407.37,323.73 1409.05,308.98 "
-       id="polygon27136" />
-    <line
-       x1="1380.23"
-       y1="545.63"
-       x2="1379.96"
-       y2="545.66998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27138" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1407.37,323.73 1407.12,323.75 1405.44,338.5 "
-       id="polygon27140" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.48,293.88 1407.2,293.81 1405.52,308.56 "
-       id="polygon27142" />
-    <line
-       x1="1376.3199"
-       y1="561.22998"
-       x2="1376.1"
-       y2="561.09003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27144" />
-    <line
-       x1="1466.41"
-       y1="480.32001"
-       x2="1466.3"
-       y2="476"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27146" />
-    <line
-       x1="1559.86"
-       y1="439.95999"
-       x2="1563.25"
-       y2="440.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.54,323.47 1404.11,323.39 1402.43,338.14 "
-       id="polygon27150" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.16,367.95 1401.68,367.98 1403.36,353.23 "
-       id="polygon27152" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.16,367.95 1400.59,367.89 1398.91,382.63 "
-       id="polygon27154" />
-    <polygon
-       style="opacity:1;fill:#00e300"
-       points="1380.63,546.5 1380.34,546.55 1380.38,546.38 "
-       id="polygon27156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.43,338.14 1402.86,338.22 1404.54,323.47 "
-       id="polygon27158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.52,308.56 1405.79,308.64 1407.48,293.88 "
-       id="polygon27160" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1379.66,545.54 1379.91,545.29 1377.84,531.75 "
-       id="polygon27162" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1383.62,560.4 1383.6,560.59 1383.38,560.6 "
-       id="polygon27164" />
-    <polygon
-       style="opacity:1;fill:#008200"
-       points="1412.24,249.55 1412.14,249.5 1410.45,264.25 "
-       id="polygon27166" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1405.44,338.5 1405.04,338.48 1403.36,353.23 "
-       id="polygon27168" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.02,367.81 1400.59,367.89 1402.27,353.14 "
-       id="polygon27170" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.36,353.23 1402.85,353.2 1401.16,367.95 "
-       id="polygon27172" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.38,338.31 1402.86,338.22 1401.17,352.97 "
-       id="polygon27174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.59,367.89 1401.16,367.95 1402.85,353.2 "
-       id="polygon27176" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1405.04,338.48 1405.44,338.5 1407.12,323.75 "
-       id="polygon27178" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.27,353.14 1401.7,353.06 1400.02,367.81 "
-       id="polygon27180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.17,352.97 1401.7,353.06 1403.38,338.31 "
-       id="polygon27182" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1408.8,309 1409.05,308.98 1410.73,294.23 "
-       id="polygon27184" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1409.05,308.98 1408.8,309 1407.12,323.75 "
-       id="polygon27186" />
-    <line
-       x1="1382.78"
-       y1="561.40997"
-       x2="1382.8199"
-       y2="561.28003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.16,279.13 1408.88,279.06 1407.2,293.81 "
-       id="polygon27190" />
-    <line
-       x1="1379.13"
-       y1="545.84998"
-       x2="1379.13"
-       y2="545.84998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.21,308.72 1405.79,308.64 1404.11,323.39 "
-       id="polygon27194" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.85,353.2 1403.36,353.23 1405.04,338.48 "
-       id="polygon27196" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.66,545.89 1377.07,546.02 1375,532.47 "
-       id="polygon27198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.85,353.2 1402.27,353.14 1400.59,367.89 "
-       id="polygon27200" />
-    <line
-       x1="1519.3199"
-       y1="378.09"
-       x2="1518.25"
-       y2="380.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27202" />
-    <line
-       x1="1474.2"
-       y1="447.29999"
-       x2="1476.45"
-       y2="443.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27204" />
-    <line
-       x1="1374.6"
-       y1="547.66998"
-       x2="1374.64"
-       y2="547.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27206" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.11,323.39 1404.54,323.47 1406.21,308.72 "
-       id="polygon27208" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1373.39,550.52 1373.59,550.36 1373.57,550.61 "
-       id="polygon27210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.2,293.81 1407.48,293.88 1409.16,279.13 "
-       id="polygon27212" />
-    <line
-       x1="1624.86"
-       y1="485.12"
-       x2="1623.62"
-       y2="484.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27214" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1387.93,550.96 1387.74,550.86 1401.92,549.77 "
-       id="polygon27216" />
-    <line
-       x1="1371.97"
-       y1="552.66998"
-       x2="1371.9301"
-       y2="552.40997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27218" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1407.12,323.75 1406.72,323.73 1405.04,338.48 "
-       id="polygon27220" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.7,353.06 1402.27,353.14 1403.96,338.39 "
-       id="polygon27222" />
-    <line
-       x1="1375.29"
-       y1="560.45001"
-       x2="1375.1"
-       y2="560.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27224" />
-    <line
-       x1="1372.5"
-       y1="550.87"
-       x2="1372.34"
-       y2="551.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27226" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.04,338.48 1404.53,338.45 1402.85,353.2 "
-       id="polygon27228" />
-    <line
-       x1="1385.64"
-       y1="559.28998"
-       x2="1385.8"
-       y2="559.21997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.06,323.56 1404.54,323.47 1402.86,338.22 "
-       id="polygon27232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.27,353.14 1402.85,353.2 1404.53,338.45 "
-       id="polygon27234" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1406.72,323.73 1407.12,323.75 1408.8,309 "
-       id="polygon27236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.96,338.39 1403.38,338.31 1401.7,353.06 "
-       id="polygon27238" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1402.86,338.22 1403.38,338.31 1405.06,323.56 "
-       id="polygon27240" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1410.48,294.24 1410.73,294.23 1412.42,279.48 "
-       id="polygon27242" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1410.73,294.23 1410.48,294.24 1408.8,309 "
-       id="polygon27244" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.84,264.38 1410.56,264.3 1408.88,279.06 "
-       id="polygon27246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.9,293.96 1407.48,293.88 1405.79,308.64 "
-       id="polygon27248" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1379.25,545.76 1379.66,545.54 1377.59,531.99 "
-       id="polygon27250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.53,338.45 1405.04,338.48 1406.72,323.73 "
-       id="polygon27252" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.53,338.45 1403.96,338.39 1402.27,353.14 "
-       id="polygon27254" />
-    <line
-       x1="1466.83"
-       y1="484.64001"
-       x2="1466.41"
-       y2="480.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.79,308.64 1406.21,308.72 1407.9,293.96 "
-       id="polygon27258" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.88,279.06 1409.16,279.13 1410.84,264.38 "
-       id="polygon27260" />
-    <line
-       x1="1374.36"
-       y1="559.46002"
-       x2="1374.09"
-       y2="559.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27262" />
-    <line
-       x1="1377.8"
-       y1="546.34998"
-       x2="1378.01"
-       y2="546.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27264" />
-    <polygon
-       style="opacity:1;fill:#009200"
-       points="1385.41,558.57 1385.66,558.32 1385.6,558.54 "
-       id="polygon27266" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1408.8,309 1408.4,308.98 1406.72,323.73 "
-       id="polygon27268" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1377.07,546.02 1377.59,546.07 1375.52,532.52 "
-       id="polygon27270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.38,338.31 1403.96,338.39 1405.64,323.63 "
-       id="polygon27272" />
-    <line
-       x1="1563.25"
-       y1="440.04001"
-       x2="1566.63"
-       y2="439.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27274" />
-    <line
-       x1="1605.8101"
-       y1="407.92999"
-       x2="1606.64"
-       y2="404.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.72,323.73 1406.21,323.7 1404.53,338.45 "
-       id="polygon27278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.74,308.8 1406.21,308.72 1404.54,323.47 "
-       id="polygon27280" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.96,338.39 1404.53,338.45 1406.21,323.7 "
-       id="polygon27282" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1408.4,308.98 1408.8,309 1410.48,294.24 "
-       id="polygon27284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.64,323.63 1405.06,323.56 1403.38,338.31 "
-       id="polygon27286" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.54,323.47 1405.06,323.56 1406.74,308.8 "
-       id="polygon27288" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1412.17,279.49 1412.42,279.48 1414.1,264.72 "
-       id="polygon27290" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1412.42,279.48 1412.17,279.49 1410.48,294.24 "
-       id="polygon27292" />
-    <line
-       x1="1386.54"
-       y1="558.04999"
-       x2="1386.61"
-       y2="557.84003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27294" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.58,279.21 1409.16,279.13 1407.48,293.88 "
-       id="polygon27296" />
-    <line
-       x1="1372.12"
-       y1="553.46997"
-       x2="1372.0601"
-       y2="553.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27298" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.21,323.7 1406.72,323.73 1408.4,308.98 "
-       id="polygon27300" />
-    <polygon
-       style="opacity:1;fill:#03d303"
-       points="1374.57,558.4 1374.68,558.62 1374.47,558.54 "
-       id="polygon27302" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.21,323.7 1405.64,323.63 1403.96,338.39 "
-       id="polygon27304" />
-    <polygon
-       style="opacity:1;fill:#00ed00"
-       points="1377.62,547.37 1377.63,547.61 1377.41,547.53 "
-       id="polygon27306" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1378.74,545.93 1379.25,545.76 1377.18,532.21 "
-       id="polygon27308" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1373.36,551.55 1373.55,551.38 1373.55,551.64 "
-       id="polygon27310" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.48,293.88 1407.9,293.96 1409.58,279.21 "
-       id="polygon27312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.56,264.3 1410.84,264.38 1412.52,249.62 "
-       id="polygon27314" />
-    <line
-       x1="1377.91"
-       y1="561.46002"
-       x2="1377.96"
-       y2="561.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1377.59,546.07 1378.17,546.04 1376.1,532.49 "
-       id="polygon27318" />
-    <line
-       x1="1348.03"
-       y1="252.59"
-       x2="1350.45"
-       y2="252.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27320" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1410.48,294.24 1410.09,294.23 1408.4,308.98 "
-       id="polygon27322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.06,323.56 1405.64,323.63 1407.32,308.88 "
-       id="polygon27324" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.4,308.98 1407.89,308.94 1406.21,323.7 "
-       id="polygon27326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.42,294.05 1407.9,293.96 1406.21,308.72 "
-       id="polygon27328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1405.64,323.63 1406.21,323.7 1407.89,308.94 "
-       id="polygon27330" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1410.09,294.23 1410.48,294.24 1412.17,279.49 "
-       id="polygon27332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1378.17,546.04 1378.74,545.93 1376.67,532.38 "
-       id="polygon27334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.32,308.88 1406.74,308.8 1405.06,323.56 "
-       id="polygon27336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.21,308.72 1406.74,308.8 1408.42,294.05 "
-       id="polygon27338" />
-    <polygon
-       style="opacity:1;fill:#00b200"
-       points="1414.1,264.72 1413.85,264.73 1412.17,279.49 "
-       id="polygon27340" />
-    <line
-       x1="1385.61"
-       y1="548.77002"
-       x2="1385.79"
-       y2="549.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27342" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.26,264.45 1410.84,264.38 1409.16,279.13 "
-       id="polygon27344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.89,308.94 1408.4,308.98 1410.09,294.23 "
-       id="polygon27346" />
-    <line
-       x1="1378.01"
-       y1="546.63"
-       x2="1378.01"
-       y2="546.41998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.89,308.94 1407.32,308.88 1405.64,323.63 "
-       id="polygon27350" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1374.59,532.35 1374.32,532.17 1376.39,545.71 "
-       id="polygon27352" />
-    <line
-       x1="1476.45"
-       y1="443.70001"
-       x2="1478.95"
-       y2="440.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.16,279.13 1409.58,279.21 1411.26,264.45 "
-       id="polygon27356" />
-    <line
-       x1="1372.33"
-       y1="554.27002"
-       x2="1372.25"
-       y2="554"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27358" />
-    <line
-       x1="1372.48"
-       y1="551.91998"
-       x2="1372.65"
-       y2="552"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27360" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1412.17,279.49 1411.77,279.47 1410.09,294.23 "
-       id="polygon27362" />
-    <line
-       x1="1576.8"
-       y1="504.14001"
-       x2="1575.17"
-       y2="507.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1406.74,308.8 1407.32,308.88 1409,294.13 "
-       id="polygon27366" />
-    <line
-       x1="1386.71"
-       y1="557.39001"
-       x2="1386.75"
-       y2="557.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.09,294.23 1409.57,294.19 1407.89,308.94 "
-       id="polygon27370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.11,279.29 1409.58,279.21 1407.9,293.96 "
-       id="polygon27372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.32,308.88 1407.89,308.94 1409.57,294.19 "
-       id="polygon27374" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1411.77,279.47 1412.17,279.49 1413.85,264.73 "
-       id="polygon27376" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1377.93,531.5 1377.84,531.75 1379.91,545.29 "
-       id="polygon27378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409,294.13 1408.42,294.05 1406.74,308.8 "
-       id="polygon27380" />
-    <line
-       x1="1385.96"
-       y1="549.34998"
-       x2="1386.12"
-       y2="549.71002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27382" />
-    <line
-       x1="1373.63"
-       y1="549.85999"
-       x2="1373.42"
-       y2="550.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27384" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.9,293.96 1408.42,294.05 1410.11,279.29 "
-       id="polygon27386" />
-    <line
-       x1="1467.5699"
-       y1="488.91"
-       x2="1466.83"
-       y2="484.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27388" />
-    <line
-       x1="1376.59"
-       y1="547.25"
-       x2="1376.79"
-       y2="547.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27390" />
-    <line
-       x1="1373.59"
-       y1="558"
-       x2="1373.59"
-       y2="558"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27392" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1412.92"
-       y2="251.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27394" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1413.47,249.78 1412.94,249.7 1411.26,264.45 "
-       id="polygon27396" />
-    <line
-       x1="1413.11"
-       y1="249.95"
-       x2="1413.11"
-       y2="249.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.94,249.7 1412.52,249.62 1410.84,264.38 "
-       id="polygon27400" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.57,294.19 1410.09,294.23 1411.77,279.47 "
-       id="polygon27402" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.57,294.19 1409,294.13 1407.32,308.88 "
-       id="polygon27404" />
-    <polygon
-       style="opacity:1;fill:#10ff10"
-       points="1376.46,548.42 1376.66,548.49 1376.47,548.68 "
-       id="polygon27406" />
-    <line
-       x1="1566.63"
-       y1="439.87"
-       x2="1569.98"
-       y2="439.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27408" />
-    <line
-       x1="1596.21"
-       y1="563.28003"
-       x2="1598.62"
-       y2="563.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27410" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.84,264.38 1411.26,264.45 1412.94,249.7 "
-       id="polygon27412" />
-    <line
-       x1="1375.3"
-       y1="559.78998"
-       x2="1375.0601"
-       y2="559.71002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27414" />
-    <polygon
-       style="opacity:1;fill:#00ff00"
-       points="1373.64,553.45 1373.51,553.63 1373.43,553.36 "
-       id="polygon27416" />
-    <polygon
-       style="opacity:1;fill:#00e900"
-       points="1379.52,547.47 1379.53,547.72 1379.28,547.6 "
-       id="polygon27418" />
-    <line
-       x1="1384.91"
-       y1="559.46002"
-       x2="1385.1"
-       y2="559.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27420" />
-    <polygon
-       style="opacity:1;fill:#1fff1f"
-       points="1374.51,557.41 1374.59,557.64 1374.39,557.57 "
-       id="polygon27422" />
-    <polygon
-       style="opacity:1;fill:#008e00"
-       points="1413.85,264.73 1413.45,264.71 1411.77,279.47 "
-       id="polygon27424" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.42,294.05 1409,294.13 1410.68,279.37 "
-       id="polygon27426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.77,279.47 1411.25,279.43 1409.57,294.19 "
-       id="polygon27428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.79,264.54 1411.26,264.45 1409.58,279.21 "
-       id="polygon27430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409,294.13 1409.57,294.19 1411.25,279.43 "
-       id="polygon27432" />
-    <line
-       x1="1374.8199"
-       y1="548.5"
-       x2="1374.89"
-       y2="548.72998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27434" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.68,279.37 1410.11,279.29 1408.42,294.05 "
-       id="polygon27436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1409.58,279.21 1410.11,279.29 1411.79,264.54 "
-       id="polygon27438" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1376.34,559.54 1376.45,559.38 1376.6,559.57 "
-       id="polygon27440" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1387.56,550.94 1387.42,551.2 1401.61,550.11 "
-       id="polygon27442" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1384.38,549.46 1384.43,549.32 1384.63,549.54 "
-       id="polygon27444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.25,279.43 1411.77,279.47 1413.45,264.71 "
-       id="polygon27446" />
-    <line
-       x1="1385.53"
-       y1="549.13"
-       x2="1385.3101"
-       y2="549.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.25,279.43 1410.68,279.37 1409,294.13 "
-       id="polygon27450" />
-    <line
-       x1="1604.75"
-       y1="411.04999"
-       x2="1605.8101"
-       y2="407.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27452" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375,532.47 1374.59,532.35 1376.66,545.89 "
-       id="polygon27454" />
-    <line
-       x1="1380.78"
-       y1="561.33002"
-       x2="1380.9399"
-       y2="561.22998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27456" />
-    <polygon
-       style="opacity:1;fill:#0bff0b"
-       points="1377.46,548.29 1377.67,548.37 1377.47,548.55 "
-       id="polygon27458" />
-    <line
-       x1="1387.27"
-       y1="554.70001"
-       x2="1387.13"
-       y2="554.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27460" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.11,279.29 1410.68,279.37 1412.36,264.61 "
-       id="polygon27462" />
-    <line
-       x1="1375.49"
-       y1="548.34003"
-       x2="1375.67"
-       y2="548.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1413.45,264.71 1412.94,264.67 1411.25,279.43 "
-       id="polygon27466" />
-    <line
-       x1="1386.52"
-       y1="550.83002"
-       x2="1386.62"
-       y2="551.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27468" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1410.68,279.37 1411.25,279.43 1412.94,264.67 "
-       id="polygon27470" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1377.84,531.75 1377.59,531.99 1379.66,545.54 "
-       id="polygon27472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.36,264.61 1411.79,264.54 1410.11,279.29 "
-       id="polygon27474" />
-    <line
-       x1="1386.98"
-       y1="555.5"
-       x2="1387.13"
-       y2="555.53998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27476" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.26,264.45 1411.79,264.54 1413.47,249.78 "
-       id="polygon27478" />
-    <line
-       x1="1379.49"
-       y1="546.76001"
-       x2="1379.73"
-       y2="546.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27480" />
-    <line
-       x1="1623.62"
-       y1="484.32999"
-       x2="1622.49"
-       y2="483.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27482" />
-    <line
-       x1="1520.6"
-       y1="375.37"
-       x2="1519.3199"
-       y2="378.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.94,264.67 1412.36,264.61 1410.68,279.37 "
-       id="polygon27486" />
-    <line
-       x1="1386.71"
-       y1="551.58002"
-       x2="1386.79"
-       y2="551.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27488" />
-    <line
-       x1="1382.9301"
-       y1="560.60999"
-       x2="1382.9301"
-       y2="560.40997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27490" />
-    <line
-       x1="1569.98"
-       y1="439.45001"
-       x2="1573.29"
-       y2="438.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27492" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1387.65,554.22 1387.84,554.49 1402.02,553.41 "
-       id="polygon27494" />
-    <line
-       x1="1468.62"
-       y1="493.13"
-       x2="1467.5699"
-       y2="488.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27496" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1387.42,551.2 1387.32,551.6 1401.51,550.51 "
-       id="polygon27498" />
-    <line
-       x1="1478.95"
-       y1="440.29999"
-       x2="1481.67"
-       y2="437.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27500" />
-    <line
-       x1="1386.85"
-       y1="552.34003"
-       x2="1386.89"
-       y2="552.71997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27502" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.52,532.52 1375,532.47 1377.07,546.02 "
-       id="polygon27504" />
-    <polygon
-       style="opacity:1;fill:#18ff18"
-       points="1375.64,550.45 1375.43,550.63 1375.44,550.38 "
-       id="polygon27506" />
-    <line
-       x1="1374.91"
-       y1="549.42999"
-       x2="1374.9399"
-       y2="549.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27508" />
-    <line
-       x1="1376.55"
-       y1="560.04999"
-       x2="1376.29"
-       y2="560.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27510" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1377.59,531.99 1377.18,532.21 1379.25,545.76 "
-       id="polygon27512" />
-    <line
-       x1="1379.4399"
-       y1="560.96002"
-       x2="1379.5601"
-       y2="561.03998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27514" />
-    <line
-       x1="1378.04"
-       y1="547.53003"
-       x2="1378.03"
-       y2="547.29999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27516" />
-    <polygon
-       style="opacity:1;fill:#0bff0b"
-       points="1374.39,555.39 1374.59,555.46 1374.46,555.64 "
-       id="polygon27518" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1385.61,556.45 1385.39,556.71 1385.36,556.35 "
-       id="polygon27520" />
-    <polygon
-       style="opacity:1;fill:#00e800"
-       points="1379.57,548.52 1379.34,548.65 1379.32,548.38 "
-       id="polygon27522" />
-    <line
-       x1="1385.7"
-       y1="550.28998"
-       x2="1385.75"
-       y2="550.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27524" />
-    <polygon
-       style="opacity:1;fill:#08d408"
-       points="1376.38,558.66 1376.51,558.49 1376.65,558.7 "
-       id="polygon27526" />
-    <line
-       x1="1603.45"
-       y1="414.09"
-       x2="1604.75"
-       y2="411.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.1,532.49 1375.52,532.52 1377.59,546.07 "
-       id="polygon27530" />
-    <line
-       x1="1350.45"
-       y1="252.91"
-       x2="1352.8199"
-       y2="253.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.49,553.8 1387.65,554.22 1401.84,553.13 "
-       id="polygon27534" />
-    <line
-       x1="1384.11"
-       y1="548.60999"
-       x2="1383.86"
-       y2="548.53998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27536" />
-    <line
-       x1="1375.54"
-       y1="549.15002"
-       x2="1375.35"
-       y2="549.09003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27538" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1377.18,532.21 1376.67,532.38 1378.74,545.93 "
-       id="polygon27540" />
-    <polygon
-       style="opacity:1;fill:#00f900"
-       points="1374.63,554.32 1374.7,554.59 1374.5,554.51 "
-       id="polygon27542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.32,551.6 1387.28,552.12 1401.47,551.03 "
-       id="polygon27544" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.67,532.38 1376.1,532.49 1378.17,546.04 "
-       id="polygon27546" />
-    <polygon
-       style="opacity:1;fill:#00a100"
-       points="1383.55,558.42 1383.54,558.74 1383.25,558.64 "
-       id="polygon27548" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1385.52,555.31 1385.55,555.7 1385.3,555.6 "
-       id="polygon27550" />
-    <line
-       x1="1573.29"
-       y1="438.76999"
-       x2="1576.54"
-       y2="437.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27552" />
-    <polygon
-       style="opacity:1;fill:#009e00"
-       points="1384.66,557.49 1384.39,557.73 1384.38,557.39 "
-       id="polygon27554" />
-    <polygon
-       style="opacity:1;fill:#05ff05"
-       points="1375.64,551.48 1375.44,551.66 1375.43,551.39 "
-       id="polygon27556" />
-    <line
-       x1="1374.98"
-       y1="558.54999"
-       x2="1375.09"
-       y2="558.40002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27558" />
-    <line
-       x1="1381.88"
-       y1="560.52002"
-       x2="1382.03"
-       y2="560.38"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27560" />
-    <polygon
-       style="opacity:1;fill:#42ff42"
-       points="1376.7,550.37 1376.48,550.54 1376.49,550.28 "
-       id="polygon27562" />
-    <line
-       x1="1380.95"
-       y1="547.54999"
-       x2="1381.1899"
-       y2="547.70001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.37,553.27 1387.49,553.8 1401.68,552.71 "
-       id="polygon27566" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1380.45,559.43 1380.65,559.56 1380.37,559.6 "
-       id="polygon27568" />
-    <polygon
-       style="opacity:1;fill:#00ba00"
-       points="1379.37,559.37 1379.59,559.52 1379.29,559.54 "
-       id="polygon27570" />
-    <polygon
-       style="opacity:1;fill:#00aa00"
-       points="1385.54,553.48 1385.38,553.63 1385.26,553.38 "
-       id="polygon27572" />
-    <line
-       x1="1377.6"
-       y1="560.15002"
-       x2="1377.33"
-       y2="560.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27574" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.28,552.12 1387.3,552.69 1401.48,551.61 "
-       id="polygon27576" />
-    <line
-       x1="1386.28"
-       y1="556.34003"
-       x2="1386.0699"
-       y2="556.62"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27578" />
-    <line
-       x1="1374.83"
-       y1="550.40997"
-       x2="1374.84"
-       y2="550.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.3,552.69 1387.37,553.27 1401.55,552.18 "
-       id="polygon27582" />
-    <polygon
-       style="opacity:1;fill:#00c800"
-       points="1383.59,550.62 1383.39,550.4 1383.55,550.26 "
-       id="polygon27584" />
-    <polygon
-       style="opacity:1;fill:#00b900"
-       points="1384.52,551.76 1384.34,551.52 1384.5,551.39 "
-       id="polygon27586" />
-    <line
-       x1="1373.79"
-       y1="552.52002"
-       x2="1374"
-       y2="552.60999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27588" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1377.83,531.28 1377.56,531.09 1375.49,517.53 "
-       id="polygon27590" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1374.39,556.66 1374.3,556.1 1363.74,560.77 "
-       id="polygon27592" />
-    <line
-       x1="1374.22"
-       y1="556.42999"
-       x2="1374.22"
-       y2="556.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27594" />
-    <line
-       x1="1469.98"
-       y1="497.25"
-       x2="1468.62"
-       y2="493.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27596" />
-    <line
-       x1="1386.5"
-       y1="554.25"
-       x2="1386.41"
-       y2="554.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27598" />
-    <line
-       x1="1601.9301"
-       y1="417.04999"
-       x2="1603.45"
-       y2="414.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27600" />
-    <line
-       x1="1378.42"
-       y1="560.15997"
-       x2="1378.14"
-       y2="560.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27602" />
-    <line
-       x1="1373.79"
-       y1="554.45001"
-       x2="1373.91"
-       y2="554.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27604" />
-    <line
-       x1="1576.54"
-       y1="437.85001"
-       x2="1579.71"
-       y2="436.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27606" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1384.59,556.43 1384.34,556.69 1384.31,556.32 "
-       id="polygon27608" />
-    <line
-       x1="1385.41"
-       y1="557.42999"
-       x2="1385.17"
-       y2="557.67999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27610" />
-    <line
-       x1="1376.33"
-       y1="549.45001"
-       x2="1376.13"
-       y2="549.37"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27612" />
-    <polygon
-       style="opacity:1;fill:#00a400"
-       points="1383.52,557.43 1383.54,557.77 1383.23,557.66 "
-       id="polygon27614" />
-    <line
-       x1="1481.67"
-       y1="437.09"
-       x2="1484.6"
-       y2="434.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27616" />
-    <line
-       x1="1378.1"
-       y1="548.54999"
-       x2="1378.09"
-       y2="548.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27618" />
-    <polygon
-       style="opacity:1;fill:#00c100"
-       points="1378.47,558.5 1378.7,558.51 1378.63,558.69 "
-       id="polygon27620" />
-    <line
-       x1="1386.22"
-       y1="553.53003"
-       x2="1386.11"
-       y2="553.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27622" />
-    <polygon
-       style="opacity:1;fill:#00a600"
-       points="1384.76,555.4 1384.52,555.68 1384.47,555.3 "
-       id="polygon27624" />
-    <line
-       x1="1374.8199"
-       y1="551.40997"
-       x2="1374.8199"
-       y2="551.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27626" />
-    <line
-       x1="1379.5699"
-       y1="560.14001"
-       x2="1379.29"
-       y2="560.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27628" />
-    <line
-       x1="1622.49"
-       y1="483.42999"
-       x2="1621.49"
-       y2="482.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27630" />
-    <polygon
-       style="opacity:1;fill:#00c200"
-       points="1383.67,551.7 1383.48,551.48 1383.65,551.34 "
-       id="polygon27632" />
-    <line
-       x1="1384.39"
-       y1="558.40002"
-       x2="1384.11"
-       y2="558.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27634" />
-    <line
-       x1="1378.5699"
-       y1="559.85999"
-       x2="1378.49"
-       y2="560.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27636" />
-    <polygon
-       style="opacity:1;fill:#00ac00"
-       points="1384.63,553.56 1384.32,553.45 1384.5,553.31 "
-       id="polygon27638" />
-    <line
-       x1="1383.53"
-       y1="559.04999"
-       x2="1383.22"
-       y2="559.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27640" />
-    <polygon
-       style="opacity:1;fill:#00fa00"
-       points="1376.48,552.63 1376.48,552.36 1376.68,552.45 "
-       id="polygon27642" />
-    <line
-       x1="1522.0699"
-       y1="372.79999"
-       x2="1520.6"
-       y2="375.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27644" />
-    <line
-       x1="1380.7"
-       y1="560.02002"
-       x2="1380.4301"
-       y2="560.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27646" />
-    <line
-       x1="1575.17"
-       y1="507.57001"
-       x2="1573.25"
-       y2="510.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27648" />
-    <line
-       x1="1381.54"
-       y1="559.85999"
-       x2="1381.26"
-       y2="559.91998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27650" />
-    <polygon
-       style="opacity:1;fill:#08ff08"
-       points="1377.33,551.43 1377.55,551.27 1377.54,551.52 "
-       id="polygon27652" />
-    <line
-       x1="1579.71"
-       y1="436.69"
-       x2="1582.78"
-       y2="435.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27654" />
-    <line
-       x1="1383.26"
-       y1="549.35999"
-       x2="1383.26"
-       y2="549.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27656" />
-    <polygon
-       style="opacity:1;fill:#00e500"
-       points="1379.25,550.38 1379.49,550.23 1379.52,550.59 "
-       id="polygon27658" />
-    <line
-       x1="1600.1899"
-       y1="419.89001"
-       x2="1601.9301"
-       y2="417.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27660" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1401.61,550.11 1401.75,549.85 1387.56,550.94 "
-       id="polygon27662" />
-    <polygon
-       style="opacity:1;fill:#00a500"
-       points="1383.75,556.48 1383.47,556.73 1383.44,556.37 "
-       id="polygon27664" />
-    <polygon
-       style="opacity:1;fill:#02ed02"
-       points="1376.64,555.58 1376.43,555.49 1376.56,555.32 "
-       id="polygon27666" />
-    <line
-       x1="1385.46"
-       y1="552.08002"
-       x2="1385.3"
-       y2="551.84003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27668" />
-    <polygon
-       style="opacity:1;fill:#01dd01"
-       points="1380.27,550.52 1380.5,550.38 1380.54,550.73 "
-       id="polygon27670" />
-    <line
-       x1="1374.87"
-       y1="552.45001"
-       x2="1374.85"
-       y2="552.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27672" />
-    <line
-       x1="1385.14"
-       y1="551.59003"
-       x2="1384.98"
-       y2="551.34998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27674" />
-    <polygon
-       style="opacity:1;fill:#00f000"
-       points="1376.54,554.64 1376.47,554.39 1376.68,554.47 "
-       id="polygon27676" />
-    <line
-       x1="1384.26"
-       y1="550.42999"
-       x2="1384.26"
-       y2="550.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27678" />
-    <line
-       x1="1374.61"
-       y1="553.35999"
-       x2="1374.76"
-       y2="553.16998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27680" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1381.16,550.54 1381.72,550.71 1381.72,550.38 "
-       id="polygon27682" />
-    <line
-       x1="1377.49"
-       y1="559.13"
-       x2="1377.34"
-       y2="558.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27684" />
-    <line
-       x1="1385.47"
-       y1="554.91998"
-       x2="1385.72"
-       y2="555.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27686" />
-    <polygon
-       style="opacity:1;fill:#00f400"
-       points="1377.3,552.46 1377.52,552.29 1377.52,552.55 "
-       id="polygon27688" />
-    <polygon
-       style="opacity:1;fill:#00a800"
-       points="1383.61,555.36 1383.66,555.74 1383.34,555.63 "
-       id="polygon27690" />
-    <line
-       x1="1382.52"
-       y1="559.27002"
-       x2="1382.3199"
-       y2="559.16998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27692" />
-    <polygon
-       style="opacity:1;fill:#01dd01"
-       points="1377.67,556.55 1377.45,556.52 1377.57,556.36 "
-       id="polygon27694" />
-    <line
-       x1="1378.16"
-       y1="549.39001"
-       x2="1378.14"
-       y2="549.09998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27696" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1402.21,553.51 1402.02,553.41 1387.84,554.49 "
-       id="polygon27698" />
-    <line
-       x1="1471.66"
-       y1="501.26999"
-       x2="1469.98"
-       y2="497.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27700" />
-    <line
-       x1="1582.78"
-       y1="435.29001"
-       x2="1585.74"
-       y2="433.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27702" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1381.46,557.33 1381.68,557.47 1381.49,557.68 "
-       id="polygon27704" />
-    <polygon
-       style="opacity:1;fill:#02b602"
-       points="1383.64,553.63 1383.31,553.51 1383.5,553.37 "
-       id="polygon27706" />
-    <line
-       x1="1352.8199"
-       y1="253.42"
-       x2="1355.14"
-       y2="254.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27708" />
-    <polygon
-       style="opacity:1;fill:#14ec14"
-       points="1381.34,551.4 1381.58,551.27 1381.6,551.63 "
-       id="polygon27710" />
-    <line
-       x1="1598.24"
-       y1="422.60001"
-       x2="1600.1899"
-       y2="419.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27712" />
-    <line
-       x1="1375.8199"
-       y1="557.40002"
-       x2="1375.95"
-       y2="557.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27714" />
-    <line
-       x1="1377.05"
-       y1="558.54999"
-       x2="1376.91"
-       y2="558.34003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27716" />
-    <polygon
-       style="opacity:1;fill:#00bb00"
-       points="1380.43,557.29 1380.65,557.45 1380.46,557.66 "
-       id="polygon27718" />
-    <polygon
-       style="opacity:1;fill:#00f000"
-       points="1377.3,553.5 1377.51,553.33 1377.51,553.59 "
-       id="polygon27720" />
-    <polygon
-       style="opacity:1;fill:#09e509"
-       points="1380.34,551.61 1380.32,551.25 1380.58,551.46 "
-       id="polygon27722" />
-    <line
-       x1="1377.59"
-       y1="549.97998"
-       x2="1377.37"
-       y2="549.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27724" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1401.51,550.51 1401.61,550.11 1387.42,551.2 "
-       id="polygon27726" />
-    <line
-       x1="1593.83"
-       y1="562.90002"
-       x2="1596.21"
-       y2="563.28003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27728" />
-    <polygon
-       style="opacity:1;fill:#00d200"
-       points="1378.7,556.45 1378.56,556.62 1378.47,556.44 "
-       id="polygon27730" />
-    <line
-       x1="1585.74"
-       y1="433.67001"
-       x2="1588.5601"
-       y2="431.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27732" />
-    <line
-       x1="1596.09"
-       y1="425.17001"
-       x2="1598.24"
-       y2="422.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27734" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1381.57,556.38 1381.61,556.75 1381.39,556.59 "
-       id="polygon27736" />
-    <line
-       x1="1375.49"
-       y1="553.25"
-       x2="1375.3"
-       y2="553.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27738" />
-    <line
-       x1="1384.54"
-       y1="552.14001"
-       x2="1384.7"
-       y2="552"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27740" />
-    <line
-       x1="1375.6801"
-       y1="552.27002"
-       x2="1375.88"
-       y2="552.09998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27742" />
-    <line
-       x1="1375.3199"
-       y1="554.79999"
-       x2="1375.39"
-       y2="555.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27744" />
-    <line
-       x1="1382.9399"
-       y1="558.53998"
-       x2="1382.9399"
-       y2="558.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27746" />
-    <line
-       x1="1375.9"
-       y1="556.53998"
-       x2="1376"
-       y2="556.78998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27748" />
-    <polygon
-       style="opacity:1;fill:#4cff4c"
-       points="1381.37,552.51 1381.62,552.37 1381.63,552.74 "
-       id="polygon27750" />
-    <polygon
-       style="opacity:1;fill:#04e804"
-       points="1379.53,552.37 1379.52,552.63 1379.26,552.41 "
-       id="polygon27752" />
-    <line
-       x1="1375.63"
-       y1="555.79999"
-       x2="1375.71"
-       y2="556.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27754" />
-    <line
-       x1="1588.5601"
-       y1="431.84"
-       x2="1591.23"
-       y2="429.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27756" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1372.15,518.38 1372.23,518.14 1374.3,531.7 "
-       id="polygon27758" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1374.32,532.17 1374.59,532.35 1372.51,518.79 "
-       id="polygon27760" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1402.02,553.41 1401.84,553.13 1387.65,554.22 "
-       id="polygon27762" />
-    <line
-       x1="1593.75"
-       y1="427.57001"
-       x2="1596.09"
-       y2="425.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27764" />
-    <line
-       x1="1379.1801"
-       y1="549.65997"
-       x2="1378.9399"
-       y2="549.81"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27766" />
-    <line
-       x1="1591.23"
-       y1="429.79999"
-       x2="1593.75"
-       y2="427.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27768" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1373.38,554.69 1372.96,554.46 1362.41,559.12 "
-       id="polygon27770" />
-    <line
-       x1="1378.24"
-       y1="550.28998"
-       x2="1378.02"
-       y2="550.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27772" />
-    <polygon
-       style="opacity:1;fill:#00d100"
-       points="1379.51,555.45 1379.61,555.64 1379.33,555.67 "
-       id="polygon27774" />
-    <polygon
-       style="opacity:1;fill:#03e303"
-       points="1379.51,553.42 1379.5,553.69 1379.24,553.46 "
-       id="polygon27776" />
-    <line
-       x1="1376.52"
-       y1="557.09998"
-       x2="1376.73"
-       y2="557.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27778" />
-    <line
-       x1="1376.7"
-       y1="551.40997"
-       x2="1376.91"
-       y2="551.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27780" />
-    <line
-       x1="1384.65"
-       y1="554.62"
-       x2="1384.9301"
-       y2="554.71997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27782" />
-    <line
-       x1="1484.6"
-       y1="434.10999"
-       x2="1487.73"
-       y2="431.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27784" />
-    <polygon
-       style="opacity:1;fill:#21fe21"
-       points="1380.57,553.55 1380.3,553.58 1380.31,553.32 "
-       id="polygon27786" />
-    <polygon
-       style="opacity:1;fill:#00c700"
-       points="1380.59,555.32 1380.68,555.51 1380.42,555.55 "
-       id="polygon27788" />
-    <line
-       x1="1377.79"
-       y1="550.59998"
-       x2="1378.01"
-       y2="550.44"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.47,551.03 1401.51,550.51 1387.32,551.6 "
-       id="polygon27792" />
-    <line
-       x1="1379.16"
-       y1="558.53003"
-       x2="1379.08"
-       y2="558.71002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27794" />
-    <line
-       x1="1376.0699"
-       y1="553.52002"
-       x2="1375.88"
-       y2="553.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27796" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1377.59,531.99 1377.84,531.75 1375.77,518.18 "
-       id="polygon27798" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.84,553.13 1401.68,552.71 1387.49,553.8 "
-       id="polygon27800" />
-    <line
-       x1="1382.3"
-       y1="550.88"
-       x2="1382.3"
-       y2="550.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27802" />
-    <line
-       x1="1381.12"
-       y1="558.45001"
-       x2="1380.91"
-       y2="558.31"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27804" />
-    <line
-       x1="1382.91"
-       y1="557.54999"
-       x2="1382.89"
-       y2="557.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27806" />
-    <line
-       x1="1621.49"
-       y1="482.42999"
-       x2="1620.63"
-       y2="481.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27808" />
-    <line
-       x1="1376.7"
-       y1="556.23999"
-       x2="1376.8199"
-       y2="556.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.48,551.61 1401.47,551.03 1387.28,552.12 "
-       id="polygon27812" />
-    <line
-       x1="1473.62"
-       y1="505.14999"
-       x2="1471.66"
-       y2="501.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27814" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.59,532.35 1375,532.47 1372.93,518.91 "
-       id="polygon27816" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1373.76,555.07 1373.38,554.69 1362.82,559.36 "
-       id="polygon27818" />
-    <line
-       x1="1377.6"
-       y1="557.25"
-       x2="1377.8199"
-       y2="557.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27820" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1374.2,557.57 1374.36,557.16 1363.8,561.83 "
-       id="polygon27822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.68,552.71 1401.55,552.18 1387.37,553.27 "
-       id="polygon27824" />
-    <line
-       x1="1380.7"
-       y1="558.15997"
-       x2="1380.48"
-       y2="558.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.55,552.18 1401.48,551.61 1387.3,552.69 "
-       id="polygon27828" />
-    <line
-       x1="1383.52"
-       y1="552.96997"
-       x2="1383.7"
-       y2="552.83002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27830" />
-    <line
-       x1="1383.74"
-       y1="554.28998"
-       x2="1384.05"
-       y2="554.40002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27832" />
-    <line
-       x1="1378.1899"
-       y1="551.53998"
-       x2="1378.1801"
-       y2="551.78998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27834" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1377.18,532.21 1377.59,531.99 1375.52,518.43 "
-       id="polygon27836" />
-    <line
-       x1="1382.35"
-       y1="551.59003"
-       x2="1382.37"
-       y2="551.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27838" />
-    <line
-       x1="1379.5699"
-       y1="551.34003"
-       x2="1379.3101"
-       y2="551.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27840" />
-    <line
-       x1="1378.71"
-       y1="557.34003"
-       x2="1378.9301"
-       y2="557.34998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27842" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1374.08,555.55 1373.76,555.07 1363.21,559.73 "
-       id="polygon27844" />
-    <line
-       x1="1523.74"
-       y1="370.39001"
-       x2="1522.0699"
-       y2="372.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27846" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1374.36,557.16 1374.39,556.66 1363.84,561.32 "
-       id="polygon27848" />
-    <line
-       x1="1382.8199"
-       y1="556.51001"
-       x2="1382.78"
-       y2="556.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375,532.47 1375.52,532.52 1373.45,518.95 "
-       id="polygon27852" />
-    <line
-       x1="1377.52"
-       y1="554.12"
-       x2="1377.3"
-       y2="554.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27854" />
-    <line
-       x1="1377.47"
-       y1="555.25"
-       x2="1377.61"
-       y2="555.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27856" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1374.3,556.1 1374.08,555.55 1363.52,560.22 "
-       id="polygon27858" />
-    <line
-       x1="1379.52"
-       y1="557.19"
-       x2="1379.4301"
-       y2="557.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27860" />
-    <line
-       x1="1378.16"
-       y1="552.56"
-       x2="1378.16"
-       y2="552.81"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27862" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1376.67,532.38 1377.18,532.21 1375.11,518.64 "
-       id="polygon27864" />
-    <line
-       x1="1382.39"
-       y1="552.69"
-       x2="1382.39"
-       y2="553.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27866" />
-    <line
-       x1="1355.14"
-       y1="254.12"
-       x2="1357.38"
-       y2="255"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27868" />
-    <line
-       x1="1382.6801"
-       y1="555.40002"
-       x2="1382.61"
-       y2="555.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27870" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1375.52,532.52 1376.1,532.49 1374.02,518.92 "
-       id="polygon27872" />
-    <line
-       x1="1380.61"
-       y1="552.21002"
-       x2="1380.35"
-       y2="551.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27874" />
-    <line
-       x1="1378.15"
-       y1="553.59003"
-       x2="1378.16"
-       y2="553.84998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27876" />
-    <line
-       x1="1378.16"
-       y1="554.38"
-       x2="1377.9399"
-       y2="554.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27878" />
-    <line
-       x1="1379.15"
-       y1="556.46997"
-       x2="1379.0601"
-       y2="556.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1376.1,532.49 1376.67,532.38 1374.59,518.82 "
-       id="polygon27882" />
-    <line
-       x1="1382.46"
-       y1="554.22998"
-       x2="1382.38"
-       y2="553.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27884" />
-    <line
-       x1="1573.25"
-       y1="510.89001"
-       x2="1571.03"
-       y2="514.09998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27886" />
-    <line
-       x1="1378.52"
-       y1="555.15997"
-       x2="1378.4301"
-       y2="554.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27888" />
-    <line
-       x1="1382.13"
-       y1="553.59003"
-       x2="1381.88"
-       y2="553.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27890" />
-    <line
-       x1="1380.52"
-       y1="556.32001"
-       x2="1380.7"
-       y2="556.10999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27892" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1372.51,518.79 1372.25,518.61 1374.32,532.17 "
-       id="polygon27894" />
-    <line
-       x1="1381.89"
-       y1="554.53998"
-       x2="1382.05"
-       y2="554.29999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27896" />
-    <line
-       x1="1381.39"
-       y1="555.21997"
-       x2="1381.5601"
-       y2="555"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27898" />
-    <line
-       x1="1381.34"
-       y1="553.97998"
-       x2="1381.6"
-       y2="553.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27900" />
-    <line
-       x1="1379.5"
-       y1="554.21997"
-       x2="1379.77"
-       y2="554.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27902" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1375.86,517.94 1375.77,518.18 1377.84,531.75 "
-       id="polygon27904" />
-    <line
-       x1="1380.5601"
-       y1="554.09003"
-       x2="1380.8199"
-       y2="554.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27906" />
-    <line
-       x1="1405.84"
-       y1="251.85001"
-       x2="1413.11"
-       y2="249.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27908" />
-    <line
-       x1="1475.87"
-       y1="508.89001"
-       x2="1473.62"
-       y2="505.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27910" />
-    <line
-       x1="1487.73"
-       y1="431.38"
-       x2="1491.02"
-       y2="428.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.93,518.91 1372.51,518.79 1374.59,532.35 "
-       id="polygon27914" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1361.38,559.44 1361.65,559.17 1372.21,554.5 "
-       id="polygon27916" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1375.77,518.18 1375.52,518.43 1377.59,531.99 "
-       id="polygon27918" />
-    <line
-       x1="1620.63"
-       y1="481.32999"
-       x2="1619.9"
-       y2="480.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.45,518.95 1372.93,518.91 1375,532.47 "
-       id="polygon27922" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1375.52,518.43 1375.11,518.64 1377.18,532.21 "
-       id="polygon27924" />
-    <line
-       x1="1591.5"
-       y1="562.25"
-       x2="1593.83"
-       y2="562.90002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27926" />
-    <line
-       x1="1478.39"
-       y1="512.44"
-       x2="1475.87"
-       y2="508.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.02,518.92 1373.45,518.95 1375.52,532.52 "
-       id="polygon27930" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1402.11,549.88 1401.92,549.77 1416.13,548.68 "
-       id="polygon27932" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1375.11,518.64 1374.59,518.82 1376.67,532.38 "
-       id="polygon27934" />
-    <line
-       x1="1357.38"
-       y1="255"
-       x2="1359.54"
-       y2="256.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27936" />
-    <line
-       x1="1525.58"
-       y1="368.14999"
-       x2="1523.74"
-       y2="370.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27938" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.59,518.82 1374.02,518.92 1376.1,532.49 "
-       id="polygon27940" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1362,559.06 1362.41,559.12 1372.96,554.46 "
-       id="polygon27942" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1379.92,548.81 1380.01,549.32 1383.92,542.14 "
-       id="polygon27944" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1363.64,562.24 1363.38,562.51 1373.93,557.84 "
-       id="polygon27946" />
-    <line
-       x1="1571.03"
-       y1="514.09998"
-       x2="1568.54"
-       y2="517.15002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27948" />
-    <line
-       x1="1491.02"
-       y1="428.89001"
-       x2="1494.45"
-       y2="426.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27950" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1372.23,518.14 1372.15,518.38 1370.07,504.8 "
-       id="polygon27952" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.01,549.32 1380.26,549.82 1384.18,542.63 "
-       id="polygon27954" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1362.41,559.12 1362.82,559.36 1373.38,554.69 "
-       id="polygon27956" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1382.28,550.71 1382.79,550.56 1386.7,543.38 "
-       id="polygon27958" />
-    <line
-       x1="1619.9"
-       y1="480.14999"
-       x2="1619.3199"
-       y2="478.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27960" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1363.8,561.83 1363.64,562.24 1374.2,557.57 "
-       id="polygon27962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.26,549.82 1380.66,550.24 1384.57,543.05 "
-       id="polygon27964" />
-    <line
-       x1="1481.17"
-       y1="515.79999"
-       x2="1478.39"
-       y2="512.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27966" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1381.72,550.71 1382.28,550.71 1386.2,543.53 "
-       id="polygon27968" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1380.66,550.24 1381.16,550.54 1385.08,543.36 "
-       id="polygon27970" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1401.75,549.85 1401.61,550.11 1415.82,549.02 "
-       id="polygon27972" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1381.16,550.54 1381.72,550.71 1385.64,543.53 "
-       id="polygon27974" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1362.82,559.36 1363.21,559.73 1373.76,555.07 "
-       id="polygon27976" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1363.84,561.32 1363.8,561.83 1374.36,557.16 "
-       id="polygon27978" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1363.21,559.73 1363.52,560.22 1374.08,555.55 "
-       id="polygon27980" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1363.74,560.77 1363.84,561.32 1374.39,556.66 "
-       id="polygon27982" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1363.52,560.22 1363.74,560.77 1374.3,556.1 "
-       id="polygon27984" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1416.74,552.09 1416.6,552.34 1402.38,553.43 "
-       id="polygon27986" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1401.84,553.13 1402.02,553.41 1416.24,552.32 "
-       id="polygon27988" />
-    <line
-       x1="1359.54"
-       y1="256.04999"
-       x2="1361.59"
-       y2="257.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27990" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1401.61,550.11 1401.51,550.51 1415.73,549.42 "
-       id="polygon27992" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1372.25,518.61 1372.51,518.79 1370.43,505.2 "
-       id="polygon27994" />
-    <line
-       x1="1527.59"
-       y1="366.10001"
-       x2="1525.58"
-       y2="368.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.68,552.71 1401.84,553.13 1416.06,552.04 "
-       id="polygon27998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.51,550.51 1401.47,551.03 1415.68,549.94 "
-       id="polygon28000" />
-    <line
-       x1="1484.2"
-       y1="518.96002"
-       x2="1481.17"
-       y2="515.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28002" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1373.41,503.95 1373.68,504.13 1375.76,517.71 "
-       id="polygon28004" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1375.52,518.43 1375.77,518.18 1373.7,504.6 "
-       id="polygon28006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.55,552.18 1401.68,552.71 1415.9,551.62 "
-       id="polygon28008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.47,551.03 1401.48,551.61 1415.7,550.51 "
-       id="polygon28010" />
-    <line
-       x1="1568.54"
-       y1="517.15002"
-       x2="1565.78"
-       y2="520.03998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28012" />
-    <line
-       x1="1399.29"
-       y1="250.61"
-       x2="1399.72"
-       y2="250.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28014" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1401.48,551.61 1401.55,552.18 1415.77,551.09 "
-       id="polygon28016" />
-    <line
-       x1="1400.6"
-       y1="251.24001"
-       x2="1401.05"
-       y2="251.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28018" />
-    <line
-       x1="1398.48"
-       y1="250.10001"
-       x2="1398.88"
-       y2="250.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28020" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.51,518.79 1372.93,518.91 1370.85,505.32 "
-       id="polygon28022" />
-    <line
-       x1="1589.24"
-       y1="561.32001"
-       x2="1591.5"
-       y2="562.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28024" />
-    <line
-       x1="1494.45"
-       y1="426.67999"
-       x2="1498.02"
-       y2="424.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28026" />
-    <line
-       x1="1401.52"
-       y1="251.56"
-       x2="1401.98"
-       y2="251.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28028" />
-    <line
-       x1="1397.73"
-       y1="249.53999"
-       x2="1398.1"
-       y2="249.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28030" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1375.11,518.64 1375.52,518.43 1373.44,504.84 "
-       id="polygon28032" />
-    <line
-       x1="1403.42"
-       y1="251.92999"
-       x2="1403.91"
-       y2="251.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28034" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.93,518.91 1373.45,518.95 1371.37,505.36 "
-       id="polygon28036" />
-    <line
-       x1="1396.73"
-       y1="248.61"
-       x2="1397.04"
-       y2="248.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28038" />
-    <line
-       x1="1404.39"
-       y1="251.97"
-       x2="1404.88"
-       y2="251.96001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28040" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1374.59,518.82 1375.11,518.64 1373.03,505.06 "
-       id="polygon28042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1373.45,518.95 1374.02,518.92 1371.95,505.33 "
-       id="polygon28044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1374.02,518.92 1374.59,518.82 1372.52,505.23 "
-       id="polygon28046" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1415.82,549.02 1415.96,548.76 1401.75,549.85 "
-       id="polygon28048" />
-    <line
-       x1="1405.36"
-       y1="251.91"
-       x2="1405.84"
-       y2="251.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28050" />
-    <line
-       x1="1487.45"
-       y1="521.88"
-       x2="1484.2"
-       y2="518.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28052" />
-    <line
-       x1="1361.59"
-       y1="257.28"
-       x2="1363.53"
-       y2="258.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28054" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1370.43,505.2 1370.16,505.02 1372.25,518.61 "
-       id="polygon28056" />
-    <line
-       x1="1395.88"
-       y1="247.62"
-       x2="1396.14"
-       y2="247.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28058" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1415.73,549.42 1415.82,549.02 1401.61,550.11 "
-       id="polygon28060" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.85,505.32 1370.43,505.2 1372.51,518.79 "
-       id="polygon28062" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1373.7,504.6 1373.44,504.84 1375.52,518.43 "
-       id="polygon28064" />
-    <line
-       x1="1565.78"
-       y1="520.03998"
-       x2="1562.78"
-       y2="522.72998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28066" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1416.24,552.32 1416.06,552.04 1401.84,553.13 "
-       id="polygon28068" />
-    <line
-       x1="1395.2"
-       y1="246.61"
-       x2="1395.41"
-       y2="246.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28070" />
-    <line
-       x1="1529.73"
-       y1="364.25"
-       x2="1527.59"
-       y2="366.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28072" />
-    <line
-       x1="1388.88"
-       y1="288.81"
-       x2="1412.92"
-       y2="251.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28074" />
-    <line
-       x1="1618.89"
-       y1="477.57001"
-       x2="1618.61"
-       y2="476.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.68,549.94 1415.73,549.42 1401.51,550.51 "
-       id="polygon28078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.37,505.36 1370.85,505.32 1372.93,518.91 "
-       id="polygon28080" />
-    <line
-       x1="1490.91"
-       y1="524.54999"
-       x2="1487.45"
-       y2="521.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28082" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1416.06,552.04 1415.9,551.62 1401.68,552.71 "
-       id="polygon28084" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1373.44,504.84 1373.03,505.06 1375.11,518.64 "
-       id="polygon28086" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.7,550.51 1415.68,549.94 1401.47,551.03 "
-       id="polygon28088" />
-    <line
-       x1="1498.02"
-       y1="424.73999"
-       x2="1501.6801"
-       y2="423.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28090" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.9,551.62 1415.77,551.09 1401.55,552.18 "
-       id="polygon28092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.95,505.33 1371.37,505.36 1373.45,518.95 "
-       id="polygon28094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.77,551.09 1415.7,550.51 1401.48,551.61 "
-       id="polygon28096" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1373.03,505.06 1372.52,505.23 1374.59,518.82 "
-       id="polygon28098" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1383.92,542.14 1383.83,541.63 1379.92,548.81 "
-       id="polygon28100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1372.52,505.23 1371.95,505.33 1374.02,518.92 "
-       id="polygon28102" />
-    <line
-       x1="1363.53"
-       y1="258.67001"
-       x2="1365.34"
-       y2="260.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28104" />
-    <line
-       x1="1394.7"
-       y1="245.63"
-       x2="1394.85"
-       y2="245.95"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.18,542.63 1383.92,542.14 1380.01,549.32 "
-       id="polygon28108" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1387.11,543.08 1386.7,543.38 1382.79,550.56 "
-       id="polygon28110" />
-    <line
-       x1="1587.0699"
-       y1="560.12"
-       x2="1589.24"
-       y2="561.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28112" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.57,543.05 1384.18,542.63 1380.26,549.82 "
-       id="polygon28114" />
-    <line
-       x1="1494.5699"
-       y1="526.96002"
-       x2="1490.91"
-       y2="524.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28116" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1370.15,504.55 1370.07,504.8 1367.99,491.2 "
-       id="polygon28118" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1386.7,543.38 1386.2,543.53 1382.28,550.71 "
-       id="polygon28120" />
-    <line
-       x1="1364.45"
-       y1="295.10999"
-       x2="1362.4301"
-       y2="295.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28122" />
-    <line
-       x1="1562.78"
-       y1="522.72998"
-       x2="1559.55"
-       y2="525.21002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28124" />
-    <line
-       x1="1362.4301"
-       y1="295.23001"
-       x2="1360.4301"
-       y2="295.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28126" />
-    <line
-       x1="1366.46"
-       y1="294.95001"
-       x2="1364.45"
-       y2="295.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1385.08,543.36 1384.57,543.05 1380.66,550.24 "
-       id="polygon28130" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1386.2,543.53 1385.64,543.53 1381.72,550.71 "
-       id="polygon28132" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1385.64,543.53 1385.08,543.36 1381.16,550.54 "
-       id="polygon28134" />
-    <line
-       x1="1360.4301"
-       y1="295.31"
-       x2="1358.4399"
-       y2="295.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28136" />
-    <line
-       x1="1368.48"
-       y1="294.73999"
-       x2="1366.46"
-       y2="294.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28138" />
-    <line
-       x1="1618.61"
-       y1="476.19"
-       x2="1618.48"
-       y2="474.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28140" />
-    <line
-       x1="1358.4399"
-       y1="295.35999"
-       x2="1356.48"
-       y2="295.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28142" />
-    <line
-       x1="1370.48"
-       y1="294.48001"
-       x2="1368.48"
-       y2="294.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28144" />
-    <line
-       x1="1394.38"
-       y1="244.71001"
-       x2="1394.47"
-       y2="245"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28146" />
-    <line
-       x1="1356.48"
-       y1="295.38"
-       x2="1354.54"
-       y2="295.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28148" />
-    <line
-       x1="1372.48"
-       y1="294.17999"
-       x2="1370.48"
-       y2="294.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28150" />
-    <line
-       x1="1532.02"
-       y1="362.62"
-       x2="1529.73"
-       y2="364.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28152" />
-    <line
-       x1="1498.39"
-       y1="529.10999"
-       x2="1494.5699"
-       y2="526.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28154" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1370.16,505.02 1370.43,505.2 1368.35,491.59 "
-       id="polygon28156" />
-    <line
-       x1="1365.34"
-       y1="260.20999"
-       x2="1367"
-       y2="261.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28158" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1362.41,559.12 1362,559.06 1351.41,563.73 "
-       id="polygon28160" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1416.32,548.79 1416.13,548.68 1430.38,547.59 "
-       id="polygon28162" />
-    <line
-       x1="1354.54"
-       y1="295.37"
-       x2="1352.64"
-       y2="295.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28164" />
-    <line
-       x1="1559.55"
-       y1="525.21002"
-       x2="1556.1"
-       y2="527.46997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28166" />
-    <line
-       x1="1501.6801"
-       y1="423.09"
-       x2="1505.4301"
-       y2="421.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28168" />
-    <line
-       x1="1374.45"
-       y1="293.82999"
-       x2="1372.48"
-       y2="294.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28170" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1371.34,490.35 1371.61,490.52 1373.68,504.13 "
-       id="polygon28172" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1373.44,504.84 1373.7,504.6 1371.62,490.99 "
-       id="polygon28174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.43,505.2 1370.85,505.32 1368.77,491.71 "
-       id="polygon28176" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1362.82,559.36 1362.41,559.12 1351.82,563.8 "
-       id="polygon28178" />
-    <line
-       x1="1502.35"
-       y1="530.96002"
-       x2="1498.39"
-       y2="529.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28180" />
-    <line
-       x1="1376.4"
-       y1="293.41"
-       x2="1374.45"
-       y2="293.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28182" />
-    <line
-       x1="1352.64"
-       y1="295.34"
-       x2="1350.77"
-       y2="295.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28184" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1373.03,505.06 1373.44,504.84 1371.36,491.23 "
-       id="polygon28186" />
-    <line
-       x1="1618.48"
-       y1="474.76999"
-       x2="1618.52"
-       y2="473.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.85,505.32 1371.37,505.36 1369.29,491.75 "
-       id="polygon28190" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1363.21,559.73 1362.82,559.36 1352.23,564.04 "
-       id="polygon28192" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1363.64,562.24 1363.8,561.83 1353.21,566.51 "
-       id="polygon28194" />
-    <line
-       x1="1394.21"
-       y1="243.67"
-       x2="1394.22"
-       y2="243.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28196" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1372.52,505.23 1373.03,505.06 1370.95,491.45 "
-       id="polygon28198" />
-    <line
-       x1="1585"
-       y1="558.65997"
-       x2="1587.0699"
-       y2="560.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28200" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.37,505.36 1371.95,505.33 1369.86,491.72 "
-       id="polygon28202" />
-    <line
-       x1="1556.1"
-       y1="527.46997"
-       x2="1552.47"
-       y2="529.47998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28204" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1371.95,505.33 1372.52,505.23 1370.44,491.62 "
-       id="polygon28206" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1415.96,548.76 1415.82,549.02 1430.07,547.92 "
-       id="polygon28208" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1363.52,560.22 1363.21,559.73 1352.61,564.41 "
-       id="polygon28210" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1363.8,561.83 1363.84,561.32 1353.25,566 "
-       id="polygon28212" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1368.35,491.59 1368.09,491.41 1370.16,505.02 "
-       id="polygon28214" />
-    <line
-       x1="1378.3199"
-       y1="292.95001"
-       x2="1376.4"
-       y2="293.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28216" />
-    <line
-       x1="1350.77"
-       y1="295.29001"
-       x2="1348.95"
-       y2="295.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28218" />
-    <line
-       x1="1506.4399"
-       y1="532.52002"
-       x2="1502.35"
-       y2="530.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28220" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1363.74,560.77 1363.52,560.22 1352.93,564.9 "
-       id="polygon28222" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1363.84,561.32 1363.74,560.77 1353.15,565.45 "
-       id="polygon28224" />
-    <line
-       x1="1367"
-       y1="261.89001"
-       x2="1368.52"
-       y2="263.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28226" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1430.98,551 1430.84,551.25 1416.6,552.34 "
-       id="polygon28228" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1416.06,552.04 1416.24,552.32 1430.49,551.23 "
-       id="polygon28230" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1415.82,549.02 1415.73,549.42 1429.98,548.33 "
-       id="polygon28232" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.77,491.71 1368.35,491.59 1370.43,505.2 "
-       id="polygon28234" />
-    <line
-       x1="1534.42"
-       y1="361.20001"
-       x2="1532.02"
-       y2="362.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28236" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1371.62,490.99 1371.36,491.23 1373.44,504.84 "
-       id="polygon28238" />
-    <line
-       x1="1380.2"
-       y1="292.41"
-       x2="1378.3199"
-       y2="292.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28240" />
-    <line
-       x1="1552.47"
-       y1="529.47998"
-       x2="1548.66"
-       y2="531.22998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28242" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.9,551.62 1416.06,552.04 1430.31,550.95 "
-       id="polygon28244" />
-    <line
-       x1="1510.63"
-       y1="533.78998"
-       x2="1506.4399"
-       y2="532.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.73,549.42 1415.68,549.94 1429.94,548.84 "
-       id="polygon28248" />
-    <line
-       x1="1348.95"
-       y1="295.23001"
-       x2="1347.1801"
-       y2="295.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.29,491.75 1368.77,491.71 1370.85,505.32 "
-       id="polygon28252" />
-    <line
-       x1="1618.52"
-       y1="473.31"
-       x2="1618.71"
-       y2="471.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.77,551.09 1415.9,551.62 1430.15,550.53 "
-       id="polygon28256" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.68,549.94 1415.7,550.51 1429.95,549.42 "
-       id="polygon28258" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1371.36,491.23 1370.95,491.45 1373.03,505.06 "
-       id="polygon28260" />
-    <line
-       x1="1505.4301"
-       y1="421.73999"
-       x2="1509.22"
-       y2="420.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.7,550.51 1415.77,551.09 1430.03,550 "
-       id="polygon28264" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.86,491.72 1369.29,491.75 1371.37,505.36 "
-       id="polygon28266" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1370.95,491.45 1370.44,491.62 1372.52,505.23 "
-       id="polygon28268" />
-    <line
-       x1="1318.84"
-       y1="397.92001"
-       x2="1314.95"
-       y2="396.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28270" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1370.44,491.62 1369.86,491.72 1371.95,505.33 "
-       id="polygon28272" />
-    <line
-       x1="1514.89"
-       y1="534.72998"
-       x2="1510.63"
-       y2="533.78998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28274" />
-    <line
-       x1="1548.66"
-       y1="531.22998"
-       x2="1544.71"
-       y2="532.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28276" />
-    <line
-       x1="1322.79"
-       y1="399.07001"
-       x2="1318.84"
-       y2="397.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28278" />
-    <line
-       x1="1382.04"
-       y1="291.82001"
-       x2="1380.2"
-       y2="292.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28280" />
-    <line
-       x1="1314.95"
-       y1="396.67999"
-       x2="1311.13"
-       y2="395.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28282" />
-    <line
-       x1="1347.1801"
-       y1="295.14999"
-       x2="1345.46"
-       y2="295.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28284" />
-    <line
-       x1="1326.77"
-       y1="400.13"
-       x2="1322.79"
-       y2="399.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28286" />
-    <line
-       x1="1519.2"
-       y1="535.38"
-       x2="1514.89"
-       y2="534.72998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28288" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1430.07,547.92 1430.21,547.66 1415.96,548.76 "
-       id="polygon28290" />
-    <line
-       x1="1368.52"
-       y1="263.70001"
-       x2="1369.88"
-       y2="265.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28292" />
-    <line
-       x1="1544.71"
-       y1="532.71002"
-       x2="1540.63"
-       y2="533.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28294" />
-    <line
-       x1="1311.13"
-       y1="395.35999"
-       x2="1307.41"
-       y2="393.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28296" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1351.41,563.73 1351.82,563.8 1362.41,559.12 "
-       id="polygon28298" />
-    <line
-       x1="1394.34"
-       y1="242.77"
-       x2="1394.29"
-       y2="242.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28300" />
-    <line
-       x1="1583.04"
-       y1="556.95001"
-       x2="1585"
-       y2="558.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28302" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1353.05,566.92 1352.79,567.2 1363.38,562.51 "
-       id="polygon28304" />
-    <line
-       x1="1523.54"
-       y1="535.70001"
-       x2="1519.2"
-       y2="535.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28306" />
-    <line
-       x1="1383.83"
-       y1="291.17001"
-       x2="1382.04"
-       y2="291.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28308" />
-    <line
-       x1="1540.63"
-       y1="533.90997"
-       x2="1536.4399"
-       y2="534.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28310" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1429.98,548.33 1430.07,547.92 1415.82,549.02 "
-       id="polygon28312" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1351.82,563.8 1352.23,564.04 1362.82,559.36 "
-       id="polygon28314" />
-    <line
-       x1="1527.88"
-       y1="535.71997"
-       x2="1523.54"
-       y2="535.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28316" />
-    <line
-       x1="1618.71"
-       y1="471.82001"
-       x2="1619.0699"
-       y2="470.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28318" />
-    <line
-       x1="1536.4399"
-       y1="534.82001"
-       x2="1532.1801"
-       y2="535.41998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28320" />
-    <line
-       x1="1532.1801"
-       y1="535.41998"
-       x2="1527.88"
-       y2="535.71997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28322" />
-    <line
-       x1="1330.77"
-       y1="401.07999"
-       x2="1326.77"
-       y2="400.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28324" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1430.49,551.23 1430.31,550.95 1416.06,552.04 "
-       id="polygon28326" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1353.21,566.51 1353.05,566.92 1363.64,562.24 "
-       id="polygon28328" />
-    <line
-       x1="1345.46"
-       y1="295.07001"
-       x2="1343.8101"
-       y2="295"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28330" />
-    <line
-       x1="1307.41"
-       y1="393.98999"
-       x2="1303.8"
-       y2="392.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.94,548.84 1429.98,548.33 1415.73,549.42 "
-       id="polygon28334" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1352.23,564.04 1352.61,564.41 1363.21,559.73 "
-       id="polygon28336" />
-    <line
-       x1="1536.92"
-       y1="360.01999"
-       x2="1534.42"
-       y2="361.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28338" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1369.25,476.72 1369.52,476.9 1371.61,490.52 "
-       id="polygon28340" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1371.62,490.99 1371.7,490.75 1369.62,477.12 "
-       id="polygon28342" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1353.25,566 1353.21,566.51 1363.8,561.83 "
-       id="polygon28344" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.31,550.95 1430.15,550.53 1415.9,551.62 "
-       id="polygon28346" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1352.61,564.41 1352.93,564.9 1363.52,560.22 "
-       id="polygon28348" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.95,549.42 1429.94,548.84 1415.68,549.94 "
-       id="polygon28350" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1368.09,491.41 1368.35,491.59 1366.27,477.96 "
-       id="polygon28352" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1353.15,565.45 1353.25,566 1363.84,561.32 "
-       id="polygon28354" />
-    <line
-       x1="1385.5699"
-       y1="290.45001"
-       x2="1383.83"
-       y2="291.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28356" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1352.93,564.9 1353.15,565.45 1363.74,560.77 "
-       id="polygon28358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.15,550.53 1430.03,550 1415.77,551.09 "
-       id="polygon28360" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.03,550 1429.95,549.42 1415.7,550.51 "
-       id="polygon28362" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1371.36,491.23 1371.62,490.99 1369.54,477.36 "
-       id="polygon28364" />
-    <line
-       x1="1509.22"
-       y1="420.69"
-       x2="1513.05"
-       y2="419.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28366" />
-    <line
-       x1="1369.88"
-       y1="265.63"
-       x2="1371.0699"
-       y2="267.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28368" />
-    <line
-       x1="1334.75"
-       y1="401.89999"
-       x2="1330.77"
-       y2="401.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.35,491.59 1368.77,491.71 1366.68,478.08 "
-       id="polygon28372" />
-    <line
-       x1="1343.8101"
-       y1="295"
-       x2="1342.21"
-       y2="294.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28374" />
-    <line
-       x1="1303.8"
-       y1="392.57001"
-       x2="1300.3199"
-       y2="391.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28376" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1370.95,491.45 1371.36,491.23 1369.28,477.6 "
-       id="polygon28378" />
-    <line
-       x1="1619.0699"
-       y1="470.32999"
-       x2="1619.58"
-       y2="468.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.77,491.71 1369.29,491.75 1367.2,478.13 "
-       id="polygon28382" />
-    <line
-       x1="1387.25"
-       y1="289.66"
-       x2="1385.5699"
-       y2="290.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28384" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1370.44,491.62 1370.95,491.45 1368.87,477.82 "
-       id="polygon28386" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.29,491.75 1369.86,491.72 1367.78,478.09 "
-       id="polygon28388" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1369.86,491.72 1370.44,491.62 1368.36,477.99 "
-       id="polygon28390" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1384.59,540.43 1384.18,540.73 1388.11,533.51 "
-       id="polygon28392" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1366.27,477.96 1366,477.79 1368.09,491.41 "
-       id="polygon28394" />
-    <line
-       x1="1581.23"
-       y1="555"
-       x2="1583.04"
-       y2="556.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28396" />
-    <line
-       x1="1338.72"
-       y1="402.59"
-       x2="1334.75"
-       y2="401.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28398" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.68,478.08 1366.27,477.96 1368.35,491.59 "
-       id="polygon28400" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1369.54,477.36 1369.28,477.6 1371.36,491.23 "
-       id="polygon28402" />
-    <line
-       x1="1388.88"
-       y1="288.81"
-       x2="1387.25"
-       y2="289.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28404" />
-    <line
-       x1="1539.51"
-       y1="359.07999"
-       x2="1536.92"
-       y2="360.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28406" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1430.57,547.69 1430.38,547.59 1444.66,546.49 "
-       id="polygon28408" />
-    <line
-       x1="1395.28"
-       y1="242.37"
-       x2="1394.77"
-       y2="242.42"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28410" />
-    <line
-       x1="1300.3199"
-       y1="391.12"
-       x2="1296.99"
-       y2="389.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28412" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.2,478.13 1366.68,478.08 1368.77,491.71 "
-       id="polygon28414" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1383.83,541.63 1383.92,542.14 1387.85,534.93 "
-       id="polygon28416" />
-    <line
-       x1="1619.58"
-       y1="468.82999"
-       x2="1620.25"
-       y2="467.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28418" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1369.28,477.6 1368.87,477.82 1370.95,491.45 "
-       id="polygon28420" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1386.7,543.38 1387.11,543.08 1391.04,535.87 "
-       id="polygon28422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.78,478.09 1367.2,478.13 1369.29,491.75 "
-       id="polygon28424" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1368.87,477.82 1368.36,477.99 1370.44,491.62 "
-       id="polygon28426" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1383.92,542.14 1384.18,542.63 1388.11,535.42 "
-       id="polygon28428" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1368.36,477.99 1367.78,478.09 1369.86,491.72 "
-       id="polygon28430" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1386.2,543.53 1386.7,543.38 1390.64,536.17 "
-       id="polygon28432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.18,542.63 1384.57,543.05 1388.51,535.84 "
-       id="polygon28434" />
-    <line
-       x1="1513.05"
-       y1="419.95001"
-       x2="1516.88"
-       y2="419.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28436" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1385.64,543.53 1386.2,543.53 1390.13,536.32 "
-       id="polygon28438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1384.57,543.05 1385.08,543.36 1389.01,536.15 "
-       id="polygon28440" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1385.08,543.36 1385.64,543.53 1389.57,536.32 "
-       id="polygon28442" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1445.26,549.9 1445.12,550.16 1430.84,551.25 "
-       id="polygon28444" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1430.49,551.23 1430.67,551.33 1444.95,550.24 "
-       id="polygon28446" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1430.21,547.66 1430.07,547.92 1444.35,546.82 "
-       id="polygon28448" />
-    <line
-       x1="1342.64"
-       y1="403.14001"
-       x2="1338.72"
-       y2="402.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28450" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1430.31,550.95 1430.49,551.23 1444.77,550.13 "
-       id="polygon28452" />
-    <line
-       x1="1579.5601"
-       y1="552.81"
-       x2="1581.23"
-       y2="555"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28454" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1430.07,547.92 1429.98,548.33 1444.26,547.23 "
-       id="polygon28456" />
-    <line
-       x1="1620.25"
-       y1="467.34"
-       x2="1621.0699"
-       y2="465.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28458" />
-    <line
-       x1="1296.99"
-       y1="389.66"
-       x2="1293.8199"
-       y2="388.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28460" />
-    <line
-       x1="1396.34"
-       y1="242.48"
-       x2="1395.8101"
-       y2="242.39"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.15,550.53 1430.31,550.95 1444.59,549.86 "
-       id="polygon28464" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.98,548.33 1429.94,548.84 1444.22,547.75 "
-       id="polygon28466" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1367.17,463.07 1367.44,463.25 1369.52,476.9 "
-       id="polygon28468" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1369.54,477.36 1369.62,477.12 1367.54,463.47 "
-       id="polygon28470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1430.03,550 1430.15,550.53 1444.43,549.43 "
-       id="polygon28472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.94,548.84 1429.95,549.42 1444.23,548.32 "
-       id="polygon28474" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.95,549.42 1430.03,550 1444.31,548.91 "
-       id="polygon28476" />
-    <line
-       x1="1372.41"
-       y1="270.63"
-       x2="1372.66"
-       y2="271.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28478" />
-    <line
-       x1="1542.16"
-       y1="358.38"
-       x2="1539.51"
-       y2="359.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28480" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1366,477.79 1366.27,477.96 1364.18,464.32 "
-       id="polygon28482" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1369.28,477.6 1369.54,477.36 1367.45,463.71 "
-       id="polygon28484" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1351.82,563.8 1351.41,563.73 1340.79,568.43 "
-       id="polygon28486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.27,477.96 1366.68,478.08 1364.6,464.43 "
-       id="polygon28488" />
-    <line
-       x1="1346.49"
-       y1="403.54001"
-       x2="1342.64"
-       y2="403.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28490" />
-    <line
-       x1="1621.0699"
-       y1="465.87"
-       x2="1622.04"
-       y2="464.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28492" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1444.35,546.82 1444.49,546.57 1430.21,547.66 "
-       id="polygon28494" />
-    <line
-       x1="1378.5601"
-       y1="260.44"
-       x2="1379.09"
-       y2="261.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28496" />
-    <line
-       x1="1379.09"
-       y1="261.26001"
-       x2="1379.67"
-       y2="262.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28498" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1368.87,477.82 1369.28,477.6 1367.19,463.95 "
-       id="polygon28500" />
-    <line
-       x1="1379.67"
-       y1="262.06"
-       x2="1380.29"
-       y2="262.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28502" />
-    <line
-       x1="1377.65"
-       y1="258.73001"
-       x2="1378.08"
-       y2="259.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28504" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.68,478.08 1367.2,478.13 1365.12,464.47 "
-       id="polygon28506" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1352.23,564.04 1351.82,563.8 1341.19,568.5 "
-       id="polygon28508" />
-    <line
-       x1="1380.29"
-       y1="262.82001"
-       x2="1380.96"
-       y2="263.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28510" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1352.79,567.2 1353.05,566.92 1342.43,571.62 "
-       id="polygon28512" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1368.36,477.99 1368.87,477.82 1366.78,464.17 "
-       id="polygon28514" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.2,478.13 1367.78,478.09 1365.69,464.44 "
-       id="polygon28516" />
-    <line
-       x1="1516.88"
-       y1="419.51999"
-       x2="1520.6899"
-       y2="419.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1367.78,478.09 1368.36,477.99 1366.27,464.34 "
-       id="polygon28520" />
-    <line
-       x1="1376.96"
-       y1="256.98001"
-       x2="1377.28"
-       y2="257.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28522" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1444.26,547.23 1444.35,546.82 1430.07,547.92 "
-       id="polygon28524" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1364.18,464.32 1363.91,464.14 1366,477.79 "
-       id="polygon28526" />
-    <line
-       x1="1293.8199"
-       y1="388.19"
-       x2="1290.83"
-       y2="386.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28528" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1352.61,564.41 1352.23,564.04 1341.6,568.73 "
-       id="polygon28530" />
-    <line
-       x1="1381.67"
-       y1="264.23999"
-       x2="1382.42"
-       y2="264.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28532" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1353.05,566.92 1353.21,566.51 1342.59,571.21 "
-       id="polygon28534" />
-    <line
-       x1="1397.4301"
-       y1="242.89"
-       x2="1396.89"
-       y2="242.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28536" />
-    <line
-       x1="1578.0699"
-       y1="550.41998"
-       x2="1579.5601"
-       y2="552.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28538" />
-    <line
-       x1="1337.85"
-       y1="294.76001"
-       x2="1336.54"
-       y2="294.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28540" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1444.77,550.13 1444.59,549.86 1430.31,550.95 "
-       id="polygon28542" />
-    <line
-       x1="1376.7"
-       y1="256.10001"
-       x2="1376.96"
-       y2="256.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28544" />
-    <line
-       x1="1382.42"
-       y1="264.88"
-       x2="1383.2"
-       y2="265.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28546" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1352.93,564.9 1352.61,564.41 1341.99,569.11 "
-       id="polygon28548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.22,547.75 1444.26,547.23 1429.98,548.33 "
-       id="polygon28550" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1353.21,566.51 1353.25,566 1342.62,570.7 "
-       id="polygon28552" />
-    <line
-       x1="1376.5"
-       y1="255.23"
-       x2="1376.7"
-       y2="256.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28554" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1353.15,565.45 1352.93,564.9 1342.3,569.6 "
-       id="polygon28556" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1353.25,566 1353.15,565.45 1342.52,570.15 "
-       id="polygon28558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.6,464.43 1364.18,464.32 1366.27,477.96 "
-       id="polygon28560" />
-    <line
-       x1="1383.2"
-       y1="265.47"
-       x2="1384.01"
-       y2="266"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28562" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1387.85,534.93 1387.76,534.41 1383.83,541.63 "
-       id="polygon28564" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.23,548.32 1444.22,547.75 1429.94,548.84 "
-       id="polygon28566" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1367.45,463.71 1367.19,463.95 1369.28,477.6 "
-       id="polygon28568" />
-    <line
-       x1="1622.04"
-       y1="464.42999"
-       x2="1623.16"
-       y2="463.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28570" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.43,549.43 1444.31,548.91 1430.03,550 "
-       id="polygon28572" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.31,548.91 1444.23,548.32 1429.95,549.42 "
-       id="polygon28574" />
-    <line
-       x1="1372.84"
-       y1="272.37"
-       x2="1372.95"
-       y2="273.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28576" />
-    <line
-       x1="1376.35"
-       y1="254.38"
-       x2="1376.5"
-       y2="255.23"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.12,464.47 1364.6,464.43 1366.68,478.08 "
-       id="polygon28580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.11,535.42 1387.85,534.93 1383.92,542.14 "
-       id="polygon28582" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1367.19,463.95 1366.78,464.17 1368.87,477.82 "
-       id="polygon28584" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1391.04,535.87 1390.64,536.17 1386.7,543.38 "
-       id="polygon28586" />
-    <line
-       x1="1544.86"
-       y1="357.92999"
-       x2="1542.16"
-       y2="358.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.69,464.44 1365.12,464.47 1367.2,478.13 "
-       id="polygon28590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.51,535.84 1388.11,535.42 1384.18,542.63 "
-       id="polygon28592" />
-    <line
-       x1="1376.26"
-       y1="253.53999"
-       x2="1376.35"
-       y2="254.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28594" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1366.78,464.17 1366.27,464.34 1368.36,477.99 "
-       id="polygon28596" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1390.64,536.17 1390.13,536.32 1386.2,543.53 "
-       id="polygon28598" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1366.27,464.34 1365.69,464.44 1367.78,478.09 "
-       id="polygon28600" />
-    <line
-       x1="1384.85"
-       y1="266.48001"
-       x2="1385.71"
-       y2="266.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28602" />
-    <line
-       x1="1350.26"
-       y1="403.76999"
-       x2="1346.49"
-       y2="403.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1389.01,536.15 1388.51,535.84 1384.57,543.05 "
-       id="polygon28606" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1390.13,536.32 1389.57,536.32 1385.64,543.53 "
-       id="polygon28608" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1389.57,536.32 1389.01,536.15 1385.08,543.36 "
-       id="polygon28610" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1367.54,463.47 1367.45,463.71 1367.09,463.71 "
-       id="polygon28612" />
-    <line
-       x1="1336.54"
-       y1="294.73999"
-       x2="1335.3199"
-       y2="294.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28614" />
-    <line
-       x1="1376.22"
-       y1="252.71001"
-       x2="1376.26"
-       y2="253.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28616" />
-    <line
-       x1="1398.49"
-       y1="243.58"
-       x2="1397.96"
-       y2="243.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28618" />
-    <line
-       x1="1372.95"
-       y1="273.26001"
-       x2="1373"
-       y2="274.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28620" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1363.9,463.68 1363.82,463.92 1361.72,450.25 "
-       id="polygon28622" />
-    <line
-       x1="1623.16"
-       y1="463.04001"
-       x2="1624.41"
-       y2="461.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28624" />
-    <line
-       x1="1576.75"
-       y1="547.82001"
-       x2="1578.0699"
-       y2="550.41998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28626" />
-    <line
-       x1="1386.59"
-       y1="267.23999"
-       x2="1387.48"
-       y2="267.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28628" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1340.79,568.43 1341.19,568.5 1351.82,563.8 "
-       id="polygon28630" />
-    <line
-       x1="1520.6899"
-       y1="419.39999"
-       x2="1524.45"
-       y2="419.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28632" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1342.43,571.62 1342.16,571.89 1352.79,567.2 "
-       id="polygon28634" />
-    <line
-       x1="1387.48"
-       y1="267.53"
-       x2="1388.38"
-       y2="267.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28636" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1341.19,568.5 1341.6,568.73 1352.23,564.04 "
-       id="polygon28638" />
-    <line
-       x1="1376.3101"
-       y1="251.17"
-       x2="1376.24"
-       y2="251.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28640" />
-    <line
-       x1="1373"
-       y1="274.17001"
-       x2="1372.98"
-       y2="275.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28642" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1342.59,571.21 1342.43,571.62 1353.05,566.92 "
-       id="polygon28644" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1363.91,464.14 1364.18,464.32 1362.09,450.64 "
-       id="polygon28646" />
-    <line
-       x1="1388.38"
-       y1="267.73999"
-       x2="1389.29"
-       y2="267.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28648" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1341.6,568.73 1341.99,569.11 1352.61,564.41 "
-       id="polygon28650" />
-    <line
-       x1="1624.41"
-       y1="461.70001"
-       x2="1625.8"
-       y2="460.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28652" />
-    <line
-       x1="1335.3199"
-       y1="294.75"
-       x2="1334.1899"
-       y2="294.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28654" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1342.62,570.7 1342.59,571.21 1353.21,566.51 "
-       id="polygon28656" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1365.08,449.41 1365.35,449.58 1367.44,463.25 "
-       id="polygon28658" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1367.19,463.95 1367.45,463.71 1365.36,450.04 "
-       id="polygon28660" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1341.99,569.11 1342.3,569.6 1352.93,564.9 "
-       id="polygon28662" />
-    <line
-       x1="1376.4399"
-       y1="250.46001"
-       x2="1376.3101"
-       y2="251.17"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28664" />
-    <line
-       x1="1399.49"
-       y1="244.53999"
-       x2="1399"
-       y2="244.02"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28666" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1342.52,570.15 1342.62,570.7 1353.25,566 "
-       id="polygon28668" />
-    <line
-       x1="1547.58"
-       y1="357.73001"
-       x2="1544.86"
-       y2="357.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28670" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1342.3,569.6 1342.52,570.15 1353.15,565.45 "
-       id="polygon28672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.18,464.32 1364.6,464.43 1362.5,450.76 "
-       id="polygon28674" />
-    <line
-       x1="1353.92"
-       y1="403.84"
-       x2="1350.26"
-       y2="403.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28676" />
-    <line
-       x1="1389.29"
-       y1="267.89001"
-       x2="1390.2"
-       y2="267.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28678" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1459.57,548.81 1459.43,549.06 1445.12,550.16 "
-       id="polygon28680" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1444.77,550.13 1444.95,550.24 1459.27,549.14 "
-       id="polygon28682" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1444.49,546.57 1444.35,546.82 1458.66,545.72 "
-       id="polygon28684" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1366.78,464.17 1367.19,463.95 1365.1,450.28 "
-       id="polygon28686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.6,464.43 1365.12,464.47 1363.03,450.8 "
-       id="polygon28688" />
-    <line
-       x1="1372.98"
-       y1="275.07999"
-       x2="1372.89"
-       y2="275.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28690" />
-    <line
-       x1="1575.62"
-       y1="545.04999"
-       x2="1576.75"
-       y2="547.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28692" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1366.27,464.34 1366.78,464.17 1364.7,450.49 "
-       id="polygon28694" />
-    <line
-       x1="1376.62"
-       y1="249.78"
-       x2="1376.4399"
-       y2="250.46001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28696" />
-    <line
-       x1="1390.2"
-       y1="267.95999"
-       x2="1391.11"
-       y2="267.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28698" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.12,464.47 1365.69,464.44 1363.6,450.77 "
-       id="polygon28700" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1444.59,549.86 1444.77,550.13 1459.08,549.04 "
-       id="polygon28702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1365.69,464.44 1366.27,464.34 1364.18,450.66 "
-       id="polygon28704" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1444.35,546.82 1444.26,547.23 1458.57,546.13 "
-       id="polygon28706" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1362.09,450.64 1361.82,450.47 1363.91,464.14 "
-       id="polygon28708" />
-    <line
-       x1="1625.8"
-       y1="460.42001"
-       x2="1627.3101"
-       y2="459.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28710" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1365.45,449.8 1365.36,450.04 1367.45,463.71 "
-       id="polygon28712" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.43,549.43 1444.59,549.86 1458.9,548.76 "
-       id="polygon28714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.26,547.23 1444.22,547.75 1458.53,546.65 "
-       id="polygon28716" />
-    <line
-       x1="1391.11"
-       y1="267.95999"
-       x2="1392"
-       y2="267.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28718" />
-    <line
-       x1="1288.04"
-       y1="385.31"
-       x2="1285.45"
-       y2="383.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28720" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.31,548.91 1444.43,549.43 1458.75,548.34 "
-       id="polygon28722" />
-    <line
-       x1="1334.1899"
-       y1="294.78"
-       x2="1333.14"
-       y2="294.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28724" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.5,450.76 1362.09,450.64 1364.18,464.32 "
-       id="polygon28726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.22,547.75 1444.23,548.32 1458.55,547.23 "
-       id="polygon28728" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.23,548.32 1444.31,548.91 1458.63,547.81 "
-       id="polygon28730" />
-    <line
-       x1="1372.89"
-       y1="275.98999"
-       x2="1372.73"
-       y2="276.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28732" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1365.36,450.04 1365.1,450.28 1367.19,463.95 "
-       id="polygon28734" />
-    <line
-       x1="1400.41"
-       y1="245.73"
-       x2="1399.96"
-       y2="245.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28736" />
-    <line
-       x1="1392"
-       y1="267.88"
-       x2="1392.89"
-       y2="267.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28738" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1388.72,535.61 1388.4,535.27 1388.11,535.42 "
-       id="polygon28740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.03,450.8 1362.5,450.76 1364.6,464.43 "
-       id="polygon28742" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1365.1,450.28 1364.7,450.49 1366.78,464.17 "
-       id="polygon28744" />
-    <line
-       x1="1524.45"
-       y1="419.59"
-       x2="1528.15"
-       y2="420.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28746" />
-    <line
-       x1="1627.3101"
-       y1="459.20999"
-       x2="1628.9399"
-       y2="458.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28748" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.6,450.77 1363.03,450.8 1365.12,464.47 "
-       id="polygon28750" />
-    <line
-       x1="1377.11"
-       y1="248.58"
-       x2="1376.84"
-       y2="249.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28752" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1364.7,450.49 1364.18,450.66 1366.27,464.34 "
-       id="polygon28754" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1364.18,450.66 1363.6,450.77 1365.69,464.44 "
-       id="polygon28756" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1458.66,545.72 1458.8,545.47 1444.49,546.57 "
-       id="polygon28758" />
-    <line
-       x1="1400.8199"
-       y1="246.42"
-       x2="1400.41"
-       y2="245.73"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28760" />
-    <line
-       x1="1574.6899"
-       y1="542.10999"
-       x2="1575.62"
-       y2="545.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28762" />
-    <line
-       x1="1550.3199"
-       y1="357.79001"
-       x2="1547.58"
-       y2="357.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28764" />
-    <line
-       x1="1357.46"
-       y1="403.73001"
-       x2="1353.92"
-       y2="403.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28766" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1458.57,546.13 1458.66,545.72 1444.35,546.82 "
-       id="polygon28768" />
-    <line
-       x1="1393.75"
-       y1="267.51999"
-       x2="1394.6"
-       y2="267.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28770" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1361.81,450.01 1361.72,450.25 1359.63,436.56 "
-       id="polygon28772" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1459.08,549.04 1458.9,548.76 1444.59,549.86 "
-       id="polygon28774" />
-    <line
-       x1="1628.9399"
-       y1="458.09"
-       x2="1630.67"
-       y2="457.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28776" />
-    <line
-       x1="1333.14"
-       y1="294.85001"
-       x2="1332.17"
-       y2="294.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28778" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.53,546.65 1458.57,546.13 1444.26,547.23 "
-       id="polygon28780" />
-    <line
-       x1="1394.6"
-       y1="267.23001"
-       x2="1395.42"
-       y2="266.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.9,548.76 1458.75,548.34 1444.43,549.43 "
-       id="polygon28784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.55,547.23 1458.53,546.65 1444.22,547.75 "
-       id="polygon28786" />
-    <line
-       x1="1372.5"
-       y1="277.79999"
-       x2="1372.2"
-       y2="278.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.75,548.34 1458.63,547.81 1444.31,548.91 "
-       id="polygon28790" />
-    <line
-       x1="1401.55"
-       y1="247.94"
-       x2="1401.2"
-       y2="247.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.63,547.81 1458.55,547.23 1444.23,548.32 "
-       id="polygon28794" />
-    <line
-       x1="1377.77"
-       y1="247.61"
-       x2="1377.42"
-       y2="248.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28796" />
-    <line
-       x1="1395.42"
-       y1="266.88"
-       x2="1396.21"
-       y2="266.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28798" />
-    <line
-       x1="1285.45"
-       y1="383.92999"
-       x2="1283.08"
-       y2="382.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28800" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1361.82,450.47 1362.09,450.64 1360,436.95 "
-       id="polygon28802" />
-    <line
-       x1="1630.67"
-       y1="457.06"
-       x2="1632.5"
-       y2="456.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28804" />
-    <line
-       x1="1401.85"
-       y1="248.77"
-       x2="1401.55"
-       y2="247.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28806" />
-    <line
-       x1="1573.97"
-       y1="539.02002"
-       x2="1574.6899"
-       y2="542.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28808" />
-    <line
-       x1="1396.21"
-       y1="266.45001"
-       x2="1396.98"
-       y2="265.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28810" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1362.99,435.72 1363.26,435.89 1365.35,449.58 "
-       id="polygon28812" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1365.1,450.28 1365.36,450.04 1363.27,436.35 "
-       id="polygon28814" />
-    <line
-       x1="1372.2"
-       y1="278.69"
-       x2="1371.83"
-       y2="279.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.09,450.64 1362.5,450.76 1360.41,437.07 "
-       id="polygon28818" />
-    <line
-       x1="1402.11"
-       y1="249.63"
-       x2="1401.85"
-       y2="248.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28820" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1364.7,450.49 1365.1,450.28 1363.01,436.59 "
-       id="polygon28822" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1329.5,573.52 1329.77,573.25 1340.43,568.54 "
-       id="polygon28824" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1341.19,568.5 1340.79,568.43 1330.13,573.14 "
-       id="polygon28826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.5,450.76 1363.03,450.8 1360.93,437.11 "
-       id="polygon28828" />
-    <line
-       x1="1332.17"
-       y1="294.95001"
-       x2="1331.3"
-       y2="295.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28830" />
-    <line
-       x1="1528.15"
-       y1="420.09"
-       x2="1531.75"
-       y2="420.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28832" />
-    <line
-       x1="1632.5"
-       y1="456.13"
-       x2="1634.42"
-       y2="455.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28834" />
-    <line
-       x1="1553.04"
-       y1="358.10999"
-       x2="1550.3199"
-       y2="357.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28836" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1364.18,450.66 1364.7,450.49 1362.6,436.8 "
-       id="polygon28838" />
-    <line
-       x1="1397.7"
-       y1="265.39999"
-       x2="1398.38"
-       y2="264.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28840" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.03,450.8 1363.6,450.77 1361.51,437.07 "
-       id="polygon28842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1363.6,450.77 1364.18,450.66 1362.08,436.97 "
-       id="polygon28844" />
-    <line
-       x1="1402.3199"
-       y1="250.53"
-       x2="1402.11"
-       y2="249.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28846" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1360,436.95 1359.73,436.78 1361.82,450.47 "
-       id="polygon28848" />
-    <line
-       x1="1360.86"
-       y1="403.44"
-       x2="1357.46"
-       y2="403.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28850" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1341.6,568.73 1341.19,568.5 1330.53,573.2 "
-       id="polygon28852" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1342.16,571.89 1342.43,571.62 1331.77,576.34 "
-       id="polygon28854" />
-    <line
-       x1="1371.83"
-       y1="279.56"
-       x2="1371.4"
-       y2="280.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28856" />
-    <line
-       x1="1398.38"
-       y1="264.79001"
-       x2="1399.02"
-       y2="264.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28858" />
-    <line
-       x1="1378.59"
-       y1="246.88"
-       x2="1378.16"
-       y2="247.21001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28860" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1387.76,534.41 1387.85,534.93 1391.8,527.68 "
-       id="polygon28862" />
-    <line
-       x1="1402.48"
-       y1="251.45"
-       x2="1402.3199"
-       y2="250.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28864" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1341.99,569.11 1341.6,568.73 1330.94,573.44 "
-       id="polygon28866" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1342.43,571.62 1342.59,571.21 1331.93,575.93 "
-       id="polygon28868" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1360.41,437.07 1360,436.95 1362.09,450.64 "
-       id="polygon28870" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1390.64,536.17 1391.04,535.87 1395,528.63 "
-       id="polygon28872" />
-    <line
-       x1="1573.48"
-       y1="535.81"
-       x2="1573.97"
-       y2="539.02002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28874" />
-    <line
-       x1="1634.42"
-       y1="455.29999"
-       x2="1636.42"
-       y2="454.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1387.85,534.93 1388.11,535.42 1392.05,528.18 "
-       id="polygon28878" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1363.27,436.35 1363.01,436.59 1365.1,450.28 "
-       id="polygon28880" />
-    <line
-       x1="1402.59"
-       y1="252.39999"
-       x2="1402.48"
-       y2="251.45"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28882" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1342.3,569.6 1341.99,569.11 1331.32,573.82 "
-       id="polygon28884" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1342.59,571.21 1342.62,570.7 1331.96,575.42 "
-       id="polygon28886" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1390.13,536.32 1390.64,536.17 1394.59,528.92 "
-       id="polygon28888" />
-    <line
-       x1="1399.62"
-       y1="263.39001"
-       x2="1400.17"
-       y2="262.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28890" />
-    <line
-       x1="1673.9399"
-       y1="495.01999"
-       x2="1672.9"
-       y2="496.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.11,535.42 1388.51,535.84 1392.45,528.6 "
-       id="polygon28894" />
-    <line
-       x1="1672.9"
-       y1="496.92999"
-       x2="1671.73"
-       y2="498.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28896" />
-    <line
-       x1="1674.86"
-       y1="493.04999"
-       x2="1673.9399"
-       y2="495.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28898" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1342.52,570.15 1342.3,569.6 1331.64,574.31 "
-       id="polygon28900" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1342.62,570.7 1342.52,570.15 1331.86,574.86 "
-       id="polygon28902" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1360.93,437.11 1360.41,437.07 1362.5,450.76 "
-       id="polygon28904" />
-    <line
-       x1="1671.73"
-       y1="498.76999"
-       x2="1670.4399"
-       y2="500.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28906" />
-    <line
-       x1="1675.64"
-       y1="491.01999"
-       x2="1674.86"
-       y2="493.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28908" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1389.57,536.32 1390.13,536.32 1394.09,529.07 "
-       id="polygon28910" />
-    <line
-       x1="1402.65"
-       y1="253.36"
-       x2="1402.59"
-       y2="252.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28912" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1388.51,535.84 1389.01,536.15 1392.96,528.91 "
-       id="polygon28914" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1363.01,436.59 1362.6,436.8 1364.7,450.49 "
-       id="polygon28916" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1389.01,536.15 1389.57,536.32 1393.52,529.07 "
-       id="polygon28918" />
-    <line
-       x1="1676.27"
-       y1="488.95001"
-       x2="1675.64"
-       y2="491.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28920" />
-    <line
-       x1="1371.4"
-       y1="280.41"
-       x2="1370.9"
-       y2="281.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28922" />
-    <line
-       x1="1670.4399"
-       y1="500.51999"
-       x2="1669.05"
-       y2="502.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28924" />
-    <line
-       x1="1400.17"
-       y1="262.62"
-       x2="1400.66"
-       y2="261.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1361.51,437.07 1360.93,437.11 1363.03,450.8 "
-       id="polygon28928" />
-    <line
-       x1="1402.66"
-       y1="254.33"
-       x2="1402.65"
-       y2="253.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28930" />
-    <line
-       x1="1676.75"
-       y1="486.85001"
-       x2="1676.27"
-       y2="488.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28932" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1362.6,436.8 1362.08,436.97 1364.18,450.66 "
-       id="polygon28934" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1473.91,547.71 1473.77,547.96 1459.43,549.06 "
-       id="polygon28936" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1459.08,549.04 1459.27,549.14 1473.61,548.04 "
-       id="polygon28938" />
-    <line
-       x1="1669.05"
-       y1="502.17999"
-       x2="1667.5601"
-       y2="503.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28940" />
-    <line
-       x1="1400.66"
-       y1="261.81"
-       x2="1401.11"
-       y2="260.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28942" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1362.08,436.97 1361.51,437.07 1363.6,450.77 "
-       id="polygon28944" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1458.8,545.47 1458.66,545.72 1473.01,544.62 "
-       id="polygon28946" />
-    <line
-       x1="1636.42"
-       y1="454.59"
-       x2="1638.48"
-       y2="454"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28948" />
-    <line
-       x1="1402.61"
-       y1="255.31"
-       x2="1402.66"
-       y2="254.33"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28950" />
-    <line
-       x1="1677.09"
-       y1="484.73001"
-       x2="1676.75"
-       y2="486.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28952" />
-    <line
-       x1="1667.5601"
-       y1="503.75"
-       x2="1665.98"
-       y2="505.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28954" />
-    <line
-       x1="1402.5"
-       y1="256.29001"
-       x2="1402.61"
-       y2="255.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28956" />
-    <line
-       x1="1401.5"
-       y1="260.07001"
-       x2="1401.83"
-       y2="259.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28958" />
-    <line
-       x1="1283.08"
-       y1="382.60999"
-       x2="1280.9399"
-       y2="381.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28960" />
-    <line
-       x1="1402.34"
-       y1="257.25"
-       x2="1402.5"
-       y2="256.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28962" />
-    <line
-       x1="1677.26"
-       y1="482.59"
-       x2="1677.09"
-       y2="484.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28964" />
-    <line
-       x1="1401.83"
-       y1="259.14999"
-       x2="1402.11"
-       y2="258.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28966" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1458.9,548.76 1459.08,549.04 1473.43,547.94 "
-       id="polygon28968" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1458.66,545.72 1458.57,546.13 1472.92,545.03 "
-       id="polygon28970" />
-    <line
-       x1="1665.98"
-       y1="505.20001"
-       x2="1664.33"
-       y2="506.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28972" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1359.71,436.32 1359.63,436.56 1357.53,422.85 "
-       id="polygon28974" />
-    <line
-       x1="1677.28"
-       y1="480.45999"
-       x2="1677.26"
-       y2="482.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28976" />
-    <line
-       x1="1379.51"
-       y1="246.42"
-       x2="1379.04"
-       y2="246.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28978" />
-    <line
-       x1="1370.9"
-       y1="281.23001"
-       x2="1370.34"
-       y2="282.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28980" />
-    <line
-       x1="1573.21"
-       y1="532.48999"
-       x2="1573.48"
-       y2="535.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28982" />
-    <line
-       x1="1638.48"
-       y1="454"
-       x2="1640.6"
-       y2="453.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28984" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.75,548.34 1458.9,548.76 1473.25,547.66 "
-       id="polygon28986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.57,546.13 1458.53,546.65 1472.88,545.55 "
-       id="polygon28988" />
-    <line
-       x1="1555.74"
-       y1="358.67001"
-       x2="1553.04"
-       y2="358.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28990" />
-    <line
-       x1="1677.14"
-       y1="478.34"
-       x2="1677.28"
-       y2="480.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28992" />
-    <line
-       x1="1664.33"
-       y1="506.54001"
-       x2="1662.62"
-       y2="507.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28994" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.63,547.81 1458.75,548.34 1473.09,547.24 "
-       id="polygon28996" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.53,546.65 1458.55,547.23 1472.89,546.13 "
-       id="polygon28998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1458.55,547.23 1458.63,547.81 1472.97,546.71 "
-       id="polygon29000" />
-    <line
-       x1="1676.84"
-       y1="476.25"
-       x2="1677.14"
-       y2="478.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29002" />
-    <line
-       x1="1531.75"
-       y1="420.89001"
-       x2="1535.23"
-       y2="421.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29004" />
-    <line
-       x1="1640.6"
-       y1="453.54001"
-       x2="1642.75"
-       y2="453.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29006" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1330.13,573.14 1330.53,573.2 1341.19,568.5 "
-       id="polygon29008" />
-    <line
-       x1="1364.09"
-       y1="402.97"
-       x2="1360.86"
-       y2="403.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29010" />
-    <line
-       x1="1662.62"
-       y1="507.76001"
-       x2="1660.85"
-       y2="508.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29012" />
-    <line
-       x1="1676.38"
-       y1="474.17999"
-       x2="1676.84"
-       y2="476.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29014" />
-    <line
-       x1="1370.34"
-       y1="282.03"
-       x2="1369.72"
-       y2="282.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29016" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1331.77,576.34 1331.5,576.61 1342.16,571.89 "
-       id="polygon29018" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1359.73,436.78 1360,436.95 1357.9,423.24 "
-       id="polygon29020" />
-    <line
-       x1="1675.76"
-       y1="472.16"
-       x2="1676.38"
-       y2="474.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29022" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1330.53,573.2 1330.94,573.44 1341.6,568.73 "
-       id="polygon29024" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1473.01,544.62 1473.14,544.37 1458.8,545.47 "
-       id="polygon29026" />
-    <line
-       x1="1642.75"
-       y1="453.20999"
-       x2="1644.9399"
-       y2="453.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29028" />
-    <line
-       x1="1330.52"
-       y1="295.28"
-       x2="1329.83"
-       y2="295.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29030" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1360.89,422.01 1361.16,422.18 1363.26,435.89 "
-       id="polygon29032" />
-    <line
-       x1="1660.85"
-       y1="508.85999"
-       x2="1659.04"
-       y2="509.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29034" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1363.01,436.59 1363.27,436.35 1361.17,422.64 "
-       id="polygon29036" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1331.93,575.93 1331.77,576.34 1342.43,571.62 "
-       id="polygon29038" />
-    <line
-       x1="1573.1801"
-       y1="529.09003"
-       x2="1573.21"
-       y2="532.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29040" />
-    <line
-       x1="1674.99"
-       y1="470.20001"
-       x2="1675.76"
-       y2="472.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1360,436.95 1360.41,437.07 1358.31,423.35 "
-       id="polygon29044" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1330.94,573.44 1331.32,573.82 1341.99,569.11 "
-       id="polygon29046" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1331.96,575.42 1331.93,575.93 1342.59,571.21 "
-       id="polygon29048" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1472.92,545.03 1473.01,544.62 1458.66,545.72 "
-       id="polygon29050" />
-    <line
-       x1="1674.0699"
-       y1="468.29999"
-       x2="1674.99"
-       y2="470.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29052" />
-    <line
-       x1="1380.52"
-       y1="246.25"
-       x2="1380.01"
-       y2="246.3"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29054" />
-    <line
-       x1="1644.9399"
-       y1="453.01999"
-       x2="1647.14"
-       y2="452.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29056" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1362.6,436.8 1363.01,436.59 1360.91,422.87 "
-       id="polygon29058" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1331.32,573.82 1331.64,574.31 1342.3,569.6 "
-       id="polygon29060" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1331.86,574.86 1331.96,575.42 1342.62,570.7 "
-       id="polygon29062" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1360.41,437.07 1360.93,437.11 1358.84,423.39 "
-       id="polygon29064" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1391.71,527.16 1391.8,526.68 1387.85,533.92 "
-       id="polygon29066" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1331.64,574.31 1331.86,574.86 1342.52,570.15 "
-       id="polygon29068" />
-    <line
-       x1="1659.04"
-       y1="509.82001"
-       x2="1657.2"
-       y2="510.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29070" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1473.43,547.94 1473.25,547.66 1458.9,548.76 "
-       id="polygon29072" />
-    <line
-       x1="1673"
-       y1="466.48001"
-       x2="1674.0699"
-       y2="468.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29074" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1362.08,436.97 1362.6,436.8 1360.5,423.09 "
-       id="polygon29076" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1360.93,437.11 1361.51,437.07 1359.41,423.36 "
-       id="polygon29078" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.88,545.55 1472.92,545.03 1458.57,546.13 "
-       id="polygon29080" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1361.51,437.07 1362.08,436.97 1359.99,423.25 "
-       id="polygon29082" />
-    <line
-       x1="1647.14"
-       y1="452.97"
-       x2="1649.35"
-       y2="453.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29084" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1391.8,527.68 1391.71,527.16 1387.76,534.41 "
-       id="polygon29086" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1357.9,423.24 1357.63,423.07 1359.73,436.78 "
-       id="polygon29088" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.25,547.66 1473.09,547.24 1458.75,548.34 "
-       id="polygon29090" />
-    <line
-       x1="1671.79"
-       y1="464.75"
-       x2="1673"
-       y2="466.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29092" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.89,546.13 1472.88,545.55 1458.53,546.65 "
-       id="polygon29094" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.09,547.24 1472.97,546.71 1458.63,547.81 "
-       id="polygon29096" />
-    <line
-       x1="1649.35"
-       y1="453.04999"
-       x2="1651.55"
-       y2="453.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29098" />
-    <line
-       x1="1369.05"
-       y1="283.51999"
-       x2="1368.3101"
-       y2="284.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29100" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.97,546.71 1472.89,546.13 1458.55,547.23 "
-       id="polygon29102" />
-    <line
-       x1="1670.45"
-       y1="463.10999"
-       x2="1671.79"
-       y2="464.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.05,528.18 1391.8,527.68 1387.85,534.93 "
-       id="polygon29106" />
-    <line
-       x1="1657.2"
-       y1="510.64999"
-       x2="1655.34"
-       y2="511.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29108" />
-    <line
-       x1="1573.38"
-       y1="525.63"
-       x2="1573.1801"
-       y2="529.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29110" />
-    <line
-       x1="1558.39"
-       y1="359.48999"
-       x2="1555.74"
-       y2="358.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29112" />
-    <line
-       x1="1280.9399"
-       y1="381.35001"
-       x2="1279.05"
-       y2="380.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29114" />
-    <line
-       x1="1668.98"
-       y1="461.56"
-       x2="1670.45"
-       y2="463.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.31,423.35 1357.9,423.24 1360,436.95 "
-       id="polygon29118" />
-    <line
-       x1="1651.55"
-       y1="453.29001"
-       x2="1653.73"
-       y2="453.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.45,528.6 1392.05,528.18 1388.11,535.42 "
-       id="polygon29122" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1394.59,528.92 1394.09,529.07 1390.13,536.32 "
-       id="polygon29124" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1361.17,422.64 1360.91,422.87 1363.01,436.59 "
-       id="polygon29126" />
-    <line
-       x1="1667.38"
-       y1="460.13"
-       x2="1668.98"
-       y2="461.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.96,528.91 1392.45,528.6 1388.51,535.84 "
-       id="polygon29130" />
-    <line
-       x1="1653.73"
-       y1="453.66"
-       x2="1655.88"
-       y2="454.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29132" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1394.09,529.07 1393.52,529.07 1389.57,536.32 "
-       id="polygon29134" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1393.52,529.07 1392.96,528.91 1389.01,536.15 "
-       id="polygon29136" />
-    <line
-       x1="1665.6801"
-       y1="458.82001"
-       x2="1667.38"
-       y2="460.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29138" />
-    <line
-       x1="1329.83"
-       y1="295.51001"
-       x2="1329.23"
-       y2="295.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29140" />
-    <line
-       x1="1655.88"
-       y1="454.17001"
-       x2="1657.98"
-       y2="454.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29142" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.84,423.39 1358.31,423.35 1360.41,437.07 "
-       id="polygon29144" />
-    <line
-       x1="1663.88"
-       y1="457.62"
-       x2="1665.6801"
-       y2="458.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29146" />
-    <line
-       x1="1657.98"
-       y1="454.82999"
-       x2="1660.02"
-       y2="455.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29148" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1360.91,422.87 1360.5,423.09 1362.6,436.8 "
-       id="polygon29150" />
-    <line
-       x1="1661.99"
-       y1="456.54999"
-       x2="1663.88"
-       y2="457.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29152" />
-    <line
-       x1="1660.02"
-       y1="455.63"
-       x2="1661.99"
-       y2="456.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29154" />
-    <line
-       x1="1655.34"
-       y1="511.34"
-       x2="1653.48"
-       y2="511.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29156" />
-    <line
-       x1="1368.3101"
-       y1="284.20999"
-       x2="1367.53"
-       y2="284.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29158" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.41,423.36 1358.84,423.39 1360.93,437.11 "
-       id="polygon29160" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1360.5,423.09 1359.99,423.25 1362.08,436.97 "
-       id="polygon29162" />
-    <line
-       x1="1381.59"
-       y1="246.37"
-       x2="1381.05"
-       y2="246.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29164" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.99,423.25 1359.41,423.36 1361.51,437.07 "
-       id="polygon29166" />
-    <line
-       x1="1367.16"
-       y1="402.31"
-       x2="1364.09"
-       y2="402.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29168" />
-    <line
-       x1="1535.23"
-       y1="421.98001"
-       x2="1538.5699"
-       y2="423.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29170" />
-    <line
-       x1="1573.8199"
-       y1="522.13"
-       x2="1573.38"
-       y2="525.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29172" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1331.77,576.34 1331.5,576.61 1331.33,576.27 "
-       id="polygon29174" />
-    <line
-       x1="1367.53"
-       y1="284.85001"
-       x2="1366.6899"
-       y2="285.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29176" />
-    <line
-       x1="1653.48"
-       y1="511.89001"
-       x2="1651.63"
-       y2="512.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29178" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1357.62,422.62 1357.53,422.85 1355.43,409.12 "
-       id="polygon29180" />
-    <line
-       x1="1382.13"
-       y1="246.53999"
-       x2="1381.59"
-       y2="246.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29182" />
-    <line
-       x1="1363.75"
-       y1="264.37"
-       x2="1364.28"
-       y2="265.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29184" />
-    <line
-       x1="1364.28"
-       y1="265.20001"
-       x2="1364.86"
-       y2="266"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29186" />
-    <line
-       x1="1574.5"
-       y1="518.59998"
-       x2="1573.8199"
-       y2="522.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29188" />
-    <line
-       x1="1363.27"
-       y1="263.51999"
-       x2="1363.75"
-       y2="264.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29190" />
-    <line
-       x1="1362.84"
-       y1="262.66"
-       x2="1363.27"
-       y2="263.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29192" />
-    <line
-       x1="1366.6899"
-       y1="285.44"
-       x2="1365.8101"
-       y2="285.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29194" />
-    <line
-       x1="1365.49"
-       y1="266.76999"
-       x2="1366.16"
-       y2="267.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29196" />
-    <line
-       x1="1362.46"
-       y1="261.79001"
-       x2="1362.84"
-       y2="262.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29198" />
-    <line
-       x1="1651.63"
-       y1="512.29999"
-       x2="1649.79"
-       y2="512.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29200" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1358.79,408.28 1359.06,408.45 1361.16,422.18 "
-       id="polygon29202" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1361.17,422.64 1361.26,422.4 1359.16,408.66 "
-       id="polygon29204" />
-    <line
-       x1="1366.16"
-       y1="267.5"
-       x2="1366.87"
-       y2="268.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29206" />
-    <line
-       x1="1560.98"
-       y1="360.54999"
-       x2="1558.39"
-       y2="359.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29208" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1355.43,409.12 1355.52,408.88 1357.62,422.62 "
-       id="polygon29210" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1357.63,423.07 1357.9,423.24 1355.8,409.51 "
-       id="polygon29212" />
-    <line
-       x1="1361.88"
-       y1="260.01999"
-       x2="1362.14"
-       y2="260.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29214" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1488.29,546.61 1488.15,546.86 1473.77,547.96 "
-       id="polygon29216" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1473.43,547.94 1473.61,548.04 1487.98,546.95 "
-       id="polygon29218" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1473.14,544.37 1473.01,544.62 1487.38,543.52 "
-       id="polygon29220" />
-    <line
-       x1="1367.62"
-       y1="268.82001"
-       x2="1368.4"
-       y2="269.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29222" />
-    <line
-       x1="1575.42"
-       y1="515.09003"
-       x2="1574.5"
-       y2="518.59998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29224" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1360.91,422.87 1361.17,422.64 1359.07,408.9 "
-       id="polygon29226" />
-    <line
-       x1="1365.8101"
-       y1="285.98001"
-       x2="1364.88"
-       y2="286.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29228" />
-    <line
-       x1="1361.6801"
-       y1="259.14999"
-       x2="1361.88"
-       y2="260.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29230" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1357.9,423.24 1358.31,423.35 1356.21,409.62 "
-       id="polygon29232" />
-    <line
-       x1="1368.4"
-       y1="269.42001"
-       x2="1369.21"
-       y2="269.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29234" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1473.25,547.66 1473.43,547.94 1487.8,546.84 "
-       id="polygon29236" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1473.01,544.62 1472.92,545.03 1487.29,543.93 "
-       id="polygon29238" />
-    <line
-       x1="1649.79"
-       y1="512.56"
-       x2="1647.99"
-       y2="512.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29240" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1360.5,423.09 1360.91,422.87 1358.81,409.14 "
-       id="polygon29242" />
-    <line
-       x1="1279.05"
-       y1="380.17999"
-       x2="1277.39"
-       y2="379.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29244" />
-    <line
-       x1="1361.53"
-       y1="258.29001"
-       x2="1361.6801"
-       y2="259.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29246" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.31,423.35 1358.84,423.39 1356.73,409.66 "
-       id="polygon29248" />
-    <line
-       x1="1369.21"
-       y1="269.95001"
-       x2="1370.05"
-       y2="270.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29250" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1473.09,547.24 1473.25,547.66 1487.63,546.56 "
-       id="polygon29252" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1359.99,423.25 1360.5,423.09 1358.41,409.35 "
-       id="polygon29254" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.92,545.03 1472.88,545.55 1487.26,544.45 "
-       id="polygon29256" />
-    <line
-       x1="1576.5699"
-       y1="511.59"
-       x2="1575.42"
-       y2="515.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29258" />
-    <line
-       x1="1364.88"
-       y1="286.47"
-       x2="1363.92"
-       y2="286.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29260" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1358.84,423.39 1359.41,423.36 1357.31,409.62 "
-       id="polygon29262" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1359.41,423.36 1359.99,423.25 1357.89,409.52 "
-       id="polygon29264" />
-    <line
-       x1="1361.4301"
-       y1="257.45001"
-       x2="1361.53"
-       y2="258.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29266" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1355.8,409.51 1355.53,409.34 1357.63,423.07 "
-       id="polygon29268" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1318.81,578.24 1319.08,577.97 1329.77,573.25 "
-       id="polygon29270" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1330.53,573.2 1330.13,573.14 1319.43,577.86 "
-       id="polygon29272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.97,546.71 1473.09,547.24 1487.47,546.14 "
-       id="polygon29274" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.88,545.55 1472.89,546.13 1487.27,545.02 "
-       id="polygon29276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1472.89,546.13 1472.97,546.71 1487.35,545.61 "
-       id="polygon29278" />
-    <line
-       x1="1370.03"
-       y1="401.45999"
-       x2="1367.16"
-       y2="402.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29280" />
-    <line
-       x1="1538.5699"
-       y1="423.35999"
-       x2="1541.75"
-       y2="425.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29282" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1392.05,528.18 1392.45,528.6 1392.67,528.36 "
-       id="polygon29284" />
-    <line
-       x1="1361.4"
-       y1="256.63"
-       x2="1361.4301"
-       y2="257.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29286" />
-    <line
-       x1="1577.97"
-       y1="508.16"
-       x2="1576.5699"
-       y2="511.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29288" />
-    <line
-       x1="1370.91"
-       y1="270.85001"
-       x2="1371.79"
-       y2="271.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29290" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1330.94,573.44 1330.53,573.2 1319.83,577.93 "
-       id="polygon29292" />
-    <line
-       x1="1647.99"
-       y1="512.69"
-       x2="1646.24"
-       y2="512.66998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29294" />
-    <line
-       x1="1383.73"
-       y1="247.46001"
-       x2="1383.2"
-       y2="247.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1356.21,409.62 1355.8,409.51 1357.9,423.24 "
-       id="polygon29298" />
-    <line
-       x1="1363.92"
-       y1="286.91"
-       x2="1362.92"
-       y2="287.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29300" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1359.07,408.9 1358.81,409.14 1360.91,422.87 "
-       id="polygon29302" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1487.38,543.52 1487.52,543.26 1473.14,544.37 "
-       id="polygon29304" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1331.32,573.82 1330.94,573.44 1320.25,578.16 "
-       id="polygon29306" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1331.77,576.34 1331.93,575.93 1321.23,580.65 "
-       id="polygon29308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1356.73,409.66 1356.21,409.62 1358.31,423.35 "
-       id="polygon29310" />
-    <line
-       x1="1361.42"
-       y1="255.84"
-       x2="1361.4"
-       y2="256.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29312" />
-    <line
-       x1="1579.59"
-       y1="504.79001"
-       x2="1577.97"
-       y2="508.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29314" />
-    <line
-       x1="1563.48"
-       y1="361.84"
-       x2="1560.98"
-       y2="360.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29316" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1358.81,409.14 1358.41,409.35 1360.5,423.09 "
-       id="polygon29318" />
-    <line
-       x1="1603.09"
-       y1="481.03"
-       x2="1599.83"
-       y2="482.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29320" />
-    <line
-       x1="1604.84"
-       y1="480.41"
-       x2="1603.09"
-       y2="481.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29322" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1331.64,574.31 1331.32,573.82 1320.63,578.55 "
-       id="polygon29324" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1331.93,575.93 1331.96,575.42 1321.26,580.14 "
-       id="polygon29326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1357.31,409.62 1356.73,409.66 1358.84,423.39 "
-       id="polygon29328" />
-    <line
-       x1="1362.92"
-       y1="287.28"
-       x2="1361.89"
-       y2="287.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29330" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1358.41,409.35 1357.89,409.52 1359.99,423.25 "
-       id="polygon29332" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1331.86,574.86 1331.64,574.31 1320.95,579.04 "
-       id="polygon29334" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1331.96,575.42 1331.86,574.86 1321.16,579.59 "
-       id="polygon29336" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1357.89,409.52 1357.31,409.62 1359.41,423.36 "
-       id="polygon29338" />
-    <line
-       x1="1372.6899"
-       y1="271.48001"
-       x2="1373.59"
-       y2="271.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29340" />
-    <line
-       x1="1581.4399"
-       y1="501.51999"
-       x2="1579.59"
-       y2="504.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29342" />
-    <line
-       x1="1599.83"
-       y1="482.88"
-       x2="1596.7"
-       y2="484.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29344" />
-    <line
-       x1="1646.24"
-       y1="512.66998"
-       x2="1644.54"
-       y2="512.52002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29346" />
-    <line
-       x1="1606.64"
-       y1="479.88"
-       x2="1604.84"
-       y2="480.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29348" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1487.8,546.84 1487.63,546.56 1473.25,547.66 "
-       id="polygon29350" />
-    <line
-       x1="1583.5"
-       y1="498.35999"
-       x2="1581.4399"
-       y2="501.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29352" />
-    <line
-       x1="1596.7"
-       y1="484.95999"
-       x2="1593.72"
-       y2="487.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.26,544.45 1487.29,543.93 1472.92,545.03 "
-       id="polygon29356" />
-    <line
-       x1="1373.59"
-       y1="271.70001"
-       x2="1374.5"
-       y2="271.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29358" />
-    <line
-       x1="1593.72"
-       y1="487.26001"
-       x2="1590.89"
-       y2="489.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29360" />
-    <line
-       x1="1585.78"
-       y1="495.32999"
-       x2="1583.5"
-       y2="498.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29362" />
-    <line
-       x1="1361.89"
-       y1="287.59"
-       x2="1360.83"
-       y2="287.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29364" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1355.52,408.88 1355.43,409.12 1353.32,395.37 "
-       id="polygon29366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.63,546.56 1487.47,546.14 1473.09,547.24 "
-       id="polygon29368" />
-    <line
-       x1="1590.89"
-       y1="489.76001"
-       x2="1588.24"
-       y2="492.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29370" />
-    <line
-       x1="1588.24"
-       y1="492.45999"
-       x2="1585.78"
-       y2="495.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29372" />
-    <line
-       x1="1608.46"
-       y1="479.45001"
-       x2="1606.64"
-       y2="479.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.27,545.02 1487.26,544.45 1472.88,545.55 "
-       id="polygon29376" />
-    <line
-       x1="1361.61"
-       y1="254.36"
-       x2="1361.49"
-       y2="255.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.47,546.14 1487.35,545.61 1472.97,546.71 "
-       id="polygon29380" />
-    <line
-       x1="1384.73"
-       y1="248.42999"
-       x2="1384.24"
-       y2="247.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29382" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.35,545.61 1487.27,545.02 1472.89,546.13 "
-       id="polygon29384" />
-    <line
-       x1="1374.5"
-       y1="271.84"
-       x2="1375.41"
-       y2="271.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29386" />
-    <line
-       x1="1610.3"
-       y1="479.10001"
-       x2="1608.46"
-       y2="479.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29388" />
-    <line
-       x1="1328.3101"
-       y1="296.51999"
-       x2="1327.99"
-       y2="296.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29390" />
-    <line
-       x1="1360.83"
-       y1="287.84"
-       x2="1359.75"
-       y2="288.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29392" />
-    <line
-       x1="1644.54"
-       y1="512.52002"
-       x2="1642.91"
-       y2="512.21997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29394" />
-    <line
-       x1="1612.17"
-       y1="478.85001"
-       x2="1610.3"
-       y2="479.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29396" />
-    <line
-       x1="1361.79"
-       y1="253.69"
-       x2="1361.61"
-       y2="254.36"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29398" />
-    <line
-       x1="1375.41"
-       y1="271.91"
-       x2="1376.3199"
-       y2="271.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29400" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1356.69,394.53 1356.96,394.7 1359.06,408.45 "
-       id="polygon29402" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1359.07,408.9 1359.16,408.66 1357.06,394.91 "
-       id="polygon29404" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1392.46,525.96 1392.06,526.26 1396.02,518.98 "
-       id="polygon29406" />
-    <line
-       x1="1277.39"
-       y1="379.10001"
-       x2="1276"
-       y2="378.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29408" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1355.53,409.34 1355.8,409.51 1353.69,395.75 "
-       id="polygon29410" />
-    <line
-       x1="1614.05"
-       y1="478.70001"
-       x2="1612.17"
-       y2="478.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29412" />
-    <line
-       x1="1359.75"
-       y1="288.01999"
-       x2="1358.65"
-       y2="288.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29414" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1319.43,577.86 1319.83,577.93 1330.53,573.2 "
-       id="polygon29416" />
-    <line
-       x1="1372.7"
-       y1="400.42001"
-       x2="1370.03"
-       y2="401.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29418" />
-    <line
-       x1="1376.3199"
-       y1="271.91"
-       x2="1377.21"
-       y2="271.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29420" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1358.81,409.14 1359.07,408.9 1356.97,395.14 "
-       id="polygon29422" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1321.07,581.07 1320.8,581.34 1331.5,576.61 "
-       id="polygon29424" />
-    <line
-       x1="1565.88"
-       y1="363.37"
-       x2="1563.48"
-       y2="361.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29426" />
-    <line
-       x1="1541.75"
-       y1="425.01999"
-       x2="1544.74"
-       y2="426.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29428" />
-    <line
-       x1="1615.9301"
-       y1="478.64001"
-       x2="1614.05"
-       y2="478.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1355.8,409.51 1356.21,409.62 1354.11,395.86 "
-       id="polygon29432" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1319.83,577.93 1320.25,578.16 1330.94,573.44 "
-       id="polygon29434" />
-    <line
-       x1="1385.65"
-       y1="249.63"
-       x2="1385.2"
-       y2="249"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29436" />
-    <line
-       x1="1358.65"
-       y1="288.14001"
-       x2="1357.54"
-       y2="288.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29438" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1321.23,580.65 1321.07,581.07 1331.77,576.34 "
-       id="polygon29440" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1358.41,409.35 1358.81,409.14 1356.71,395.38 "
-       id="polygon29442" />
-    <line
-       x1="1377.21"
-       y1="271.84"
-       x2="1378.1"
-       y2="271.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29444" />
-    <line
-       x1="1617.8199"
-       y1="478.69"
-       x2="1615.9301"
-       y2="478.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29446" />
-    <line
-       x1="1642.91"
-       y1="512.21997"
-       x2="1641.36"
-       y2="511.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29448" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1356.21,409.62 1356.73,409.66 1354.63,395.9 "
-       id="polygon29450" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1391.71,527.16 1391.8,527.68 1395.76,520.4 "
-       id="polygon29452" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1320.25,578.16 1320.63,578.55 1331.32,573.82 "
-       id="polygon29454" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1357.89,409.52 1358.41,409.35 1356.3,395.59 "
-       id="polygon29456" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1321.26,580.14 1321.23,580.65 1331.93,575.93 "
-       id="polygon29458" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1356.73,409.66 1357.31,409.62 1355.21,395.86 "
-       id="polygon29460" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1394.59,528.92 1395,528.63 1398.97,521.35 "
-       id="polygon29462" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1357.31,409.62 1357.89,409.52 1355.79,395.76 "
-       id="polygon29464" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1320.63,578.55 1320.95,579.04 1331.64,574.31 "
-       id="polygon29466" />
-    <line
-       x1="1362.28"
-       y1="252.49001"
-       x2="1362.01"
-       y2="253.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29468" />
-    <line
-       x1="1619.71"
-       y1="478.82999"
-       x2="1617.8199"
-       y2="478.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1391.8,527.68 1392.05,528.18 1396.02,520.89 "
-       id="polygon29472" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1321.16,579.59 1321.26,580.14 1331.96,575.42 "
-       id="polygon29474" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1353.69,395.75 1353.42,395.58 1355.53,409.34 "
-       id="polygon29476" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1320.95,579.04 1321.16,579.59 1331.86,574.86 "
-       id="polygon29478" />
-    <line
-       x1="1357.54"
-       y1="288.20001"
-       x2="1356.41"
-       y2="288.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29480" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1394.09,529.07 1394.59,528.92 1398.56,521.64 "
-       id="polygon29482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.05,528.18 1392.45,528.6 1396.42,521.32 "
-       id="polygon29484" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1393.52,529.07 1394.09,529.07 1398.05,521.8 "
-       id="polygon29486" />
-    <line
-       x1="1621.59"
-       y1="479.07001"
-       x2="1619.71"
-       y2="478.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29488" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1392.45,528.6 1392.96,528.91 1396.93,521.63 "
-       id="polygon29490" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1392.96,528.91 1393.52,529.07 1397.49,521.79 "
-       id="polygon29492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1354.11,395.86 1353.69,395.75 1355.8,409.51 "
-       id="polygon29494" />
-    <line
-       x1="1378.97"
-       y1="271.48001"
-       x2="1379.8199"
-       y2="271.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29496" />
-    <line
-       x1="1356.41"
-       y1="288.17999"
-       x2="1355.28"
-       y2="288.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29498" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1356.97,395.14 1356.71,395.38 1358.81,409.14 "
-       id="polygon29500" />
-    <line
-       x1="1386.4399"
-       y1="251.06"
-       x2="1386.0601"
-       y2="250.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29502" />
-    <line
-       x1="1623.45"
-       y1="479.41"
-       x2="1621.59"
-       y2="479.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29504" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1502.69,545.5 1502.56,545.76 1488.15,546.86 "
-       id="polygon29506" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1487.8,546.84 1487.98,546.95 1502.39,545.84 "
-       id="polygon29508" />
-    <line
-       x1="1641.36"
-       y1="511.79999"
-       x2="1639.9"
-       y2="511.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29510" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1487.52,543.26 1487.38,543.52 1501.79,542.41 "
-       id="polygon29512" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1354.63,395.9 1354.11,395.86 1356.21,409.62 "
-       id="polygon29514" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1356.71,395.38 1356.3,395.59 1358.41,409.35 "
-       id="polygon29516" />
-    <line
-       x1="1625.3"
-       y1="479.85999"
-       x2="1623.45"
-       y2="479.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29518" />
-    <line
-       x1="1355.28"
-       y1="288.09"
-       x2="1354.15"
-       y2="287.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1355.21,395.86 1354.63,395.9 1356.73,409.66 "
-       id="polygon29522" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1356.3,395.59 1355.79,395.76 1357.89,409.52 "
-       id="polygon29524" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1487.63,546.56 1487.8,546.84 1502.21,545.74 "
-       id="polygon29526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1355.79,395.76 1355.21,395.86 1357.31,409.62 "
-       id="polygon29528" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1487.38,543.52 1487.29,543.93 1501.7,542.82 "
-       id="polygon29530" />
-    <line
-       x1="1386.79"
-       y1="251.84"
-       x2="1386.4399"
-       y2="251.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29532" />
-    <line
-       x1="1568.17"
-       y1="365.12"
-       x2="1565.88"
-       y2="363.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29534" />
-    <line
-       x1="1362.9399"
-       y1="251.50999"
-       x2="1362.59"
-       y2="251.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29536" />
-    <line
-       x1="1380.64"
-       y1="270.82999"
-       x2="1381.4301"
-       y2="270.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29538" />
-    <line
-       x1="1627.12"
-       y1="480.39001"
-       x2="1625.3"
-       y2="479.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29540" />
-    <line
-       x1="1354.15"
-       y1="287.94"
-       x2="1353.03"
-       y2="287.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29542" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.29,543.93 1487.26,544.45 1501.67,543.34 "
-       id="polygon29544" />
-    <line
-       x1="1387.09"
-       y1="252.67999"
-       x2="1386.79"
-       y2="251.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29546" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.35,545.61 1487.47,546.14 1501.88,545.03 "
-       id="polygon29548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.26,544.45 1487.27,545.02 1501.69,543.92 "
-       id="polygon29550" />
-    <line
-       x1="1628.91"
-       y1="481.01999"
-       x2="1627.12"
-       y2="480.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29552" />
-    <line
-       x1="1381.4301"
-       y1="270.39999"
-       x2="1382.2"
-       y2="269.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29554" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1487.27,545.02 1487.35,545.61 1501.76,544.5 "
-       id="polygon29556" />
-    <line
-       x1="1639.9"
-       y1="511.25"
-       x2="1638.54"
-       y2="510.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29558" />
-    <line
-       x1="1327.76"
-       y1="297.47"
-       x2="1327.62"
-       y2="298.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29560" />
-    <line
-       x1="1375.15"
-       y1="399.19"
-       x2="1372.7"
-       y2="400.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29562" />
-    <line
-       x1="1353.03"
-       y1="287.72"
-       x2="1351.91"
-       y2="287.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29564" />
-    <line
-       x1="1544.74"
-       y1="426.92999"
-       x2="1547.52"
-       y2="429.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29566" />
-    <line
-       x1="1276"
-       y1="378.14001"
-       x2="1274.87"
-       y2="377.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29568" />
-    <line
-       x1="1630.67"
-       y1="481.73001"
-       x2="1628.91"
-       y2="481.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29570" />
-    <line
-       x1="1382.2"
-       y1="269.91"
-       x2="1382.92"
-       y2="269.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29572" />
-    <line
-       x1="1387.34"
-       y1="253.53999"
-       x2="1387.09"
-       y2="252.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29574" />
-    <line
-       x1="1351.91"
-       y1="287.42999"
-       x2="1350.8"
-       y2="287.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29576" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1501.79,542.41 1501.93,542.16 1487.52,543.26 "
-       id="polygon29578" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1354.59,380.75 1354.86,380.92 1356.96,394.7 "
-       id="polygon29580" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1356.97,395.14 1357.06,394.91 1354.95,381.13 "
-       id="polygon29582" />
-    <line
-       x1="1632.39"
-       y1="482.54001"
-       x2="1630.67"
-       y2="481.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29584" />
-    <line
-       x1="1387.55"
-       y1="254.44"
-       x2="1387.34"
-       y2="253.53999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29586" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1353.42,395.58 1353.69,395.75 1351.58,381.97 "
-       id="polygon29588" />
-    <line
-       x1="1383.61"
-       y1="268.73999"
-       x2="1384.25"
-       y2="268.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29590" />
-    <line
-       x1="1363.75"
-       y1="250.78"
-       x2="1363.33"
-       y2="251.11"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29592" />
-    <line
-       x1="1350.8"
-       y1="287.07001"
-       x2="1349.72"
-       y2="286.64999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29594" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1501.7,542.82 1501.79,542.41 1487.38,543.52 "
-       id="polygon29596" />
-    <line
-       x1="1387.72"
-       y1="255.37"
-       x2="1387.55"
-       y2="254.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29598" />
-    <line
-       x1="1634.0601"
-       y1="483.44"
-       x2="1632.39"
-       y2="482.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29600" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1356.71,395.38 1356.97,395.14 1354.87,381.37 "
-       id="polygon29602" />
-    <line
-       x1="1638.54"
-       y1="510.57001"
-       x2="1637.3"
-       y2="509.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29604" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1502.21,545.74 1502.04,545.46 1487.63,546.56 "
-       id="polygon29606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1353.69,395.75 1354.11,395.86 1352,382.08 "
-       id="polygon29608" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1395.76,520.4 1395.67,519.89 1391.71,527.16 "
-       id="polygon29610" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.67,543.34 1501.7,542.82 1487.29,543.93 "
-       id="polygon29612" />
-    <line
-       x1="1349.72"
-       y1="286.64999"
-       x2="1348.65"
-       y2="286.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29614" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1356.3,395.59 1356.71,395.38 1354.61,381.6 "
-       id="polygon29616" />
-    <line
-       x1="1570.3199"
-       y1="367.07999"
-       x2="1568.17"
-       y2="365.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1502.04,545.46 1501.88,545.03 1487.47,546.14 "
-       id="polygon29620" />
-    <line
-       x1="1384.84"
-       y1="267.34"
-       x2="1385.39"
-       y2="266.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29622" />
-    <line
-       x1="1635.6899"
-       y1="484.41"
-       x2="1634.0601"
-       y2="483.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1354.11,395.86 1354.63,395.9 1352.52,382.12 "
-       id="polygon29626" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.69,543.92 1501.67,543.34 1487.26,544.45 "
-       id="polygon29628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.02,520.89 1395.76,520.4 1391.8,527.68 "
-       id="polygon29630" />
-    <line
-       x1="1387.89"
-       y1="257.28"
-       x2="1387.83"
-       y2="256.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.88,545.03 1501.76,544.5 1487.35,545.61 "
-       id="polygon29634" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1398.97,521.35 1398.56,521.64 1394.59,528.92 "
-       id="polygon29636" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1355.79,395.76 1356.3,395.59 1354.2,381.81 "
-       id="polygon29638" />
-    <line
-       x1="1364.2"
-       y1="250.52"
-       x2="1363.75"
-       y2="250.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29640" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.76,544.5 1501.69,543.92 1487.27,545.02 "
-       id="polygon29642" />
-    <line
-       x1="1385.39"
-       y1="266.57001"
-       x2="1385.89"
-       y2="265.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29644" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1354.63,395.9 1355.21,395.86 1353.1,382.09 "
-       id="polygon29646" />
-    <line
-       x1="1348.65"
-       y1="286.16"
-       x2="1347.62"
-       y2="285.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29648" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1355.21,395.86 1355.79,395.76 1353.68,381.98 "
-       id="polygon29650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.42,521.32 1396.02,520.89 1392.05,528.18 "
-       id="polygon29652" />
-    <line
-       x1="1387.89"
-       y1="258.25"
-       x2="1387.89"
-       y2="257.28"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29654" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1398.56,521.64 1398.05,521.8 1394.09,529.07 "
-       id="polygon29656" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1351.58,381.97 1351.31,381.8 1353.42,395.58 "
-       id="polygon29658" />
-    <line
-       x1="1385.89"
-       y1="265.75"
-       x2="1386.34"
-       y2="264.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29660" />
-    <line
-       x1="1637.26"
-       y1="485.47"
-       x2="1635.6899"
-       y2="484.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29662" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.93,521.63 1396.42,521.32 1392.45,528.6 "
-       id="polygon29664" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1398.05,521.8 1397.49,521.79 1393.52,529.07 "
-       id="polygon29666" />
-    <line
-       x1="1387.84"
-       y1="259.23001"
-       x2="1387.89"
-       y2="258.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29668" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1397.49,521.79 1396.93,521.63 1392.96,528.91 "
-       id="polygon29670" />
-    <line
-       x1="1386.34"
-       y1="264.89999"
-       x2="1386.73"
-       y2="264.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29672" />
-    <line
-       x1="1387.73"
-       y1="260.20999"
-       x2="1387.84"
-       y2="259.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29674" />
-    <line
-       x1="1347.62"
-       y1="285.60999"
-       x2="1346.61"
-       y2="284.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29676" />
-    <line
-       x1="1386.73"
-       y1="264.01001"
-       x2="1387.0601"
-       y2="263.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29678" />
-    <line
-       x1="1387.5601"
-       y1="261.19"
-       x2="1387.73"
-       y2="260.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29680" />
-    <line
-       x1="1387.0601"
-       y1="263.09"
-       x2="1387.34"
-       y2="262.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29682" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1319.83,577.93 1319.43,577.86 1308.7,582.6 "
-       id="polygon29684" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1352,382.08 1351.58,381.97 1353.69,395.75 "
-       id="polygon29686" />
-    <line
-       x1="1637.3"
-       y1="509.78"
-       x2="1636.16"
-       y2="508.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29688" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1354.87,381.37 1354.61,381.6 1356.71,395.38 "
-       id="polygon29690" />
-    <line
-       x1="1346.61"
-       y1="284.98999"
-       x2="1345.63"
-       y2="284.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29692" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1320.25,578.16 1319.83,577.93 1309.1,582.67 "
-       id="polygon29694" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1352.52,382.12 1352,382.08 1354.11,395.86 "
-       id="polygon29696" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1354.61,381.6 1354.2,381.81 1356.3,395.59 "
-       id="polygon29698" />
-    <line
-       x1="1377.38"
-       y1="397.76999"
-       x2="1375.15"
-       y2="399.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29700" />
-    <line
-       x1="1345.63"
-       y1="284.31"
-       x2="1344.7"
-       y2="283.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29702" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1353.1,382.09 1352.52,382.12 1354.63,395.9 "
-       id="polygon29704" />
-    <line
-       x1="1270.14"
-       y1="473.70999"
-       x2="1266.23"
-       y2="472.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29706" />
-    <line
-       x1="1640.23"
-       y1="487.79999"
-       x2="1638.78"
-       y2="486.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29708" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1320.63,578.55 1320.25,578.16 1309.52,582.91 "
-       id="polygon29710" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1354.2,381.81 1353.68,381.98 1355.79,395.76 "
-       id="polygon29712" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1321.07,581.07 1321.23,580.65 1310.5,585.4 "
-       id="polygon29714" />
-    <line
-       x1="1547.52"
-       y1="429.10999"
-       x2="1550.09"
-       y2="431.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29716" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1353.68,381.98 1353.1,382.09 1355.21,395.86 "
-       id="polygon29718" />
-    <line
-       x1="1274.11"
-       y1="474.88"
-       x2="1270.14"
-       y2="473.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29720" />
-    <line
-       x1="1266.23"
-       y1="472.45999"
-       x2="1262.38"
-       y2="471.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29722" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1320.95,579.04 1320.63,578.55 1309.9,583.29 "
-       id="polygon29724" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1321.23,580.65 1321.26,580.14 1310.53,584.89 "
-       id="polygon29726" />
-    <line
-       x1="1344.7"
-       y1="283.57999"
-       x2="1343.8"
-       y2="282.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29728" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1321.16,579.59 1320.95,579.04 1310.21,583.78 "
-       id="polygon29730" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1321.26,580.14 1321.16,579.59 1310.43,584.33 "
-       id="polygon29732" />
-    <line
-       x1="1278.11"
-       y1="475.95001"
-       x2="1274.11"
-       y2="474.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29734" />
-    <line
-       x1="1572.3199"
-       y1="369.23999"
-       x2="1570.3199"
-       y2="367.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29736" />
-    <line
-       x1="1327.5601"
-       y1="298.66"
-       x2="1327.59"
-       y2="299.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29738" />
-    <line
-       x1="1262.38"
-       y1="471.14001"
-       x2="1258.63"
-       y2="469.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29740" />
-    <line
-       x1="1641.63"
-       y1="489.07001"
-       x2="1640.23"
-       y2="487.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29742" />
-    <line
-       x1="1274.87"
-       y1="377.29001"
-       x2="1274"
-       y2="376.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29744" />
-    <line
-       x1="1636.16"
-       y1="508.88"
-       x2="1635.16"
-       y2="507.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29746" />
-    <line
-       x1="1343.8"
-       y1="282.79001"
-       x2="1342.96"
-       y2="281.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29748" />
-    <line
-       x1="1282.13"
-       y1="476.92001"
-       x2="1278.11"
-       y2="475.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29750" />
-    <line
-       x1="1365.6801"
-       y1="250.14999"
-       x2="1365.17"
-       y2="250.2"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29752" />
-    <line
-       x1="1342.96"
-       y1="281.95001"
-       x2="1342.16"
-       y2="281.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29754" />
-    <line
-       x1="1642.95"
-       y1="490.39999"
-       x2="1641.63"
-       y2="489.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29756" />
-    <line
-       x1="1258.63"
-       y1="469.76999"
-       x2="1254.99"
-       y2="468.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29758" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1517.13,544.4 1517,544.66 1502.56,545.76 "
-       id="polygon29760" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1502.21,545.74 1502.39,545.84 1516.83,544.73 "
-       id="polygon29762" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1501.93,542.16 1501.79,542.41 1516.23,541.3 "
-       id="polygon29764" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1354.87,381.37 1354.95,381.13 1352.85,367.34 "
-       id="polygon29766" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1351.31,381.8 1351.58,381.97 1349.47,368.18 "
-       id="polygon29768" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1502.04,545.46 1502.21,545.74 1516.66,544.63 "
-       id="polygon29770" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1501.79,542.41 1501.7,542.82 1516.14,541.71 "
-       id="polygon29772" />
-    <line
-       x1="1644.2"
-       y1="491.78"
-       x2="1642.95"
-       y2="490.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29774" />
-    <line
-       x1="1341.41"
-       y1="280.13"
-       x2="1340.72"
-       y2="279.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29776" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1354.61,381.6 1354.87,381.37 1352.76,367.57 "
-       id="polygon29778" />
-    <line
-       x1="1635.16"
-       y1="507.88"
-       x2="1634.29"
-       y2="506.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29780" />
-    <line
-       x1="1286.13"
-       y1="477.76001"
-       x2="1282.13"
-       y2="476.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1351.58,381.97 1352,382.08 1349.89,368.28 "
-       id="polygon29784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.88,545.03 1502.04,545.46 1516.48,544.35 "
-       id="polygon29786" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1308.7,582.6 1309.1,582.67 1319.83,577.93 "
-       id="polygon29788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.7,542.82 1501.67,543.34 1516.11,542.23 "
-       id="polygon29790" />
-    <line
-       x1="1254.99"
-       y1="468.35999"
-       x2="1251.48"
-       y2="466.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29792" />
-    <line
-       x1="1340.72"
-       y1="279.14999"
-       x2="1340.09"
-       y2="278.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29794" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1310.34,585.81 1310.08,586.08 1320.8,581.34 "
-       id="polygon29796" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1398.97,521.35 1398.56,521.64 1398.35,521.35 "
-       id="polygon29798" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1354.2,381.81 1354.61,381.6 1352.5,367.8 "
-       id="polygon29800" />
-    <line
-       x1="1327.59"
-       y1="299.35999"
-       x2="1327.7"
-       y2="300.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29802" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.76,544.5 1501.88,545.03 1516.32,543.93 "
-       id="polygon29804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.67,543.34 1501.69,543.92 1516.13,542.81 "
-       id="polygon29806" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1352,382.08 1352.52,382.12 1350.41,368.32 "
-       id="polygon29808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1501.69,543.92 1501.76,544.5 1516.2,543.39 "
-       id="polygon29810" />
-    <line
-       x1="1645.38"
-       y1="493.20999"
-       x2="1644.2"
-       y2="491.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29812" />
-    <line
-       x1="1574.15"
-       y1="371.57999"
-       x2="1572.3199"
-       y2="369.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29814" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1309.1,582.67 1309.52,582.91 1320.25,578.16 "
-       id="polygon29816" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1353.68,381.98 1354.2,381.81 1352.09,368.01 "
-       id="polygon29818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1352.52,382.12 1353.1,382.09 1350.99,368.29 "
-       id="polygon29820" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1310.5,585.4 1310.34,585.81 1321.07,581.07 "
-       id="polygon29822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1353.1,382.09 1353.68,381.98 1351.57,368.18 "
-       id="polygon29824" />
-    <line
-       x1="1366.75"
-       y1="250.27"
-       x2="1366.21"
-       y2="250.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29826" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1349.47,368.18 1349.2,368.01 1351.31,381.8 "
-       id="polygon29828" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1309.52,582.91 1309.9,583.29 1320.63,578.55 "
-       id="polygon29830" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1310.53,584.89 1310.5,585.4 1321.23,580.65 "
-       id="polygon29832" />
-    <line
-       x1="1379.36"
-       y1="396.16"
-       x2="1377.38"
-       y2="397.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29834" />
-    <line
-       x1="1550.09"
-       y1="431.51001"
-       x2="1552.41"
-       y2="434.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29836" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1309.9,583.29 1310.21,583.78 1320.95,579.04 "
-       id="polygon29838" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1516.23,541.3 1516.37,541.05 1501.93,542.16 "
-       id="polygon29840" />
-    <line
-       x1="1290.11"
-       y1="478.48001"
-       x2="1286.13"
-       y2="477.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29842" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1310.43,584.33 1310.53,584.89 1321.26,580.14 "
-       id="polygon29844" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1310.21,583.78 1310.43,584.33 1321.16,579.59 "
-       id="polygon29846" />
-    <line
-       x1="1646.49"
-       y1="494.69"
-       x2="1645.38"
-       y2="493.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.89,368.28 1349.47,368.18 1351.58,381.97 "
-       id="polygon29850" />
-    <line
-       x1="1634.29"
-       y1="506.76999"
-       x2="1633.5601"
-       y2="505.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29852" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1352.76,367.57 1352.5,367.8 1354.61,381.6 "
-       id="polygon29854" />
-    <line
-       x1="1251.48"
-       y1="466.92001"
-       x2="1248.11"
-       y2="465.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29856" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1516.14,541.71 1516.23,541.3 1501.79,542.41 "
-       id="polygon29858" />
-    <line
-       x1="1367.29"
-       y1="250.44"
-       x2="1366.75"
-       y2="250.27"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29860" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1350.41,368.32 1349.89,368.28 1352,382.08 "
-       id="polygon29862" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1352.5,367.8 1352.09,368.01 1354.2,381.81 "
-       id="polygon29864" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1516.66,544.63 1516.48,544.35 1502.04,545.46 "
-       id="polygon29866" />
-    <line
-       x1="1348.85"
-       y1="268.32999"
-       x2="1349.39"
-       y2="269.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29868" />
-    <line
-       x1="1349.39"
-       y1="269.16"
-       x2="1349.97"
-       y2="269.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29870" />
-    <line
-       x1="1348.37"
-       y1="267.48001"
-       x2="1348.85"
-       y2="268.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29872" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1350.99,368.29 1350.41,368.32 1352.52,382.12 "
-       id="polygon29874" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1352.09,368.01 1351.57,368.18 1353.68,381.98 "
-       id="polygon29876" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.11,542.23 1516.14,541.71 1501.7,542.82 "
-       id="polygon29878" />
-    <line
-       x1="1647.52"
-       y1="496.20999"
-       x2="1646.49"
-       y2="494.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29880" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1351.57,368.18 1350.99,368.29 1353.1,382.09 "
-       id="polygon29882" />
-    <line
-       x1="1350.6"
-       y1="270.73001"
-       x2="1351.27"
-       y2="271.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29884" />
-    <line
-       x1="1347.5699"
-       y1="265.73001"
-       x2="1347.9399"
-       y2="266.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.48,544.35 1516.32,543.93 1501.88,545.03 "
-       id="polygon29888" />
-    <line
-       x1="1327.7"
-       y1="300.12"
-       x2="1327.89"
-       y2="300.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29890" />
-    <line
-       x1="1274"
-       y1="376.57999"
-       x2="1273.39"
-       y2="376.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29892" />
-    <line
-       x1="1351.27"
-       y1="271.45999"
-       x2="1351.98"
-       y2="272.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29894" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.13,542.81 1516.11,542.23 1501.67,543.34 "
-       id="polygon29896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.32,543.93 1516.2,543.39 1501.76,544.5 "
-       id="polygon29898" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.2,543.39 1516.13,542.81 1501.69,543.92 "
-       id="polygon29900" />
-    <line
-       x1="1351.98"
-       y1="272.14999"
-       x2="1352.73"
-       y2="272.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29902" />
-    <line
-       x1="1575.8"
-       y1="374.10001"
-       x2="1574.15"
-       y2="371.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29904" />
-    <line
-       x1="1346.98"
-       y1="263.97"
-       x2="1347.25"
-       y2="264.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29906" />
-    <line
-       x1="1294.04"
-       y1="479.04999"
-       x2="1290.11"
-       y2="478.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29908" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1349.2,367.56 1349.11,367.8 1346.99,353.98 "
-       id="polygon29910" />
-    <line
-       x1="1633.5601"
-       y1="505.59"
-       x2="1632.98"
-       y2="504.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29912" />
-    <line
-       x1="1648.46"
-       y1="497.76001"
-       x2="1647.52"
-       y2="496.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29914" />
-    <line
-       x1="1346.77"
-       y1="263.09"
-       x2="1346.98"
-       y2="263.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29916" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1396.43,518.68 1396.02,518.98 1400.01,511.67 "
-       id="polygon29918" />
-    <line
-       x1="1353.52"
-       y1="273.39001"
-       x2="1354.33"
-       y2="273.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29920" />
-    <line
-       x1="1248.11"
-       y1="465.45999"
-       x2="1244.91"
-       y2="464.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29922" />
-    <line
-       x1="1346.62"
-       y1="262.23001"
-       x2="1346.77"
-       y2="263.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29924" />
-    <line
-       x1="1354.33"
-       y1="273.92999"
-       x2="1355.17"
-       y2="274.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29926" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1352.76,367.57 1352.85,367.34 1350.73,353.52 "
-       id="polygon29928" />
-    <line
-       x1="1346.53"
-       y1="261.39001"
-       x2="1346.62"
-       y2="262.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29930" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1395.77,519.39 1395.67,519.89 1399.66,512.57 "
-       id="polygon29932" />
-    <line
-       x1="1355.17"
-       y1="274.41"
-       x2="1356.03"
-       y2="274.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29934" />
-    <line
-       x1="1649.33"
-       y1="499.34"
-       x2="1648.46"
-       y2="497.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29936" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1349.2,368.01 1349.47,368.18 1347.36,354.36 "
-       id="polygon29938" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1395.67,519.89 1395.76,520.4 1399.74,513.09 "
-       id="polygon29940" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1352.5,367.8 1352.76,367.57 1350.65,353.75 "
-       id="polygon29942" />
-    <line
-       x1="1346.49"
-       y1="260.57001"
-       x2="1346.53"
-       y2="261.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29944" />
-    <line
-       x1="1327.89"
-       y1="300.95001"
-       x2="1328.15"
-       y2="301.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29946" />
-    <line
-       x1="1356.03"
-       y1="274.82001"
-       x2="1356.91"
-       y2="275.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29948" />
-    <line
-       x1="1632.98"
-       y1="504.32999"
-       x2="1632.54"
-       y2="503"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29950" />
-    <line
-       x1="1368.88"
-       y1="251.38"
-       x2="1368.36"
-       y2="250.99001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29952" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1517,544.66 1517.13,544.4 1531.6,543.29 "
-       id="polygon29954" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1398.56,521.64 1398.97,521.35 1402.96,514.04 "
-       id="polygon29956" />
-    <line
-       x1="1552.41"
-       y1="434.14001"
-       x2="1554.47"
-       y2="436.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29958" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.47,368.18 1349.89,368.28 1347.77,354.46 "
-       id="polygon29960" />
-    <line
-       x1="1381.1"
-       y1="394.37"
-       x2="1379.36"
-       y2="396.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29962" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1395.76,520.4 1396.02,520.89 1400,513.59 "
-       id="polygon29964" />
-    <line
-       x1="1297.89"
-       y1="479.47"
-       x2="1294.04"
-       y2="479.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29966" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1352.09,368.01 1352.5,367.8 1350.39,353.98 "
-       id="polygon29968" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1398.05,521.8 1398.56,521.64 1402.55,514.34 "
-       id="polygon29970" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.02,520.89 1396.42,521.32 1400.41,514.01 "
-       id="polygon29972" />
-    <line
-       x1="1577.27"
-       y1="376.76999"
-       x2="1575.8"
-       y2="374.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29974" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.89,368.28 1350.41,368.32 1348.3,354.5 "
-       id="polygon29976" />
-    <line
-       x1="1346.51"
-       y1="259.76999"
-       x2="1346.49"
-       y2="260.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29978" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1397.49,521.79 1398.05,521.8 1402.04,514.49 "
-       id="polygon29980" />
-    <line
-       x1="1650.12"
-       y1="500.92999"
-       x2="1649.33"
-       y2="499.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29982" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1396.42,521.32 1396.93,521.63 1400.91,514.32 "
-       id="polygon29984" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1396.93,521.63 1397.49,521.79 1401.48,514.48 "
-       id="polygon29986" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1351.57,368.18 1352.09,368.01 1349.98,354.19 "
-       id="polygon29988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1350.41,368.32 1350.99,368.29 1348.88,354.46 "
-       id="polygon29990" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1350.99,368.29 1351.57,368.18 1349.45,354.36 "
-       id="polygon29992" />
-    <line
-       x1="1244.91"
-       y1="464.01001"
-       x2="1241.88"
-       y2="462.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29994" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1347.36,354.36 1347.09,354.19 1349.2,368.01 "
-       id="polygon29996" />
-    <line
-       x1="1357.8101"
-       y1="275.45999"
-       x2="1358.71"
-       y2="275.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29998" />
-    <line
-       x1="1369.39"
-       y1="251.82001"
-       x2="1368.88"
-       y2="251.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30000" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1516.66,544.63 1516.83,544.73 1531.31,543.63 "
-       id="polygon30002" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1516.37,541.05 1516.23,541.3 1530.71,540.19 "
-       id="polygon30004" />
-    <line
-       x1="1358.71"
-       y1="275.67999"
-       x2="1359.63"
-       y2="275.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30006" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1347.77,354.46 1347.36,354.36 1349.47,368.18 "
-       id="polygon30008" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1350.65,353.75 1350.39,353.98 1352.5,367.8 "
-       id="polygon30010" />
-    <line
-       x1="1650.8199"
-       y1="502.54001"
-       x2="1650.12"
-       y2="500.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30012" />
-    <line
-       x1="1632.54"
-       y1="503"
-       x2="1632.27"
-       y2="501.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30014" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1516.48,544.35 1516.66,544.63 1531.13,543.52 "
-       id="polygon30016" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1309.1,582.67 1308.7,582.6 1297.93,587.36 "
-       id="polygon30018" />
-    <line
-       x1="1346.7"
-       y1="258.29001"
-       x2="1346.58"
-       y2="259.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30020" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1516.23,541.3 1516.14,541.71 1530.62,540.6 "
-       id="polygon30022" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1348.3,354.5 1347.77,354.46 1349.89,368.28 "
-       id="polygon30024" />
-    <line
-       x1="1359.63"
-       y1="275.82001"
-       x2="1360.54"
-       y2="275.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30026" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1350.39,353.98 1349.98,354.19 1352.09,368.01 "
-       id="polygon30028" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.32,543.93 1516.48,544.35 1530.96,543.24 "
-       id="polygon30030" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.14,541.71 1516.11,542.23 1530.59,541.12 "
-       id="polygon30032" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1348.88,354.46 1348.3,354.5 1350.41,368.32 "
-       id="polygon30034" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1349.98,354.19 1349.45,354.36 1351.57,368.18 "
-       id="polygon30036" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1309.52,582.91 1309.1,582.67 1298.34,587.42 "
-       id="polygon30038" />
-    <line
-       x1="1301.66"
-       y1="479.73999"
-       x2="1297.89"
-       y2="479.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30040" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1349.45,354.36 1348.88,354.46 1350.99,368.29 "
-       id="polygon30042" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.2,543.39 1516.32,543.93 1530.8,542.82 "
-       id="polygon30044" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.11,542.23 1516.13,542.81 1530.61,541.7 "
-       id="polygon30046" />
-    <line
-       x1="1346.88"
-       y1="257.62"
-       x2="1346.7"
-       y2="258.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30048" />
-    <line
-       x1="1360.54"
-       y1="275.89999"
-       x2="1361.45"
-       y2="275.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30050" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1516.13,542.81 1516.2,543.39 1530.68,542.29 "
-       id="polygon30052" />
-    <line
-       x1="1578.54"
-       y1="379.57999"
-       x2="1577.27"
-       y2="376.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30054" />
-    <line
-       x1="1370.36"
-       y1="252.91"
-       x2="1369.89"
-       y2="252.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30056" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1309.9,583.29 1309.52,582.91 1298.75,587.66 "
-       id="polygon30058" />
-    <line
-       x1="1651.4399"
-       y1="504.16"
-       x2="1650.8199"
-       y2="502.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30060" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1350.64,353.3 1350.37,353.14 1348.25,339.3 "
-       id="polygon30062" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1310.34,585.81 1310.5,585.4 1299.74,590.16 "
-       id="polygon30064" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1347.08,353.75 1346.99,353.98 1344.88,340.14 "
-       id="polygon30066" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1310.21,583.78 1309.9,583.29 1299.13,588.04 "
-       id="polygon30068" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1310.5,585.4 1310.53,584.89 1299.77,589.65 "
-       id="polygon30070" />
-    <line
-       x1="1361.45"
-       y1="275.89999"
-       x2="1362.34"
-       y2="275.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30072" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1310.43,584.33 1310.21,583.78 1299.45,588.54 "
-       id="polygon30074" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1310.53,584.89 1310.43,584.33 1299.67,589.09 "
-       id="polygon30076" />
-    <line
-       x1="1632.27"
-       y1="501.62"
-       x2="1632.14"
-       y2="500.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30078" />
-    <line
-       x1="1241.88"
-       y1="462.57999"
-       x2="1239.05"
-       y2="461.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30080" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1530.71,540.19 1530.84,539.93 1516.37,541.05 "
-       id="polygon30082" />
-    <line
-       x1="1370.8"
-       y1="253.55"
-       x2="1370.36"
-       y2="252.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30084" />
-    <line
-       x1="1554.47"
-       y1="436.95999"
-       x2="1556.26"
-       y2="439.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30086" />
-    <line
-       x1="1362.34"
-       y1="275.82001"
-       x2="1363.23"
-       y2="275.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30088" />
-    <line
-       x1="1382.58"
-       y1="392.39999"
-       x2="1381.1"
-       y2="394.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30090" />
-    <line
-       x1="1651.98"
-       y1="505.78"
-       x2="1651.4399"
-       y2="504.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30092" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1530.62,540.6 1530.71,540.19 1516.23,541.3 "
-       id="polygon30094" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1350.65,353.75 1350.73,353.52 1348.62,339.68 "
-       id="polygon30096" />
-    <line
-       x1="1347.36"
-       y1="256.41"
-       x2="1347.09"
-       y2="256.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30098" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1531.13,543.52 1530.96,543.24 1516.48,544.35 "
-       id="polygon30100" />
-    <line
-       x1="1363.23"
-       y1="275.67999"
-       x2="1364.1"
-       y2="275.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30102" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1347.09,354.19 1347.36,354.36 1345.24,340.51 "
-       id="polygon30104" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.59,541.12 1530.62,540.6 1516.14,541.71 "
-       id="polygon30106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400,513.59 1399.74,513.09 1395.76,520.4 "
-       id="polygon30108" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.96,543.24 1530.8,542.82 1516.32,543.93 "
-       id="polygon30110" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1350.39,353.98 1350.65,353.75 1348.53,339.91 "
-       id="polygon30112" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1402.96,514.04 1402.55,514.34 1398.56,521.64 "
-       id="polygon30114" />
-    <line
-       x1="1579.59"
-       y1="382.51999"
-       x2="1578.54"
-       y2="379.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.61,541.7 1530.59,541.12 1516.11,542.23 "
-       id="polygon30118" />
-    <line
-       x1="1305.33"
-       y1="479.84"
-       x2="1301.66"
-       y2="479.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30120" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1347.36,354.36 1347.77,354.46 1345.66,340.62 "
-       id="polygon30122" />
-    <line
-       x1="1364.1"
-       y1="275.45999"
-       x2="1364.95"
-       y2="275.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30124" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.8,542.82 1530.68,542.29 1516.2,543.39 "
-       id="polygon30126" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.41,514.01 1400,513.59 1396.02,520.89 "
-       id="polygon30128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.68,542.29 1530.61,541.7 1516.13,542.81 "
-       id="polygon30130" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1402.55,514.34 1402.04,514.49 1398.05,521.8 "
-       id="polygon30132" />
-    <line
-       x1="1632.14"
-       y1="500.19"
-       x2="1632.1899"
-       y2="498.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30134" />
-    <line
-       x1="1371.59"
-       y1="254.98"
-       x2="1371.21"
-       y2="254.24001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30136" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.91,514.32 1400.41,514.01 1396.42,521.32 "
-       id="polygon30138" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1349.98,354.19 1350.39,353.98 1348.27,340.14 "
-       id="polygon30140" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1402.04,514.49 1401.48,514.48 1397.49,521.79 "
-       id="polygon30142" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1401.48,514.48 1400.91,514.32 1396.93,521.63 "
-       id="polygon30144" />
-    <line
-       x1="1652.4399"
-       y1="507.39001"
-       x2="1651.98"
-       y2="505.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30146" />
-    <line
-       x1="1328.49"
-       y1="302.79999"
-       x2="1330.33"
-       y2="303.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30148" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1347.77,354.46 1348.3,354.5 1346.18,340.65 "
-       id="polygon30150" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1297.93,587.36 1298.34,587.42 1309.1,582.67 "
-       id="polygon30152" />
-    <line
-       x1="1364.95"
-       y1="275.17001"
-       x2="1365.77"
-       y2="274.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30154" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1349.45,354.36 1349.98,354.19 1347.86,340.34 "
-       id="polygon30156" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1348.3,354.5 1348.88,354.46 1346.76,340.62 "
-       id="polygon30158" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1299.58,590.57 1299.31,590.84 1310.08,586.08 "
-       id="polygon30160" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1348.88,354.46 1349.45,354.36 1347.34,340.51 "
-       id="polygon30162" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1345.24,340.51 1344.97,340.35 1347.09,354.19 "
-       id="polygon30164" />
-    <line
-       x1="1371.9301"
-       y1="255.77"
-       x2="1371.59"
-       y2="254.98"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30166" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1298.34,587.42 1298.75,587.66 1309.52,582.91 "
-       id="polygon30168" />
-    <line
-       x1="1348.02"
-       y1="255.42999"
-       x2="1347.67"
-       y2="255.89"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30170" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1299.74,590.16 1299.58,590.57 1310.34,585.81 "
-       id="polygon30172" />
-    <line
-       x1="1239.05"
-       y1="461.17999"
-       x2="1236.42"
-       y2="459.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30174" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1298.75,587.66 1299.13,588.04 1309.9,583.29 "
-       id="polygon30176" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1345.66,340.62 1345.24,340.51 1347.36,354.36 "
-       id="polygon30178" />
-    <line
-       x1="1372.23"
-       y1="256.60001"
-       x2="1371.9301"
-       y2="255.77"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30180" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1299.77,589.65 1299.74,590.16 1310.5,585.4 "
-       id="polygon30182" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1348.53,339.91 1348.27,340.14 1350.39,353.98 "
-       id="polygon30184" />
-    <line
-       x1="1366.5699"
-       y1="274.38"
-       x2="1367.33"
-       y2="273.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30186" />
-    <line
-       x1="1652.8101"
-       y1="508.98999"
-       x2="1652.4399"
-       y2="507.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30188" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1299.13,588.04 1299.45,588.54 1310.21,583.78 "
-       id="polygon30190" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1299.67,589.09 1299.77,589.65 1310.53,584.89 "
-       id="polygon30192" />
-    <line
-       x1="1632.1899"
-       y1="498.73001"
-       x2="1632.39"
-       y2="497.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30194" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1299.45,588.54 1299.67,589.09 1310.43,584.33 "
-       id="polygon30196" />
-    <polygon
-       style="opacity:1;fill:#008400"
-       points="1348.62,339.68 1348.52,339.46 1348.17,339.55 "
-       id="polygon30198" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.18,340.65 1345.66,340.62 1347.77,354.46 "
-       id="polygon30200" />
-    <line
-       x1="1580.41"
-       y1="385.54999"
-       x2="1579.59"
-       y2="382.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30202" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1348.27,340.14 1347.86,340.34 1349.98,354.19 "
-       id="polygon30204" />
-    <line
-       x1="1367.33"
-       y1="273.89001"
-       x2="1368.0601"
-       y2="273.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30206" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1531.47,543.55 1531.6,543.29 1546.1,542.18 "
-       id="polygon30208" />
-    <line
-       x1="1372.49"
-       y1="257.47"
-       x2="1372.23"
-       y2="256.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30210" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.76,340.62 1346.18,340.65 1348.3,354.5 "
-       id="polygon30212" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1347.86,340.34 1347.34,340.51 1349.45,354.36 "
-       id="polygon30214" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1347.34,340.51 1346.76,340.62 1348.88,354.46 "
-       id="polygon30216" />
-    <line
-       x1="1556.26"
-       y1="439.95999"
-       x2="1557.77"
-       y2="443.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30218" />
-    <line
-       x1="1372.7"
-       y1="258.38"
-       x2="1372.49"
-       y2="257.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30220" />
-    <line
-       x1="1383.8"
-       y1="390.26001"
-       x2="1382.58"
-       y2="392.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30222" />
-    <line
-       x1="1308.87"
-       y1="479.76999"
-       x2="1305.33"
-       y2="479.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30224" />
-    <line
-       x1="1368.74"
-       y1="272.70999"
-       x2="1369.39"
-       y2="272.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30226" />
-    <line
-       x1="1348.83"
-       y1="254.7"
-       x2="1348.41"
-       y2="255.03999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30228" />
-    <line
-       x1="1653.1"
-       y1="510.57001"
-       x2="1652.8101"
-       y2="508.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30230" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1344.96,339.91 1344.88,340.14 1342.75,326.28 "
-       id="polygon30232" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1546.1,542.18 1545.97,542.44 1531.47,543.55 "
-       id="polygon30234" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1531.13,543.52 1531.31,543.63 1545.81,542.52 "
-       id="polygon30236" />
-    <line
-       x1="1369.39"
-       y1="272.04001"
-       x2="1369.98"
-       y2="271.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30238" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1530.84,539.93 1530.71,540.19 1545.21,539.07 "
-       id="polygon30240" />
-    <line
-       x1="1632.39"
-       y1="497.23001"
-       x2="1632.75"
-       y2="495.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30242" />
-    <line
-       x1="1372.98"
-       y1="260.25"
-       x2="1372.86"
-       y2="259.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30244" />
-    <line
-       x1="1492.89"
-       y1="412.48999"
-       x2="1494.38"
-       y2="415.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30246" />
-    <line
-       x1="1494.38"
-       y1="415.53"
-       x2="1496.09"
-       y2="418.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30248" />
-    <line
-       x1="1491.62"
-       y1="409.37"
-       x2="1492.89"
-       y2="412.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30250" />
-    <line
-       x1="1496.09"
-       y1="418.47"
-       x2="1498.02"
-       y2="421.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30252" />
-    <line
-       x1="1581.02"
-       y1="388.67999"
-       x2="1580.41"
-       y2="385.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30254" />
-    <line
-       x1="1373.03"
-       y1="261.22"
-       x2="1372.98"
-       y2="260.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30256" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1530.71,540.19 1530.62,540.6 1545.13,539.48 "
-       id="polygon30258" />
-    <line
-       x1="1490.59"
-       y1="406.17999"
-       x2="1491.62"
-       y2="409.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30260" />
-    <line
-       x1="1349.28"
-       y1="254.44"
-       x2="1348.83"
-       y2="254.7"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30262" />
-    <line
-       x1="1370.53"
-       y1="270.54001"
-       x2="1371.03"
-       y2="269.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30264" />
-    <line
-       x1="1498.02"
-       y1="421.29001"
-       x2="1500.14"
-       y2="423.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30266" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1346.14,325.44 1346.41,325.61 1348.52,339.46 "
-       id="polygon30268" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1348.53,339.91 1348.62,339.68 1346.5,325.81 "
-       id="polygon30270" />
-    <line
-       x1="1373.04"
-       y1="262.20001"
-       x2="1373.03"
-       y2="261.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30272" />
-    <line
-       x1="1236.42"
-       y1="459.82001"
-       x2="1234.02"
-       y2="458.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30274" />
-    <line
-       x1="1371.03"
-       y1="269.72"
-       x2="1371.48"
-       y2="268.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30276" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1344.97,340.35 1345.24,340.51 1343.12,326.65 "
-       id="polygon30278" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.8,542.82 1530.96,543.24 1545.46,542.13 "
-       id="polygon30280" />
-    <line
-       x1="1489.79"
-       y1="402.95001"
-       x2="1490.59"
-       y2="406.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30282" />
-    <line
-       x1="1500.14"
-       y1="423.98001"
-       x2="1502.46"
-       y2="426.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30284" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.62,540.6 1530.59,541.12 1545.09,540 "
-       id="polygon30286" />
-    <line
-       x1="1372.98"
-       y1="263.17999"
-       x2="1373.04"
-       y2="262.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30288" />
-    <line
-       x1="1653.3101"
-       y1="512.13"
-       x2="1653.1"
-       y2="510.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30290" />
-    <line
-       x1="1371.48"
-       y1="268.85999"
-       x2="1371.87"
-       y2="267.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30292" />
-    <line
-       x1="1372.88"
-       y1="264.16"
-       x2="1372.98"
-       y2="263.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30294" />
-    <line
-       x1="1371.87"
-       y1="267.97"
-       x2="1372.2"
-       y2="267.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30296" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.68,542.29 1530.8,542.82 1545.31,541.7 "
-       id="polygon30298" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1348.27,340.14 1348.53,339.91 1346.41,326.04 "
-       id="polygon30300" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.59,541.12 1530.61,541.7 1545.12,540.59 "
-       id="polygon30302" />
-    <line
-       x1="1372.71"
-       y1="265.14001"
-       x2="1372.88"
-       y2="264.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30304" />
-    <line
-       x1="1330.33"
-       y1="303.97"
-       x2="1332.35"
-       y2="305.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30306" />
-    <line
-       x1="1372.48"
-       y1="266.10001"
-       x2="1372.71"
-       y2="265.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1530.61,541.7 1530.68,542.29 1545.19,541.17 "
-       id="polygon30310" />
-    <line
-       x1="1502.46"
-       y1="426.51001"
-       x2="1504.96"
-       y2="428.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30312" />
-    <line
-       x1="1489.23"
-       y1="399.69"
-       x2="1489.79"
-       y2="402.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1345.24,340.51 1345.66,340.62 1343.54,326.75 "
-       id="polygon30316" />
-    <line
-       x1="1632.75"
-       y1="495.73001"
-       x2="1633.27"
-       y2="494.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30318" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1347.86,340.34 1348.27,340.14 1346.15,326.27 "
-       id="polygon30320" />
-    <line
-       x1="1504.96"
-       y1="428.87"
-       x2="1507.63"
-       y2="431.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1345.66,340.62 1346.18,340.65 1344.06,326.79 "
-       id="polygon30324" />
-    <line
-       x1="1488.92"
-       y1="396.42999"
-       x2="1489.23"
-       y2="399.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30326" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1347.34,340.51 1347.86,340.34 1345.74,326.48 "
-       id="polygon30328" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.18,340.65 1346.76,340.62 1344.64,326.75 "
-       id="polygon30330" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1545.21,539.07 1545.34,538.82 1530.84,539.93 "
-       id="polygon30332" />
-    <line
-       x1="1581.38"
-       y1="391.85999"
-       x2="1581.02"
-       y2="388.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30334" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1346.76,340.62 1347.34,340.51 1345.22,326.64 "
-       id="polygon30336" />
-    <line
-       x1="1312.26"
-       y1="479.51001"
-       x2="1308.87"
-       y2="479.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30338" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1343.12,326.65 1342.85,326.48 1344.97,340.35 "
-       id="polygon30340" />
-    <line
-       x1="1653.45"
-       y1="513.65997"
-       x2="1653.3101"
-       y2="512.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30342" />
-    <line
-       x1="1507.63"
-       y1="431.04999"
-       x2="1510.45"
-       y2="433.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30344" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1545.81,542.52 1545.64,542.41 1531.13,543.52 "
-       id="polygon30346" />
-    <line
-       x1="1557.77"
-       y1="443.13"
-       x2="1558.97"
-       y2="446.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30348" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1297.58,587.46 1297.31,587.73 1286.51,592.5 "
-       id="polygon30350" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1545.13,539.48 1545.21,539.07 1530.71,540.19 "
-       id="polygon30352" />
-    <line
-       x1="1488.84"
-       y1="393.17999"
-       x2="1488.92"
-       y2="396.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1343.54,326.75 1343.12,326.65 1345.24,340.51 "
-       id="polygon30356" />
-    <line
-       x1="1384.75"
-       y1="387.95001"
-       x2="1383.8"
-       y2="390.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30358" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1545.64,542.41 1545.46,542.13 1530.96,543.24 "
-       id="polygon30360" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1346.41,326.04 1346.15,326.27 1348.27,340.14 "
-       id="polygon30362" />
-    <line
-       x1="1510.45"
-       y1="433.03"
-       x2="1513.4"
-       y2="434.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30364" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.09,540 1545.13,539.48 1530.62,540.6 "
-       id="polygon30366" />
-    <line
-       x1="1633.27"
-       y1="494.23001"
-       x2="1633.95"
-       y2="492.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30368" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1344.06,326.79 1343.54,326.75 1345.66,340.62 "
-       id="polygon30370" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.46,542.13 1545.31,541.7 1530.8,542.82 "
-       id="polygon30372" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1346.15,326.27 1345.74,326.48 1347.86,340.34 "
-       id="polygon30374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.12,540.59 1545.09,540 1530.59,541.12 "
-       id="polygon30376" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.31,541.7 1545.19,541.17 1530.68,542.29 "
-       id="polygon30378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.19,541.17 1545.12,540.59 1530.61,541.7 "
-       id="polygon30380" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1344.64,326.75 1344.06,326.79 1346.18,340.65 "
-       id="polygon30382" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1286.51,592.5 1286.78,592.23 1297.58,587.46 "
-       id="polygon30384" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1298.34,587.42 1297.93,587.36 1287.13,592.13 "
-       id="polygon30386" />
-    <line
-       x1="1489.01"
-       y1="389.97"
-       x2="1488.84"
-       y2="393.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30388" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1345.74,326.48 1345.22,326.64 1347.34,340.51 "
-       id="polygon30390" />
-    <line
-       x1="1513.4"
-       y1="434.79999"
-       x2="1516.47"
-       y2="436.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30392" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1345.22,326.64 1344.64,326.75 1346.76,340.62 "
-       id="polygon30394" />
-    <line
-       x1="1581.51"
-       y1="395.10001"
-       x2="1581.38"
-       y2="391.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30396" />
-    <line
-       x1="1653.51"
-       y1="515.15002"
-       x2="1653.45"
-       y2="513.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30398" />
-    <line
-       x1="1350.46"
-       y1="254.16"
-       x2="1350.35"
-       y2="254.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30400" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1298.75,587.66 1298.34,587.42 1287.54,592.2 "
-       id="polygon30402" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1299.31,590.84 1299.58,590.57 1288.78,595.35 "
-       id="polygon30404" />
-    <line
-       x1="1516.47"
-       y1="436.35999"
-       x2="1519.65"
-       y2="437.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30406" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1342.84,326.05 1342.75,326.28 1340.63,312.39 "
-       id="polygon30408" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1299.13,588.04 1298.75,587.66 1287.95,592.43 "
-       id="polygon30410" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1299.58,590.57 1299.74,590.16 1288.94,594.93 "
-       id="polygon30412" />
-    <line
-       x1="1489.41"
-       y1="386.81"
-       x2="1489.01"
-       y2="389.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30414" />
-    <line
-       x1="1633.95"
-       y1="492.73001"
-       x2="1634.78"
-       y2="491.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30416" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1399.75,512.08 1399.66,512.57 1403.66,505.23 "
-       id="polygon30418" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1299.45,588.54 1299.13,588.04 1288.33,592.82 "
-       id="polygon30420" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1299.74,590.16 1299.77,589.65 1288.96,594.42 "
-       id="polygon30422" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1299.67,589.09 1299.45,588.54 1288.65,593.31 "
-       id="polygon30424" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1299.77,589.65 1299.67,589.09 1288.87,593.86 "
-       id="polygon30426" />
-    <line
-       x1="1519.65"
-       y1="437.67999"
-       x2="1522.92"
-       y2="438.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30428" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1399.66,512.57 1399.74,513.09 1403.74,505.75 "
-       id="polygon30430" />
-    <line
-       x1="1581.39"
-       y1="398.35999"
-       x2="1581.51"
-       y2="395.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30432" />
-    <line
-       x1="1332.35"
-       y1="305.32999"
-       x2="1334.54"
-       y2="306.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30434" />
-    <line
-       x1="1315.5"
-       y1="479.07001"
-       x2="1312.26"
-       y2="479.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30436" />
-    <line
-       x1="1653.49"
-       y1="516.59998"
-       x2="1653.51"
-       y2="515.15002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30438" />
-    <polygon
-       style="opacity:1;fill:#00e100"
-       points="1344.02,311.56 1344.29,311.72 1346.41,325.61 "
-       id="polygon30440" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1346.41,326.04 1346.5,325.81 1344.38,311.93 "
-       id="polygon30442" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1402.55,514.34 1402.96,514.04 1406.96,506.7 "
-       id="polygon30444" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1399.74,513.09 1400,513.59 1404,506.24 "
-       id="polygon30446" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1342.85,326.48 1343.12,326.65 1341,312.77 "
-       id="polygon30448" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1545.68,538.84 1545.5,538.74 1560.04,537.62 "
-       id="polygon30450" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1402.04,514.49 1402.55,514.34 1406.56,507 "
-       id="polygon30452" />
-    <line
-       x1="1490.05"
-       y1="383.73001"
-       x2="1489.41"
-       y2="386.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30454" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400,513.59 1400.41,514.01 1404.41,506.66 "
-       id="polygon30456" />
-    <line
-       x1="1522.92"
-       y1="438.76999"
-       x2="1526.25"
-       y2="439.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30458" />
-    <line
-       x1="1339.51"
-       y1="277.07999"
-       x2="1336.12"
-       y2="270.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30460" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1401.48,514.48 1402.04,514.49 1406.05,507.15 "
-       id="polygon30462" />
-    <line
-       x1="1558.97"
-       y1="446.44"
-       x2="1559.87"
-       y2="449.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30464" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1346.15,326.27 1346.41,326.04 1344.29,312.16 "
-       id="polygon30466" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1400.41,514.01 1400.91,514.32 1404.92,506.98 "
-       id="polygon30468" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1400.91,514.32 1401.48,514.48 1405.48,507.14 "
-       id="polygon30470" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1343.12,326.65 1343.54,326.75 1341.41,312.87 "
-       id="polygon30472" />
-    <line
-       x1="1634.78"
-       y1="491.26001"
-       x2="1635.76"
-       y2="489.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30474" />
-    <line
-       x1="1385.4399"
-       y1="385.48999"
-       x2="1384.75"
-       y2="387.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30476" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1345.74,326.48 1346.15,326.27 1344.03,312.38 "
-       id="polygon30478" />
-    <line
-       x1="1581.04"
-       y1="401.62"
-       x2="1581.39"
-       y2="398.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1343.54,326.75 1344.06,326.79 1341.94,312.9 "
-       id="polygon30482" />
-    <line
-       x1="1526.25"
-       y1="439.60999"
-       x2="1529.64"
-       y2="440.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30484" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1345.22,326.64 1345.74,326.48 1343.62,312.59 "
-       id="polygon30486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1344.06,326.79 1344.64,326.75 1342.52,312.86 "
-       id="polygon30488" />
-    <line
-       x1="1653.41"
-       y1="518"
-       x2="1653.49"
-       y2="516.59998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30490" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1545.34,538.82 1545.21,539.07 1559.75,537.96 "
-       id="polygon30492" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1344.64,326.75 1345.22,326.64 1343.1,312.76 "
-       id="polygon30494" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1341,312.77 1340.73,312.6 1342.85,326.48 "
-       id="polygon30496" />
-    <line
-       x1="1490.91"
-       y1="380.73999"
-       x2="1490.05"
-       y2="383.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30498" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1287.13,592.13 1287.54,592.2 1298.34,587.42 "
-       id="polygon30500" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1288.78,595.35 1288.51,595.62 1299.31,590.84 "
-       id="polygon30502" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1545.46,542.13 1545.64,542.41 1560.18,541.3 "
-       id="polygon30504" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1545.21,539.07 1545.13,539.48 1559.67,538.37 "
-       id="polygon30506" />
-    <line
-       x1="1529.64"
-       y1="440.20001"
-       x2="1533.05"
-       y2="440.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30508" />
-    <line
-       x1="1231.84"
-       y1="457.29999"
-       x2="1229.9"
-       y2="456.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30510" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1341.41,312.87 1341,312.77 1343.12,326.65 "
-       id="polygon30512" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1287.54,592.2 1287.95,592.43 1298.75,587.66 "
-       id="polygon30514" />
-    <line
-       x1="1635.76"
-       y1="489.81"
-       x2="1636.89"
-       y2="488.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30516" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1344.29,312.16 1344.03,312.38 1346.15,326.27 "
-       id="polygon30518" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.31,541.7 1545.46,542.13 1560,541.02 "
-       id="polygon30520" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1288.94,594.93 1288.78,595.35 1299.58,590.57 "
-       id="polygon30522" />
-    <line
-       x1="1580.4399"
-       y1="404.87"
-       x2="1581.04"
-       y2="401.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30524" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.13,539.48 1545.09,540 1559.64,538.89 "
-       id="polygon30526" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1287.95,592.43 1288.33,592.82 1299.13,588.04 "
-       id="polygon30528" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.19,541.17 1545.31,541.7 1559.85,540.59 "
-       id="polygon30530" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1341.94,312.9 1341.41,312.87 1343.54,326.75 "
-       id="polygon30532" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.09,540 1545.12,540.59 1559.66,539.47 "
-       id="polygon30534" />
-    <line
-       x1="1351.34"
-       y1="255.31"
-       x2="1351.24"
-       y2="255.08"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30536" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1288.96,594.42 1288.94,594.93 1299.74,590.16 "
-       id="polygon30538" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1344.03,312.38 1343.62,312.59 1345.74,326.48 "
-       id="polygon30540" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1545.12,540.59 1545.19,541.17 1559.73,540.06 "
-       id="polygon30542" />
-    <line
-       x1="1533.05"
-       y1="440.54001"
-       x2="1536.48"
-       y2="440.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30544" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1288.33,592.82 1288.65,593.31 1299.45,588.54 "
-       id="polygon30546" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1288.87,593.86 1288.96,594.42 1299.77,589.65 "
-       id="polygon30548" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1342.52,312.86 1341.94,312.9 1344.06,326.79 "
-       id="polygon30550" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1288.65,593.31 1288.87,593.86 1299.67,589.09 "
-       id="polygon30552" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1343.62,312.59 1343.1,312.76 1345.22,326.64 "
-       id="polygon30554" />
-    <line
-       x1="1653.26"
-       y1="519.34003"
-       x2="1653.41"
-       y2="518"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30556" />
-    <line
-       x1="1318.55"
-       y1="478.45001"
-       x2="1315.5"
-       y2="479.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30558" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1343.1,312.76 1342.52,312.86 1344.64,326.75 "
-       id="polygon30560" />
-    <line
-       x1="1491.98"
-       y1="377.85999"
-       x2="1490.91"
-       y2="380.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30562" />
-    <line
-       x1="1536.48"
-       y1="440.62"
-       x2="1539.9"
-       y2="440.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30564" />
-    <line
-       x1="1579.59"
-       y1="408.09"
-       x2="1580.4399"
-       y2="404.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30566" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1559.75,537.96 1559.88,537.7 1545.34,538.82 "
-       id="polygon30568" />
-    <line
-       x1="1636.89"
-       y1="488.41"
-       x2="1638.16"
-       y2="487.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30570" />
-    <line
-       x1="1334.54"
-       y1="306.88"
-       x2="1336.88"
-       y2="308.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30572" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1560.35,541.4 1560.18,541.3 1545.64,542.41 "
-       id="polygon30574" />
-    <line
-       x1="1559.87"
-       y1="449.85999"
-       x2="1560.46"
-       y2="453.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30576" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1559.67,538.37 1559.75,537.96 1545.21,539.07 "
-       id="polygon30578" />
-    <line
-       x1="1351.6"
-       y1="256.13"
-       x2="1351.52"
-       y2="255.83"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30580" />
-    <line
-       x1="1539.9"
-       y1="440.44"
-       x2="1543.3"
-       y2="440.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30582" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1403.74,505.75 1403.66,505.23 1399.66,512.57 "
-       id="polygon30584" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1560.18,541.3 1560,541.02 1545.46,542.13 "
-       id="polygon30586" />
-    <line
-       x1="1385.86"
-       y1="382.88"
-       x2="1385.4399"
-       y2="385.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30588" />
-    <line
-       x1="1578.51"
-       y1="411.25"
-       x2="1579.59"
-       y2="408.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404,506.24 1403.74,505.75 1399.74,513.09 "
-       id="polygon30592" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.64,538.89 1559.67,538.37 1545.13,539.48 "
-       id="polygon30594" />
-    <line
-       x1="1653.04"
-       y1="520.63"
-       x2="1653.26"
-       y2="519.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30596" />
-    <line
-       x1="1493.27"
-       y1="375.10999"
-       x2="1491.98"
-       y2="377.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30598" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1344.29,312.16 1344.38,311.93 1342.26,298.02 "
-       id="polygon30600" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1560,541.02 1559.85,540.59 1545.31,541.7 "
-       id="polygon30602" />
-    <line
-       x1="1543.3"
-       y1="440.01001"
-       x2="1546.65"
-       y2="439.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30604" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.41,506.66 1404,506.24 1400,513.59 "
-       id="polygon30606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.66,539.47 1559.64,538.89 1545.09,540 "
-       id="polygon30608" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1406.56,507 1406.05,507.15 1402.04,514.49 "
-       id="polygon30610" />
-    <line
-       x1="1638.16"
-       y1="487.07001"
-       x2="1639.55"
-       y2="485.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30612" />
-    <polygon
-       style="opacity:1;fill:#009700"
-       points="1338.5,298.49 1338.59,298.27 1340.72,312.17 "
-       id="polygon30614" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1340.73,312.6 1341,312.77 1338.87,298.86 "
-       id="polygon30616" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.85,540.59 1559.73,540.06 1545.19,541.17 "
-       id="polygon30618" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.73,540.06 1559.66,539.47 1545.12,540.59 "
-       id="polygon30620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.92,506.98 1404.41,506.66 1400.41,514.01 "
-       id="polygon30622" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1406.05,507.15 1405.48,507.14 1401.48,514.48 "
-       id="polygon30624" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1405.48,507.14 1404.92,506.98 1400.91,514.32 "
-       id="polygon30626" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1288.78,595.35 1288.51,595.62 1288.34,595.28 "
-       id="polygon30628" />
-    <line
-       x1="1577.2"
-       y1="414.32999"
-       x2="1578.51"
-       y2="411.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30630" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1344.03,312.38 1344.29,312.16 1342.17,298.25 "
-       id="polygon30632" />
-    <line
-       x1="1546.65"
-       y1="439.32999"
-       x2="1549.9399"
-       y2="438.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1341,312.77 1341.41,312.87 1339.29,298.96 "
-       id="polygon30636" />
-    <line
-       x1="1229.9"
-       y1="456.17001"
-       x2="1228.21"
-       y2="455.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30638" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1343.62,312.59 1344.03,312.38 1341.91,298.48 "
-       id="polygon30640" />
-    <line
-       x1="1351.79"
-       y1="257.48001"
-       x2="1351.76"
-       y2="257.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30642" />
-    <line
-       x1="1575.65"
-       y1="417.32001"
-       x2="1577.2"
-       y2="414.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30644" />
-    <line
-       x1="1549.9399"
-       y1="438.39001"
-       x2="1553.15"
-       y2="437.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30646" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1341.41,312.87 1341.94,312.9 1339.81,298.99 "
-       id="polygon30648" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1343.1,312.76 1343.62,312.59 1341.49,298.68 "
-       id="polygon30650" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1341.94,312.9 1342.52,312.86 1340.39,298.95 "
-       id="polygon30652" />
-    <line
-       x1="1639.55"
-       y1="485.78"
-       x2="1641.08"
-       y2="484.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30654" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1342.52,312.86 1343.1,312.76 1340.97,298.85 "
-       id="polygon30656" />
-    <line
-       x1="1652.76"
-       y1="521.84998"
-       x2="1653.04"
-       y2="520.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30658" />
-    <line
-       x1="1494.76"
-       y1="372.5"
-       x2="1493.27"
-       y2="375.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30660" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1338.87,298.86 1338.6,298.7 1340.73,312.6 "
-       id="polygon30662" />
-    <line
-       x1="1553.15"
-       y1="437.22"
-       x2="1556.25"
-       y2="435.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30664" />
-    <line
-       x1="1573.88"
-       y1="420.20001"
-       x2="1575.65"
-       y2="417.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30666" />
-    <line
-       x1="1321.42"
-       y1="477.64001"
-       x2="1318.55"
-       y2="478.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30668" />
-    <line
-       x1="1556.25"
-       y1="435.79999"
-       x2="1559.25"
-       y2="434.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30670" />
-    <line
-       x1="1571.91"
-       y1="422.95001"
-       x2="1573.88"
-       y2="420.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30672" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1339.29,298.96 1338.87,298.86 1341,312.77 "
-       id="polygon30674" />
-    <line
-       x1="1351.79"
-       y1="258.64999"
-       x2="1351.8"
-       y2="258.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30676" />
-    <line
-       x1="1559.25"
-       y1="434.16"
-       x2="1562.11"
-       y2="432.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30678" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1342.17,298.25 1341.91,298.48 1344.03,312.38 "
-       id="polygon30680" />
-    <line
-       x1="1569.73"
-       y1="425.54999"
-       x2="1571.91"
-       y2="422.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30682" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1560.21,537.73 1560.04,537.62 1574.61,536.5 "
-       id="polygon30684" />
-    <line
-       x1="1273.62"
-       y1="375.35001"
-       x2="1274.3199"
-       y2="375.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30686" />
-    <line
-       x1="1560.46"
-       y1="453.37"
-       x2="1560.72"
-       y2="456.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30688" />
-    <line
-       x1="1562.11"
-       y1="432.29999"
-       x2="1564.8101"
-       y2="430.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30690" />
-    <line
-       x1="1567.36"
-       y1="427.98001"
-       x2="1569.73"
-       y2="425.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30692" />
-    <line
-       x1="1336.88"
-       y1="308.60999"
-       x2="1339.34"
-       y2="310.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30694" />
-    <line
-       x1="1564.8101"
-       y1="430.23999"
-       x2="1567.36"
-       y2="427.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30696" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1339.81,298.99 1339.29,298.96 1341.41,312.87 "
-       id="polygon30698" />
-    <line
-       x1="1641.08"
-       y1="484.57001"
-       x2="1642.73"
-       y2="483.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30700" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1341.91,298.48 1341.49,298.68 1343.62,312.59 "
-       id="polygon30702" />
-    <line
-       x1="1351.7"
-       y1="259.48001"
-       x2="1351.75"
-       y2="259.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30704" />
-    <line
-       x1="1386"
-       y1="380.14001"
-       x2="1385.86"
-       y2="382.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30706" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1340.39,298.95 1339.81,298.99 1341.94,312.9 "
-       id="polygon30708" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1341.49,298.68 1340.97,298.85 1343.1,312.76 "
-       id="polygon30710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1340.97,298.85 1340.39,298.95 1342.52,312.86 "
-       id="polygon30712" />
-    <line
-       x1="1652.4301"
-       y1="523"
-       x2="1652.76"
-       y2="521.84998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30714" />
-    <line
-       x1="1496.4399"
-       y1="370.06"
-       x2="1494.76"
-       y2="372.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30716" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1287.54,592.2 1287.13,592.13 1276.29,596.91 "
-       id="polygon30718" />
-    <line
-       x1="1351.54"
-       y1="260.34"
-       x2="1351.63"
-       y2="259.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30720" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1559.88,537.7 1559.75,537.96 1574.33,536.84 "
-       id="polygon30722" />
-    <line
-       x1="1642.73"
-       y1="483.44"
-       x2="1644.48"
-       y2="482.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30724" />
-    <line
-       x1="1351.3101"
-       y1="261.22"
-       x2="1351.4399"
-       y2="260.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30726" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1287.95,592.43 1287.54,592.2 1276.7,596.98 "
-       id="polygon30728" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1560,541.02 1560.18,541.3 1574.75,540.18 "
-       id="polygon30730" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1559.75,537.96 1559.67,538.37 1574.24,537.25 "
-       id="polygon30732" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1288.33,592.82 1287.95,592.43 1277.11,597.22 "
-       id="polygon30734" />
-    <line
-       x1="1344.48"
-       y1="268.17001"
-       x2="1344.95"
-       y2="268.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30736" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1288.78,595.35 1288.94,594.93 1278.1,599.73 "
-       id="polygon30738" />
-    <line
-       x1="1350.8199"
-       y1="262.53"
-       x2="1351"
-       y2="262.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.85,540.59 1560,541.02 1574.58,539.9 "
-       id="polygon30742" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.67,538.37 1559.64,538.89 1574.21,537.77 "
-       id="polygon30744" />
-    <line
-       x1="1345.41"
-       y1="267.85999"
-       x2="1345.86"
-       y2="267.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30746" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1288.65,593.31 1288.33,592.82 1277.49,597.61 "
-       id="polygon30748" />
-    <line
-       x1="1350.39"
-       y1="263.39001"
-       x2="1350.61"
-       y2="262.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30750" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1288.94,594.93 1288.96,594.42 1278.13,599.21 "
-       id="polygon30752" />
-    <polygon
-       style="opacity:1;fill:#00c900"
-       points="1342.17,298.25 1342.26,298.02 1340.13,284.09 "
-       id="polygon30754" />
-    <line
-       x1="1346.29"
-       y1="267.45001"
-       x2="1346.72"
-       y2="267.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30756" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.73,540.06 1559.85,540.59 1574.43,539.47 "
-       id="polygon30758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.64,538.89 1559.66,539.47 1574.23,538.35 "
-       id="polygon30760" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1288.87,593.86 1288.65,593.31 1277.81,598.1 "
-       id="polygon30762" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1288.96,594.42 1288.87,593.86 1278.03,598.65 "
-       id="polygon30764" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1559.66,539.47 1559.73,540.06 1574.31,538.94 "
-       id="polygon30766" />
-    <line
-       x1="1228.21"
-       y1="455.13"
-       x2="1226.77"
-       y2="454.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30768" />
-    <line
-       x1="1652.04"
-       y1="524.08002"
-       x2="1652.4301"
-       y2="523"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30770" />
-    <line
-       x1="1349.6"
-       y1="264.60999"
-       x2="1349.88"
-       y2="264.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30772" />
-    <line
-       x1="1347.54"
-       y1="266.67001"
-       x2="1347.92"
-       y2="266.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30774" />
-    <line
-       x1="1644.48"
-       y1="482.41"
-       x2="1646.33"
-       y2="481.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30776" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1338.6,298.7 1338.87,298.86 1336.74,284.93 "
-       id="polygon30778" />
-    <line
-       x1="1348.64"
-       y1="265.70999"
-       x2="1348.98"
-       y2="265.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30780" />
-    <line
-       x1="1324.08"
-       y1="476.64001"
-       x2="1321.42"
-       y2="477.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30782" />
-    <line
-       x1="1498.3"
-       y1="367.79999"
-       x2="1496.4399"
-       y2="370.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30784" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1341.91,298.48 1342.17,298.25 1340.04,284.32 "
-       id="polygon30786" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1338.87,298.86 1339.29,298.96 1337.16,285.03 "
-       id="polygon30788" />
-    <line
-       x1="1560.72"
-       y1="456.95001"
-       x2="1560.66"
-       y2="460.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30790" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1341.49,298.68 1341.91,298.48 1339.78,284.55 "
-       id="polygon30792" />
-    <line
-       x1="1646.33"
-       y1="481.47"
-       x2="1648.27"
-       y2="480.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30794" />
-    <line
-       x1="1339.34"
-       y1="310.53"
-       x2="1341.9301"
-       y2="312.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30796" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1339.29,298.96 1339.81,298.99 1337.68,285.06 "
-       id="polygon30798" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1574.92,540.29 1574.75,540.18 1560.18,541.3 "
-       id="polygon30800" />
-    <line
-       x1="1385.89"
-       y1="377.26001"
-       x2="1386"
-       y2="380.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30802" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1340.97,298.85 1341.49,298.68 1339.36,284.75 "
-       id="polygon30804" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1339.81,298.99 1340.39,298.95 1338.26,285.02 "
-       id="polygon30806" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1574.24,537.25 1574.33,536.84 1559.75,537.96 "
-       id="polygon30808" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1340.39,298.95 1340.97,298.85 1338.84,284.92 "
-       id="polygon30810" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1336.74,284.93 1336.47,284.77 1338.6,298.7 "
-       id="polygon30812" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1574.75,540.18 1574.58,539.9 1560,541.02 "
-       id="polygon30814" />
-    <line
-       x1="1651.6"
-       y1="525.08002"
-       x2="1652.04"
-       y2="524.08002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30816" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.21,537.77 1574.24,537.25 1559.67,538.37 "
-       id="polygon30818" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.58,539.9 1574.43,539.47 1559.85,540.59 "
-       id="polygon30820" />
-    <line
-       x1="1648.27"
-       y1="480.64001"
-       x2="1650.29"
-       y2="479.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30822" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1276.29,596.91 1276.7,596.98 1287.54,592.2 "
-       id="polygon30824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1337.16,285.03 1336.74,284.93 1338.87,298.86 "
-       id="polygon30826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.23,538.35 1574.21,537.77 1559.64,538.89 "
-       id="polygon30828" />
-    <line
-       x1="1274.3199"
-       y1="375.63"
-       x2="1275.26"
-       y2="376.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30830" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1340.04,284.32 1339.78,284.55 1341.91,298.48 "
-       id="polygon30832" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.43,539.47 1574.31,538.94 1559.73,540.06 "
-       id="polygon30834" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1277.95,600.14 1277.68,600.41 1288.51,595.62 "
-       id="polygon30836" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.31,538.94 1574.23,538.35 1559.66,539.47 "
-       id="polygon30838" />
-    <line
-       x1="1500.3199"
-       y1="365.72"
-       x2="1498.3"
-       y2="367.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30840" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1276.7,596.98 1277.11,597.22 1287.95,592.43 "
-       id="polygon30842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1337.68,285.06 1337.16,285.03 1339.29,298.96 "
-       id="polygon30844" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1404.41,504.02 1404.01,504.32 1408.02,496.94 "
-       id="polygon30846" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1339.78,284.55 1339.36,284.75 1341.49,298.68 "
-       id="polygon30848" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1278.1,599.73 1277.95,600.14 1288.78,595.35 "
-       id="polygon30850" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1338.26,285.02 1337.68,285.06 1339.81,298.99 "
-       id="polygon30852" />
-    <line
-       x1="1650.29"
-       y1="479.92999"
-       x2="1652.37"
-       y2="479.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30854" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1339.36,284.75 1338.84,284.92 1340.97,298.85 "
-       id="polygon30856" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1277.11,597.22 1277.49,597.61 1288.33,592.82 "
-       id="polygon30858" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1338.84,284.92 1338.26,285.02 1340.39,298.95 "
-       id="polygon30860" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1278.13,599.21 1278.1,599.73 1288.94,594.93 "
-       id="polygon30862" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1277.49,597.61 1277.81,598.1 1288.65,593.31 "
-       id="polygon30864" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1278.03,598.65 1278.13,599.21 1288.96,594.42 "
-       id="polygon30866" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1277.81,598.1 1278.03,598.65 1288.87,593.86 "
-       id="polygon30868" />
-    <line
-       x1="1651.13"
-       y1="526"
-       x2="1651.6"
-       y2="525.08002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30870" />
-    <line
-       x1="1652.37"
-       y1="479.34"
-       x2="1654.5"
-       y2="478.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30872" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1403.66,505.23 1403.74,505.75 1407.76,498.37 "
-       id="polygon30874" />
-    <line
-       x1="1560.66"
-       y1="460.57999"
-       x2="1560.28"
-       y2="464.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30876" />
-    <line
-       x1="1326.52"
-       y1="475.44"
-       x2="1324.08"
-       y2="476.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30878" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1406.56,507 1406.96,506.7 1410.99,499.32 "
-       id="polygon30880" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1344.01"
-       y2="268.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30882" />
-    <line
-       x1="1385.5"
-       y1="374.26999"
-       x2="1385.89"
-       y2="377.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30884" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1403.74,505.75 1404,506.24 1408.02,498.87 "
-       id="polygon30886" />
-    <line
-       x1="1226.77"
-       y1="454.20999"
-       x2="1225.6"
-       y2="453.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30888" />
-    <line
-       x1="1341.9301"
-       y1="312.63"
-       x2="1344.6"
-       y2="314.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30890" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1406.05,507.15 1406.56,507 1410.59,499.62 "
-       id="polygon30892" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404,506.24 1404.41,506.66 1408.43,499.29 "
-       id="polygon30894" />
-    <line
-       x1="1654.5"
-       y1="478.88"
-       x2="1656.6801"
-       y2="478.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30896" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1574.79,536.61 1574.61,536.5 1589.21,535.38 "
-       id="polygon30898" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1405.48,507.14 1406.05,507.15 1410.07,499.77 "
-       id="polygon30900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1404.41,506.66 1404.92,506.98 1408.94,499.6 "
-       id="polygon30902" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1404.92,506.98 1405.48,507.14 1409.5,499.77 "
-       id="polygon30904" />
-    <line
-       x1="1502.48"
-       y1="363.85001"
-       x2="1500.3199"
-       y2="365.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30906" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1336.47,284.77 1336.74,284.93 1334.6,270.98 "
-       id="polygon30908" />
-    <line
-       x1="1656.6801"
-       y1="478.54999"
-       x2="1658.89"
-       y2="478.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30910" />
-    <line
-       x1="1658.89"
-       y1="478.35999"
-       x2="1661.11"
-       y2="478.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30912" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1589.21,535.38 1589.39,535.49 1574.79,536.61 "
-       id="polygon30914" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1574.45,536.58 1574.33,536.84 1588.93,535.72 "
-       id="polygon30916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1337.16,285.03 1337.68,285.06 1335.55,271.11 "
-       id="polygon30918" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1574.58,539.9 1574.75,540.18 1589.36,539.07 "
-       id="polygon30920" />
-    <line
-       x1="1661.11"
-       y1="478.31"
-       x2="1662.14"
-       y2="478.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30922" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1574.33,536.84 1574.24,537.25 1588.85,536.13 "
-       id="polygon30924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.43,539.47 1574.58,539.9 1589.19,538.79 "
-       id="polygon30926" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.24,537.25 1574.21,537.77 1588.82,536.65 "
-       id="polygon30928" />
-    <line
-       x1="1662.14"
-       y1="478.53"
-       x2="1663.17"
-       y2="478.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30930" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.31,538.94 1574.43,539.47 1589.04,538.36 "
-       id="polygon30932" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.21,537.77 1574.23,538.35 1588.84,537.23 "
-       id="polygon30934" />
-    <line
-       x1="1275.26"
-       y1="376.07999"
-       x2="1276.4399"
-       y2="376.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30936" />
-    <line
-       x1="1384.87"
-       y1="371.17999"
-       x2="1385.5"
-       y2="374.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30938" />
-    <line
-       x1="1560.28"
-       y1="464.23001"
-       x2="1559.5699"
-       y2="467.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1574.23,538.35 1574.31,538.94 1588.91,537.82 "
-       id="polygon30942" />
-    <line
-       x1="1504.79"
-       y1="362.19"
-       x2="1502.48"
-       y2="363.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30944" />
-    <polygon
-       style="opacity:1;fill:#00b000"
-       points="1337.91,270.37 1337.64,270.59 1339.78,284.55 "
-       id="polygon30946" />
-    <line
-       x1="1344.6"
-       y1="314.89001"
-       x2="1347.34"
-       y2="317.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30948" />
-    <line
-       x1="1663.17"
-       y1="478.79001"
-       x2="1664.1899"
-       y2="479.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30950" />
-    <line
-       x1="1328.72"
-       y1="474.06"
-       x2="1326.52"
-       y2="475.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30952" />
-    <line
-       x1="1220.83"
-       y1="550.46002"
-       x2="1216.89"
-       y2="549.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30954" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1336.13,271.07 1335.55,271.11 1337.68,285.06 "
-       id="polygon30956" />
-    <line
-       x1="1664.1899"
-       y1="479.10999"
-       x2="1665.21"
-       y2="479.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30958" />
-    <line
-       x1="1224.8199"
-       y1="551.64001"
-       x2="1220.83"
-       y2="550.46002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30960" />
-    <line
-       x1="1216.89"
-       y1="549.20001"
-       x2="1213.02"
-       y2="547.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30962" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1589.53,539.17 1589.36,539.07 1574.75,540.18 "
-       id="polygon30964" />
-    <line
-       x1="1665.21"
-       y1="479.48001"
-       x2="1666.21"
-       y2="479.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30966" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1407.76,498.37 1407.67,497.85 1403.66,505.23 "
-       id="polygon30968" />
-    <line
-       x1="1228.84"
-       y1="552.71997"
-       x2="1224.8199"
-       y2="551.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30970" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1588.85,536.13 1588.93,535.72 1574.33,536.84 "
-       id="polygon30972" />
-    <line
-       x1="1213.02"
-       y1="547.88"
-       x2="1209.24"
-       y2="546.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30974" />
-    <line
-       x1="1225.6"
-       y1="453.41"
-       x2="1224.6899"
-       y2="452.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30976" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.02,498.87 1407.76,498.37 1403.74,505.75 "
-       id="polygon30978" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1589.36,539.07 1589.19,538.79 1574.58,539.9 "
-       id="polygon30980" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1276.7,596.98 1276.29,596.91 1265.42,601.71 "
-       id="polygon30982" />
-    <line
-       x1="1666.21"
-       y1="479.89999"
-       x2="1667.1899"
-       y2="480.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30984" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1410.99,499.32 1410.59,499.62 1406.56,507 "
-       id="polygon30986" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.82,536.65 1588.85,536.13 1574.24,537.25 "
-       id="polygon30988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.43,499.29 1408.02,498.87 1404,506.24 "
-       id="polygon30990" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1410.59,499.62 1410.07,499.77 1406.05,507.15 "
-       id="polygon30992" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1589.19,538.79 1589.04,538.36 1574.43,539.47 "
-       id="polygon30994" />
-    <line
-       x1="1232.88"
-       y1="553.70001"
-       x2="1228.84"
-       y2="552.71997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30996" />
-    <line
-       x1="1667.1899"
-       y1="480.37"
-       x2="1668.15"
-       y2="480.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.94,499.6 1408.43,499.29 1404.41,506.66 "
-       id="polygon31000" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.84,537.23 1588.82,536.65 1574.21,537.77 "
-       id="polygon31002" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1410.07,499.77 1409.5,499.77 1405.48,507.14 "
-       id="polygon31004" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1277.11,597.22 1276.7,596.98 1265.82,601.78 "
-       id="polygon31006" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1409.5,499.77 1408.94,499.6 1404.92,506.98 "
-       id="polygon31008" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1589.04,538.36 1588.91,537.82 1574.31,538.94 "
-       id="polygon31010" />
-    <line
-       x1="1209.24"
-       y1="546.51001"
-       x2="1205.5699"
-       y2="545.09998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31012" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.91,537.82 1588.84,537.23 1574.23,538.35 "
-       id="polygon31014" />
-    <line
-       x1="1507.21"
-       y1="360.76001"
-       x2="1504.79"
-       y2="362.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31016" />
-    <line
-       x1="1383.98"
-       y1="368.01001"
-       x2="1384.87"
-       y2="371.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31018" />
-    <line
-       x1="1668.15"
-       y1="480.88"
-       x2="1669.09"
-       y2="481.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31020" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1277.49,597.61 1277.11,597.22 1266.24,602.02 "
-       id="polygon31022" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1277.95,600.14 1278.1,599.73 1267.23,604.54 "
-       id="polygon31024" />
-    <line
-       x1="1559.5699"
-       y1="467.87"
-       x2="1558.54"
-       y2="471.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31026" />
-    <line
-       x1="1347.34"
-       y1="317.31"
-       x2="1350.14"
-       y2="319.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31028" />
-    <line
-       x1="1669.09"
-       y1="481.45001"
-       x2="1670.01"
-       y2="482.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31030" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1277.81,598.1 1277.49,597.61 1266.62,602.41 "
-       id="polygon31032" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1278.1,599.73 1278.13,599.21 1267.26,604.02 "
-       id="polygon31034" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1278.03,598.65 1277.81,598.1 1266.94,602.91 "
-       id="polygon31036" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1278.13,599.21 1278.03,598.65 1267.16,603.46 "
-       id="polygon31038" />
-    <line
-       x1="1236.89"
-       y1="554.57001"
-       x2="1232.88"
-       y2="553.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31040" />
-    <line
-       x1="1670.01"
-       y1="482.06"
-       x2="1670.89"
-       y2="482.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31042" />
-    <line
-       x1="1205.5699"
-       y1="545.09998"
-       x2="1202.02"
-       y2="543.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31044" />
-    <line
-       x1="1671.74"
-       y1="483.42001"
-       x2="1672.5601"
-       y2="484.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31046" />
-    <line
-       x1="1672.5601"
-       y1="484.16"
-       x2="1673.33"
-       y2="484.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31048" />
-    <line
-       x1="1330.6899"
-       y1="472.48999"
-       x2="1328.72"
-       y2="474.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31050" />
-    <line
-       x1="1276.4399"
-       y1="376.73001"
-       x2="1277.84"
-       y2="377.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31052" />
-    <line
-       x1="1240.88"
-       y1="555.31"
-       x2="1236.89"
-       y2="554.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31054" />
-    <line
-       x1="1673.33"
-       y1="484.95001"
-       x2="1674.0699"
-       y2="485.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31056" />
-    <line
-       x1="1382.86"
-       y1="364.76001"
-       x2="1383.98"
-       y2="368.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31058" />
-    <line
-       x1="1509.73"
-       y1="359.56"
-       x2="1507.21"
-       y2="360.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31060" />
-    <line
-       x1="1202.02"
-       y1="543.65997"
-       x2="1198.62"
-       y2="542.21997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31062" />
-    <line
-       x1="1674.76"
-       y1="486.63"
-       x2="1675.41"
-       y2="487.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31064" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1265.42,601.71 1265.82,601.78 1276.7,596.98 "
-       id="polygon31066" />
-    <line
-       x1="1350.14"
-       y1="319.88"
-       x2="1352.96"
-       y2="322.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31068" />
-    <line
-       x1="1675.41"
-       y1="487.53"
-       x2="1676"
-       y2="488.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31070" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1267.07,604.95 1266.81,605.22 1277.68,600.41 "
-       id="polygon31072" />
-    <line
-       x1="1558.54"
-       y1="471.48001"
-       x2="1557.1801"
-       y2="475.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31074" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1603.85,534.26 1604.02,534.36 1589.39,535.49 "
-       id="polygon31076" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1589.06,535.46 1588.93,535.72 1603.57,534.59 "
-       id="polygon31078" />
-    <line
-       x1="1676"
-       y1="488.45001"
-       x2="1676.55"
-       y2="489.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31080" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1265.82,601.78 1266.24,602.02 1277.11,597.22 "
-       id="polygon31082" />
-    <line
-       x1="1445.65"
-       y1="437.70001"
-       x2="1446.5"
-       y2="433.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31084" />
-    <line
-       x1="1224.6899"
-       y1="452.75"
-       x2="1224.04"
-       y2="452.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31086" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1267.23,604.54 1267.07,604.95 1277.95,600.14 "
-       id="polygon31088" />
-    <line
-       x1="1676.55"
-       y1="489.41"
-       x2="1677.05"
-       y2="490.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31090" />
-    <line
-       x1="1445.11"
-       y1="442.04999"
-       x2="1445.65"
-       y2="437.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31092" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1589.19,538.79 1589.36,539.07 1604,537.95 "
-       id="polygon31094" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1266.24,602.02 1266.62,602.41 1277.49,597.61 "
-       id="polygon31096" />
-    <line
-       x1="1677.05"
-       y1="490.39001"
-       x2="1677.49"
-       y2="491.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31098" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1588.93,535.72 1588.85,536.13 1603.49,535 "
-       id="polygon31100" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1410.99,499.32 1410.59,499.62 1410.37,499.32 "
-       id="polygon31102" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1267.26,604.02 1267.23,604.54 1278.1,599.73 "
-       id="polygon31104" />
-    <line
-       x1="1244.8199"
-       y1="555.90997"
-       x2="1240.88"
-       y2="555.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31106" />
-    <line
-       x1="1444.89"
-       y1="446.44"
-       x2="1445.11"
-       y2="442.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31108" />
-    <line
-       x1="1677.49"
-       y1="491.39999"
-       x2="1677.88"
-       y2="492.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31110" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1266.62,602.41 1266.94,602.91 1277.81,598.1 "
-       id="polygon31112" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1267.16,603.46 1267.26,604.02 1278.13,599.21 "
-       id="polygon31114" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1266.94,602.91 1267.16,603.46 1278.03,598.65 "
-       id="polygon31116" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1589.04,538.36 1589.19,538.79 1603.83,537.66 "
-       id="polygon31118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.85,536.13 1588.82,536.65 1603.46,535.53 "
-       id="polygon31120" />
-    <line
-       x1="1677.88"
-       y1="492.42999"
-       x2="1678.22"
-       y2="493.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31122" />
-    <line
-       x1="1444.99"
-       y1="450.84"
-       x2="1444.89"
-       y2="446.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31124" />
-    <line
-       x1="1381.5"
-       y1="361.45001"
-       x2="1382.86"
-       y2="364.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31126" />
-    <line
-       x1="1198.62"
-       y1="542.21997"
-       x2="1195.38"
-       y2="540.78998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31128" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.91,537.82 1589.04,538.36 1603.68,537.23 "
-       id="polygon31130" />
-    <line
-       x1="1678.22"
-       y1="493.47"
-       x2="1678.5"
-       y2="494.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31132" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.82,536.65 1588.84,537.23 1603.48,536.11 "
-       id="polygon31134" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1588.84,537.23 1588.91,537.82 1603.55,536.7 "
-       id="polygon31136" />
-    <line
-       x1="1678.5"
-       y1="494.53"
-       x2="1678.73"
-       y2="495.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31138" />
-    <line
-       x1="1352.96"
-       y1="322.60001"
-       x2="1355.79"
-       y2="325.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31140" />
-    <line
-       x1="1512.34"
-       y1="358.60999"
-       x2="1509.73"
-       y2="359.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31142" />
-    <line
-       x1="1678.73"
-       y1="495.60001"
-       x2="1678.89"
-       y2="496.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31144" />
-    <line
-       x1="1445.41"
-       y1="455.20999"
-       x2="1444.99"
-       y2="450.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31146" />
-    <line
-       x1="1678.89"
-       y1="496.67999"
-       x2="1679.01"
-       y2="497.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31148" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1603.57,534.59 1603.7,534.34 1589.06,535.46 "
-       id="polygon31150" />
-    <line
-       x1="1679.01"
-       y1="497.76999"
-       x2="1679.0699"
-       y2="498.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31152" />
-    <line
-       x1="1557.1801"
-       y1="475.04001"
-       x2="1555.52"
-       y2="478.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31154" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1604.17,538.05 1604,537.95 1589.36,539.07 "
-       id="polygon31156" />
-    <line
-       x1="1446.16"
-       y1="459.54999"
-       x2="1445.41"
-       y2="455.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31158" />
-    <line
-       x1="1679.0699"
-       y1="498.85001"
-       x2="1679.0699"
-       y2="499.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31160" />
-    <line
-       x1="1332.41"
-       y1="470.73001"
-       x2="1330.6899"
-       y2="472.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31162" />
-    <line
-       x1="1248.6899"
-       y1="556.35999"
-       x2="1244.8199"
-       y2="555.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31164" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1603.49,535 1603.57,534.59 1588.93,535.72 "
-       id="polygon31166" />
-    <line
-       x1="1679.0699"
-       y1="499.92999"
-       x2="1679.02"
-       y2="501.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31168" />
-    <line
-       x1="1379.9301"
-       y1="358.09"
-       x2="1381.5"
-       y2="361.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31170" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1604,537.95 1603.83,537.66 1589.19,538.79 "
-       id="polygon31172" />
-    <line
-       x1="1679.02"
-       y1="501.01999"
-       x2="1678.91"
-       y2="502.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31174" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.46,535.53 1603.49,535 1588.85,536.13 "
-       id="polygon31176" />
-    <line
-       x1="1447.23"
-       y1="463.82999"
-       x2="1446.16"
-       y2="459.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31178" />
-    <line
-       x1="1195.38"
-       y1="540.78998"
-       x2="1192.3199"
-       y2="539.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31180" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.83,537.66 1603.68,537.23 1589.04,538.36 "
-       id="polygon31182" />
-    <line
-       x1="1277.84"
-       y1="377.57001"
-       x2="1279.46"
-       y2="378.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31184" />
-    <line
-       x1="1678.91"
-       y1="502.09"
-       x2="1678.75"
-       y2="503.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31186" />
-    <line
-       x1="1355.79"
-       y1="325.44"
-       x2="1358.61"
-       y2="328.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.48,536.11 1603.46,535.53 1588.82,536.65 "
-       id="polygon31190" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.68,537.23 1603.55,536.7 1588.91,537.82 "
-       id="polygon31192" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.55,536.7 1603.48,536.11 1588.84,537.23 "
-       id="polygon31194" />
-    <line
-       x1="1678.75"
-       y1="503.14999"
-       x2="1678.54"
-       y2="504.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31196" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1408.43,496.64 1408.02,496.94 1412.06,489.53 "
-       id="polygon31198" />
-    <line
-       x1="1678.54"
-       y1="504.20001"
-       x2="1678.29"
-       y2="505.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31200" />
-    <line
-       x1="1448.61"
-       y1="468.01999"
-       x2="1447.23"
-       y2="463.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31202" />
-    <line
-       x1="1515.01"
-       y1="357.89999"
-       x2="1512.34"
-       y2="358.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31204" />
-    <line
-       x1="1678.29"
-       y1="505.23001"
-       x2="1677.98"
-       y2="506.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31206" />
-    <line
-       x1="1378.15"
-       y1="354.70001"
-       x2="1379.9301"
-       y2="358.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31208" />
-    <line
-       x1="1677.98"
-       y1="506.23001"
-       x2="1677.63"
-       y2="507.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31210" />
-    <line
-       x1="1555.52"
-       y1="478.51001"
-       x2="1553.55"
-       y2="481.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31212" />
-    <line
-       x1="1252.46"
-       y1="556.65997"
-       x2="1248.6899"
-       y2="556.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31214" />
-    <line
-       x1="1358.61"
-       y1="328.41"
-       x2="1361.39"
-       y2="331.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31216" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1407.67,497.85 1407.76,498.37 1411.8,490.96 "
-       id="polygon31218" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1410.59,499.62 1410.99,499.32 1415.04,491.91 "
-       id="polygon31220" />
-    <line
-       x1="1677.63"
-       y1="507.22"
-       x2="1677.24"
-       y2="508.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31222" />
-    <line
-       x1="1450.3"
-       y1="472.10001"
-       x2="1448.61"
-       y2="468.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31224" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1407.76,498.37 1408.02,498.87 1412.06,491.46 "
-       id="polygon31226" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1410.07,499.77 1410.59,499.62 1414.63,492.21 "
-       id="polygon31228" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.02,498.87 1408.43,499.29 1412.46,491.88 "
-       id="polygon31230" />
-    <line
-       x1="1677.24"
-       y1="508.17999"
-       x2="1676.8"
-       y2="509.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31232" />
-    <line
-       x1="1376.1801"
-       y1="351.29999"
-       x2="1378.15"
-       y2="354.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31234" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1409.5,499.77 1410.07,499.77 1414.11,492.37 "
-       id="polygon31236" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1408.43,499.29 1408.94,499.6 1412.98,492.19 "
-       id="polygon31238" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1408.94,499.6 1409.5,499.77 1413.55,492.36 "
-       id="polygon31240" />
-    <line
-       x1="1192.3199"
-       y1="539.37"
-       x2="1189.45"
-       y2="538"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31242" />
-    <line
-       x1="1463.47"
-       y1="403.85001"
-       x2="1466.64"
-       y2="401.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31244" />
-    <line
-       x1="1361.39"
-       y1="331.47"
-       x2="1364.12"
-       y2="334.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31246" />
-    <line
-       x1="1676.8"
-       y1="509.10999"
-       x2="1676.33"
-       y2="510.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31248" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1253.9,606.91 1254.16,606.64 1265.07,601.82 "
-       id="polygon31250" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1265.82,601.78 1265.42,601.71 1254.52,606.53 "
-       id="polygon31252" />
-    <line
-       x1="1452.3"
-       y1="476.04001"
-       x2="1450.3"
-       y2="472.10001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31254" />
-    <line
-       x1="1333.87"
-       y1="468.79999"
-       x2="1332.41"
-       y2="470.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31256" />
-    <line
-       x1="1374.05"
-       y1="347.89999"
-       x2="1376.1801"
-       y2="351.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31258" />
-    <line
-       x1="1676.33"
-       y1="510.01001"
-       x2="1675.8199"
-       y2="510.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31260" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1266.24,602.02 1265.82,601.78 1254.91,606.6 "
-       id="polygon31262" />
-    <line
-       x1="1364.12"
-       y1="334.63"
-       x2="1366.77"
-       y2="337.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31264" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1604,537.95 1604.17,538.05 1618.84,536.93 "
-       id="polygon31266" />
-    <line
-       x1="1517.73"
-       y1="357.45001"
-       x2="1515.01"
-       y2="357.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31268" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1618.52,533.13 1618.69,533.23 1604.02,534.36 "
-       id="polygon31270" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1603.7,534.34 1603.57,534.59 1618.24,533.46 "
-       id="polygon31272" />
-    <line
-       x1="1371.75"
-       y1="344.51999"
-       x2="1374.05"
-       y2="347.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31274" />
-    <line
-       x1="1553.55"
-       y1="481.88"
-       x2="1551.3"
-       y2="485.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31276" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1266.62,602.41 1266.24,602.02 1255.33,606.84 "
-       id="polygon31278" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1267.07,604.95 1267.23,604.54 1256.32,609.36 "
-       id="polygon31280" />
-    <line
-       x1="1366.77"
-       y1="337.87"
-       x2="1369.3199"
-       y2="341.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31282" />
-    <line
-       x1="1369.3199"
-       y1="341.17001"
-       x2="1371.75"
-       y2="344.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31284" />
-    <line
-       x1="1256.13"
-       y1="556.78998"
-       x2="1252.46"
-       y2="556.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31286" />
-    <line
-       x1="1454.58"
-       y1="479.82999"
-       x2="1452.3"
-       y2="476.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31288" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1266.94,602.91 1266.62,602.41 1255.71,607.23 "
-       id="polygon31290" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1603.83,537.66 1604,537.95 1618.67,536.82 "
-       id="polygon31292" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1267.23,604.54 1267.26,604.02 1256.35,608.84 "
-       id="polygon31294" />
-    <line
-       x1="1466.64"
-       y1="401.06"
-       x2="1469.98"
-       y2="398.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31296" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1603.57,534.59 1603.49,535 1618.16,533.88 "
-       id="polygon31298" />
-    <line
-       x1="1675.29"
-       y1="511.70001"
-       x2="1674.72"
-       y2="512.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31300" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1267.16,603.46 1266.94,602.91 1256.03,607.73 "
-       id="polygon31302" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1267.26,604.02 1267.16,603.46 1256.25,608.28 "
-       id="polygon31304" />
-    <line
-       x1="1279.46"
-       y1="378.60999"
-       x2="1281.27"
-       y2="379.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31306" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.68,537.23 1603.83,537.66 1618.5,536.54 "
-       id="polygon31308" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.49,535 1603.46,535.53 1618.13,534.4 "
-       id="polygon31310" />
-    <line
-       x1="1674.72"
-       y1="512.48999"
-       x2="1674.12"
-       y2="513.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31312" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.55,536.7 1603.68,537.23 1618.35,536.11 "
-       id="polygon31314" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.46,535.53 1603.48,536.11 1618.16,534.98 "
-       id="polygon31316" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1603.48,536.11 1603.55,536.7 1618.23,535.57 "
-       id="polygon31318" />
-    <line
-       x1="1457.14"
-       y1="483.44"
-       x2="1454.58"
-       y2="479.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31320" />
-    <line
-       x1="1189.45"
-       y1="538"
-       x2="1186.78"
-       y2="536.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31322" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1411.71,490.44 1411.8,489.95 1407.76,497.36 "
-       id="polygon31324" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1618.24,533.46 1618.36,533.21 1603.7,534.34 "
-       id="polygon31326" />
-    <line
-       x1="1551.3"
-       y1="485.13"
-       x2="1548.76"
-       y2="488.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31328" />
-    <line
-       x1="1469.98"
-       y1="398.53"
-       x2="1473.46"
-       y2="396.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31330" />
-    <line
-       x1="1673.5"
-       y1="513.95001"
-       x2="1672.87"
-       y2="514.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31332" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1411.8,490.96 1411.71,490.44 1407.67,497.85 "
-       id="polygon31334" />
-    <line
-       x1="1520.48"
-       y1="357.25"
-       x2="1517.73"
-       y2="357.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31336" />
-    <line
-       x1="1459.96"
-       y1="486.85001"
-       x2="1457.14"
-       y2="483.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31338" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1254.52,606.53 1254.91,606.6 1265.82,601.78 "
-       id="polygon31340" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.06,491.46 1411.8,490.96 1407.76,498.37 "
-       id="polygon31342" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1415.04,491.91 1414.63,492.21 1410.59,499.62 "
-       id="polygon31344" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1256.17,609.77 1255.9,610.04 1266.81,605.22 "
-       id="polygon31346" />
-    <line
-       x1="1672.87"
-       y1="514.62"
-       x2="1672.21"
-       y2="515.22998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31348" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1618.67,536.82 1618.5,536.54 1603.83,537.66 "
-       id="polygon31350" />
-    <line
-       x1="1335.0699"
-       y1="466.69"
-       x2="1333.87"
-       y2="468.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31352" />
-    <line
-       x1="1259.67"
-       y1="556.75"
-       x2="1256.13"
-       y2="556.78998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31354" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.46,491.88 1412.06,491.46 1408.02,498.87 "
-       id="polygon31356" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1414.63,492.21 1414.11,492.37 1410.07,499.77 "
-       id="polygon31358" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.13,534.4 1618.16,533.88 1603.49,535 "
-       id="polygon31360" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1254.91,606.6 1255.33,606.84 1266.24,602.02 "
-       id="polygon31362" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.98,492.19 1412.46,491.88 1408.43,499.29 "
-       id="polygon31364" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1414.11,492.37 1413.55,492.36 1409.5,499.77 "
-       id="polygon31366" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.5,536.54 1618.35,536.11 1603.68,537.23 "
-       id="polygon31368" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1413.55,492.36 1412.98,492.19 1408.94,499.6 "
-       id="polygon31370" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1256.32,609.36 1256.17,609.77 1267.07,604.95 "
-       id="polygon31372" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.16,534.98 1618.13,534.4 1603.46,535.53 "
-       id="polygon31374" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.35,536.11 1618.23,535.57 1603.55,536.7 "
-       id="polygon31376" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1255.33,606.84 1255.71,607.23 1266.62,602.41 "
-       id="polygon31378" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.23,535.57 1618.16,534.98 1603.48,536.11 "
-       id="polygon31380" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1256.35,608.84 1256.32,609.36 1267.23,604.54 "
-       id="polygon31382" />
-    <line
-       x1="1463.04"
-       y1="490.04999"
-       x2="1459.96"
-       y2="486.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31384" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1255.71,607.23 1256.03,607.73 1266.94,602.91 "
-       id="polygon31386" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1256.25,608.28 1256.35,608.84 1267.26,604.02 "
-       id="polygon31388" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1256.03,607.73 1256.25,608.28 1267.16,603.46 "
-       id="polygon31390" />
-    <line
-       x1="1548.76"
-       y1="488.22"
-       x2="1545.95"
-       y2="491.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31392" />
-    <line
-       x1="1473.46"
-       y1="396.26999"
-       x2="1477.08"
-       y2="394.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31394" />
-    <line
-       x1="1671.55"
-       y1="515.79999"
-       x2="1670.88"
-       y2="516.33002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31396" />
-    <line
-       x1="1186.78"
-       y1="536.65997"
-       x2="1184.33"
-       y2="535.40002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31398" />
-    <line
-       x1="1466.34"
-       y1="493.01001"
-       x2="1463.04"
-       y2="490.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31400" />
-    <line
-       x1="1281.27"
-       y1="379.84"
-       x2="1283.28"
-       y2="381.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31402" />
-    <line
-       x1="1523.24"
-       y1="357.29999"
-       x2="1520.48"
-       y2="357.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31404" />
-    <line
-       x1="1545.95"
-       y1="491.14001"
-       x2="1542.89"
-       y2="493.87"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31406" />
-    <line
-       x1="1263.0601"
-       y1="556.53998"
-       x2="1259.67"
-       y2="556.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31408" />
-    <line
-       x1="1469.86"
-       y1="495.73001"
-       x2="1466.34"
-       y2="493.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31410" />
-    <line
-       x1="1477.08"
-       y1="394.29001"
-       x2="1480.79"
-       y2="392.60001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31412" />
-    <line
-       x1="1336"
-       y1="464.41"
-       x2="1335.0699"
-       y2="466.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31414" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1633.22,532 1633.39,532.11 1618.69,533.23 "
-       id="polygon31416" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1618.36,533.21 1618.24,533.46 1632.95,532.34 "
-       id="polygon31418" />
-    <line
-       x1="1473.5601"
-       y1="498.17001"
-       x2="1469.86"
-       y2="495.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31420" />
-    <line
-       x1="1542.89"
-       y1="493.87"
-       x2="1539.61"
-       y2="496.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31422" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1633.82,535.46 1633.7,535.72 1618.99,536.85 "
-       id="polygon31424" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1618.5,536.54 1618.67,536.82 1633.38,535.7 "
-       id="polygon31426" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1618.24,533.46 1618.16,533.88 1632.87,532.75 "
-       id="polygon31428" />
-    <line
-       x1="1184.33"
-       y1="535.40002"
-       x2="1182.11"
-       y2="534.21002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31430" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.35,536.11 1618.5,536.54 1633.21,535.41 "
-       id="polygon31432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.16,533.88 1618.13,534.4 1632.84,533.27 "
-       id="polygon31434" />
-    <line
-       x1="1477.4399"
-       y1="500.34"
-       x2="1473.5601"
-       y2="498.17001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31436" />
-    <line
-       x1="1525.99"
-       y1="357.62"
-       x2="1523.24"
-       y2="357.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31438" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.23,535.57 1618.35,536.11 1633.05,534.98 "
-       id="polygon31440" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.13,534.4 1618.16,534.98 1632.86,533.86 "
-       id="polygon31442" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1618.16,534.98 1618.23,535.57 1632.94,534.45 "
-       id="polygon31444" />
-    <line
-       x1="1539.61"
-       y1="496.39001"
-       x2="1536.1"
-       y2="498.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31446" />
-    <line
-       x1="1480.79"
-       y1="392.60001"
-       x2="1484.59"
-       y2="391.22"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31448" />
-    <line
-       x1="1481.47"
-       y1="502.23001"
-       x2="1477.4399"
-       y2="500.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31450" />
-    <line
-       x1="1283.28"
-       y1="381.25"
-       x2="1285.45"
-       y2="382.85999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31452" />
-    <line
-       x1="1266.29"
-       y1="556.14001"
-       x2="1263.0601"
-       y2="556.53998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31454" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1632.95,532.34 1633.07,532.08 1618.36,533.21 "
-       id="polygon31456" />
-    <line
-       x1="1651.13"
-       y1="526"
-       x2="1673.39"
-       y2="529.77002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31458" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1242.96,611.74 1243.22,611.47 1254.16,606.64 "
-       id="polygon31460" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1254.91,606.6 1254.52,606.53 1243.57,611.36 "
-       id="polygon31462" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1632.87,532.75 1632.95,532.34 1618.24,533.46 "
-       id="polygon31464" />
-    <line
-       x1="1536.1"
-       y1="498.67999"
-       x2="1532.4"
-       y2="500.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31466" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1255.33,606.84 1254.91,606.6 1243.97,611.43 "
-       id="polygon31468" />
-    <line
-       x1="1485.62"
-       y1="503.81"
-       x2="1481.47"
-       y2="502.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31470" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1633.38,535.7 1633.21,535.41 1618.5,536.54 "
-       id="polygon31472" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.84,533.27 1632.87,532.75 1618.16,533.88 "
-       id="polygon31474" />
-    <line
-       x1="1336.66"
-       y1="461.98001"
-       x2="1336"
-       y2="464.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31476" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1255.71,607.23 1255.33,606.84 1244.38,611.68 "
-       id="polygon31478" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1256.17,609.77 1256.32,609.36 1245.38,614.2 "
-       id="polygon31480" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1633.21,535.41 1633.05,534.98 1618.35,536.11 "
-       id="polygon31482" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.86,533.86 1632.84,533.27 1618.13,534.4 "
-       id="polygon31484" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1633.05,534.98 1632.94,534.45 1618.23,535.57 "
-       id="polygon31486" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1256.03,607.73 1255.71,607.23 1244.77,612.06 "
-       id="polygon31488" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1256.32,609.36 1256.35,608.84 1245.41,613.68 "
-       id="polygon31490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.94,534.45 1632.86,533.86 1618.16,534.98 "
-       id="polygon31492" />
-    <line
-       x1="1532.4"
-       y1="500.70999"
-       x2="1528.53"
-       y2="502.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31494" />
-    <line
-       x1="1489.88"
-       y1="505.09"
-       x2="1485.62"
-       y2="503.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31496" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1256.25,608.28 1256.03,607.73 1245.09,612.56 "
-       id="polygon31498" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1256.35,608.84 1256.25,608.28 1245.3,613.12 "
-       id="polygon31500" />
-    <line
-       x1="1528.71"
-       y1="358.20001"
-       x2="1525.99"
-       y2="357.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31502" />
-    <line
-       x1="1484.59"
-       y1="391.22"
-       x2="1488.4399"
-       y2="390.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31504" />
-    <line
-       x1="1494.2"
-       y1="506.04999"
-       x2="1489.88"
-       y2="505.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31506" />
-    <line
-       x1="1182.11"
-       y1="534.21002"
-       x2="1180.13"
-       y2="533.12"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31508" />
-    <line
-       x1="1528.53"
-       y1="502.5"
-       x2="1524.51"
-       y2="504"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31510" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1411.71,490.44 1411.8,490.96 1415.85,483.52 "
-       id="polygon31512" />
-    <line
-       x1="1223.71"
-       y1="451.64999"
-       x2="1224.12"
-       y2="451.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31514" />
-    <line
-       x1="1498.59"
-       y1="506.70001"
-       x2="1494.2"
-       y2="506.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31516" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1414.63,492.21 1415.04,491.91 1419.09,484.47 "
-       id="polygon31518" />
-    <line
-       x1="1524.51"
-       y1="504"
-       x2="1520.36"
-       y2="505.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31520" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1411.8,490.96 1412.06,491.46 1416.11,484.02 "
-       id="polygon31522" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1414.11,492.37 1414.63,492.21 1418.69,484.77 "
-       id="polygon31524" />
-    <line
-       x1="1502.99"
-       y1="507.03"
-       x2="1498.59"
-       y2="506.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31526" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.06,491.46 1412.46,491.88 1416.52,484.44 "
-       id="polygon31528" />
-    <line
-       x1="1520.36"
-       y1="505.20999"
-       x2="1516.11"
-       y2="506.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31530" />
-    <line
-       x1="1269.34"
-       y1="555.54999"
-       x2="1266.29"
-       y2="556.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31532" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1413.55,492.36 1414.11,492.37 1418.18,484.93 "
-       id="polygon31534" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1412.46,491.88 1412.98,492.19 1417.04,484.75 "
-       id="polygon31536" />
-    <line
-       x1="1507.4"
-       y1="507.04999"
-       x2="1502.99"
-       y2="507.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31538" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1412.98,492.19 1413.55,492.36 1417.61,484.92 "
-       id="polygon31540" />
-    <line
-       x1="1516.11"
-       y1="506.13"
-       x2="1511.78"
-       y2="506.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31542" />
-    <line
-       x1="1511.78"
-       y1="506.75"
-       x2="1507.4"
-       y2="507.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31544" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1633.39,532.11 1633.22,532 1647.96,530.87 "
-       id="polygon31546" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1243.57,611.36 1243.97,611.43 1254.91,606.6 "
-       id="polygon31548" />
-    <line
-       x1="1285.45"
-       y1="382.85999"
-       x2="1287.77"
-       y2="384.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31550" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1245.22,614.61 1244.96,614.88 1255.9,610.04 "
-       id="polygon31552" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1243.97,611.43 1244.38,611.68 1255.33,606.84 "
-       id="polygon31554" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1245.38,614.2 1245.22,614.61 1256.17,609.77 "
-       id="polygon31556" />
-    <line
-       x1="1488.4399"
-       y1="390.14001"
-       x2="1492.3199"
-       y2="389.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31558" />
-    <line
-       x1="1531.39"
-       y1="359.01999"
-       x2="1528.71"
-       y2="358.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31560" />
-    <line
-       x1="1337.05"
-       y1="459.39999"
-       x2="1336.66"
-       y2="461.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31562" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1244.38,611.68 1244.77,612.06 1255.71,607.23 "
-       id="polygon31564" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1245.41,613.68 1245.38,614.2 1256.32,609.36 "
-       id="polygon31566" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1633.07,532.08 1632.95,532.34 1647.68,531.2 "
-       id="polygon31568" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1244.77,612.06 1245.09,612.56 1256.03,607.73 "
-       id="polygon31570" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1245.3,613.12 1245.41,613.68 1256.35,608.84 "
-       id="polygon31572" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1245.09,612.56 1245.3,613.12 1256.25,608.28 "
-       id="polygon31574" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1648.55,534.34 1648.43,534.59 1633.7,535.72 "
-       id="polygon31576" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1633.21,535.41 1633.38,535.7 1648.11,534.57 "
-       id="polygon31578" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1632.95,532.34 1632.87,532.75 1647.61,531.61 "
-       id="polygon31580" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1633.05,534.98 1633.21,535.41 1647.95,534.29 "
-       id="polygon31582" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.87,532.75 1632.84,533.27 1647.58,532.14 "
-       id="polygon31584" />
-    <line
-       x1="1180.13"
-       y1="533.12"
-       x2="1178.4"
-       y2="532.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.94,534.45 1633.05,534.98 1647.8,533.85 "
-       id="polygon31588" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.84,533.27 1632.86,533.86 1647.6,532.73 "
-       id="polygon31590" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1632.86,533.86 1632.94,534.45 1647.68,533.32 "
-       id="polygon31592" />
-    <polygon
-       style="opacity:1;fill:#00eb00"
-       points="1243.22,611.47 1243.57,611.36 1243.68,611.73 "
-       id="polygon31594" />
-    <line
-       x1="1272.2"
-       y1="554.78003"
-       x2="1269.34"
-       y2="555.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31596" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1647.68,531.2 1647.8,530.95 1633.07,532.08 "
-       id="polygon31598" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1415.85,483.52 1415.76,483 1411.71,490.44 "
-       id="polygon31600" />
-    <line
-       x1="1492.3199"
-       y1="389.38"
-       x2="1496.2"
-       y2="388.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31602" />
-    <line
-       x1="1533.99"
-       y1="360.09"
-       x2="1531.39"
-       y2="359.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31604" />
-    <line
-       x1="1224.12"
-       y1="451.79999"
-       x2="1224.78"
-       y2="452.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31606" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1416.11,484.02 1415.85,483.52 1411.8,490.96 "
-       id="polygon31608" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1647.61,531.61 1647.68,531.2 1632.95,532.34 "
-       id="polygon31610" />
-    <line
-       x1="1287.77"
-       y1="384.66"
-       x2="1290.22"
-       y2="386.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31612" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1416.52,484.44 1416.11,484.02 1412.06,491.46 "
-       id="polygon31614" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1648.11,534.57 1647.95,534.29 1633.21,535.41 "
-       id="polygon31616" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1418.69,484.77 1418.18,484.93 1414.11,492.37 "
-       id="polygon31618" />
-    <line
-       x1="1337.1801"
-       y1="456.67999"
-       x2="1337.05"
-       y2="459.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31620" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1417.04,484.75 1416.52,484.44 1412.46,491.88 "
-       id="polygon31622" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1418.18,484.93 1417.61,484.92 1413.55,492.36 "
-       id="polygon31624" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.58,532.14 1647.61,531.61 1632.87,532.75 "
-       id="polygon31626" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1417.61,484.92 1417.04,484.75 1412.98,492.19 "
-       id="polygon31628" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.95,534.29 1647.8,533.85 1633.05,534.98 "
-       id="polygon31630" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.6,532.73 1647.58,532.14 1632.84,533.27 "
-       id="polygon31632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.8,533.85 1647.68,533.32 1632.94,534.45 "
-       id="polygon31634" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.68,533.32 1647.6,532.73 1632.86,533.86 "
-       id="polygon31636" />
-    <line
-       x1="1676.95"
-       y1="528.95001"
-       x2="1675.39"
-       y2="525.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31638" />
-    <line
-       x1="1536.52"
-       y1="361.41"
-       x2="1533.99"
-       y2="360.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31640" />
-    <line
-       x1="1496.2"
-       y1="388.92001"
-       x2="1500.0699"
-       y2="388.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31642" />
-    <line
-       x1="1274.84"
-       y1="553.81"
-       x2="1272.2"
-       y2="554.78003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31644" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1243.97,611.43 1243.57,611.36 1232.59,616.21 "
-       id="polygon31646" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1648.12,530.97 1647.96,530.87 1662.73,529.73 "
-       id="polygon31648" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1244.38,611.68 1243.97,611.43 1232.99,616.29 "
-       id="polygon31650" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1244.96,614.88 1245.22,614.61 1234.25,619.46 "
-       id="polygon31652" />
-    <line
-       x1="1290.22"
-       y1="386.63"
-       x2="1292.79"
-       y2="388.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31654" />
-    <line
-       x1="1337.04"
-       y1="453.82001"
-       x2="1337.1801"
-       y2="456.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31656" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1244.77,612.06 1244.38,611.68 1233.4,616.53 "
-       id="polygon31658" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1245.22,614.61 1245.38,614.2 1234.4,619.05 "
-       id="polygon31660" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1245.09,612.56 1244.77,612.06 1233.79,616.91 "
-       id="polygon31662" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1245.38,614.2 1245.41,613.68 1234.43,618.54 "
-       id="polygon31664" />
-    <polygon
-       style="opacity:1;fill:#00d700"
-       points="1663.32,533.2 1663.2,533.46 1648.43,534.59 "
-       id="polygon31666" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1648.11,534.57 1648.28,534.67 1663.05,533.54 "
-       id="polygon31668" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1245.3,613.12 1245.09,612.56 1234.11,617.41 "
-       id="polygon31670" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1245.41,613.68 1245.3,613.12 1234.32,617.97 "
-       id="polygon31672" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1647.8,530.95 1647.68,531.2 1662.46,530.07 "
-       id="polygon31674" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1419.09,484.47 1418.69,484.77 1418.47,484.47 "
-       id="polygon31676" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1647.95,534.29 1648.11,534.57 1662.89,533.44 "
-       id="polygon31678" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1647.68,531.2 1647.61,531.61 1662.38,530.48 "
-       id="polygon31680" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.8,533.85 1647.95,534.29 1662.72,533.15 "
-       id="polygon31682" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.61,531.61 1647.58,532.14 1662.35,531 "
-       id="polygon31684" />
-    <line
-       x1="1538.9399"
-       y1="362.95001"
-       x2="1536.52"
-       y2="361.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31686" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.68,533.32 1647.8,533.85 1662.57,532.72 "
-       id="polygon31688" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.58,532.14 1647.6,532.73 1662.38,531.59 "
-       id="polygon31690" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1647.6,532.73 1647.68,533.32 1662.45,532.18 "
-       id="polygon31692" />
-    <line
-       x1="1500.0699"
-       y1="388.79001"
-       x2="1503.88"
-       y2="388.95999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31694" />
-    <line
-       x1="1277.27"
-       y1="552.65997"
-       x2="1274.84"
-       y2="553.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31696" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1232.59,616.21 1232.99,616.29 1243.97,611.43 "
-       id="polygon31698" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1662.46,530.07 1662.57,529.81 1647.8,530.95 "
-       id="polygon31700" />
-    <line
-       x1="1336.63"
-       y1="450.85001"
-       x2="1337.04"
-       y2="453.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31702" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1234.25,619.46 1233.98,619.74 1244.96,614.88 "
-       id="polygon31704" />
-    <line
-       x1="1292.79"
-       y1="388.78"
-       x2="1295.46"
-       y2="391.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31706" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1232.99,616.29 1233.4,616.53 1244.38,611.68 "
-       id="polygon31708" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1662.38,530.48 1662.46,530.07 1647.68,531.2 "
-       id="polygon31710" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1234.4,619.05 1234.25,619.46 1245.22,614.61 "
-       id="polygon31712" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1233.4,616.53 1233.79,616.91 1244.77,612.06 "
-       id="polygon31714" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1662.89,533.44 1662.72,533.15 1647.95,534.29 "
-       id="polygon31716" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1234.43,618.54 1234.4,619.05 1245.38,614.2 "
-       id="polygon31718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.35,531 1662.38,530.48 1647.61,531.61 "
-       id="polygon31720" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1233.79,616.91 1234.11,617.41 1245.09,612.56 "
-       id="polygon31722" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1234.32,617.97 1234.43,618.54 1245.41,613.68 "
-       id="polygon31724" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1234.11,617.41 1234.32,617.97 1245.3,613.12 "
-       id="polygon31726" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.72,533.15 1662.57,532.72 1647.8,533.85 "
-       id="polygon31728" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1416.52,481.79 1416.11,482.09 1420.19,474.61 "
-       id="polygon31730" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.38,531.59 1662.35,531 1647.58,532.14 "
-       id="polygon31732" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.57,532.72 1662.45,532.18 1647.68,533.32 "
-       id="polygon31734" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.45,532.18 1662.38,531.59 1647.6,532.73 "
-       id="polygon31736" />
-    <line
-       x1="1541.24"
-       y1="364.72"
-       x2="1538.9399"
-       y2="362.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31738" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1415.76,483 1415.85,483.52 1419.93,476.04 "
-       id="polygon31740" />
-    <line
-       x1="1503.88"
-       y1="388.95999"
-       x2="1507.63"
-       y2="389.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31742" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1418.69,484.77 1419.09,484.47 1423.18,477 "
-       id="polygon31744" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1415.85,483.52 1416.11,484.02 1420.19,476.54 "
-       id="polygon31746" />
-    <line
-       x1="1225.7"
-       y1="452.66"
-       x2="1226.84"
-       y2="453.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31748" />
-    <line
-       x1="1335.96"
-       y1="447.76999"
-       x2="1336.63"
-       y2="450.85001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31750" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1418.18,484.93 1418.69,484.77 1422.77,477.3 "
-       id="polygon31752" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1416.11,484.02 1416.52,484.44 1420.6,476.96 "
-       id="polygon31754" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1417.61,484.92 1418.18,484.93 1422.25,477.45 "
-       id="polygon31756" />
-    <line
-       x1="1295.46"
-       y1="391.09"
-       x2="1298.2"
-       y2="393.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31758" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1416.52,484.44 1417.04,484.75 1421.11,477.28 "
-       id="polygon31760" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1417.04,484.75 1417.61,484.92 1421.68,477.45 "
-       id="polygon31762" />
-    <line
-       x1="1279.46"
-       y1="551.31"
-       x2="1277.27"
-       y2="552.65997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31764" />
-    <polygon
-       style="opacity:1;fill:#00a300"
-       points="1662.89,529.84 1662.73,529.73 1677.53,528.59 "
-       id="polygon31766" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1676.95"
-       y2="528.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31768" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1673.39"
-       y2="529.77002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31770" />
-    <line
-       x1="1543.4"
-       y1="366.70999"
-       x2="1541.24"
-       y2="364.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31772" />
-    <polygon
-       style="opacity:1;fill:#00a000"
-       points="1662.89,533.44 1663.05,533.54 1677.86,532.41 "
-       id="polygon31774" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1662.57,529.81 1662.46,530.07 1677.26,528.93 "
-       id="polygon31776" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1662.46,530.07 1662.38,530.48 1677.19,529.34 "
-       id="polygon31778" />
-    <line
-       x1="1335.05"
-       y1="444.60999"
-       x2="1335.96"
-       y2="447.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31780" />
-    <line
-       x1="1507.63"
-       y1="389.45001"
-       x2="1511.27"
-       y2="390.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31782" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.57,532.72 1662.72,533.15 1677.53,532.02 "
-       id="polygon31784" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.38,530.48 1662.35,531 1677.16,529.87 "
-       id="polygon31786" />
-    <line
-       x1="1298.2"
-       y1="393.56"
-       x2="1300.99"
-       y2="396.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31788" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.45,532.18 1662.57,532.72 1677.38,531.59 "
-       id="polygon31790" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.35,531 1662.38,531.59 1677.18,530.46 "
-       id="polygon31792" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1662.38,531.59 1662.45,532.18 1677.26,531.05 "
-       id="polygon31794" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1232.99,616.29 1232.59,616.21 1221.57,621.08 "
-       id="polygon31796" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1419.83,475.52 1419.93,475.02 1415.85,482.5 "
-       id="polygon31798" />
-    <line
-       x1="1545.42"
-       y1="368.89001"
-       x2="1543.4"
-       y2="366.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31800" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1419.93,476.04 1419.83,475.52 1415.76,483 "
-       id="polygon31802" />
-    <polygon
-       style="opacity:1;fill:#008700"
-       points="1677.26,528.93 1677.38,528.67 1662.57,529.81 "
-       id="polygon31804" />
-    <line
-       x1="1670.88"
-       y1="516.33002"
-       x2="1675.39"
-       y2="525.71002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31806" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1233.4,616.53 1232.99,616.29 1221.97,621.15 "
-       id="polygon31808" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1233.98,619.74 1234.25,619.46 1223.23,624.34 "
-       id="polygon31810" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.19,476.54 1419.93,476.04 1415.85,483.52 "
-       id="polygon31812" />
-    <line
-       x1="1281.41"
-       y1="549.78003"
-       x2="1279.46"
-       y2="551.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31814" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1423.18,477 1422.77,477.3 1418.69,484.77 "
-       id="polygon31816" />
-    <line
-       x1="1226.84"
-       y1="453.37"
-       x2="1228.22"
-       y2="454.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31818" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1233.79,616.91 1233.4,616.53 1222.39,621.39 "
-       id="polygon31820" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1234.25,619.46 1234.4,619.05 1223.38,623.92 "
-       id="polygon31822" />
-    <polygon
-       style="opacity:1;fill:#007800"
-       points="1677.19,529.34 1677.26,528.93 1662.46,530.07 "
-       id="polygon31824" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.6,476.96 1420.19,476.54 1416.11,484.02 "
-       id="polygon31826" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1422.77,477.3 1422.25,477.45 1418.18,484.93 "
-       id="polygon31828" />
-    <line
-       x1="1333.9"
-       y1="441.35999"
-       x2="1335.05"
-       y2="444.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31830" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1421.11,477.28 1420.6,476.96 1416.52,484.44 "
-       id="polygon31832" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1234.11,617.41 1233.79,616.91 1222.77,621.79 "
-       id="polygon31834" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1234.4,619.05 1234.43,618.54 1223.41,623.41 "
-       id="polygon31836" />
-    <polygon
-       style="opacity:1;fill:#008900"
-       points="1677.69,532.3 1677.53,532.02 1662.72,533.15 "
-       id="polygon31838" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1422.25,477.45 1421.68,477.45 1417.61,484.92 "
-       id="polygon31840" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1421.68,477.45 1421.11,477.28 1417.04,484.75 "
-       id="polygon31842" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1234.32,617.97 1234.11,617.41 1223.09,622.28 "
-       id="polygon31844" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1234.43,618.54 1234.32,617.97 1223.31,622.84 "
-       id="polygon31846" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1677.16,529.87 1677.19,529.34 1662.38,530.48 "
-       id="polygon31848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1677.53,532.02 1677.38,531.59 1662.57,532.72 "
-       id="polygon31850" />
-    <line
-       x1="1300.99"
-       y1="396.17999"
-       x2="1303.8199"
-       y2="398.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1677.18,530.46 1677.16,529.87 1662.35,531 "
-       id="polygon31854" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1677.38,531.59 1677.26,531.05 1662.45,532.18 "
-       id="polygon31856" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1677.26,531.05 1677.18,530.46 1662.38,531.59 "
-       id="polygon31858" />
-    <line
-       x1="1511.27"
-       y1="390.25"
-       x2="1514.8"
-       y2="391.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31860" />
-    <line
-       x1="1547.27"
-       y1="371.26999"
-       x2="1545.42"
-       y2="368.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31862" />
-    <line
-       x1="1332.52"
-       y1="438.04999"
-       x2="1333.9"
-       y2="441.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31864" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1221.57,621.08 1221.97,621.15 1232.99,616.29 "
-       id="polygon31866" />
-    <line
-       x1="1303.8199"
-       y1="398.95001"
-       x2="1306.65"
-       y2="401.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31868" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1221.97,621.15 1222.39,621.39 1233.4,616.53 "
-       id="polygon31870" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1223.38,623.92 1223.23,624.34 1234.25,619.46 "
-       id="polygon31872" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1222.39,621.39 1222.77,621.79 1233.79,616.91 "
-       id="polygon31874" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1223.41,623.41 1223.38,623.92 1234.4,619.05 "
-       id="polygon31876" />
-    <line
-       x1="1283.11"
-       y1="548.06"
-       x2="1281.41"
-       y2="549.78003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31878" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1222.77,621.79 1223.09,622.28 1234.11,617.41 "
-       id="polygon31880" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1223.31,622.84 1223.41,623.41 1234.43,618.54 "
-       id="polygon31882" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1223.09,622.28 1223.31,622.84 1234.32,617.97 "
-       id="polygon31884" />
-    <line
-       x1="1330.9301"
-       y1="434.70001"
-       x2="1332.52"
-       y2="438.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31886" />
-    <line
-       x1="1548.9301"
-       y1="373.82001"
-       x2="1547.27"
-       y2="371.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31888" />
-    <line
-       x1="1228.22"
-       y1="454.26999"
-       x2="1229.8101"
-       y2="455.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31890" />
-    <line
-       x1="1306.65"
-       y1="401.82999"
-       x2="1309.47"
-       y2="404.82999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31892" />
-    <line
-       x1="1514.8"
-       y1="391.34"
-       x2="1518.1801"
-       y2="392.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31894" />
-    <line
-       x1="1329.13"
-       y1="431.29999"
-       x2="1330.9301"
-       y2="434.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31896" />
-    <line
-       x1="1309.47"
-       y1="404.82999"
-       x2="1312.27"
-       y2="407.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31898" />
-    <line
-       x1="1550.41"
-       y1="376.53"
-       x2="1548.9301"
-       y2="373.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31900" />
-    <line
-       x1="1327.14"
-       y1="427.89999"
-       x2="1329.13"
-       y2="431.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31902" />
-    <line
-       x1="1312.27"
-       y1="407.94"
-       x2="1315"
-       y2="411.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31904" />
-    <line
-       x1="1284.55"
-       y1="546.15997"
-       x2="1283.11"
-       y2="548.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31906" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1420.59,474.3 1420.19,474.61 1424.28,467.09 "
-       id="polygon31908" />
-    <line
-       x1="1324.98"
-       y1="424.48001"
-       x2="1327.14"
-       y2="427.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31910" />
-    <line
-       x1="1315"
-       y1="411.13"
-       x2="1317.66"
-       y2="414.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31912" />
-    <line
-       x1="1322.67"
-       y1="421.09"
-       x2="1324.98"
-       y2="424.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31914" />
-    <line
-       x1="1317.66"
-       y1="414.39001"
-       x2="1320.22"
-       y2="417.72"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31916" />
-    <line
-       x1="1320.22"
-       y1="417.72"
-       x2="1322.67"
-       y2="421.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31918" />
-    <line
-       x1="1518.1801"
-       y1="392.72"
-       x2="1521.4"
-       y2="394.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31920" />
-    <line
-       x1="1551.6801"
-       y1="379.38"
-       x2="1550.41"
-       y2="376.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31922" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1419.83,475.52 1419.93,476.04 1424.02,468.53 "
-       id="polygon31924" />
-    <line
-       x1="1229.8101"
-       y1="455.37"
-       x2="1231.61"
-       y2="456.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31926" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1422.77,477.3 1423.18,477 1427.27,469.49 "
-       id="polygon31928" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1419.93,476.04 1420.19,476.54 1424.28,469.03 "
-       id="polygon31930" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1209.91,626.34 1210.17,626.07 1221.23,621.18 "
-       id="polygon31932" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1221.97,621.15 1221.57,621.08 1210.52,625.96 "
-       id="polygon31934" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1422.25,477.45 1422.77,477.3 1426.86,469.79 "
-       id="polygon31936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.19,476.54 1420.6,476.96 1424.69,469.45 "
-       id="polygon31938" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1421.68,477.45 1422.25,477.45 1426.35,469.95 "
-       id="polygon31940" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1420.6,476.96 1421.11,477.28 1425.2,469.77 "
-       id="polygon31942" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1421.11,477.28 1421.68,477.45 1425.78,469.94 "
-       id="polygon31944" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1222.39,621.39 1221.97,621.15 1210.92,626.03 "
-       id="polygon31946" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1222.96,624.61 1223.23,624.34 1212.18,629.22 "
-       id="polygon31948" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1222.77,621.79 1222.39,621.39 1211.33,626.28 "
-       id="polygon31950" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1223.23,624.34 1223.38,623.92 1212.33,628.81 "
-       id="polygon31952" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1223.09,622.28 1222.77,621.79 1211.71,626.67 "
-       id="polygon31954" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1223.38,623.92 1223.41,623.41 1212.36,628.29 "
-       id="polygon31956" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1223.31,622.84 1223.09,622.28 1212.04,627.17 "
-       id="polygon31958" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1223.41,623.41 1223.31,622.84 1212.25,627.73 "
-       id="polygon31960" />
-    <line
-       x1="1552.73"
-       y1="382.34"
-       x2="1551.6801"
-       y2="379.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31962" />
-    <line
-       x1="1285.72"
-       y1="544.09003"
-       x2="1284.55"
-       y2="546.15997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31964" />
-    <line
-       x1="1521.4"
-       y1="394.39001"
-       x2="1524.4301"
-       y2="396.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31966" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1210.52,625.96 1210.92,626.03 1221.97,621.15 "
-       id="polygon31968" />
-    <line
-       x1="1553.5601"
-       y1="385.42001"
-       x2="1552.73"
-       y2="382.34"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31970" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1423.93,468.01 1424.02,467.51 1419.93,475.02 "
-       id="polygon31972" />
-    <line
-       x1="1231.61"
-       y1="456.66"
-       x2="1233.58"
-       y2="458.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31974" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1210.92,626.03 1211.33,626.28 1222.39,621.39 "
-       id="polygon31976" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1424.02,468.53 1423.93,468.01 1419.83,475.52 "
-       id="polygon31978" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1212.33,628.81 1212.18,629.22 1223.23,624.34 "
-       id="polygon31980" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1424.28,469.03 1424.02,468.53 1419.93,476.04 "
-       id="polygon31982" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1211.33,626.28 1211.71,626.67 1222.77,621.79 "
-       id="polygon31984" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1427.27,469.49 1426.86,469.79 1422.77,477.3 "
-       id="polygon31986" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1212.36,628.29 1212.33,628.81 1223.38,623.92 "
-       id="polygon31988" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1424.69,469.45 1424.28,469.03 1420.19,476.54 "
-       id="polygon31990" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1211.71,626.67 1212.04,627.17 1223.09,622.28 "
-       id="polygon31992" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1426.86,469.79 1426.35,469.95 1422.25,477.45 "
-       id="polygon31994" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1212.25,627.73 1212.36,628.29 1223.41,623.41 "
-       id="polygon31996" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1212.04,627.17 1212.25,627.73 1223.31,622.84 "
-       id="polygon31998" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1425.2,469.77 1424.69,469.45 1420.6,476.96 "
-       id="polygon32000" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1426.35,469.95 1425.78,469.94 1421.68,477.45 "
-       id="polygon32002" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1425.78,469.94 1425.2,469.77 1421.11,477.28 "
-       id="polygon32004" />
-    <line
-       x1="1464.89"
-       y1="412.70999"
-       x2="1466.41"
-       y2="415.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32006" />
-    <line
-       x1="1466.41"
-       y1="415.79001"
-       x2="1468.14"
-       y2="418.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32008" />
-    <line
-       x1="1463.61"
-       y1="409.54999"
-       x2="1464.89"
-       y2="412.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32010" />
-    <line
-       x1="1468.14"
-       y1="418.76999"
-       x2="1470.09"
-       y2="421.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32012" />
-    <line
-       x1="1554.16"
-       y1="388.59"
-       x2="1553.5601"
-       y2="385.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32014" />
-    <line
-       x1="1286.63"
-       y1="541.84003"
-       x2="1285.72"
-       y2="544.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32016" />
-    <line
-       x1="1462.5601"
-       y1="406.32001"
-       x2="1463.61"
-       y2="409.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32018" />
-    <line
-       x1="1470.09"
-       y1="421.63"
-       x2="1472.24"
-       y2="424.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32020" />
-    <line
-       x1="1173.5"
-       y1="528.97998"
-       x2="1173.62"
-       y2="529.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32022" />
-    <line
-       x1="1461.75"
-       y1="403.04001"
-       x2="1462.5601"
-       y2="406.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32024" />
-    <line
-       x1="1472.24"
-       y1="424.35001"
-       x2="1474.59"
-       y2="426.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32026" />
-    <line
-       x1="1474.59"
-       y1="426.91"
-       x2="1477.12"
-       y2="429.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32028" />
-    <line
-       x1="1524.4301"
-       y1="396.32001"
-       x2="1527.25"
-       y2="398.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32030" />
-    <line
-       x1="1477.12"
-       y1="429.29999"
-       x2="1479.8199"
-       y2="431.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32032" />
-    <line
-       x1="1460.86"
-       y1="396.44"
-       x2="1461.1801"
-       y2="399.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32034" />
-    <line
-       x1="1554.53"
-       y1="391.82001"
-       x2="1554.16"
-       y2="388.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32036" />
-    <line
-       x1="1479.8199"
-       y1="431.51001"
-       x2="1482.67"
-       y2="433.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32038" />
-    <line
-       x1="1460.79"
-       y1="393.14999"
-       x2="1460.86"
-       y2="396.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32040" />
-    <line
-       x1="1233.58"
-       y1="458.14001"
-       x2="1235.73"
-       y2="459.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32042" />
-    <line
-       x1="1482.67"
-       y1="433.51999"
-       x2="1485.66"
-       y2="435.32001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32044" />
-    <line
-       x1="1460.95"
-       y1="389.89999"
-       x2="1460.79"
-       y2="393.14999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32046" />
-    <line
-       x1="1485.66"
-       y1="435.32001"
-       x2="1488.77"
-       y2="436.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32048" />
-    <line
-       x1="1554.65"
-       y1="395.09"
-       x2="1554.53"
-       y2="391.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32050" />
-    <line
-       x1="1287.27"
-       y1="539.44"
-       x2="1286.63"
-       y2="541.84003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32052" />
-    <line
-       x1="1488.77"
-       y1="436.89001"
-       x2="1491.98"
-       y2="438.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32054" />
-    <line
-       x1="1461.35"
-       y1="386.70001"
-       x2="1460.95"
-       y2="389.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32056" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1210.92,626.03 1210.52,625.96 1199.43,630.86 "
-       id="polygon32058" />
-    <line
-       x1="1527.25"
-       y1="398.51001"
-       x2="1529.84"
-       y2="400.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32060" />
-    <line
-       x1="1491.98"
-       y1="438.23001"
-       x2="1495.29"
-       y2="439.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32062" />
-    <line
-       x1="1554.53"
-       y1="398.39001"
-       x2="1554.65"
-       y2="395.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32064" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1211.33,626.28 1210.92,626.03 1199.83,630.93 "
-       id="polygon32066" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1211.91,629.5 1212.18,629.22 1201.09,634.13 "
-       id="polygon32068" />
-    <line
-       x1="1461.98"
-       y1="383.57999"
-       x2="1461.35"
-       y2="386.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32070" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1211.71,626.67 1211.33,626.28 1200.24,631.18 "
-       id="polygon32072" />
-    <line
-       x1="1495.29"
-       y1="439.32999"
-       x2="1498.66"
-       y2="440.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32074" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1212.18,629.22 1212.33,628.81 1201.24,633.71 "
-       id="polygon32076" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1212.04,627.17 1211.71,626.67 1200.63,631.57 "
-       id="polygon32078" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1212.33,628.81 1212.36,628.29 1201.27,633.2 "
-       id="polygon32080" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1212.25,627.73 1212.04,627.17 1200.95,632.07 "
-       id="polygon32082" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1212.36,628.29 1212.25,627.73 1201.16,632.63 "
-       id="polygon32084" />
-    <line
-       x1="1554.16"
-       y1="401.70001"
-       x2="1554.53"
-       y2="398.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32086" />
-    <line
-       x1="1498.66"
-       y1="440.17999"
-       x2="1502.09"
-       y2="440.78"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32088" />
-    <line
-       x1="1235.73"
-       y1="459.81"
-       x2="1238.04"
-       y2="461.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32090" />
-    <line
-       x1="1462.85"
-       y1="380.54999"
-       x2="1461.98"
-       y2="383.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32092" />
-    <line
-       x1="1287.63"
-       y1="536.88"
-       x2="1287.27"
-       y2="539.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32094" />
-    <line
-       x1="1502.09"
-       y1="440.78"
-       x2="1505.55"
-       y2="441.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32096" />
-    <line
-       x1="1553.55"
-       y1="404.98999"
-       x2="1554.16"
-       y2="401.70001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32098" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1423.93,468.01 1424.02,468.53 1428.13,460.98 "
-       id="polygon32100" />
-    <line
-       x1="1505.55"
-       y1="441.13"
-       x2="1509.02"
-       y2="441.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32102" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1426.86,469.79 1427.27,469.49 1431.39,461.95 "
-       id="polygon32104" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1199.43,630.86 1199.83,630.93 1210.92,626.03 "
-       id="polygon32106" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1424.02,468.53 1424.28,469.03 1428.39,461.48 "
-       id="polygon32108" />
-    <line
-       x1="1463.9301"
-       y1="377.63"
-       x2="1462.85"
-       y2="380.54999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32110" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1426.35,469.95 1426.86,469.79 1430.98,462.25 "
-       id="polygon32112" />
-    <line
-       x1="1529.84"
-       y1="400.94"
-       x2="1532.1899"
-       y2="403.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32114" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1424.28,469.03 1424.69,469.45 1428.8,461.91 "
-       id="polygon32116" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1425.78,469.94 1426.35,469.95 1430.46,462.4 "
-       id="polygon32118" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1424.69,469.45 1425.2,469.77 1429.32,462.23 "
-       id="polygon32120" />
-    <line
-       x1="1509.02"
-       y1="441.20999"
-       x2="1512.48"
-       y2="441.03"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32122" />
-    <line
-       x1="1552.6899"
-       y1="408.25"
-       x2="1553.55"
-       y2="404.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32124" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1199.83,630.93 1200.24,631.18 1211.33,626.28 "
-       id="polygon32126" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1425.2,469.77 1425.78,469.94 1429.89,462.39 "
-       id="polygon32128" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1201.24,633.71 1201.09,634.13 1212.18,629.22 "
-       id="polygon32130" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1200.24,631.18 1200.63,631.57 1211.71,626.67 "
-       id="polygon32132" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1201.27,633.2 1201.24,633.71 1212.33,628.81 "
-       id="polygon32134" />
-    <line
-       x1="1512.48"
-       y1="441.03"
-       x2="1515.92"
-       y2="440.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32136" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1200.63,631.57 1200.95,632.07 1212.04,627.17 "
-       id="polygon32138" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1201.16,632.63 1201.27,633.2 1212.36,628.29 "
-       id="polygon32140" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1200.95,632.07 1201.16,632.63 1212.25,627.73 "
-       id="polygon32142" />
-    <line
-       x1="1551.59"
-       y1="411.45001"
-       x2="1552.6899"
-       y2="408.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32144" />
-    <line
-       x1="1465.23"
-       y1="374.84"
-       x2="1463.9301"
-       y2="377.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32146" />
-    <line
-       x1="1515.92"
-       y1="440.59"
-       x2="1519.3101"
-       y2="439.89999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32148" />
-    <line
-       x1="1238.04"
-       y1="461.66"
-       x2="1240.48"
-       y2="463.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32150" />
-    <line
-       x1="1550.25"
-       y1="414.57999"
-       x2="1551.59"
-       y2="411.45001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32152" />
-    <line
-       x1="1287.73"
-       y1="534.17999"
-       x2="1287.63"
-       y2="536.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32154" />
-    <line
-       x1="1519.3101"
-       y1="439.89999"
-       x2="1522.64"
-       y2="438.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32156" />
-    <line
-       x1="1548.6801"
-       y1="417.60999"
-       x2="1550.25"
-       y2="414.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32158" />
-    <line
-       x1="1522.64"
-       y1="438.95001"
-       x2="1525.89"
-       y2="437.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32160" />
-    <line
-       x1="1466.73"
-       y1="372.20999"
-       x2="1465.23"
-       y2="374.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32162" />
-    <line
-       x1="1525.89"
-       y1="437.76001"
-       x2="1529.03"
-       y2="436.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32164" />
-    <line
-       x1="1546.89"
-       y1="420.51999"
-       x2="1548.6801"
-       y2="417.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32166" />
-    <line
-       x1="1529.03"
-       y1="436.32999"
-       x2="1532.0601"
-       y2="434.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32168" />
-    <line
-       x1="1544.89"
-       y1="423.31"
-       x2="1546.89"
-       y2="420.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32170" />
-    <line
-       x1="1532.1899"
-       y1="403.59"
-       x2="1534.28"
-       y2="406.44"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32172" />
-    <line
-       x1="1532.0601"
-       y1="434.67001"
-       x2="1534.96"
-       y2="432.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32174" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1428.13,460.98 1428.03,460.46 1423.93,468.01 "
-       id="polygon32176" />
-    <line
-       x1="1542.6801"
-       y1="425.94"
-       x2="1544.89"
-       y2="423.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32178" />
-    <line
-       x1="1540.28"
-       y1="428.41"
-       x2="1542.6801"
-       y2="425.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32180" />
-    <line
-       x1="1537.7"
-       y1="430.70001"
-       x2="1540.28"
-       y2="428.41"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32182" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1428.39,461.48 1428.13,460.98 1424.02,468.53 "
-       id="polygon32184" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1428.8,461.91 1428.39,461.48 1424.28,469.03 "
-       id="polygon32186" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1430.98,462.25 1430.46,462.4 1426.35,469.95 "
-       id="polygon32188" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1429.32,462.23 1428.8,461.91 1424.69,469.45 "
-       id="polygon32190" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1430.46,462.4 1429.89,462.39 1425.78,469.94 "
-       id="polygon32192" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1429.89,462.39 1429.32,462.23 1425.2,469.77 "
-       id="polygon32194" />
-    <line
-       x1="1468.42"
-       y1="369.73001"
-       x2="1466.73"
-       y2="372.20999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32196" />
-    <line
-       x1="1240.48"
-       y1="463.69"
-       x2="1243.04"
-       y2="465.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32198" />
-    <line
-       x1="1287.5601"
-       y1="531.34998"
-       x2="1287.73"
-       y2="534.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32200" />
-    <line
-       x1="1174.62"
-       y1="529.62"
-       x2="1175.5"
-       y2="530.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32202" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1199.83,630.93 1199.43,630.86 1188.3,635.77 "
-       id="polygon32204" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1200.24,631.18 1199.83,630.93 1188.7,635.84 "
-       id="polygon32206" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1200.82,634.4 1201.09,634.13 1189.96,639.05 "
-       id="polygon32208" />
-    <line
-       x1="1470.29"
-       y1="367.42999"
-       x2="1468.42"
-       y2="369.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32210" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1200.63,631.57 1200.24,631.18 1189.12,636.09 "
-       id="polygon32212" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1201.09,634.13 1201.24,633.71 1190.12,638.63 "
-       id="polygon32214" />
-    <line
-       x1="1534.28"
-       y1="406.44"
-       x2="1536.09"
-       y2="409.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32216" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1428.8,459.25 1428.39,459.55 1428.69,459.79 "
-       id="polygon32218" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1200.95,632.07 1200.63,631.57 1189.5,636.48 "
-       id="polygon32220" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1201.24,633.71 1201.27,633.2 1190.14,638.12 "
-       id="polygon32222" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1201.16,632.63 1200.95,632.07 1189.82,636.99 "
-       id="polygon32224" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1201.27,633.2 1201.16,632.63 1190.04,637.55 "
-       id="polygon32226" />
-    <line
-       x1="1287.13"
-       y1="528.40002"
-       x2="1287.5601"
-       y2="531.34998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32228" />
-    <line
-       x1="1243.04"
-       y1="465.89001"
-       x2="1245.7"
-       y2="468.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32230" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1431.09,461.71 1431.3,461.37 1431.65,461.53 "
-       id="polygon32232" />
-    <line
-       x1="1472.33"
-       y1="365.32999"
-       x2="1470.29"
-       y2="367.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32234" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1429.02,461.68 1428.69,461.34 1428.39,461.48 "
-       id="polygon32236" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1188.3,635.77 1188.7,635.84 1199.83,630.93 "
-       id="polygon32238" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1189.96,639.05 1189.7,639.32 1200.82,634.4 "
-       id="polygon32240" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1188.7,635.84 1189.12,636.09 1200.24,631.18 "
-       id="polygon32242" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1190.12,638.63 1189.96,639.05 1201.09,634.13 "
-       id="polygon32244" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1189.12,636.09 1189.5,636.48 1200.63,631.57 "
-       id="polygon32246" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1190.14,638.12 1190.12,638.63 1201.24,633.71 "
-       id="polygon32248" />
-    <line
-       x1="1175.5"
-       y1="530.20001"
-       x2="1176.62"
-       y2="530.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32250" />
-    <line
-       x1="1286.4399"
-       y1="525.34003"
-       x2="1287.13"
-       y2="528.40002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32252" />
-    <line
-       x1="1536.09"
-       y1="409.48001"
-       x2="1537.6"
-       y2="412.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32254" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1189.5,636.48 1189.82,636.99 1200.95,632.07 "
-       id="polygon32256" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1190.04,637.55 1190.14,638.12 1201.27,633.2 "
-       id="polygon32258" />
-    <line
-       x1="1474.52"
-       y1="363.42999"
-       x2="1472.33"
-       y2="365.32999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32260" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1189.82,636.99 1190.04,637.55 1201.16,632.63 "
-       id="polygon32262" />
-    <line
-       x1="1245.7"
-       y1="468.26001"
-       x2="1248.4301"
-       y2="470.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32264" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1428.8,459.25 1428.39,459.55 1432.51,451.97 "
-       id="polygon32266" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1428.03,460.46 1428.13,460.98 1432.25,453.41 "
-       id="polygon32268" />
-    <line
-       x1="1476.84"
-       y1="361.75"
-       x2="1474.52"
-       y2="363.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32270" />
-    <line
-       x1="1285.5"
-       y1="522.17999"
-       x2="1286.4399"
-       y2="525.34003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32272" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1428.13,460.98 1428.39,461.48 1432.52,453.91 "
-       id="polygon32274" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1430.46,462.4 1430.98,462.25 1435.11,454.67 "
-       id="polygon32276" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1428.39,461.48 1428.8,461.91 1432.93,454.34 "
-       id="polygon32278" />
-    <line
-       x1="1248.4301"
-       y1="470.79001"
-       x2="1251.22"
-       y2="473.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32280" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1429.89,462.39 1430.46,462.4 1434.6,454.82 "
-       id="polygon32282" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1428.8,461.91 1429.32,462.23 1433.45,454.65 "
-       id="polygon32284" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1429.32,462.23 1429.89,462.39 1434.02,454.82 "
-       id="polygon32286" />
-    <line
-       x1="1537.6"
-       y1="412.67999"
-       x2="1538.8199"
-       y2="416.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32288" />
-    <line
-       x1="1176.62"
-       y1="530.97998"
-       x2="1177.96"
-       y2="531.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32290" />
-    <line
-       x1="1284.33"
-       y1="518.94"
-       x2="1285.5"
-       y2="522.17999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32292" />
-    <line
-       x1="1479.28"
-       y1="360.29999"
-       x2="1476.84"
-       y2="361.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32294" />
-    <line
-       x1="1251.22"
-       y1="473.45999"
-       x2="1254.05"
-       y2="476.26001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32296" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1176.53,641.08 1176.79,640.81 1187.96,635.88 "
-       id="polygon32298" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1188.7,635.84 1188.3,635.77 1177.14,640.7 "
-       id="polygon32300" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1189.12,636.09 1188.7,635.84 1177.54,640.78 "
-       id="polygon32302" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1189.7,639.32 1189.96,639.05 1178.8,643.98 "
-       id="polygon32304" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1189.5,636.48 1189.12,636.09 1177.95,641.02 "
-       id="polygon32306" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1189.96,639.05 1190.12,638.63 1178.95,643.57 "
-       id="polygon32308" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1432.25,453.41 1432.16,452.88 1428.03,460.46 "
-       id="polygon32310" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1189.82,636.99 1189.5,636.48 1178.34,641.42 "
-       id="polygon32312" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1190.12,638.63 1190.14,638.12 1178.98,643.05 "
-       id="polygon32314" />
-    <line
-       x1="1282.9301"
-       y1="515.64001"
-       x2="1284.33"
-       y2="518.94"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32316" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1190.04,637.55 1189.82,636.99 1178.65,641.92 "
-       id="polygon32318" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1190.14,638.12 1190.04,637.55 1178.88,642.48 "
-       id="polygon32320" />
-    <line
-       x1="1538.8199"
-       y1="416.01999"
-       x2="1539.72"
-       y2="419.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32322" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1432.52,453.91 1432.25,453.41 1428.13,460.98 "
-       id="polygon32324" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1435.52,454.37 1435.11,454.67 1430.98,462.25 "
-       id="polygon32326" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1432.93,454.34 1432.52,453.91 1428.39,461.48 "
-       id="polygon32328" />
-    <line
-       x1="1254.05"
-       y1="476.26001"
-       x2="1256.88"
-       y2="479.19"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32330" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1435.11,454.67 1434.6,454.82 1430.46,462.4 "
-       id="polygon32332" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1433.45,454.65 1432.93,454.34 1428.8,461.91 "
-       id="polygon32334" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1434.6,454.82 1434.02,454.82 1429.89,462.39 "
-       id="polygon32336" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1434.02,454.82 1433.45,454.65 1429.32,462.23 "
-       id="polygon32338" />
-    <line
-       x1="1481.02"
-       y1="359.35001"
-       x2="1480.13"
-       y2="359.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32340" />
-    <line
-       x1="1281.3"
-       y1="512.28003"
-       x2="1282.9301"
-       y2="515.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32342" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1177.14,640.7 1177.54,640.78 1188.7,635.84 "
-       id="polygon32344" />
-    <line
-       x1="1177.96"
-       y1="531.95001"
-       x2="1179.53"
-       y2="533.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32346" />
-    <line
-       x1="1256.88"
-       y1="479.19"
-       x2="1259.71"
-       y2="482.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32348" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1178.8,643.98 1178.54,644.26 1189.7,639.32 "
-       id="polygon32350" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1177.54,640.78 1177.95,641.02 1189.12,636.09 "
-       id="polygon32352" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1178.95,643.57 1178.8,643.98 1189.96,639.05 "
-       id="polygon32354" />
-    <line
-       x1="1539.72"
-       y1="419.48001"
-       x2="1539.8199"
-       y2="420.73001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32356" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1177.95,641.02 1178.34,641.42 1189.5,636.48 "
-       id="polygon32358" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1178.98,643.05 1178.95,643.57 1190.12,638.63 "
-       id="polygon32360" />
-    <line
-       x1="1279.48"
-       y1="508.88"
-       x2="1281.3"
-       y2="512.28003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32362" />
-    <line
-       x1="1481.92"
-       y1="359.01001"
-       x2="1481.02"
-       y2="359.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32364" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1178.34,641.42 1178.65,641.92 1189.82,636.99 "
-       id="polygon32366" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1178.88,642.48 1178.98,643.05 1190.14,638.12 "
-       id="polygon32368" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1178.65,641.92 1178.88,642.48 1190.04,637.55 "
-       id="polygon32370" />
-    <line
-       x1="1259.71"
-       y1="482.23001"
-       x2="1262.51"
-       y2="485.37"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32372" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1432.16,452.88 1432.25,452.39 1432.61,452.54 "
-       id="polygon32374" />
-    <line
-       x1="1277.48"
-       y1="505.47"
-       x2="1279.48"
-       y2="508.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32376" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1432.52,453.91 1432.25,453.41 1432.61,453.36 "
-       id="polygon32378" />
-    <line
-       x1="1262.51"
-       y1="485.37"
-       x2="1265.25"
-       y2="488.59"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32380" />
-    <line
-       x1="1482.85"
-       y1="358.75"
-       x2="1481.92"
-       y2="359.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32382" />
-    <line
-       x1="1539.8199"
-       y1="420.73001"
-       x2="1539.8199"
-       y2="422.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32384" />
-    <line
-       x1="1275.3"
-       y1="502.04001"
-       x2="1277.48"
-       y2="505.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32386" />
-    <line
-       x1="1179.53"
-       y1="533.10999"
-       x2="1179.89"
-       y2="534.22998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32388" />
-    <line
-       x1="1265.25"
-       y1="488.59"
-       x2="1267.9301"
-       y2="491.89001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32390" />
-    <line
-       x1="1272.97"
-       y1="498.63"
-       x2="1275.3"
-       y2="502.04001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32392" />
-    <line
-       x1="1267.9301"
-       y1="491.89001"
-       x2="1270.5"
-       y2="495.23999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32394" />
-    <line
-       x1="1270.5"
-       y1="495.23999"
-       x2="1272.97"
-       y2="498.63"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32396" />
-    <line
-       x1="1483.79"
-       y1="358.57999"
-       x2="1482.85"
-       y2="358.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32398" />
-    <line
-       x1="1539.8199"
-       y1="422.01001"
-       x2="1539.7"
-       y2="423.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32400" />
-    <line
-       x1="1179.89"
-       y1="534.22998"
-       x2="1180.3199"
-       y2="535.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32402" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1432.92,451.67 1432.51,451.97 1436.66,444.35 "
-       id="polygon32404" />
-    <line
-       x1="1184.92"
-       y1="609.14001"
-       x2="1183.4399"
-       y2="610.09003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32406" />
-    <line
-       x1="1484.73"
-       y1="358.5"
-       x2="1483.79"
-       y2="358.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32408" />
-    <polygon
-       style="opacity:1;fill:#007900"
-       points="1165.33,646.03 1165.59,645.75 1176.79,640.81 "
-       id="polygon32410" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1177.54,640.78 1177.14,640.7 1165.94,645.65 "
-       id="polygon32412" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1177.95,641.02 1177.54,640.78 1166.34,645.72 "
-       id="polygon32414" />
-    <line
-       x1="1539.7"
-       y1="423.31"
-       x2="1539.46"
-       y2="424.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32416" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1178.54,644.26 1178.8,643.98 1167.6,648.94 "
-       id="polygon32418" />
-    <line
-       x1="1186.33"
-       y1="608.13"
-       x2="1184.92"
-       y2="609.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32420" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1435.11,454.67 1435.52,454.37 1439.68,446.76 "
-       id="polygon32422" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1432.25,453.41 1432.52,453.91 1436.66,446.29 "
-       id="polygon32424" />
-    <line
-       x1="1180.3199"
-       y1="535.42999"
-       x2="1180.8101"
-       y2="536.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32426" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1434.6,454.82 1435.11,454.67 1439.27,447.06 "
-       id="polygon32428" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1178.34,641.42 1177.95,641.02 1166.75,645.97 "
-       id="polygon32430" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1178.8,643.98 1178.95,643.57 1167.75,648.52 "
-       id="polygon32432" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1432.52,453.91 1432.93,454.34 1437.08,446.72 "
-       id="polygon32434" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1434.02,454.82 1434.6,454.82 1438.75,447.21 "
-       id="polygon32436" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1432.93,454.34 1433.45,454.65 1437.6,447.04 "
-       id="polygon32438" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1433.45,454.65 1434.02,454.82 1438.18,447.21 "
-       id="polygon32440" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1178.65,641.92 1178.34,641.42 1167.13,646.37 "
-       id="polygon32442" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1178.95,643.57 1178.98,643.05 1167.78,648 "
-       id="polygon32444" />
-    <line
-       x1="1485.6899"
-       y1="358.51999"
-       x2="1484.73"
-       y2="358.5"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32446" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1178.88,642.48 1178.65,641.92 1167.45,646.87 "
-       id="polygon32448" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1178.98,643.05 1178.88,642.48 1167.67,647.43 "
-       id="polygon32450" />
-    <line
-       x1="1187.66"
-       y1="607.04999"
-       x2="1186.33"
-       y2="608.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32452" />
-    <line
-       x1="1539.46"
-       y1="424.60999"
-       x2="1539.11"
-       y2="425.92999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32454" />
-    <line
-       x1="1180.8101"
-       y1="536.69"
-       x2="1181.35"
-       y2="538.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32456" />
-    <line
-       x1="1486.63"
-       y1="358.62"
-       x2="1485.6899"
-       y2="358.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32458" />
-    <line
-       x1="1188.9"
-       y1="605.90002"
-       x2="1187.66"
-       y2="607.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32460" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1165.94,645.65 1166.34,645.72 1177.54,640.78 "
-       id="polygon32462" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1166.34,645.72 1166.75,645.97 1177.95,641.02 "
-       id="polygon32464" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1167.75,648.52 1167.6,648.94 1178.8,643.98 "
-       id="polygon32466" />
-    <line
-       x1="1190.05"
-       y1="604.69"
-       x2="1188.9"
-       y2="605.90002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32468" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1166.75,645.97 1167.13,646.37 1178.34,641.42 "
-       id="polygon32470" />
-    <line
-       x1="1539.11"
-       y1="425.92999"
-       x2="1538.64"
-       y2="427.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32472" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1167.78,648 1167.75,648.52 1178.95,643.57 "
-       id="polygon32474" />
-    <line
-       x1="1181.35"
-       y1="538.01001"
-       x2="1181.95"
-       y2="539.40002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32476" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1167.13,646.37 1167.45,646.87 1178.65,641.92 "
-       id="polygon32478" />
-    <line
-       x1="1487.5699"
-       y1="358.81"
-       x2="1486.63"
-       y2="358.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32480" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1167.67,647.43 1167.78,648 1178.98,643.05 "
-       id="polygon32482" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1167.45,646.87 1167.67,647.43 1178.88,642.48 "
-       id="polygon32484" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1436.4,445.79 1436.31,445.27 1432.16,452.88 "
-       id="polygon32486" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1436.66,446.29 1436.4,445.79 1432.25,453.41 "
-       id="polygon32488" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1439.68,446.76 1439.27,447.06 1435.11,454.67 "
-       id="polygon32490" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.08,446.72 1436.66,446.29 1432.52,453.91 "
-       id="polygon32492" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1439.27,447.06 1438.75,447.21 1434.6,454.82 "
-       id="polygon32494" />
-    <line
-       x1="1191.13"
-       y1="603.40997"
-       x2="1190.05"
-       y2="604.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32496" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.6,447.04 1437.08,446.72 1432.93,454.34 "
-       id="polygon32498" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1438.75,447.21 1438.18,447.21 1434.02,454.82 "
-       id="polygon32500" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1438.18,447.21 1437.6,447.04 1433.45,454.65 "
-       id="polygon32502" />
-    <line
-       x1="1181.95"
-       y1="539.40002"
-       x2="1182.59"
-       y2="540.84003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32504" />
-    <line
-       x1="1538.64"
-       y1="427.23001"
-       x2="1538.0601"
-       y2="428.53"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32506" />
-    <line
-       x1="1488.5"
-       y1="359.09"
-       x2="1487.5699"
-       y2="358.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32508" />
-    <line
-       x1="1192.1"
-       y1="602.07001"
-       x2="1191.13"
-       y2="603.40997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32510" />
-    <line
-       x1="1182.59"
-       y1="540.84003"
-       x2="1183.28"
-       y2="542.34998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32512" />
-    <line
-       x1="1192.99"
-       y1="600.66998"
-       x2="1192.1"
-       y2="602.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32514" />
-    <line
-       x1="1489.41"
-       y1="359.45999"
-       x2="1488.5"
-       y2="359.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32516" />
-    <line
-       x1="1538.0601"
-       y1="428.53"
-       x2="1537.37"
-       y2="429.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32518" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1154.2,651.62 1154.18,652.03 1165.42,647.07 "
-       id="polygon32520" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1156.78"
-       y2="650.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32522" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1436.4,445.79 1436.31,445.27 1436.68,445.32 "
-       id="polygon32524" />
-    <line
-       x1="1193.78"
-       y1="599.21002"
-       x2="1192.99"
-       y2="600.66998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32526" />
-    <line
-       x1="1183.28"
-       y1="542.34998"
-       x2="1184"
-       y2="543.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32528" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1166.34,645.72 1165.94,645.65 1154.7,650.61 "
-       id="polygon32530" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1166.75,645.97 1166.34,645.72 1155.1,650.69 "
-       id="polygon32532" />
-    <polygon
-       style="opacity:1;fill:#008a00"
-       points="1154.7,650.61 1155.1,650.69 1166.34,645.72 "
-       id="polygon32534" />
-    <polygon
-       style="opacity:1;fill:#008f00"
-       points="1155.1,650.69 1155.51,650.94 1166.75,645.97 "
-       id="polygon32536" />
-    <line
-       x1="1183.4399"
-       y1="610.09003"
-       x2="1156.78"
-       y2="650.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32538" />
-    <line
-       x1="1537.37"
-       y1="429.81"
-       x2="1536.5699"
-       y2="431.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32540" />
-    <polygon
-       style="opacity:1;fill:#00be00"
-       points="1167.34,649.21 1167.6,648.94 1156.36,653.91 "
-       id="polygon32542" />
-    <line
-       x1="1194.48"
-       y1="597.69"
-       x2="1193.78"
-       y2="599.21002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32544" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1167.13,646.37 1166.75,645.97 1155.51,650.94 "
-       id="polygon32546" />
-    <polygon
-       style="opacity:1;fill:#00b500"
-       points="1167.6,648.94 1167.75,648.52 1156.52,653.49 "
-       id="polygon32548" />
-    <line
-       x1="1184"
-       y1="543.90997"
-       x2="1184.75"
-       y2="545.53003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32550" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1167.45,646.87 1167.13,646.37 1155.89,651.33 "
-       id="polygon32552" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1167.75,648.52 1167.78,648 1156.54,652.97 "
-       id="polygon32554" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1167.67,647.43 1167.45,646.87 1156.21,651.84 "
-       id="polygon32556" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1167.78,648 1167.67,647.43 1156.43,652.4 "
-       id="polygon32558" />
-    <line
-       x1="1491.14"
-       y1="360.45999"
-       x2="1490.29"
-       y2="359.92001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32560" />
-    <line
-       x1="1536.5699"
-       y1="431.07001"
-       x2="1535.65"
-       y2="432.29001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32562" />
-    <line
-       x1="1195.09"
-       y1="596.10999"
-       x2="1194.48"
-       y2="597.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32564" />
-    <line
-       x1="1184.75"
-       y1="545.53003"
-       x2="1185.52"
-       y2="547.20001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32566" />
-    <line
-       x1="1195.59"
-       y1="594.47998"
-       x2="1195.09"
-       y2="596.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32568" />
-    <line
-       x1="1535.65"
-       y1="432.29001"
-       x2="1534.64"
-       y2="433.47"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32570" />
-    <line
-       x1="1185.52"
-       y1="547.20001"
-       x2="1186.3101"
-       y2="548.91998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32572" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1436.31,445.27 1436.4,445.79 1440.57,438.14 "
-       id="polygon32574" />
-    <line
-       x1="1196.01"
-       y1="592.79999"
-       x2="1195.59"
-       y2="594.47998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32576" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1439.27,447.06 1439.68,446.76 1443.85,439.11 "
-       id="polygon32578" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1436.4,445.79 1436.66,446.29 1440.83,438.65 "
-       id="polygon32580" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1155.51,650.94 1155.89,651.33 1167.13,646.37 "
-       id="polygon32582" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1438.75,447.21 1439.27,447.06 1443.44,439.41 "
-       id="polygon32584" />
-    <polygon
-       style="opacity:1;fill:#00af00"
-       points="1156.54,652.97 1156.52,653.49 1167.75,648.52 "
-       id="polygon32586" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1436.66,446.29 1437.08,446.72 1441.25,439.07 "
-       id="polygon32588" />
-    <polygon
-       style="opacity:1;fill:#009000"
-       points="1155.89,651.33 1156.21,651.84 1167.45,646.87 "
-       id="polygon32590" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1438.18,447.21 1438.75,447.21 1442.92,439.57 "
-       id="polygon32592" />
-    <polygon
-       style="opacity:1;fill:#00a200"
-       points="1156.43,652.4 1156.54,652.97 1167.78,648 "
-       id="polygon32594" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1437.08,446.72 1437.6,447.04 1441.77,439.39 "
-       id="polygon32596" />
-    <polygon
-       style="opacity:1;fill:#009100"
-       points="1156.21,651.84 1156.43,652.4 1167.67,647.43 "
-       id="polygon32598" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1437.6,447.04 1438.18,447.21 1442.34,439.56 "
-       id="polygon32600" />
-    <line
-       x1="1492.74"
-       y1="361.79001"
-       x2="1491.96"
-       y2="361.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32602" />
-    <line
-       x1="1196.34"
-       y1="591.07001"
-       x2="1196.01"
-       y2="592.79999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32604" />
-    <line
-       x1="1534.64"
-       y1="433.47"
-       x2="1533.52"
-       y2="434.60999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32606" />
-    <line
-       x1="1186.3101"
-       y1="548.91998"
-       x2="1187.12"
-       y2="550.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32608" />
-    <line
-       x1="1196.5699"
-       y1="589.29999"
-       x2="1196.34"
-       y2="591.07001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32610" />
-    <line
-       x1="1187.12"
-       y1="550.67999"
-       x2="1187.9301"
-       y2="552.47998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32612" />
-    <line
-       x1="1493.47"
-       y1="362.57001"
-       x2="1492.74"
-       y2="361.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32614" />
-    <line
-       x1="1533.52"
-       y1="434.60999"
-       x2="1532.3"
-       y2="435.69"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32616" />
-    <line
-       x1="1196.71"
-       y1="587.48999"
-       x2="1196.5699"
-       y2="589.29999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32618" />
-    <line
-       x1="1187.9301"
-       y1="552.47998"
-       x2="1188.73"
-       y2="554.33002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32620" />
-    <line
-       x1="1196.77"
-       y1="585.64001"
-       x2="1196.71"
-       y2="587.48999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32622" />
-    <line
-       x1="1532.3"
-       y1="435.69"
-       x2="1530.99"
-       y2="436.70999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32624" />
-    <line
-       x1="1188.73"
-       y1="554.33002"
-       x2="1189.53"
-       y2="556.21002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32626" />
-    <line
-       x1="1494.16"
-       y1="363.42999"
-       x2="1493.47"
-       y2="362.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32628" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1440.57,438.14 1440.47,437.62 1436.31,445.27 "
-       id="polygon32630" />
-    <line
-       x1="1196.74"
-       y1="583.76001"
-       x2="1196.77"
-       y2="585.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32632" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1440.83,438.65 1440.57,438.14 1436.4,445.79 "
-       id="polygon32634" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1443.85,439.11 1443.44,439.41 1439.27,447.06 "
-       id="polygon32636" />
-    <line
-       x1="1189.53"
-       y1="556.21002"
-       x2="1190.3199"
-       y2="558.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32638" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1441.25,439.07 1440.83,438.65 1436.66,446.29 "
-       id="polygon32640" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1443.44,439.41 1442.92,439.57 1438.75,447.21 "
-       id="polygon32642" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1441.77,439.39 1441.25,439.07 1437.08,446.72 "
-       id="polygon32644" />
-    <line
-       x1="1196.63"
-       y1="581.84003"
-       x2="1196.74"
-       y2="583.76001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32646" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1442.92,439.57 1442.34,439.56 1438.18,447.21 "
-       id="polygon32648" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1442.34,439.56 1441.77,439.39 1437.6,447.04 "
-       id="polygon32650" />
-    <line
-       x1="1530.99"
-       y1="436.70999"
-       x2="1529.58"
-       y2="437.67999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32652" />
-    <line
-       x1="1190.3199"
-       y1="558.10999"
-       x2="1191.09"
-       y2="560.04999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32654" />
-    <line
-       x1="1494.79"
-       y1="364.35999"
-       x2="1494.16"
-       y2="363.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32656" />
-    <line
-       x1="1196.4399"
-       y1="579.90997"
-       x2="1196.63"
-       y2="581.84003"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32658" />
-    <line
-       x1="1191.09"
-       y1="560.04999"
-       x2="1191.83"
-       y2="562.01001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32660" />
-    <line
-       x1="1196.17"
-       y1="577.95001"
-       x2="1196.4399"
-       y2="579.90997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32662" />
-    <line
-       x1="1191.83"
-       y1="562.01001"
-       x2="1192.54"
-       y2="563.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32664" />
-    <line
-       x1="1195.83"
-       y1="575.96002"
-       x2="1196.17"
-       y2="577.95001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32666" />
-    <line
-       x1="1529.58"
-       y1="437.67999"
-       x2="1528.09"
-       y2="438.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32668" />
-    <line
-       x1="1192.54"
-       y1="563.97998"
-       x2="1193.21"
-       y2="565.96997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32670" />
-    <line
-       x1="1195.4301"
-       y1="573.97998"
-       x2="1195.83"
-       y2="575.96002"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32672" />
-    <line
-       x1="1193.21"
-       y1="565.96997"
-       x2="1193.84"
-       y2="567.96997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32674" />
-    <line
-       x1="1194.95"
-       y1="571.97998"
-       x2="1195.4301"
-       y2="573.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32676" />
-    <line
-       x1="1193.84"
-       y1="567.96997"
-       x2="1194.4301"
-       y2="569.96997"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32678" />
-    <line
-       x1="1194.4301"
-       y1="569.96997"
-       x2="1194.95"
-       y2="571.97998"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32680" />
-    <line
-       x1="1495.36"
-       y1="365.35001"
-       x2="1494.79"
-       y2="364.35999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32682" />
-    <line
-       x1="1528.09"
-       y1="438.57001"
-       x2="1526.53"
-       y2="439.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32684" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1440.47,437.62 1440.56,437.13 1440.92,437.28 "
-       id="polygon32686" />
-    <line
-       x1="1495.86"
-       y1="366.39999"
-       x2="1495.36"
-       y2="365.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32688" />
-    <line
-       x1="1526.53"
-       y1="439.38"
-       x2="1524.88"
-       y2="440.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32690" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1442.92,439.57 1442.34,439.56 1442.34,439.23 "
-       id="polygon32692" />
-    <line
-       x1="1496.3"
-       y1="367.51001"
-       x2="1495.86"
-       y2="366.39999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32694" />
-    <line
-       x1="1524.88"
-       y1="440.10999"
-       x2="1523.17"
-       y2="440.75"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32696" />
-    <line
-       x1="1523.17"
-       y1="440.75"
-       x2="1521.39"
-       y2="441.31"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32698" />
-    <line
-       x1="1496.6801"
-       y1="368.67001"
-       x2="1496.3"
-       y2="367.51001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32700" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1441.24,436.4 1440.82,436.7 1445.01,429.02 "
-       id="polygon32702" />
-    <line
-       x1="1521.39"
-       y1="441.31"
-       x2="1519.5699"
-       y2="441.76999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32704" />
-    <line
-       x1="1496.98"
-       y1="369.88"
-       x2="1496.6801"
-       y2="368.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32706" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1440.47,437.62 1440.57,438.14 1444.75,430.46 "
-       id="polygon32708" />
-    <line
-       x1="1519.5699"
-       y1="441.76999"
-       x2="1517.6899"
-       y2="442.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32710" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1440.57,438.14 1440.83,438.65 1445.02,430.96 "
-       id="polygon32712" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1442.92,439.57 1443.44,439.41 1447.63,431.73 "
-       id="polygon32714" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1440.83,438.65 1441.25,439.07 1445.43,431.39 "
-       id="polygon32716" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1442.34,439.56 1442.92,439.57 1447.11,431.89 "
-       id="polygon32718" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1441.25,439.07 1441.77,439.39 1445.95,431.71 "
-       id="polygon32720" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1441.77,439.39 1442.34,439.56 1446.54,431.88 "
-       id="polygon32722" />
-    <line
-       x1="1517.6899"
-       y1="442.13"
-       x2="1515.77"
-       y2="442.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32724" />
-    <line
-       x1="1497.2"
-       y1="371.13"
-       x2="1496.98"
-       y2="369.88"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32726" />
-    <line
-       x1="1515.77"
-       y1="442.38"
-       x2="1513.8101"
-       y2="442.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32728" />
-    <line
-       x1="1497.34"
-       y1="372.42001"
-       x2="1497.2"
-       y2="371.13"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32730" />
-    <line
-       x1="1513.8101"
-       y1="442.54001"
-       x2="1511.8199"
-       y2="442.57999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32732" />
-    <line
-       x1="1511.8199"
-       y1="442.57999"
-       x2="1509.8199"
-       y2="442.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32734" />
-    <line
-       x1="1497.41"
-       y1="373.73999"
-       x2="1497.34"
-       y2="372.42001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32736" />
-    <line
-       x1="1509.8199"
-       y1="442.51999"
-       x2="1507.8"
-       y2="442.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32738" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1444.75,430.46 1444.66,429.94 1440.47,437.62 "
-       id="polygon32740" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1445.02,430.96 1444.75,430.46 1440.57,438.14 "
-       id="polygon32742" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1448.04,431.43 1447.63,431.73 1443.44,439.41 "
-       id="polygon32744" />
-    <line
-       x1="1507.8"
-       y1="442.35001"
-       x2="1505.78"
-       y2="442.06"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32746" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1445.43,431.39 1445.02,430.96 1440.83,438.65 "
-       id="polygon32748" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1447.63,431.73 1447.11,431.89 1442.92,439.57 "
-       id="polygon32750" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1445.95,431.71 1445.43,431.39 1441.25,439.07 "
-       id="polygon32752" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1447.11,431.89 1446.54,431.88 1442.34,439.56 "
-       id="polygon32754" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1446.54,431.88 1445.95,431.71 1441.77,439.39 "
-       id="polygon32756" />
-    <line
-       x1="1497.39"
-       y1="375.09"
-       x2="1497.41"
-       y2="373.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32758" />
-    <line
-       x1="1505.78"
-       y1="442.06"
-       x2="1503.76"
-       y2="441.66"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32760" />
-    <line
-       x1="1503.76"
-       y1="441.66"
-       x2="1501.75"
-       y2="441.16"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32762" />
-    <line
-       x1="1501.75"
-       y1="441.16"
-       x2="1499.75"
-       y2="440.54001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32764" />
-    <line
-       x1="1497.29"
-       y1="376.45999"
-       x2="1497.39"
-       y2="375.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32766" />
-    <line
-       x1="1499.75"
-       y1="440.54001"
-       x2="1497.79"
-       y2="439.81"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32768" />
-    <line
-       x1="1497.79"
-       y1="439.81"
-       x2="1495.85"
-       y2="438.97"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32770" />
-    <line
-       x1="1497.11"
-       y1="377.84"
-       x2="1497.29"
-       y2="376.45999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32772" />
-    <line
-       x1="1495.85"
-       y1="438.97"
-       x2="1493.95"
-       y2="438.01999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32774" />
-    <line
-       x1="1493.95"
-       y1="438.01999"
-       x2="1492.11"
-       y2="436.98001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32776" />
-    <line
-       x1="1492.11"
-       y1="436.98001"
-       x2="1490.3101"
-       y2="435.82001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32778" />
-    <line
-       x1="1490.3101"
-       y1="435.82001"
-       x2="1488.5699"
-       y2="434.57001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32780" />
-    <line
-       x1="1496.83"
-       y1="379.23001"
-       x2="1497.11"
-       y2="377.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32782" />
-    <line
-       x1="1488.5699"
-       y1="434.57001"
-       x2="1486.9"
-       y2="433.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32784" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1447.74,431.19 1447.41,431.43 1447.63,431.73 "
-       id="polygon32786" />
-    <line
-       x1="1486.9"
-       y1="433.23001"
-       x2="1485.3"
-       y2="431.79001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32788" />
-    <line
-       x1="1485.3"
-       y1="431.79001"
-       x2="1483.78"
-       y2="430.26999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32790" />
-    <line
-       x1="1483.78"
-       y1="430.26999"
-       x2="1482.34"
-       y2="428.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32792" />
-    <line
-       x1="1482.34"
-       y1="428.67001"
-       x2="1480.99"
-       y2="426.98999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32794" />
-    <line
-       x1="1496.47"
-       y1="380.62"
-       x2="1496.83"
-       y2="379.23001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32796" />
-    <line
-       x1="1480.99"
-       y1="426.98999"
-       x2="1479.73"
-       y2="425.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32798" />
-    <line
-       x1="1479.73"
-       y1="425.25"
-       x2="1478.5699"
-       y2="423.42999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32800" />
-    <line
-       x1="1478.5699"
-       y1="423.42999"
-       x2="1477.52"
-       y2="421.56"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32802" />
-    <line
-       x1="1477.52"
-       y1="421.56"
-       x2="1476.5601"
-       y2="419.64001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32804" />
-    <line
-       x1="1496.03"
-       y1="382"
-       x2="1496.47"
-       y2="380.62"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32806" />
-    <line
-       x1="1476.5601"
-       y1="419.64001"
-       x2="1475.71"
-       y2="417.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32808" />
-    <line
-       x1="1495.5"
-       y1="383.38"
-       x2="1496.03"
-       y2="382"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32810" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1445.42,428.71 1445.01,429.02 1449.21,421.3 "
-       id="polygon32812" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1444.75,429.44 1444.66,429.94 1448.86,422.22 "
-       id="polygon32814" />
-    <line
-       x1="1494.89"
-       y1="384.73999"
-       x2="1495.5"
-       y2="383.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32816" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1444.66,429.94 1444.75,430.46 1448.95,422.75 "
-       id="polygon32818" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1447.63,431.73 1448.04,431.43 1452.25,423.71 "
-       id="polygon32820" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1444.75,430.46 1445.02,430.96 1449.22,423.25 "
-       id="polygon32822" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1445.02,430.96 1445.43,431.39 1449.64,423.68 "
-       id="polygon32824" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1446.54,431.88 1447.11,431.89 1451.32,424.18 "
-       id="polygon32826" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1445.43,431.39 1445.95,431.71 1450.16,424 "
-       id="polygon32828" />
-    <line
-       x1="1494.1899"
-       y1="386.07999"
-       x2="1494.89"
-       y2="384.73999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32830" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1445.95,431.71 1446.54,431.88 1450.74,424.16 "
-       id="polygon32832" />
-    <line
-       x1="1493.41"
-       y1="387.39001"
-       x2="1494.1899"
-       y2="386.07999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32834" />
-    <line
-       x1="1492.54"
-       y1="388.67001"
-       x2="1493.41"
-       y2="387.39001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32836" />
-    <line
-       x1="1491.6"
-       y1="389.91"
-       x2="1492.54"
-       y2="388.67001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32838" />
-    <line
-       x1="1490.59"
-       y1="391.10999"
-       x2="1491.6"
-       y2="389.91"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32840" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1448.95,422.75 1448.86,422.22 1444.66,429.94 "
-       id="polygon32842" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1449.22,423.25 1448.95,422.75 1444.75,430.46 "
-       id="polygon32844" />
-    <line
-       x1="1489.5"
-       y1="392.25"
-       x2="1490.59"
-       y2="391.10999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32846" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1452.25,423.71 1451.84,424.02 1447.63,431.73 "
-       id="polygon32848" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1449.64,423.68 1449.22,423.25 1445.02,430.96 "
-       id="polygon32850" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1451.84,424.02 1451.32,424.18 1447.11,431.89 "
-       id="polygon32852" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1450.16,424 1449.64,423.68 1445.43,431.39 "
-       id="polygon32854" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1451.32,424.18 1450.74,424.16 1446.54,431.88 "
-       id="polygon32856" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1450.74,424.16 1450.16,424 1445.95,431.71 "
-       id="polygon32858" />
-    <line
-       x1="1488.34"
-       y1="393.35001"
-       x2="1489.5"
-       y2="392.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32860" />
-    <line
-       x1="1487.11"
-       y1="394.38"
-       x2="1488.34"
-       y2="393.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32862" />
-    <line
-       x1="1485.8199"
-       y1="395.35001"
-       x2="1487.11"
-       y2="394.38"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32864" />
-    <line
-       x1="1484.48"
-       y1="396.25"
-       x2="1485.8199"
-       y2="395.35001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32866" />
-    <line
-       x1="1483.0699"
-       y1="397.09"
-       x2="1484.48"
-       y2="396.25"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32868" />
-    <line
-       x1="1481.62"
-       y1="397.84"
-       x2="1483.0699"
-       y2="397.09"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32870" />
-    <line
-       x1="1480.13"
-       y1="398.51999"
-       x2="1481.62"
-       y2="397.84"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32872" />
-    <line
-       x1="1478.59"
-       y1="399.12"
-       x2="1480.13"
-       y2="398.51999"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32874" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1449.64,423.68 1449.22,423.25 1449.52,423.1 "
-       id="polygon32876" />
-    <polygon
-       style="opacity:1;fill:#007a00"
-       points="1448.95,421.72 1448.86,422.22 1453.08,414.46 "
-       id="polygon32878" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1448.86,422.22 1448.95,422.75 1453.18,414.99 "
-       id="polygon32880" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1451.84,424.02 1452.25,423.71 1456.48,415.96 "
-       id="polygon32882" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1448.95,422.75 1449.22,423.25 1453.45,415.5 "
-       id="polygon32884" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1451.32,424.18 1451.84,424.02 1456.07,416.27 "
-       id="polygon32886" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1449.22,423.25 1449.64,423.68 1453.86,415.93 "
-       id="polygon32888" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1450.74,424.16 1451.32,424.18 1455.55,416.42 "
-       id="polygon32890" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1449.64,423.68 1450.16,424 1454.39,416.24 "
-       id="polygon32892" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1450.16,424 1450.74,424.16 1454.97,416.41 "
-       id="polygon32894" />
-    <polygon
-       style="opacity:1;fill:#007600"
-       points="1453.18,414.99 1453.08,414.46 1448.86,422.22 "
-       id="polygon32896" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1453.45,415.5 1453.18,414.99 1448.95,422.75 "
-       id="polygon32898" />
-    <polygon
-       style="opacity:1;fill:#00b600"
-       points="1456.48,415.96 1456.07,416.27 1451.84,424.02 "
-       id="polygon32900" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1453.86,415.93 1453.45,415.5 1449.22,423.25 "
-       id="polygon32902" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1456.07,416.27 1455.55,416.42 1451.32,424.18 "
-       id="polygon32904" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1454.39,416.24 1453.86,415.93 1449.64,423.68 "
-       id="polygon32906" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1455.55,416.42 1454.97,416.41 1450.74,424.16 "
-       id="polygon32908" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1454.97,416.41 1454.39,416.24 1450.16,424 "
-       id="polygon32910" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1456.48,415.96 1456.75,415.54 1456.39,415.39 "
-       id="polygon32912" />
-    <polygon
-       style="opacity:1;fill:#008300"
-       points="1454.08,415.69 1453.75,415.35 1453.45,415.5 "
-       id="polygon32914" />
-    <line
-       x1="1475.71"
-       y1="417.67001"
-       x2="1464.36"
-       y2="400.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32916" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1453.18,414.99 1453.45,415.5 1457.69,407.71 "
-       id="polygon32918" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1455.55,416.42 1456.07,416.27 1460.32,408.48 "
-       id="polygon32920" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1453.45,415.5 1453.86,415.93 1458.11,408.14 "
-       id="polygon32922" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1454.97,416.41 1455.55,416.42 1459.8,408.64 "
-       id="polygon32924" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1453.86,415.93 1454.39,416.24 1458.63,408.46 "
-       id="polygon32926" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1454.39,416.24 1454.97,416.41 1459.21,408.63 "
-       id="polygon32928" />
-    <line
-       x1="1478.59"
-       y1="399.12"
-       x2="1464.39"
-       y2="399.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32930" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1460.32,408.48 1459.8,408.64 1455.55,416.42 "
-       id="polygon32932" />
-    <polygon
-       style="opacity:1;fill:#009600"
-       points="1459.8,408.64 1459.21,408.63 1454.97,416.41 "
-       id="polygon32934" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1463.93,397.95 1463.46,397.81 1459.2,405.64 "
-       id="polygon32936" />
-    <polygon
-       style="opacity:1;fill:#007000"
-       points="1464.69,398.55 1464.35,398.2 1460.09,406.03 "
-       id="polygon32938" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1463.47"
-       y2="399.14001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32940" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1464.36"
-       y2="400.48001"
-       style="stroke:#00ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32942" />
-    <polygon
-       style="opacity:1;fill:#00a900"
-       points="1463,397.8 1462.58,397.93 1458.32,405.75 "
-       id="polygon32944" />
-    <polygon
-       style="opacity:1;fill:#008000"
-       points="1463.48,400.8 1462.9,400.63 1458.63,408.46 "
-       id="polygon32946" />
-    <polygon
-       style="opacity:1;fill:#00db00"
-       points="1463.46,397.48 1464.05,397.65 1463.93,397.95 "
-       id="polygon32948" />
-    <line
-       x1="1683.9399"
-       y1="547.44"
-       x2="1683.95"
-       y2="544.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32950" />
-    <line
-       x1="1683.95"
-       y1="544.89001"
-       x2="1680.27"
-       y2="543.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32952" />
-    <line
-       x1="1678.71"
-       y1="536.89001"
-       x2="1680.27"
-       y2="543.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32954" />
-    <line
-       x1="1680.27"
-       y1="543.90002"
-       x2="1676.5601"
-       y2="545.46997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32956" />
-    <line
-       x1="1678.71"
-       y1="536.89001"
-       x2="1676.5601"
-       y2="545.46997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32958" />
-    <line
-       x1="1676.5601"
-       y1="545.46997"
-       x2="1676.54"
-       y2="548.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32960" />
-    <line
-       x1="1678.71"
-       y1="536.89001"
-       x2="1676.54"
-       y2="548.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32962" />
-    <line
-       x1="1676.54"
-       y1="548.03003"
-       x2="1680.23"
-       y2="549.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32964" />
-    <line
-       x1="1678.71"
-       y1="536.89001"
-       x2="1680.23"
-       y2="549.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32966" />
-    <line
-       x1="1680.23"
-       y1="549.01001"
-       x2="1683.9399"
-       y2="547.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32968" />
-    <line
-       x1="1683.9399"
-       y1="547.44"
-       x2="1678.71"
-       y2="536.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32970" />
-    <line
-       x1="1683.4301"
-       y1="544.25"
-       x2="1683.45"
-       y2="541.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32972" />
-    <line
-       x1="1683.45"
-       y1="541.70001"
-       x2="1679.75"
-       y2="540.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32974" />
-    <line
-       x1="1678.2"
-       y1="533.70001"
-       x2="1679.75"
-       y2="540.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32976" />
-    <line
-       x1="1679.75"
-       y1="540.71997"
-       x2="1676.05"
-       y2="542.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32978" />
-    <line
-       x1="1678.2"
-       y1="533.70001"
-       x2="1676.05"
-       y2="542.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32980" />
-    <line
-       x1="1678.2"
-       y1="533.70001"
-       x2="1676.03"
-       y2="544.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32982" />
-    <line
-       x1="1676.03"
-       y1="544.84003"
-       x2="1679.72"
-       y2="545.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32984" />
-    <line
-       x1="1678.2"
-       y1="533.70001"
-       x2="1679.72"
-       y2="545.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32986" />
-    <line
-       x1="1679.72"
-       y1="545.82001"
-       x2="1683.4301"
-       y2="544.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32988" />
-    <line
-       x1="1683.4301"
-       y1="544.25"
-       x2="1678.2"
-       y2="533.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line32990" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1682.9399"
-       y2="538.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line32992" />
-    <line
-       x1="1682.9399"
-       y1="538.51001"
-       x2="1679.25"
-       y2="537.53003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line32994" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1679.25"
-       y2="537.53003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line32996" />
-    <line
-       x1="1679.25"
-       y1="537.53003"
-       x2="1675.54"
-       y2="539.09998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line32998" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1675.52"
-       y2="541.65002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33000" />
-    <line
-       x1="1675.52"
-       y1="541.65002"
-       x2="1679.21"
-       y2="542.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33002" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1679.21"
-       y2="542.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33004" />
-    <line
-       x1="1679.21"
-       y1="542.63"
-       x2="1682.92"
-       y2="541.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33006" />
-    <line
-       x1="1682.92"
-       y1="541.06"
-       x2="1677.6899"
-       y2="530.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33008" />
-    <line
-       x1="1667.05"
-       y1="538.19"
-       x2="1670.54"
-       y2="540.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33010" />
-    <line
-       x1="1670.54"
-       y1="540.76001"
-       x2="1671.09"
-       y2="544.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33012" />
-    <line
-       x1="1673.66"
-       y1="534.94"
-       x2="1671.09"
-       y2="544.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33014" />
-    <line
-       x1="1671.09"
-       y1="544.19"
-       x2="1668.16"
-       y2="545.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33016" />
-    <line
-       x1="1673.66"
-       y1="534.94"
-       x2="1668.16"
-       y2="545.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33018" />
-    <line
-       x1="1668.16"
-       y1="545.04999"
-       x2="1664.6801"
-       y2="542.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33020" />
-    <line
-       x1="1673.66"
-       y1="534.94"
-       x2="1664.6801"
-       y2="542.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33022" />
-    <line
-       x1="1664.6801"
-       y1="542.47998"
-       x2="1664.13"
-       y2="539.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33024" />
-    <line
-       x1="1664.13"
-       y1="539.04999"
-       x2="1667.05"
-       y2="538.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33026" />
-    <line
-       x1="1667.05"
-       y1="538.19"
-       x2="1673.66"
-       y2="534.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33028" />
-    <line
-       x1="1669.0699"
-       y1="535.96002"
-       x2="1672.55"
-       y2="538.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33030" />
-    <line
-       x1="1675.6801"
-       y1="532.71997"
-       x2="1673.11"
-       y2="541.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33032" />
-    <line
-       x1="1673.11"
-       y1="541.96002"
-       x2="1670.1801"
-       y2="542.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33034" />
-    <line
-       x1="1675.6801"
-       y1="532.71997"
-       x2="1670.1801"
-       y2="542.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33036" />
-    <line
-       x1="1670.1801"
-       y1="542.82001"
-       x2="1666.7"
-       y2="540.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33038" />
-    <line
-       x1="1675.6801"
-       y1="532.71997"
-       x2="1666.7"
-       y2="540.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33040" />
-    <line
-       x1="1666.7"
-       y1="540.25"
-       x2="1666.15"
-       y2="536.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33042" />
-    <line
-       x1="1675.6801"
-       y1="532.71997"
-       x2="1666.15"
-       y2="536.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33044" />
-    <line
-       x1="1666.15"
-       y1="536.83002"
-       x2="1669.0699"
-       y2="535.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33046" />
-    <line
-       x1="1669.0699"
-       y1="535.96002"
-       x2="1675.6801"
-       y2="532.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33048" />
-    <line
-       x1="1671.09"
-       y1="533.73999"
-       x2="1674.5699"
-       y2="536.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33050" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1674.5699"
-       y2="536.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33052" />
-    <line
-       x1="1674.5699"
-       y1="536.29999"
-       x2="1675.13"
-       y2="539.72998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33054" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1675.13"
-       y2="539.72998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33056" />
-    <line
-       x1="1675.13"
-       y1="539.72998"
-       x2="1672.2"
-       y2="540.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33058" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1672.2"
-       y2="540.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33060" />
-    <line
-       x1="1672.2"
-       y1="540.59003"
-       x2="1668.72"
-       y2="538.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33062" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1668.72"
-       y2="538.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33064" />
-    <line
-       x1="1668.72"
-       y1="538.03003"
-       x2="1668.17"
-       y2="534.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33066" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1668.17"
-       y2="534.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33068" />
-    <line
-       x1="1668.17"
-       y1="534.60999"
-       x2="1671.09"
-       y2="533.73999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33070" />
-    <line
-       x1="1671.09"
-       y1="533.73999"
-       x2="1677.6899"
-       y2="530.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33072" />
-    <line
-       x1="1684.6"
-       y1="532.33002"
-       x2="1696.5699"
-       y2="531.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33074" />
-    <line
-       x1="1696.5699"
-       y1="531.28998"
-       x2="1697.11"
-       y2="534.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33076" />
-    <line
-       x1="1684.6"
-       y1="532.33002"
-       x2="1697.11"
-       y2="534.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33078" />
-    <line
-       x1="1697.11"
-       y1="534.71997"
-       x2="1695.52"
-       y2="538.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33080" />
-    <line
-       x1="1684.6"
-       y1="532.33002"
-       x2="1695.52"
-       y2="538.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33082" />
-    <line
-       x1="1695.52"
-       y1="538.5"
-       x2="1693.38"
-       y2="538.84998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33084" />
-    <line
-       x1="1684.6"
-       y1="532.33002"
-       x2="1693.38"
-       y2="538.84998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33086" />
-    <line
-       x1="1693.38"
-       y1="538.84998"
-       x2="1692.84"
-       y2="535.41998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33088" />
-    <line
-       x1="1684.6"
-       y1="532.33002"
-       x2="1692.84"
-       y2="535.41998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33090" />
-    <line
-       x1="1692.84"
-       y1="535.41998"
-       x2="1694.4301"
-       y2="531.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33092" />
-    <line
-       x1="1694.4301"
-       y1="531.64001"
-       x2="1684.6"
-       y2="532.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33094" />
-    <line
-       x1="1681.14"
-       y1="531.40997"
-       x2="1693.11"
-       y2="530.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33096" />
-    <line
-       x1="1693.11"
-       y1="530.38"
-       x2="1693.65"
-       y2="533.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33098" />
-    <line
-       x1="1681.14"
-       y1="531.40997"
-       x2="1693.65"
-       y2="533.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33100" />
-    <line
-       x1="1693.65"
-       y1="533.79999"
-       x2="1692.0601"
-       y2="537.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33102" />
-    <line
-       x1="1681.14"
-       y1="531.40997"
-       x2="1692.0601"
-       y2="537.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33104" />
-    <line
-       x1="1692.0601"
-       y1="537.58002"
-       x2="1689.92"
-       y2="537.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33106" />
-    <line
-       x1="1689.92"
-       y1="537.92999"
-       x2="1689.38"
-       y2="534.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33108" />
-    <line
-       x1="1681.14"
-       y1="531.40997"
-       x2="1689.38"
-       y2="534.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33110" />
-    <line
-       x1="1689.38"
-       y1="534.5"
-       x2="1690.97"
-       y2="530.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33112" />
-    <line
-       x1="1690.97"
-       y1="530.71997"
-       x2="1681.14"
-       y2="531.40997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33114" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1689.64"
-       y2="529.46002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33116" />
-    <line
-       x1="1689.64"
-       y1="529.46002"
-       x2="1690.1899"
-       y2="532.89001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33118" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1690.1899"
-       y2="532.89001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33120" />
-    <line
-       x1="1690.1899"
-       y1="532.89001"
-       x2="1688.6"
-       y2="536.66998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33122" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1688.6"
-       y2="536.66998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33124" />
-    <line
-       x1="1688.6"
-       y1="536.66998"
-       x2="1686.46"
-       y2="537.02002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33126" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1686.46"
-       y2="537.02002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33128" />
-    <line
-       x1="1686.46"
-       y1="537.02002"
-       x2="1685.91"
-       y2="533.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33130" />
-    <line
-       x1="1677.6899"
-       y1="530.5"
-       x2="1685.91"
-       y2="533.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33132" />
-    <line
-       x1="1685.91"
-       y1="533.59003"
-       x2="1687.51"
-       y2="529.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33134" />
-    <line
-       x1="1687.51"
-       y1="529.81"
-       x2="1677.6899"
-       y2="530.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33136" />
-    <line
-       x1="501.79001"
-       y1="130.37"
-       x2="502.57999"
-       y2="128.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33138" />
-    <line
-       x1="496.04001"
-       y1="119.79"
-       x2="502.57999"
-       y2="128.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33140" />
-    <line
-       x1="502.57999"
-       y1="128.13"
-       x2="499.54001"
-       y2="127.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33142" />
-    <line
-       x1="496.04001"
-       y1="119.79"
-       x2="499.54001"
-       y2="127.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33144" />
-    <line
-       x1="499.54001"
-       y1="127.38"
-       x2="495.69"
-       y2="128.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33146" />
-    <line
-       x1="495.69"
-       y1="128.84"
-       x2="494.89001"
-       y2="131.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33148" />
-    <line
-       x1="496.04001"
-       y1="119.79"
-       x2="494.89001"
-       y2="131.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33150" />
-    <line
-       x1="494.89001"
-       y1="131.07001"
-       x2="497.94"
-       y2="131.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33152" />
-    <line
-       x1="496.04001"
-       y1="119.79"
-       x2="497.94"
-       y2="131.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33154" />
-    <line
-       x1="497.94"
-       y1="131.84"
-       x2="501.79001"
-       y2="130.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33156" />
-    <line
-       x1="501.79001"
-       y1="130.37"
-       x2="496.04001"
-       y2="119.79"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33158" />
-    <line
-       x1="500.89001"
-       y1="127.1"
-       x2="501.69"
-       y2="124.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33160" />
-    <line
-       x1="501.69"
-       y1="124.87"
-       x2="498.64001"
-       y2="124.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33162" />
-    <line
-       x1="495.14001"
-       y1="116.52"
-       x2="498.64001"
-       y2="124.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33164" />
-    <line
-       x1="495.14001"
-       y1="116.52"
-       x2="493.98999"
-       y2="127.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33166" />
-    <line
-       x1="493.98999"
-       y1="127.8"
-       x2="497.04001"
-       y2="128.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33168" />
-    <line
-       x1="495.14001"
-       y1="116.52"
-       x2="497.04001"
-       y2="128.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33170" />
-    <line
-       x1="497.04001"
-       y1="128.57001"
-       x2="500.89001"
-       y2="127.1"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33172" />
-    <line
-       x1="500.89001"
-       y1="127.1"
-       x2="495.14001"
-       y2="116.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33174" />
-    <line
-       x1="499.98999"
-       y1="123.82"
-       x2="500.79001"
-       y2="121.6"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33176" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="500.79001"
-       y2="121.6"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33178" />
-    <line
-       x1="500.79001"
-       y1="121.6"
-       x2="497.73999"
-       y2="120.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33180" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="497.73999"
-       y2="120.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33182" />
-    <line
-       x1="497.73999"
-       y1="120.84"
-       x2="493.89001"
-       y2="122.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33184" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="493.89001"
-       y2="122.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33186" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="493.09"
-       y2="124.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33188" />
-    <line
-       x1="493.09"
-       y1="124.53"
-       x2="496.14001"
-       y2="125.29"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33190" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="496.14001"
-       y2="125.29"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33192" />
-    <line
-       x1="496.14001"
-       y1="125.29"
-       x2="499.98999"
-       y2="123.82"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33194" />
-    <line
-       x1="499.98999"
-       y1="123.82"
-       x2="494.23999"
-       y2="113.24"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33196" />
-    <line
-       x1="489.20999"
-       y1="117.22"
-       x2="483.82001"
-       y2="122.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33198" />
-    <line
-       x1="483.82001"
-       y1="122.11"
-       x2="484.79001"
-       y2="125.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33200" />
-    <line
-       x1="489.20999"
-       y1="117.22"
-       x2="484.79001"
-       y2="125.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33202" />
-    <line
-       x1="484.79001"
-       y1="125.63"
-       x2="482.63"
-       y2="126.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33204" />
-    <line
-       x1="489.20999"
-       y1="117.22"
-       x2="482.63"
-       y2="126.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33206" />
-    <line
-       x1="482.63"
-       y1="126.72"
-       x2="479.5"
-       y2="124.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33208" />
-    <line
-       x1="489.20999"
-       y1="117.22"
-       x2="479.5"
-       y2="124.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33210" />
-    <line
-       x1="479.5"
-       y1="124.3"
-       x2="478.53"
-       y2="120.79"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33212" />
-    <line
-       x1="489.20999"
-       y1="117.22"
-       x2="478.53"
-       y2="120.79"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33214" />
-    <line
-       x1="478.53"
-       y1="120.79"
-       x2="480.69"
-       y2="119.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33216" />
-    <line
-       x1="480.69"
-       y1="119.69"
-       x2="489.20999"
-       y2="117.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33218" />
-    <line
-       x1="491.73001"
-       y1="115.23"
-       x2="486.34"
-       y2="120.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33220" />
-    <line
-       x1="486.34"
-       y1="120.11"
-       x2="487.31"
-       y2="123.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33222" />
-    <line
-       x1="487.31"
-       y1="123.63"
-       x2="485.14999"
-       y2="124.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33224" />
-    <line
-       x1="491.73001"
-       y1="115.23"
-       x2="485.14999"
-       y2="124.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33226" />
-    <line
-       x1="485.14999"
-       y1="124.73"
-       x2="482.01999"
-       y2="122.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33228" />
-    <line
-       x1="491.73001"
-       y1="115.23"
-       x2="482.01999"
-       y2="122.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33230" />
-    <line
-       x1="482.01999"
-       y1="122.31"
-       x2="481.04999"
-       y2="118.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33232" />
-    <line
-       x1="481.04999"
-       y1="118.8"
-       x2="483.20999"
-       y2="117.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33234" />
-    <line
-       x1="483.20999"
-       y1="117.7"
-       x2="491.73001"
-       y2="115.23"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33236" />
-    <line
-       x1="485.73001"
-       y1="115.7"
-       x2="488.85999"
-       y2="118.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33238" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="488.85999"
-       y2="118.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33240" />
-    <line
-       x1="488.85999"
-       y1="118.12"
-       x2="489.82999"
-       y2="121.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33242" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="489.82999"
-       y2="121.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33244" />
-    <line
-       x1="489.82999"
-       y1="121.63"
-       x2="487.67001"
-       y2="122.73"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33246" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="487.67001"
-       y2="122.73"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33248" />
-    <line
-       x1="487.67001"
-       y1="122.73"
-       x2="484.54001"
-       y2="120.32"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33250" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="484.54001"
-       y2="120.32"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33252" />
-    <line
-       x1="484.54001"
-       y1="120.32"
-       x2="483.57001"
-       y2="116.8"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33254" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="483.57001"
-       y2="116.8"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33256" />
-    <line
-       x1="483.57001"
-       y1="116.8"
-       x2="485.73001"
-       y2="115.7"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33258" />
-    <line
-       x1="485.73001"
-       y1="115.7"
-       x2="494.23999"
-       y2="113.24"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33260" />
-    <line
-       x1="499.94"
-       y1="114.65"
-       x2="510.35999"
-       y2="113.17"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33262" />
-    <line
-       x1="510.35999"
-       y1="113.17"
-       x2="511.32001"
-       y2="116.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33264" />
-    <line
-       x1="499.94"
-       y1="114.65"
-       x2="511.32001"
-       y2="116.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33266" />
-    <line
-       x1="511.32001"
-       y1="116.68"
-       x2="509.48001"
-       y2="120.29"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33268" />
-    <line
-       x1="499.94"
-       y1="114.65"
-       x2="509.48001"
-       y2="120.29"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33270" />
-    <line
-       x1="509.48001"
-       y1="120.29"
-       x2="506.66"
-       y2="120.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33272" />
-    <line
-       x1="506.66"
-       y1="120.39"
-       x2="505.70001"
-       y2="116.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33274" />
-    <line
-       x1="499.94"
-       y1="114.65"
-       x2="505.70001"
-       y2="116.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33276" />
-    <line
-       x1="505.70001"
-       y1="116.87"
-       x2="507.54999"
-       y2="113.26"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33278" />
-    <line
-       x1="507.54999"
-       y1="113.26"
-       x2="499.94"
-       y2="114.65"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33280" />
-    <line
-       x1="497.09"
-       y1="113.95"
-       x2="507.5"
-       y2="112.46"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33282" />
-    <line
-       x1="507.5"
-       y1="112.46"
-       x2="508.45999"
-       y2="115.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33284" />
-    <line
-       x1="497.09"
-       y1="113.95"
-       x2="508.45999"
-       y2="115.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33286" />
-    <line
-       x1="508.45999"
-       y1="115.98"
-       x2="506.62"
-       y2="119.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33288" />
-    <line
-       x1="497.09"
-       y1="113.95"
-       x2="506.62"
-       y2="119.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33290" />
-    <line
-       x1="506.62"
-       y1="119.59"
-       x2="503.79999"
-       y2="119.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33292" />
-    <line
-       x1="503.79999"
-       y1="119.68"
-       x2="502.84"
-       y2="116.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33294" />
-    <line
-       x1="497.09"
-       y1="113.95"
-       x2="502.84"
-       y2="116.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33296" />
-    <line
-       x1="502.84"
-       y1="116.16"
-       x2="504.69"
-       y2="112.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33298" />
-    <line
-       x1="504.69"
-       y1="112.55"
-       x2="497.09"
-       y2="113.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33300" />
-    <line
-       x1="501.82999"
-       y1="111.84"
-       x2="504.64001"
-       y2="111.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33302" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="504.64001"
-       y2="111.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33304" />
-    <line
-       x1="504.64001"
-       y1="111.75"
-       x2="505.60999"
-       y2="115.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33306" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="505.60999"
-       y2="115.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33308" />
-    <line
-       x1="505.60999"
-       y1="115.27"
-       x2="503.76001"
-       y2="118.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33310" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="503.76001"
-       y2="118.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33312" />
-    <line
-       x1="503.76001"
-       y1="118.88"
-       x2="500.95001"
-       y2="118.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33314" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="500.95001"
-       y2="118.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33316" />
-    <line
-       x1="500.95001"
-       y1="118.97"
-       x2="499.98001"
-       y2="115.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33318" />
-    <line
-       x1="494.23999"
-       y1="113.24"
-       x2="499.98001"
-       y2="115.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33320" />
-    <line
-       x1="499.98001"
-       y1="115.45"
-       x2="501.82999"
-       y2="111.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33322" />
-    <line
-       x1="501.82999"
-       y1="111.84"
-       x2="494.23999"
-       y2="113.24"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33324" />
-    <line
-       x1="1576.5"
-       y1="569.13"
-       x2="1576.58"
-       y2="566.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33326" />
-    <line
-       x1="1576.58"
-       y1="566.56"
-       x2="1572.95"
-       y2="565.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33328" />
-    <line
-       x1="1571.23"
-       y1="558.60999"
-       x2="1572.95"
-       y2="565.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33330" />
-    <line
-       x1="1572.95"
-       y1="565.57001"
-       x2="1569.24"
-       y2="567.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33332" />
-    <line
-       x1="1571.23"
-       y1="558.60999"
-       x2="1569.24"
-       y2="567.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33334" />
-    <line
-       x1="1571.23"
-       y1="558.60999"
-       x2="1569.15"
-       y2="569.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33336" />
-    <line
-       x1="1569.15"
-       y1="569.70001"
-       x2="1572.77"
-       y2="570.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33338" />
-    <line
-       x1="1571.23"
-       y1="558.60999"
-       x2="1572.77"
-       y2="570.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33340" />
-    <line
-       x1="1572.77"
-       y1="570.70001"
-       x2="1576.5"
-       y2="569.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33342" />
-    <line
-       x1="1576.5"
-       y1="569.13"
-       x2="1571.23"
-       y2="558.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33344" />
-    <line
-       x1="1575.95"
-       y1="565.95001"
-       x2="1576.04"
-       y2="563.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33346" />
-    <line
-       x1="1576.04"
-       y1="563.39001"
-       x2="1572.41"
-       y2="562.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33348" />
-    <line
-       x1="1570.6801"
-       y1="555.42999"
-       x2="1572.41"
-       y2="562.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33350" />
-    <line
-       x1="1572.41"
-       y1="562.40002"
-       x2="1568.6899"
-       y2="563.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33352" />
-    <line
-       x1="1570.6801"
-       y1="555.42999"
-       x2="1568.6"
-       y2="566.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33354" />
-    <line
-       x1="1568.6"
-       y1="566.53003"
-       x2="1572.23"
-       y2="567.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33356" />
-    <line
-       x1="1570.6801"
-       y1="555.42999"
-       x2="1572.23"
-       y2="567.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33358" />
-    <line
-       x1="1572.23"
-       y1="567.52002"
-       x2="1575.95"
-       y2="565.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33360" />
-    <line
-       x1="1575.95"
-       y1="565.95001"
-       x2="1570.6801"
-       y2="555.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33362" />
-    <line
-       x1="1575.41"
-       y1="562.78003"
-       x2="1575.49"
-       y2="560.21997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33364" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1575.49"
-       y2="560.21997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33366" />
-    <line
-       x1="1575.49"
-       y1="560.21997"
-       x2="1571.86"
-       y2="559.22998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33368" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1571.86"
-       y2="559.22998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33370" />
-    <line
-       x1="1571.86"
-       y1="559.22998"
-       x2="1568.14"
-       y2="560.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33372" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1568.05"
-       y2="563.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33374" />
-    <line
-       x1="1568.05"
-       y1="563.35999"
-       x2="1571.6801"
-       y2="564.34998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33376" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1571.6801"
-       y2="564.34998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33378" />
-    <line
-       x1="1571.6801"
-       y1="564.34998"
-       x2="1575.41"
-       y2="562.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33380" />
-    <line
-       x1="1575.41"
-       y1="562.78003"
-       x2="1570.13"
-       y2="552.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33382" />
-    <line
-       x1="1559.23"
-       y1="559.97998"
-       x2="1562.6801"
-       y2="562.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33384" />
-    <line
-       x1="1566.02"
-       y1="556.71002"
-       x2="1562.6801"
-       y2="562.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33386" />
-    <line
-       x1="1566.02"
-       y1="556.71002"
-       x2="1563.27"
-       y2="565.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33388" />
-    <line
-       x1="1563.27"
-       y1="565.96002"
-       x2="1560.42"
-       y2="566.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33390" />
-    <line
-       x1="1566.02"
-       y1="556.71002"
-       x2="1560.42"
-       y2="566.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33392" />
-    <line
-       x1="1560.42"
-       y1="566.79999"
-       x2="1556.98"
-       y2="564.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33394" />
-    <line
-       x1="1566.02"
-       y1="556.71002"
-       x2="1556.98"
-       y2="564.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33396" />
-    <line
-       x1="1556.98"
-       y1="564.23999"
-       x2="1556.38"
-       y2="560.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33398" />
-    <line
-       x1="1556.38"
-       y1="560.83002"
-       x2="1559.23"
-       y2="559.97998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33400" />
-    <line
-       x1="1559.23"
-       y1="559.97998"
-       x2="1566.02"
-       y2="556.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33402" />
-    <line
-       x1="1561.3"
-       y1="557.75"
-       x2="1564.75"
-       y2="560.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33404" />
-    <line
-       x1="1568.0699"
-       y1="554.47998"
-       x2="1565.34"
-       y2="563.72998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33406" />
-    <line
-       x1="1565.34"
-       y1="563.72998"
-       x2="1562.48"
-       y2="564.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33408" />
-    <line
-       x1="1568.0699"
-       y1="554.47998"
-       x2="1562.48"
-       y2="564.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33410" />
-    <line
-       x1="1562.48"
-       y1="564.57001"
-       x2="1559.04"
-       y2="562.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33412" />
-    <line
-       x1="1568.0699"
-       y1="554.47998"
-       x2="1559.04"
-       y2="562.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33414" />
-    <line
-       x1="1559.04"
-       y1="562.01001"
-       x2="1558.45"
-       y2="558.59998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33416" />
-    <line
-       x1="1568.0699"
-       y1="554.47998"
-       x2="1558.45"
-       y2="558.59998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33418" />
-    <line
-       x1="1558.45"
-       y1="558.59998"
-       x2="1561.3"
-       y2="557.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33420" />
-    <line
-       x1="1561.3"
-       y1="557.75"
-       x2="1568.0699"
-       y2="554.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33422" />
-    <line
-       x1="1563.36"
-       y1="555.52002"
-       x2="1566.8101"
-       y2="558.09003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33424" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1567.4"
-       y2="561.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33426" />
-    <line
-       x1="1567.4"
-       y1="561.5"
-       x2="1564.54"
-       y2="562.34003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33428" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1564.54"
-       y2="562.34003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33430" />
-    <line
-       x1="1564.54"
-       y1="562.34003"
-       x2="1561.1"
-       y2="559.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33432" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1561.1"
-       y2="559.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33434" />
-    <line
-       x1="1561.1"
-       y1="559.78003"
-       x2="1560.51"
-       y2="556.37"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33436" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1560.51"
-       y2="556.37"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33438" />
-    <line
-       x1="1560.51"
-       y1="556.37"
-       x2="1563.36"
-       y2="555.52002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33440" />
-    <line
-       x1="1563.36"
-       y1="555.52002"
-       x2="1570.13"
-       y2="552.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33442" />
-    <line
-       x1="1576.92"
-       y1="554.09998"
-       x2="1588.74"
-       y2="553.09003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33444" />
-    <line
-       x1="1588.74"
-       y1="553.09003"
-       x2="1589.3199"
-       y2="556.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33446" />
-    <line
-       x1="1576.92"
-       y1="554.09998"
-       x2="1589.3199"
-       y2="556.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33448" />
-    <line
-       x1="1589.3199"
-       y1="556.5"
-       x2="1587.71"
-       y2="560.28003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33450" />
-    <line
-       x1="1576.92"
-       y1="554.09998"
-       x2="1587.71"
-       y2="560.28003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33452" />
-    <line
-       x1="1587.71"
-       y1="560.28003"
-       x2="1585.51"
-       y2="560.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33454" />
-    <line
-       x1="1576.92"
-       y1="554.09998"
-       x2="1585.51"
-       y2="560.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33456" />
-    <line
-       x1="1585.51"
-       y1="560.64001"
-       x2="1584.9301"
-       y2="557.22998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33458" />
-    <line
-       x1="1576.92"
-       y1="554.09998"
-       x2="1584.9301"
-       y2="557.22998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33460" />
-    <line
-       x1="1584.9301"
-       y1="557.22998"
-       x2="1586.54"
-       y2="553.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33462" />
-    <line
-       x1="1586.54"
-       y1="553.45001"
-       x2="1576.92"
-       y2="554.09998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33464" />
-    <line
-       x1="1573.52"
-       y1="553.17999"
-       x2="1585.34"
-       y2="552.16998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33466" />
-    <line
-       x1="1585.34"
-       y1="552.16998"
-       x2="1585.92"
-       y2="555.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33468" />
-    <line
-       x1="1573.52"
-       y1="553.17999"
-       x2="1585.92"
-       y2="555.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33470" />
-    <line
-       x1="1585.92"
-       y1="555.58002"
-       x2="1584.3"
-       y2="559.34998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33472" />
-    <line
-       x1="1573.52"
-       y1="553.17999"
-       x2="1584.3"
-       y2="559.34998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33474" />
-    <line
-       x1="1584.3"
-       y1="559.34998"
-       x2="1582.11"
-       y2="559.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33476" />
-    <line
-       x1="1573.52"
-       y1="553.17999"
-       x2="1582.11"
-       y2="559.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33478" />
-    <line
-       x1="1582.11"
-       y1="559.71002"
-       x2="1581.52"
-       y2="556.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33480" />
-    <line
-       x1="1573.52"
-       y1="553.17999"
-       x2="1581.52"
-       y2="556.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33482" />
-    <line
-       x1="1583.14"
-       y1="552.53003"
-       x2="1573.52"
-       y2="553.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33484" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1581.9301"
-       y2="551.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33486" />
-    <line
-       x1="1581.9301"
-       y1="551.25"
-       x2="1582.52"
-       y2="554.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33488" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1582.52"
-       y2="554.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33490" />
-    <line
-       x1="1582.52"
-       y1="554.65997"
-       x2="1580.9"
-       y2="558.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33492" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1580.9"
-       y2="558.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33494" />
-    <line
-       x1="1580.9"
-       y1="558.42999"
-       x2="1578.7"
-       y2="558.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33496" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1578.7"
-       y2="558.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33498" />
-    <line
-       x1="1578.7"
-       y1="558.78998"
-       x2="1578.12"
-       y2="555.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33500" />
-    <line
-       x1="1570.13"
-       y1="552.26001"
-       x2="1578.12"
-       y2="555.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33502" />
-    <line
-       x1="1578.12"
-       y1="555.38"
-       x2="1579.73"
-       y2="551.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33504" />
-    <line
-       x1="1579.73"
-       y1="551.60999"
-       x2="1570.13"
-       y2="552.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33506" />
-    <line
-       x1="140.55"
-       y1="329.51999"
-       x2="141.60001"
-       y2="327.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33508" />
-    <line
-       x1="134.57001"
-       y1="318.95999"
-       x2="141.60001"
-       y2="327.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33510" />
-    <line
-       x1="141.60001"
-       y1="327.14001"
-       x2="138.7"
-       y2="326.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33512" />
-    <line
-       x1="138.7"
-       y1="326.26999"
-       x2="134.75999"
-       y2="327.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33514" />
-    <line
-       x1="134.75999"
-       y1="327.79001"
-       x2="133.71001"
-       y2="330.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33516" />
-    <line
-       x1="133.71001"
-       y1="330.17001"
-       x2="134.57001"
-       y2="318.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33518" />
-    <line
-       x1="134.57001"
-       y1="318.95999"
-       x2="133.71001"
-       y2="330.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33520" />
-    <line
-       x1="133.71001"
-       y1="330.17001"
-       x2="136.61"
-       y2="331.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33522" />
-    <line
-       x1="134.57001"
-       y1="318.95999"
-       x2="136.61"
-       y2="331.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33524" />
-    <line
-       x1="136.61"
-       y1="331.04001"
-       x2="140.55"
-       y2="329.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33526" />
-    <line
-       x1="140.55"
-       y1="329.51999"
-       x2="134.57001"
-       y2="318.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33528" />
-    <line
-       x1="139.53"
-       y1="326.29001"
-       x2="140.57001"
-       y2="323.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33530" />
-    <line
-       x1="133.53999"
-       y1="315.73001"
-       x2="140.57001"
-       y2="323.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33532" />
-    <line
-       x1="140.57001"
-       y1="323.91"
-       x2="137.67999"
-       y2="323.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33534" />
-    <line
-       x1="137.67999"
-       y1="323.04999"
-       x2="133.73"
-       y2="324.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33536" />
-    <line
-       x1="133.53999"
-       y1="315.73001"
-       x2="133.73"
-       y2="324.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33538" />
-    <line
-       x1="133.73"
-       y1="324.56"
-       x2="132.67999"
-       y2="326.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33540" />
-    <line
-       x1="133.53999"
-       y1="315.73001"
-       x2="132.67999"
-       y2="326.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33542" />
-    <line
-       x1="132.67999"
-       y1="326.94"
-       x2="135.58"
-       y2="327.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33544" />
-    <line
-       x1="133.53999"
-       y1="315.73001"
-       x2="135.58"
-       y2="327.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33546" />
-    <line
-       x1="135.58"
-       y1="327.79999"
-       x2="139.53"
-       y2="326.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33548" />
-    <line
-       x1="139.53"
-       y1="326.29001"
-       x2="133.53999"
-       y2="315.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33550" />
-    <line
-       x1="138.5"
-       y1="323.06"
-       x2="139.55"
-       y2="320.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33552" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="139.55"
-       y2="320.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33554" />
-    <line
-       x1="139.55"
-       y1="320.67999"
-       x2="136.64999"
-       y2="319.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33556" />
-    <line
-       x1="136.64999"
-       y1="319.82001"
-       x2="132.71001"
-       y2="321.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33558" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="132.71001"
-       y2="321.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33560" />
-    <line
-       x1="132.71001"
-       y1="321.34"
-       x2="131.66"
-       y2="323.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33562" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="131.66"
-       y2="323.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33564" />
-    <line
-       x1="131.66"
-       y1="323.70999"
-       x2="134.55"
-       y2="324.57999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33566" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="134.55"
-       y2="324.57999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33568" />
-    <line
-       x1="134.55"
-       y1="324.57999"
-       x2="138.5"
-       y2="323.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33570" />
-    <line
-       x1="138.5"
-       y1="323.06"
-       x2="132.50999"
-       y2="312.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33572" />
-    <line
-       x1="117.89"
-       y1="319.53"
-       x2="120.96"
-       y2="322.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33574" />
-    <line
-       x1="127.12"
-       y1="316.70001"
-       x2="120.96"
-       y2="322.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33576" />
-    <line
-       x1="120.96"
-       y1="322.01999"
-       x2="122.07"
-       y2="325.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33578" />
-    <line
-       x1="127.12"
-       y1="316.70001"
-       x2="122.07"
-       y2="325.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33580" />
-    <line
-       x1="122.07"
-       y1="325.48999"
-       x2="120.12"
-       y2="326.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33582" />
-    <line
-       x1="127.12"
-       y1="316.70001"
-       x2="120.12"
-       y2="326.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33584" />
-    <line
-       x1="120.12"
-       y1="326.47"
-       x2="117.05"
-       y2="323.98001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33586" />
-    <line
-       x1="127.12"
-       y1="316.70001"
-       x2="117.05"
-       y2="323.98001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33588" />
-    <line
-       x1="117.05"
-       y1="323.98001"
-       x2="115.94"
-       y2="320.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33590" />
-    <line
-       x1="115.94"
-       y1="320.51999"
-       x2="117.89"
-       y2="319.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33592" />
-    <line
-       x1="117.89"
-       y1="319.53"
-       x2="127.12"
-       y2="316.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33594" />
-    <line
-       x1="120.6"
-       y1="317.42999"
-       x2="123.67"
-       y2="319.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33596" />
-    <line
-       x1="129.82001"
-       y1="314.60001"
-       x2="123.67"
-       y2="319.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33598" />
-    <line
-       x1="129.82001"
-       y1="314.60001"
-       x2="124.78"
-       y2="323.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33600" />
-    <line
-       x1="124.78"
-       y1="323.38"
-       x2="122.82"
-       y2="324.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33602" />
-    <line
-       x1="129.82001"
-       y1="314.60001"
-       x2="122.82"
-       y2="324.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33604" />
-    <line
-       x1="122.82"
-       y1="324.37"
-       x2="119.76"
-       y2="321.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33606" />
-    <line
-       x1="129.82001"
-       y1="314.60001"
-       x2="119.76"
-       y2="321.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33608" />
-    <line
-       x1="119.76"
-       y1="321.88"
-       x2="118.65"
-       y2="318.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33610" />
-    <line
-       x1="129.82001"
-       y1="314.60001"
-       x2="118.65"
-       y2="318.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33612" />
-    <line
-       x1="118.65"
-       y1="318.41"
-       x2="120.6"
-       y2="317.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33614" />
-    <line
-       x1="120.6"
-       y1="317.42999"
-       x2="129.82001"
-       y2="314.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33616" />
-    <line
-       x1="123.31"
-       y1="315.32001"
-       x2="126.37"
-       y2="317.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33618" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="126.37"
-       y2="317.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33620" />
-    <line
-       x1="126.37"
-       y1="317.81"
-       x2="127.48"
-       y2="321.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33622" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="127.48"
-       y2="321.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33624" />
-    <line
-       x1="127.48"
-       y1="321.28"
-       x2="125.52"
-       y2="322.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33626" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="125.52"
-       y2="322.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33628" />
-    <line
-       x1="125.52"
-       y1="322.26001"
-       x2="122.46"
-       y2="319.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33630" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="122.46"
-       y2="319.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33632" />
-    <line
-       x1="122.46"
-       y1="319.78"
-       x2="121.35"
-       y2="316.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33634" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="121.35"
-       y2="316.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33636" />
-    <line
-       x1="121.35"
-       y1="316.31"
-       x2="123.31"
-       y2="315.32001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33638" />
-    <line
-       x1="123.31"
-       y1="315.32001"
-       x2="132.50999"
-       y2="312.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33640" />
-    <line
-       x1="144.97"
-       y1="313.04001"
-       x2="148.02"
-       y2="312.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33642" />
-    <line
-       x1="137.92999"
-       y1="314.10999"
-       x2="148.02"
-       y2="312.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33644" />
-    <line
-       x1="148.02"
-       y1="312.82999"
-       x2="149.12"
-       y2="316.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33646" />
-    <line
-       x1="137.92999"
-       y1="314.10999"
-       x2="149.12"
-       y2="316.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33648" />
-    <line
-       x1="149.12"
-       y1="316.29999"
-       x2="147.17"
-       y2="319.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33650" />
-    <line
-       x1="137.92999"
-       y1="314.10999"
-       x2="147.17"
-       y2="319.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33652" />
-    <line
-       x1="147.17"
-       y1="319.98999"
-       x2="144.12"
-       y2="320.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33654" />
-    <line
-       x1="137.92999"
-       y1="314.10999"
-       x2="144.12"
-       y2="320.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33656" />
-    <line
-       x1="144.12"
-       y1="320.20999"
-       x2="143.02"
-       y2="316.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33658" />
-    <line
-       x1="137.92999"
-       y1="314.10999"
-       x2="143.02"
-       y2="316.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33660" />
-    <line
-       x1="143.02"
-       y1="316.73001"
-       x2="144.97"
-       y2="313.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33662" />
-    <line
-       x1="144.97"
-       y1="313.04001"
-       x2="137.92999"
-       y2="314.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33664" />
-    <line
-       x1="135.22"
-       y1="313.29999"
-       x2="145.3"
-       y2="312.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33666" />
-    <line
-       x1="145.3"
-       y1="312.03"
-       x2="146.39999"
-       y2="315.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33668" />
-    <line
-       x1="135.22"
-       y1="313.29999"
-       x2="146.39999"
-       y2="315.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33670" />
-    <line
-       x1="146.39999"
-       y1="315.5"
-       x2="144.45"
-       y2="319.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33672" />
-    <line
-       x1="135.22"
-       y1="313.29999"
-       x2="144.45"
-       y2="319.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33674" />
-    <line
-       x1="144.45"
-       y1="319.17999"
-       x2="141.39999"
-       y2="319.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33676" />
-    <line
-       x1="135.22"
-       y1="313.29999"
-       x2="141.39999"
-       y2="319.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33678" />
-    <line
-       x1="141.39999"
-       y1="319.39999"
-       x2="140.3"
-       y2="315.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33680" />
-    <line
-       x1="135.22"
-       y1="313.29999"
-       x2="140.3"
-       y2="315.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33682" />
-    <line
-       x1="140.3"
-       y1="315.92999"
-       x2="142.25"
-       y2="312.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33684" />
-    <line
-       x1="142.25"
-       y1="312.23999"
-       x2="135.22"
-       y2="313.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33686" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="142.59"
-       y2="311.23001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33688" />
-    <line
-       x1="142.59"
-       y1="311.23001"
-       x2="143.69"
-       y2="314.70001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33690" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="143.69"
-       y2="314.70001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33692" />
-    <line
-       x1="143.69"
-       y1="314.70001"
-       x2="141.74001"
-       y2="318.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33694" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="141.74001"
-       y2="318.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33696" />
-    <line
-       x1="141.74001"
-       y1="318.38"
-       x2="138.69"
-       y2="318.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33698" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="138.69"
-       y2="318.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33700" />
-    <line
-       x1="138.69"
-       y1="318.59"
-       x2="137.59"
-       y2="315.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33702" />
-    <line
-       x1="132.50999"
-       y1="312.5"
-       x2="137.59"
-       y2="315.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33704" />
-    <line
-       x1="137.59"
-       y1="315.12"
-       x2="139.53999"
-       y2="311.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33706" />
-    <line
-       x1="139.53999"
-       y1="311.44"
-       x2="132.50999"
-       y2="312.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33708" />
-    <line
-       x1="1612.01"
-       y1="415.92999"
-       x2="1612.0699"
-       y2="413.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33710" />
-    <line
-       x1="1612.0699"
-       y1="413.47"
-       x2="1608.4301"
-       y2="412.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33712" />
-    <line
-       x1="1606.77"
-       y1="405.35999"
-       x2="1608.4301"
-       y2="412.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33714" />
-    <line
-       x1="1608.4301"
-       y1="412.56"
-       x2="1604.73"
-       y2="414.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33716" />
-    <line
-       x1="1604.73"
-       y1="414.10001"
-       x2="1604.66"
-       y2="416.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33718" />
-    <line
-       x1="1606.77"
-       y1="405.35999"
-       x2="1604.66"
-       y2="416.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33720" />
-    <line
-       x1="1604.66"
-       y1="416.54999"
-       x2="1608.3"
-       y2="417.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33722" />
-    <line
-       x1="1606.77"
-       y1="405.35999"
-       x2="1608.3"
-       y2="417.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33724" />
-    <line
-       x1="1608.3"
-       y1="417.45999"
-       x2="1612.01"
-       y2="415.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33726" />
-    <line
-       x1="1612.01"
-       y1="415.92999"
-       x2="1606.77"
-       y2="405.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33728" />
-    <line
-       x1="1611.48"
-       y1="412.70999"
-       x2="1611.54"
-       y2="410.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33730" />
-    <line
-       x1="1611.54"
-       y1="410.25"
-       x2="1607.9"
-       y2="409.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33732" />
-    <line
-       x1="1606.23"
-       y1="402.13"
-       x2="1607.9"
-       y2="409.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33734" />
-    <line
-       x1="1607.9"
-       y1="409.34"
-       x2="1604.2"
-       y2="410.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33736" />
-    <line
-       x1="1606.23"
-       y1="402.13"
-       x2="1604.2"
-       y2="410.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33738" />
-    <line
-       x1="1606.23"
-       y1="402.13"
-       x2="1604.13"
-       y2="413.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33740" />
-    <line
-       x1="1604.13"
-       y1="413.34"
-       x2="1607.77"
-       y2="414.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33742" />
-    <line
-       x1="1606.23"
-       y1="402.13"
-       x2="1607.77"
-       y2="414.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33744" />
-    <line
-       x1="1607.77"
-       y1="414.25"
-       x2="1611.48"
-       y2="412.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33746" />
-    <line
-       x1="1611.48"
-       y1="412.70999"
-       x2="1606.23"
-       y2="402.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33748" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1611.01"
-       y2="407.04001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33750" />
-    <line
-       x1="1611.01"
-       y1="407.04001"
-       x2="1607.37"
-       y2="406.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33752" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1603.59"
-       y2="410.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33754" />
-    <line
-       x1="1603.59"
-       y1="410.12"
-       x2="1607.23"
-       y2="411.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33756" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1607.23"
-       y2="411.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33758" />
-    <line
-       x1="1607.23"
-       y1="411.03"
-       x2="1610.95"
-       y2="409.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33760" />
-    <line
-       x1="1610.95"
-       y1="409.48999"
-       x2="1605.7"
-       y2="398.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33762" />
-    <line
-       x1="1594.92"
-       y1="406.20999"
-       x2="1598.37"
-       y2="408.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33764" />
-    <line
-       x1="1598.37"
-       y1="408.73001"
-       x2="1598.95"
-       y2="412.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33766" />
-    <line
-       x1="1601.63"
-       y1="403.20999"
-       x2="1598.95"
-       y2="412.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33768" />
-    <line
-       x1="1598.95"
-       y1="412.20001"
-       x2="1596.0699"
-       y2="413.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33770" />
-    <line
-       x1="1601.63"
-       y1="403.20999"
-       x2="1596.0699"
-       y2="413.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33772" />
-    <line
-       x1="1596.0699"
-       y1="413.13"
-       x2="1592.63"
-       y2="410.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33774" />
-    <line
-       x1="1601.63"
-       y1="403.20999"
-       x2="1592.63"
-       y2="410.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33776" />
-    <line
-       x1="1592.63"
-       y1="410.60999"
-       x2="1592.05"
-       y2="407.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33778" />
-    <line
-       x1="1601.63"
-       y1="403.20999"
-       x2="1592.05"
-       y2="407.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33780" />
-    <line
-       x1="1592.05"
-       y1="407.14999"
-       x2="1594.92"
-       y2="406.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33782" />
-    <line
-       x1="1594.92"
-       y1="406.20999"
-       x2="1601.63"
-       y2="403.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33784" />
-    <line
-       x1="1596.96"
-       y1="404.04999"
-       x2="1600.41"
-       y2="406.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33786" />
-    <line
-       x1="1600.41"
-       y1="406.57001"
-       x2="1600.99"
-       y2="410.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33788" />
-    <line
-       x1="1603.66"
-       y1="401.04999"
-       x2="1600.99"
-       y2="410.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33790" />
-    <line
-       x1="1600.99"
-       y1="410.04001"
-       x2="1598.12"
-       y2="410.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33792" />
-    <line
-       x1="1603.66"
-       y1="401.04999"
-       x2="1598.12"
-       y2="410.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33794" />
-    <line
-       x1="1598.12"
-       y1="410.97"
-       x2="1594.6801"
-       y2="408.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33796" />
-    <line
-       x1="1603.66"
-       y1="401.04999"
-       x2="1594.6801"
-       y2="408.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33798" />
-    <line
-       x1="1594.6801"
-       y1="408.45001"
-       x2="1594.1"
-       y2="404.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33800" />
-    <line
-       x1="1603.66"
-       y1="401.04999"
-       x2="1594.1"
-       y2="404.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33802" />
-    <line
-       x1="1594.1"
-       y1="404.98999"
-       x2="1596.96"
-       y2="404.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33804" />
-    <line
-       x1="1596.96"
-       y1="404.04999"
-       x2="1603.66"
-       y2="401.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33806" />
-    <line
-       x1="1599.01"
-       y1="401.89999"
-       x2="1602.46"
-       y2="404.42001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33808" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1602.46"
-       y2="404.42001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33810" />
-    <line
-       x1="1602.46"
-       y1="404.42001"
-       x2="1603.03"
-       y2="407.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33812" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1603.03"
-       y2="407.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33814" />
-    <line
-       x1="1603.03"
-       y1="407.88"
-       x2="1600.16"
-       y2="408.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33816" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1600.16"
-       y2="408.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33818" />
-    <line
-       x1="1600.16"
-       y1="408.82001"
-       x2="1596.72"
-       y2="406.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33820" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1596.72"
-       y2="406.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33822" />
-    <line
-       x1="1596.72"
-       y1="406.29999"
-       x2="1596.14"
-       y2="402.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33824" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1596.14"
-       y2="402.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33826" />
-    <line
-       x1="1596.14"
-       y1="402.84"
-       x2="1599.01"
-       y2="401.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33828" />
-    <line
-       x1="1599.01"
-       y1="401.89999"
-       x2="1605.7"
-       y2="398.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33830" />
-    <line
-       x1="1612.51"
-       y1="400.60001"
-       x2="1624.34"
-       y2="399.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33832" />
-    <line
-       x1="1624.34"
-       y1="399.42001"
-       x2="1624.91"
-       y2="402.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33834" />
-    <line
-       x1="1612.51"
-       y1="400.60001"
-       x2="1624.91"
-       y2="402.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33836" />
-    <line
-       x1="1624.91"
-       y1="402.88"
-       x2="1623.3101"
-       y2="406.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33838" />
-    <line
-       x1="1612.51"
-       y1="400.60001"
-       x2="1623.3101"
-       y2="406.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33840" />
-    <line
-       x1="1623.3101"
-       y1="406.60999"
-       x2="1621.14"
-       y2="406.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33842" />
-    <line
-       x1="1612.51"
-       y1="400.60001"
-       x2="1621.14"
-       y2="406.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33844" />
-    <line
-       x1="1621.14"
-       y1="406.88"
-       x2="1620.5699"
-       y2="403.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33846" />
-    <line
-       x1="1612.51"
-       y1="400.60001"
-       x2="1620.5699"
-       y2="403.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33848" />
-    <line
-       x1="1620.5699"
-       y1="403.42001"
-       x2="1622.1801"
-       y2="399.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33850" />
-    <line
-       x1="1622.1801"
-       y1="399.67999"
-       x2="1612.51"
-       y2="400.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33852" />
-    <line
-       x1="1609.11"
-       y1="399.75"
-       x2="1620.9301"
-       y2="398.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33854" />
-    <line
-       x1="1620.9301"
-       y1="398.57001"
-       x2="1621.5"
-       y2="402.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33856" />
-    <line
-       x1="1609.11"
-       y1="399.75"
-       x2="1621.5"
-       y2="402.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33858" />
-    <line
-       x1="1621.5"
-       y1="402.03"
-       x2="1619.89"
-       y2="405.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33860" />
-    <line
-       x1="1609.11"
-       y1="399.75"
-       x2="1619.89"
-       y2="405.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33862" />
-    <line
-       x1="1619.89"
-       y1="405.76001"
-       x2="1617.72"
-       y2="406.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33864" />
-    <line
-       x1="1609.11"
-       y1="399.75"
-       x2="1617.72"
-       y2="406.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33866" />
-    <line
-       x1="1617.72"
-       y1="406.03"
-       x2="1617.16"
-       y2="402.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33868" />
-    <line
-       x1="1609.11"
-       y1="399.75"
-       x2="1617.16"
-       y2="402.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33870" />
-    <line
-       x1="1617.16"
-       y1="402.57001"
-       x2="1618.76"
-       y2="398.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33872" />
-    <line
-       x1="1618.76"
-       y1="398.84"
-       x2="1609.11"
-       y2="399.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33874" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1617.52"
-       y2="397.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33876" />
-    <line
-       x1="1617.52"
-       y1="397.72"
-       x2="1618.09"
-       y2="401.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33878" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1618.09"
-       y2="401.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33880" />
-    <line
-       x1="1618.09"
-       y1="401.17999"
-       x2="1616.48"
-       y2="404.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33882" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1616.48"
-       y2="404.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33884" />
-    <line
-       x1="1616.48"
-       y1="404.91"
-       x2="1614.3101"
-       y2="405.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33886" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1614.3101"
-       y2="405.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33888" />
-    <line
-       x1="1614.3101"
-       y1="405.17999"
-       x2="1613.74"
-       y2="401.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33890" />
-    <line
-       x1="1605.7"
-       y1="398.91"
-       x2="1613.74"
-       y2="401.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33892" />
-    <line
-       x1="1613.74"
-       y1="401.70999"
-       x2="1615.35"
-       y2="397.98999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33894" />
-    <line
-       x1="1615.35"
-       y1="397.98999"
-       x2="1605.7"
-       y2="398.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33896" />
-    <line
-       x1="89.760002"
-       y1="367.20999"
-       x2="90.839996"
-       y2="364.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33898" />
-    <line
-       x1="83.739998"
-       y1="356.66"
-       x2="90.839996"
-       y2="364.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33900" />
-    <line
-       x1="90.839996"
-       y1="364.79999"
-       x2="87.959999"
-       y2="363.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33902" />
-    <line
-       x1="84"
-       y1="365.44"
-       x2="82.919998"
-       y2="367.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33904" />
-    <line
-       x1="83.739998"
-       y1="356.66"
-       x2="82.919998"
-       y2="367.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33906" />
-    <line
-       x1="82.919998"
-       y1="367.85001"
-       x2="85.800003"
-       y2="368.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33908" />
-    <line
-       x1="83.739998"
-       y1="356.66"
-       x2="85.800003"
-       y2="368.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33910" />
-    <line
-       x1="85.800003"
-       y1="368.73001"
-       x2="89.760002"
-       y2="367.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33912" />
-    <line
-       x1="89.760002"
-       y1="367.20999"
-       x2="83.739998"
-       y2="356.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33914" />
-    <line
-       x1="88.709999"
-       y1="363.98999"
-       x2="89.790001"
-       y2="361.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33916" />
-    <line
-       x1="82.690002"
-       y1="353.44"
-       x2="89.790001"
-       y2="361.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33918" />
-    <line
-       x1="89.790001"
-       y1="361.57999"
-       x2="86.919998"
-       y2="360.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33920" />
-    <line
-       x1="82.959999"
-       y1="362.22"
-       x2="81.879997"
-       y2="364.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33922" />
-    <line
-       x1="82.690002"
-       y1="353.44"
-       x2="81.879997"
-       y2="364.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33924" />
-    <line
-       x1="81.879997"
-       y1="364.63"
-       x2="84.75"
-       y2="365.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33926" />
-    <line
-       x1="82.690002"
-       y1="353.44"
-       x2="84.75"
-       y2="365.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33928" />
-    <line
-       x1="84.75"
-       y1="365.51999"
-       x2="88.709999"
-       y2="363.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33930" />
-    <line
-       x1="88.709999"
-       y1="363.98999"
-       x2="82.690002"
-       y2="353.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33932" />
-    <line
-       x1="87.660004"
-       y1="360.76999"
-       x2="88.75"
-       y2="358.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33934" />
-    <line
-       x1="88.75"
-       y1="358.35999"
-       x2="85.870003"
-       y2="357.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33936" />
-    <line
-       x1="85.870003"
-       y1="357.48001"
-       x2="81.910004"
-       y2="359"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33938" />
-    <line
-       x1="81.910004"
-       y1="359"
-       x2="80.82"
-       y2="361.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33940" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="80.82"
-       y2="361.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33942" />
-    <line
-       x1="80.82"
-       y1="361.41"
-       x2="83.699997"
-       y2="362.29001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33944" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="83.699997"
-       y2="362.29001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33946" />
-    <line
-       x1="83.699997"
-       y1="362.29001"
-       x2="87.660004"
-       y2="360.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33948" />
-    <line
-       x1="87.660004"
-       y1="360.76999"
-       x2="81.639999"
-       y2="350.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33950" />
-    <line
-       x1="76.190002"
-       y1="354.45001"
-       x2="69.919998"
-       y2="359.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33952" />
-    <line
-       x1="69.919998"
-       y1="359.85001"
-       x2="71.050003"
-       y2="363.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33954" />
-    <line
-       x1="76.190002"
-       y1="354.45001"
-       x2="71.050003"
-       y2="363.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33956" />
-    <line
-       x1="71.050003"
-       y1="363.31"
-       x2="69.129997"
-       y2="364.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33958" />
-    <line
-       x1="69.129997"
-       y1="364.28"
-       x2="76.190002"
-       y2="354.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33960" />
-    <line
-       x1="76.190002"
-       y1="354.45001"
-       x2="69.129997"
-       y2="364.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33962" />
-    <line
-       x1="69.129997"
-       y1="364.28"
-       x2="66.07"
-       y2="361.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33964" />
-    <line
-       x1="76.190002"
-       y1="354.45001"
-       x2="66.07"
-       y2="361.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33966" />
-    <line
-       x1="66.07"
-       y1="361.78"
-       x2="64.940002"
-       y2="358.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33968" />
-    <line
-       x1="64.940002"
-       y1="358.32001"
-       x2="66.860001"
-       y2="357.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33970" />
-    <line
-       x1="66.860001"
-       y1="357.35001"
-       x2="76.190002"
-       y2="354.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33972" />
-    <line
-       x1="78.919998"
-       y1="352.32001"
-       x2="72.660004"
-       y2="357.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33974" />
-    <line
-       x1="72.660004"
-       y1="357.72"
-       x2="73.790001"
-       y2="361.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33976" />
-    <line
-       x1="78.919998"
-       y1="352.32001"
-       x2="73.790001"
-       y2="361.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33978" />
-    <line
-       x1="73.790001"
-       y1="361.19"
-       x2="71.860001"
-       y2="362.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33980" />
-    <line
-       x1="78.919998"
-       y1="352.32001"
-       x2="71.860001"
-       y2="362.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33982" />
-    <line
-       x1="71.860001"
-       y1="362.14999"
-       x2="68.800003"
-       y2="359.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33984" />
-    <line
-       x1="78.919998"
-       y1="352.32001"
-       x2="68.800003"
-       y2="359.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33986" />
-    <line
-       x1="68.800003"
-       y1="359.64999"
-       x2="67.669998"
-       y2="356.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33988" />
-    <line
-       x1="67.669998"
-       y1="356.19"
-       x2="69.599998"
-       y2="355.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33990" />
-    <line
-       x1="69.599998"
-       y1="355.23001"
-       x2="78.919998"
-       y2="352.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line33992" />
-    <line
-       x1="72.330002"
-       y1="353.10001"
-       x2="75.389999"
-       y2="355.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33994" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="75.389999"
-       y2="355.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33996" />
-    <line
-       x1="75.389999"
-       y1="355.60001"
-       x2="76.519997"
-       y2="359.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line33998" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="76.519997"
-       y2="359.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34000" />
-    <line
-       x1="76.519997"
-       y1="359.06"
-       x2="74.589996"
-       y2="360.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34002" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="74.589996"
-       y2="360.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34004" />
-    <line
-       x1="74.589996"
-       y1="360.03"
-       x2="71.540001"
-       y2="357.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34006" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="71.540001"
-       y2="357.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34008" />
-    <line
-       x1="71.540001"
-       y1="357.53"
-       x2="70.400002"
-       y2="354.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34010" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="70.400002"
-       y2="354.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34012" />
-    <line
-       x1="70.400002"
-       y1="354.07001"
-       x2="72.330002"
-       y2="353.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34014" />
-    <line
-       x1="72.330002"
-       y1="353.10001"
-       x2="81.639999"
-       y2="350.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34016" />
-    <line
-       x1="97.07"
-       y1="350.62"
-       x2="98.190002"
-       y2="354.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34018" />
-    <line
-       x1="87.019997"
-       y1="351.85001"
-       x2="98.190002"
-       y2="354.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34020" />
-    <line
-       x1="98.190002"
-       y1="354.09"
-       x2="96.230003"
-       y2="357.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34022" />
-    <line
-       x1="87.019997"
-       y1="351.85001"
-       x2="96.230003"
-       y2="357.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34024" />
-    <line
-       x1="96.230003"
-       y1="357.79001"
-       x2="93.139999"
-       y2="358.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34026" />
-    <line
-       x1="87.019997"
-       y1="351.85001"
-       x2="93.139999"
-       y2="358.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34028" />
-    <line
-       x1="93.139999"
-       y1="358.01999"
-       x2="92.019997"
-       y2="354.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34030" />
-    <line
-       x1="87.019997"
-       y1="351.85001"
-       x2="92.019997"
-       y2="354.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34032" />
-    <line
-       x1="92.019997"
-       y1="354.56"
-       x2="93.980003"
-       y2="350.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34034" />
-    <line
-       x1="91.290001"
-       y1="350.03"
-       x2="94.370003"
-       y2="349.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34036" />
-    <line
-       x1="84.330002"
-       y1="351.03"
-       x2="94.370003"
-       y2="349.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34038" />
-    <line
-       x1="94.370003"
-       y1="349.79999"
-       x2="95.489998"
-       y2="353.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34040" />
-    <line
-       x1="84.330002"
-       y1="351.03"
-       x2="95.489998"
-       y2="353.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34042" />
-    <line
-       x1="95.489998"
-       y1="353.26001"
-       x2="93.529999"
-       y2="356.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34044" />
-    <line
-       x1="84.330002"
-       y1="351.03"
-       x2="93.529999"
-       y2="356.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34046" />
-    <line
-       x1="93.529999"
-       y1="356.95999"
-       x2="90.440002"
-       y2="357.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34048" />
-    <line
-       x1="84.330002"
-       y1="351.03"
-       x2="90.440002"
-       y2="357.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34050" />
-    <line
-       x1="90.440002"
-       y1="357.20001"
-       x2="89.32"
-       y2="353.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34052" />
-    <line
-       x1="84.330002"
-       y1="351.03"
-       x2="89.32"
-       y2="353.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34054" />
-    <line
-       x1="89.32"
-       y1="353.73001"
-       x2="91.290001"
-       y2="350.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34056" />
-    <line
-       x1="91.290001"
-       y1="350.03"
-       x2="84.330002"
-       y2="351.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34058" />
-    <line
-       x1="88.589996"
-       y1="349.20999"
-       x2="91.68"
-       y2="348.98001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34060" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="91.68"
-       y2="348.98001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34062" />
-    <line
-       x1="91.68"
-       y1="348.98001"
-       x2="92.800003"
-       y2="352.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34064" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="92.800003"
-       y2="352.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34066" />
-    <line
-       x1="92.800003"
-       y1="352.44"
-       x2="90.839996"
-       y2="356.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34068" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="90.839996"
-       y2="356.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34070" />
-    <line
-       x1="90.839996"
-       y1="356.14001"
-       x2="87.75"
-       y2="356.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34072" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="87.75"
-       y2="356.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34074" />
-    <line
-       x1="87.75"
-       y1="356.38"
-       x2="86.620003"
-       y2="352.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34076" />
-    <line
-       x1="81.639999"
-       y1="350.20999"
-       x2="86.620003"
-       y2="352.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34078" />
-    <line
-       x1="86.620003"
-       y1="352.91"
-       x2="88.589996"
-       y2="349.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34080" />
-    <line
-       x1="88.589996"
-       y1="349.20999"
-       x2="81.639999"
-       y2="350.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34082" />
-    <line
-       x1="1370.0699"
-       y1="340.75"
-       x2="1370.3"
-       y2="338.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34084" />
-    <line
-       x1="1370.3"
-       y1="338.37"
-       x2="1366.8"
-       y2="337.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34086" />
-    <line
-       x1="1364.74"
-       y1="330.22"
-       x2="1366.8"
-       y2="337.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34088" />
-    <line
-       x1="1364.74"
-       y1="330.22"
-       x2="1363.08"
-       y2="339.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34090" />
-    <line
-       x1="1364.74"
-       y1="330.22"
-       x2="1362.86"
-       y2="341.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34092" />
-    <line
-       x1="1362.86"
-       y1="341.39999"
-       x2="1366.35"
-       y2="342.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34094" />
-    <line
-       x1="1364.74"
-       y1="330.22"
-       x2="1366.35"
-       y2="342.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34096" />
-    <line
-       x1="1366.35"
-       y1="342.26999"
-       x2="1370.0699"
-       y2="340.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34098" />
-    <line
-       x1="1370.0699"
-       y1="340.75"
-       x2="1364.74"
-       y2="330.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34100" />
-    <line
-       x1="1369.46"
-       y1="337.54001"
-       x2="1369.6899"
-       y2="335.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34102" />
-    <line
-       x1="1364.13"
-       y1="326.98999"
-       x2="1369.6899"
-       y2="335.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34104" />
-    <line
-       x1="1369.6899"
-       y1="335.14999"
-       x2="1366.1899"
-       y2="334.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34106" />
-    <line
-       x1="1364.13"
-       y1="326.98999"
-       x2="1366.1899"
-       y2="334.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34108" />
-    <line
-       x1="1364.13"
-       y1="326.98999"
-       x2="1362.47"
-       y2="335.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34110" />
-    <line
-       x1="1364.13"
-       y1="326.98999"
-       x2="1362.24"
-       y2="338.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34112" />
-    <line
-       x1="1362.24"
-       y1="338.17999"
-       x2="1365.74"
-       y2="339.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34114" />
-    <line
-       x1="1364.13"
-       y1="326.98999"
-       x2="1365.74"
-       y2="339.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34116" />
-    <line
-       x1="1365.74"
-       y1="339.04999"
-       x2="1369.46"
-       y2="337.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34118" />
-    <line
-       x1="1369.46"
-       y1="337.54001"
-       x2="1364.13"
-       y2="326.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34120" />
-    <line
-       x1="1368.85"
-       y1="334.31"
-       x2="1369.08"
-       y2="331.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34122" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1369.08"
-       y2="331.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34124" />
-    <line
-       x1="1369.08"
-       y1="331.92999"
-       x2="1365.58"
-       y2="331.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34126" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1365.58"
-       y2="331.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34128" />
-    <line
-       x1="1365.58"
-       y1="331.06"
-       x2="1361.86"
-       y2="332.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34130" />
-    <line
-       x1="1361.86"
-       y1="332.57001"
-       x2="1361.63"
-       y2="334.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34132" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1361.63"
-       y2="334.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34134" />
-    <line
-       x1="1361.63"
-       y1="334.95999"
-       x2="1365.13"
-       y2="335.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34136" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1365.13"
-       y2="335.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34138" />
-    <line
-       x1="1365.13"
-       y1="335.82999"
-       x2="1368.85"
-       y2="334.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34140" />
-    <line
-       x1="1368.85"
-       y1="334.31"
-       x2="1363.52"
-       y2="323.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34142" />
-    <line
-       x1="1352.17"
-       y1="330.82001"
-       x2="1355.54"
-       y2="333.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34144" />
-    <line
-       x1="1359.25"
-       y1="327.95999"
-       x2="1355.54"
-       y2="333.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34146" />
-    <line
-       x1="1359.25"
-       y1="327.95999"
-       x2="1356.2"
-       y2="336.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34148" />
-    <line
-       x1="1356.2"
-       y1="336.76999"
-       x2="1353.5"
-       y2="337.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34150" />
-    <line
-       x1="1359.25"
-       y1="327.95999"
-       x2="1353.5"
-       y2="337.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34152" />
-    <line
-       x1="1353.5"
-       y1="337.75"
-       x2="1350.13"
-       y2="335.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34154" />
-    <line
-       x1="1359.25"
-       y1="327.95999"
-       x2="1350.13"
-       y2="335.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34156" />
-    <line
-       x1="1350.13"
-       y1="335.26001"
-       x2="1349.47"
-       y2="331.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34158" />
-    <line
-       x1="1349.47"
-       y1="331.79999"
-       x2="1352.17"
-       y2="330.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34160" />
-    <line
-       x1="1352.17"
-       y1="330.82001"
-       x2="1359.25"
-       y2="327.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34162" />
-    <line
-       x1="1354.3101"
-       y1="328.70999"
-       x2="1357.6801"
-       y2="331.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34164" />
-    <line
-       x1="1361.39"
-       y1="325.85999"
-       x2="1357.6801"
-       y2="331.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34166" />
-    <line
-       x1="1357.6801"
-       y1="331.20001"
-       x2="1358.34"
-       y2="334.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34168" />
-    <line
-       x1="1361.39"
-       y1="325.85999"
-       x2="1358.34"
-       y2="334.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34170" />
-    <line
-       x1="1358.34"
-       y1="334.66"
-       x2="1355.64"
-       y2="335.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34172" />
-    <line
-       x1="1361.39"
-       y1="325.85999"
-       x2="1355.64"
-       y2="335.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34174" />
-    <line
-       x1="1355.64"
-       y1="335.64001"
-       x2="1352.27"
-       y2="333.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34176" />
-    <line
-       x1="1361.39"
-       y1="325.85999"
-       x2="1352.27"
-       y2="333.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34178" />
-    <line
-       x1="1352.27"
-       y1="333.14999"
-       x2="1351.61"
-       y2="329.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34180" />
-    <line
-       x1="1361.39"
-       y1="325.85999"
-       x2="1351.61"
-       y2="329.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34182" />
-    <line
-       x1="1351.61"
-       y1="329.69"
-       x2="1354.3101"
-       y2="328.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34184" />
-    <line
-       x1="1354.3101"
-       y1="328.70999"
-       x2="1361.39"
-       y2="325.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34186" />
-    <line
-       x1="1356.45"
-       y1="326.60999"
-       x2="1359.8199"
-       y2="329.09"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34188" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1359.8199"
-       y2="329.09"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34190" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1360.48"
-       y2="332.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34192" />
-    <line
-       x1="1360.48"
-       y1="332.54999"
-       x2="1357.77"
-       y2="333.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34194" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1357.77"
-       y2="333.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34196" />
-    <line
-       x1="1357.77"
-       y1="333.53"
-       x2="1354.41"
-       y2="331.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34198" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1354.41"
-       y2="331.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34200" />
-    <line
-       x1="1354.41"
-       y1="331.04999"
-       x2="1353.75"
-       y2="327.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34202" />
-    <line
-       x1="1353.75"
-       y1="327.59"
-       x2="1356.45"
-       y2="326.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34204" />
-    <line
-       x1="1356.45"
-       y1="326.60999"
-       x2="1363.52"
-       y2="323.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34206" />
-    <line
-       x1="1370.05"
-       y1="325.38"
-       x2="1381.54"
-       y2="324.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34208" />
-    <line
-       x1="1381.54"
-       y1="324.12"
-       x2="1382.1801"
-       y2="327.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34210" />
-    <line
-       x1="1370.05"
-       y1="325.38"
-       x2="1382.1801"
-       y2="327.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34212" />
-    <line
-       x1="1382.1801"
-       y1="327.59"
-       x2="1380.54"
-       y2="331.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34214" />
-    <line
-       x1="1370.05"
-       y1="325.38"
-       x2="1380.54"
-       y2="331.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34216" />
-    <line
-       x1="1380.54"
-       y1="331.26999"
-       x2="1378.23"
-       y2="331.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34218" />
-    <line
-       x1="1370.05"
-       y1="325.38"
-       x2="1378.23"
-       y2="331.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34220" />
-    <line
-       x1="1378.23"
-       y1="331.5"
-       x2="1377.58"
-       y2="328.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34222" />
-    <line
-       x1="1377.58"
-       y1="328.03"
-       x2="1370.05"
-       y2="325.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34224" />
-    <line
-       x1="1370.05"
-       y1="325.38"
-       x2="1377.58"
-       y2="328.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34226" />
-    <line
-       x1="1377.58"
-       y1="328.03"
-       x2="1379.23"
-       y2="324.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34228" />
-    <line
-       x1="1379.23"
-       y1="324.34"
-       x2="1370.05"
-       y2="325.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34230" />
-    <line
-       x1="1366.79"
-       y1="324.57001"
-       x2="1378.25"
-       y2="323.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34232" />
-    <line
-       x1="1378.25"
-       y1="323.31"
-       x2="1378.91"
-       y2="326.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34234" />
-    <line
-       x1="1366.79"
-       y1="324.57001"
-       x2="1378.91"
-       y2="326.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34236" />
-    <line
-       x1="1378.91"
-       y1="326.78"
-       x2="1377.26"
-       y2="330.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34238" />
-    <line
-       x1="1366.79"
-       y1="324.57001"
-       x2="1377.26"
-       y2="330.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34240" />
-    <line
-       x1="1377.26"
-       y1="330.45999"
-       x2="1374.95"
-       y2="330.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34242" />
-    <line
-       x1="1374.95"
-       y1="330.67999"
-       x2="1374.3"
-       y2="327.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34244" />
-    <line
-       x1="1366.79"
-       y1="324.57001"
-       x2="1374.3"
-       y2="327.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34246" />
-    <line
-       x1="1374.3"
-       y1="327.22"
-       x2="1375.95"
-       y2="323.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34248" />
-    <line
-       x1="1375.95"
-       y1="323.53"
-       x2="1366.79"
-       y2="324.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34250" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1374.98"
-       y2="322.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34252" />
-    <line
-       x1="1374.98"
-       y1="322.5"
-       x2="1375.63"
-       y2="325.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34254" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1375.63"
-       y2="325.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34256" />
-    <line
-       x1="1375.63"
-       y1="325.97"
-       x2="1373.98"
-       y2="329.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34258" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1373.98"
-       y2="329.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34260" />
-    <line
-       x1="1373.98"
-       y1="329.64999"
-       x2="1371.6801"
-       y2="329.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34262" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1371.6801"
-       y2="329.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34264" />
-    <line
-       x1="1371.6801"
-       y1="329.87"
-       x2="1371.02"
-       y2="326.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34266" />
-    <line
-       x1="1363.52"
-       y1="323.76999"
-       x2="1371.02"
-       y2="326.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34268" />
-    <line
-       x1="1371.02"
-       y1="326.41"
-       x2="1372.6801"
-       y2="322.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34270" />
-    <line
-       x1="1372.6801"
-       y1="322.72"
-       x2="1363.52"
-       y2="323.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34272" />
-    <line
-       x1="283.45001"
-       y1="96.720001"
-       x2="284.39001"
-       y2="94.510002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34274" />
-    <line
-       x1="277.57001"
-       y1="86.110001"
-       x2="284.39001"
-       y2="94.510002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34276" />
-    <line
-       x1="284.39001"
-       y1="94.510002"
-       x2="281.44"
-       y2="93.760002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34278" />
-    <line
-       x1="277.57001"
-       y1="86.110001"
-       x2="281.44"
-       y2="93.760002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34280" />
-    <line
-       x1="277.57001"
-       y1="86.110001"
-       x2="277.54001"
-       y2="95.230003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34282" />
-    <line
-       x1="277.54001"
-       y1="95.230003"
-       x2="276.59"
-       y2="97.440002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34284" />
-    <line
-       x1="277.57001"
-       y1="86.110001"
-       x2="276.59"
-       y2="97.440002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34286" />
-    <line
-       x1="276.59"
-       y1="97.440002"
-       x2="279.54999"
-       y2="98.190002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34288" />
-    <line
-       x1="277.57001"
-       y1="86.110001"
-       x2="279.54999"
-       y2="98.190002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34290" />
-    <line
-       x1="279.54999"
-       y1="98.190002"
-       x2="283.45001"
-       y2="96.720001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34292" />
-    <line
-       x1="283.45001"
-       y1="96.720001"
-       x2="277.57001"
-       y2="86.110001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34294" />
-    <line
-       x1="282.47"
-       y1="93.43"
-       x2="283.42001"
-       y2="91.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34296" />
-    <line
-       x1="276.59"
-       y1="82.809998"
-       x2="283.42001"
-       y2="91.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34298" />
-    <line
-       x1="283.42001"
-       y1="91.220001"
-       x2="280.45999"
-       y2="90.480003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34300" />
-    <line
-       x1="276.59"
-       y1="82.809998"
-       x2="280.45999"
-       y2="90.480003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34302" />
-    <line
-       x1="276.59"
-       y1="82.809998"
-       x2="276.57001"
-       y2="91.940002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34304" />
-    <line
-       x1="276.57001"
-       y1="91.940002"
-       x2="275.62"
-       y2="94.150002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34306" />
-    <line
-       x1="276.59"
-       y1="82.809998"
-       x2="275.62"
-       y2="94.150002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34308" />
-    <line
-       x1="275.62"
-       y1="94.150002"
-       x2="278.57001"
-       y2="94.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34310" />
-    <line
-       x1="276.59"
-       y1="82.809998"
-       x2="278.57001"
-       y2="94.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34312" />
-    <line
-       x1="278.57001"
-       y1="94.900002"
-       x2="282.47"
-       y2="93.43"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34314" />
-    <line
-       x1="282.47"
-       y1="93.43"
-       x2="276.59"
-       y2="82.809998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34316" />
-    <line
-       x1="281.5"
-       y1="90.139999"
-       x2="282.44"
-       y2="87.93"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34318" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="282.44"
-       y2="87.93"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34320" />
-    <line
-       x1="282.44"
-       y1="87.93"
-       x2="279.48999"
-       y2="87.190002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34322" />
-    <line
-       x1="279.48999"
-       y1="87.190002"
-       x2="275.59"
-       y2="88.650002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34324" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="275.59"
-       y2="88.650002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34326" />
-    <line
-       x1="275.59"
-       y1="88.650002"
-       x2="274.64001"
-       y2="90.860001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34328" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="274.64001"
-       y2="90.860001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34330" />
-    <line
-       x1="274.64001"
-       y1="90.860001"
-       x2="277.59"
-       y2="91.610001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34332" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="277.59"
-       y2="91.610001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34334" />
-    <line
-       x1="277.59"
-       y1="91.610001"
-       x2="281.5"
-       y2="90.139999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34336" />
-    <line
-       x1="281.5"
-       y1="90.139999"
-       x2="275.62"
-       y2="79.510002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34338" />
-    <line
-       x1="261.45001"
-       y1="85.889999"
-       x2="264.54001"
-       y2="88.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34340" />
-    <line
-       x1="270.38"
-       y1="83.470001"
-       x2="264.54001"
-       y2="88.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34342" />
-    <line
-       x1="264.54001"
-       y1="88.309998"
-       x2="265.59"
-       y2="91.849998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34344" />
-    <line
-       x1="270.38"
-       y1="83.470001"
-       x2="265.59"
-       y2="91.849998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34346" />
-    <line
-       x1="265.59"
-       y1="91.849998"
-       x2="263.56"
-       y2="92.970001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34348" />
-    <line
-       x1="270.38"
-       y1="83.470001"
-       x2="263.56"
-       y2="92.970001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34350" />
-    <line
-       x1="263.56"
-       y1="92.970001"
-       x2="260.48001"
-       y2="90.550003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34352" />
-    <line
-       x1="270.38"
-       y1="83.470001"
-       x2="260.48001"
-       y2="90.550003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34354" />
-    <line
-       x1="260.48001"
-       y1="90.550003"
-       x2="259.42001"
-       y2="87.019997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34356" />
-    <line
-       x1="270.38"
-       y1="83.470001"
-       x2="259.42001"
-       y2="87.019997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34358" />
-    <line
-       x1="259.42001"
-       y1="87.019997"
-       x2="261.45001"
-       y2="85.889999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34360" />
-    <line
-       x1="261.45001"
-       y1="85.889999"
-       x2="270.38"
-       y2="83.470001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34362" />
-    <line
-       x1="264.07999"
-       y1="83.910004"
-       x2="267.16"
-       y2="86.32"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34364" />
-    <line
-       x1="273"
-       y1="81.489998"
-       x2="267.16"
-       y2="86.32"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34366" />
-    <line
-       x1="267.16"
-       y1="86.32"
-       x2="268.20999"
-       y2="89.860001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34368" />
-    <line
-       x1="273"
-       y1="81.489998"
-       x2="268.20999"
-       y2="89.860001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34370" />
-    <line
-       x1="268.20999"
-       y1="89.860001"
-       x2="266.17999"
-       y2="90.980003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34372" />
-    <line
-       x1="273"
-       y1="81.489998"
-       x2="266.17999"
-       y2="90.980003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34374" />
-    <line
-       x1="266.17999"
-       y1="90.980003"
-       x2="263.10001"
-       y2="88.57"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34376" />
-    <line
-       x1="273"
-       y1="81.489998"
-       x2="263.10001"
-       y2="88.57"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34378" />
-    <line
-       x1="263.10001"
-       y1="88.57"
-       x2="262.04999"
-       y2="85.029999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34380" />
-    <line
-       x1="273"
-       y1="81.489998"
-       x2="262.04999"
-       y2="85.029999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34382" />
-    <line
-       x1="262.04999"
-       y1="85.029999"
-       x2="264.07999"
-       y2="83.910004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34384" />
-    <line
-       x1="264.07999"
-       y1="83.910004"
-       x2="273"
-       y2="81.489998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34386" />
-    <line
-       x1="266.70001"
-       y1="81.919998"
-       x2="269.79001"
-       y2="84.339996"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34388" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="269.79001"
-       y2="84.339996"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34390" />
-    <line
-       x1="269.79001"
-       y1="84.339996"
-       x2="270.84"
-       y2="87.870003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34392" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="270.84"
-       y2="87.870003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34394" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="268.81"
-       y2="88.989998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34396" />
-    <line
-       x1="268.81"
-       y1="88.989998"
-       x2="265.73001"
-       y2="86.580002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34398" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="265.73001"
-       y2="86.580002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34400" />
-    <line
-       x1="265.73001"
-       y1="86.580002"
-       x2="264.67999"
-       y2="83.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34402" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="264.67999"
-       y2="83.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34404" />
-    <line
-       x1="264.67999"
-       y1="83.050003"
-       x2="266.70001"
-       y2="81.919998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34406" />
-    <line
-       x1="266.70001"
-       y1="81.919998"
-       x2="275.62"
-       y2="79.510002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34408" />
-    <line
-       x1="291.32999"
-       y1="79.370003"
-       x2="292.38"
-       y2="82.910004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34410" />
-    <line
-       x1="281.13"
-       y1="80.900002"
-       x2="292.38"
-       y2="82.910004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34412" />
-    <line
-       x1="292.38"
-       y1="82.910004"
-       x2="290.47"
-       y2="86.519997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34414" />
-    <line
-       x1="281.13"
-       y1="80.900002"
-       x2="290.47"
-       y2="86.519997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34416" />
-    <line
-       x1="290.47"
-       y1="86.519997"
-       x2="287.51999"
-       y2="86.589996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34418" />
-    <line
-       x1="287.51999"
-       y1="86.589996"
-       x2="286.48001"
-       y2="83.050003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34420" />
-    <line
-       x1="281.13"
-       y1="80.900002"
-       x2="286.48001"
-       y2="83.050003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34422" />
-    <line
-       x1="286.48001"
-       y1="83.050003"
-       x2="288.38"
-       y2="79.440002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34424" />
-    <line
-       x1="288.38"
-       y1="79.440002"
-       x2="281.13"
-       y2="80.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34426" />
-    <line
-       x1="278.38"
-       y1="80.209999"
-       x2="288.57001"
-       y2="78.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34428" />
-    <line
-       x1="288.57001"
-       y1="78.68"
-       x2="289.60999"
-       y2="82.209999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34430" />
-    <line
-       x1="278.38"
-       y1="80.209999"
-       x2="289.60999"
-       y2="82.209999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34432" />
-    <line
-       x1="289.60999"
-       y1="82.209999"
-       x2="287.70999"
-       y2="85.82"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34434" />
-    <line
-       x1="278.38"
-       y1="80.209999"
-       x2="287.70999"
-       y2="85.82"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34436" />
-    <line
-       x1="287.70999"
-       y1="85.82"
-       x2="284.75"
-       y2="85.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34438" />
-    <line
-       x1="284.75"
-       y1="85.900002"
-       x2="283.70999"
-       y2="82.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34440" />
-    <line
-       x1="278.38"
-       y1="80.209999"
-       x2="283.70999"
-       y2="82.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34442" />
-    <line
-       x1="283.70999"
-       y1="82.360001"
-       x2="285.62"
-       y2="78.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34444" />
-    <line
-       x1="282.85001"
-       y1="78.050003"
-       x2="285.79999"
-       y2="77.980003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34446" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="285.79999"
-       y2="77.980003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34448" />
-    <line
-       x1="285.79999"
-       y1="77.980003"
-       x2="286.84"
-       y2="81.519997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34450" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="286.84"
-       y2="81.519997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34452" />
-    <line
-       x1="286.84"
-       y1="81.519997"
-       x2="284.94"
-       y2="85.129997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34454" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="284.94"
-       y2="85.129997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34456" />
-    <line
-       x1="284.94"
-       y1="85.129997"
-       x2="281.98999"
-       y2="85.199997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34458" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="281.98999"
-       y2="85.199997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34460" />
-    <line
-       x1="281.98999"
-       y1="85.199997"
-       x2="280.95001"
-       y2="81.660004"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34462" />
-    <line
-       x1="275.62"
-       y1="79.510002"
-       x2="280.95001"
-       y2="81.660004"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34464" />
-    <line
-       x1="280.95001"
-       y1="81.660004"
-       x2="282.85001"
-       y2="78.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34466" />
-    <line
-       x1="282.85001"
-       y1="78.050003"
-       x2="275.62"
-       y2="79.510002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34468" />
-    <line
-       x1="1469.9301"
-       y1="416.10001"
-       x2="1470.09"
-       y2="413.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34470" />
-    <line
-       x1="1470.09"
-       y1="413.64999"
-       x2="1466.53"
-       y2="412.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34472" />
-    <line
-       x1="1464.63"
-       y1="405.57001"
-       x2="1466.53"
-       y2="412.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34474" />
-    <line
-       x1="1466.53"
-       y1="412.75"
-       x2="1462.8199"
-       y2="414.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34476" />
-    <line
-       x1="1462.8199"
-       y1="414.28"
-       x2="1462.65"
-       y2="416.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34478" />
-    <line
-       x1="1464.63"
-       y1="405.57001"
-       x2="1462.65"
-       y2="416.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34480" />
-    <line
-       x1="1462.65"
-       y1="416.72"
-       x2="1466.21"
-       y2="417.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34482" />
-    <line
-       x1="1464.63"
-       y1="405.57001"
-       x2="1466.21"
-       y2="417.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34484" />
-    <line
-       x1="1466.21"
-       y1="417.63"
-       x2="1469.9301"
-       y2="416.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34486" />
-    <line
-       x1="1469.9301"
-       y1="416.10001"
-       x2="1464.63"
-       y2="405.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34488" />
-    <line
-       x1="1469.35"
-       y1="412.89001"
-       x2="1469.51"
-       y2="410.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34490" />
-    <line
-       x1="1469.51"
-       y1="410.45001"
-       x2="1465.95"
-       y2="409.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34492" />
-    <line
-       x1="1464.05"
-       y1="402.35999"
-       x2="1465.95"
-       y2="409.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34494" />
-    <line
-       x1="1465.95"
-       y1="409.54001"
-       x2="1462.24"
-       y2="411.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34496" />
-    <line
-       x1="1464.05"
-       y1="402.35999"
-       x2="1462.0699"
-       y2="413.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34498" />
-    <line
-       x1="1462.0699"
-       y1="413.51999"
-       x2="1465.63"
-       y2="414.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34500" />
-    <line
-       x1="1464.05"
-       y1="402.35999"
-       x2="1465.63"
-       y2="414.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34502" />
-    <line
-       x1="1465.63"
-       y1="414.42999"
-       x2="1469.35"
-       y2="412.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34504" />
-    <line
-       x1="1469.35"
-       y1="412.89001"
-       x2="1464.05"
-       y2="402.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34506" />
-    <line
-       x1="1468.9301"
-       y1="407.23999"
-       x2="1465.38"
-       y2="406.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34508" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1465.38"
-       y2="406.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34510" />
-    <line
-       x1="1465.38"
-       y1="406.34"
-       x2="1461.66"
-       y2="407.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34512" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1461.49"
-       y2="410.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34514" />
-    <line
-       x1="1461.49"
-       y1="410.31"
-       x2="1465.05"
-       y2="411.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34516" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1465.05"
-       y2="411.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34518" />
-    <line
-       x1="1465.05"
-       y1="411.22"
-       x2="1468.77"
-       y2="409.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34520" />
-    <line
-       x1="1468.77"
-       y1="409.67999"
-       x2="1463.47"
-       y2="399.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34522" />
-    <line
-       x1="1452.35"
-       y1="406.42001"
-       x2="1455.75"
-       y2="408.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34524" />
-    <line
-       x1="1459.28"
-       y1="403.42999"
-       x2="1455.75"
-       y2="408.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34526" />
-    <line
-       x1="1459.28"
-       y1="403.42999"
-       x2="1456.38"
-       y2="412.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34528" />
-    <line
-       x1="1456.38"
-       y1="412.38"
-       x2="1453.61"
-       y2="413.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34530" />
-    <line
-       x1="1459.28"
-       y1="403.42999"
-       x2="1453.61"
-       y2="413.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34532" />
-    <line
-       x1="1453.61"
-       y1="413.32001"
-       x2="1450.21"
-       y2="410.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34534" />
-    <line
-       x1="1459.28"
-       y1="403.42999"
-       x2="1450.21"
-       y2="410.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34536" />
-    <line
-       x1="1450.21"
-       y1="410.79999"
-       x2="1449.58"
-       y2="407.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34538" />
-    <line
-       x1="1459.28"
-       y1="403.42999"
-       x2="1449.58"
-       y2="407.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34540" />
-    <line
-       x1="1449.58"
-       y1="407.35999"
-       x2="1452.35"
-       y2="406.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34542" />
-    <line
-       x1="1452.35"
-       y1="406.42001"
-       x2="1459.28"
-       y2="403.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34544" />
-    <line
-       x1="1454.46"
-       y1="404.26999"
-       x2="1457.86"
-       y2="406.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34546" />
-    <line
-       x1="1461.38"
-       y1="401.28"
-       x2="1457.86"
-       y2="406.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34548" />
-    <line
-       x1="1461.38"
-       y1="401.28"
-       x2="1458.48"
-       y2="410.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34550" />
-    <line
-       x1="1458.48"
-       y1="410.23001"
-       x2="1455.71"
-       y2="411.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34552" />
-    <line
-       x1="1461.38"
-       y1="401.28"
-       x2="1455.71"
-       y2="411.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34554" />
-    <line
-       x1="1455.71"
-       y1="411.16"
-       x2="1452.3101"
-       y2="408.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34556" />
-    <line
-       x1="1461.38"
-       y1="401.28"
-       x2="1452.3101"
-       y2="408.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34558" />
-    <line
-       x1="1452.3101"
-       y1="408.64999"
-       x2="1451.6801"
-       y2="405.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34560" />
-    <line
-       x1="1451.6801"
-       y1="405.20999"
-       x2="1454.46"
-       y2="404.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34562" />
-    <line
-       x1="1454.46"
-       y1="404.26999"
-       x2="1461.38"
-       y2="401.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34564" />
-    <line
-       x1="1456.5601"
-       y1="402.13"
-       x2="1459.96"
-       y2="404.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34566" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1459.96"
-       y2="404.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34568" />
-    <line
-       x1="1459.96"
-       y1="404.63"
-       x2="1460.58"
-       y2="408.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34570" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1460.58"
-       y2="408.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34572" />
-    <line
-       x1="1460.58"
-       y1="408.07999"
-       x2="1457.8101"
-       y2="409.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34574" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1457.8101"
-       y2="409.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34576" />
-    <line
-       x1="1457.8101"
-       y1="409.01999"
-       x2="1454.41"
-       y2="406.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34578" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1454.41"
-       y2="406.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34580" />
-    <line
-       x1="1454.41"
-       y1="406.51001"
-       x2="1453.79"
-       y2="403.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34582" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1453.79"
-       y2="403.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34584" />
-    <line
-       x1="1453.79"
-       y1="403.06"
-       x2="1456.5601"
-       y2="402.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34586" />
-    <line
-       x1="1456.5601"
-       y1="402.13"
-       x2="1463.47"
-       y2="399.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34588" />
-    <line
-       x1="1470.13"
-       y1="400.82999"
-       x2="1481.75"
-       y2="399.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34590" />
-    <line
-       x1="1481.75"
-       y1="399.64999"
-       x2="1482.37"
-       y2="403.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34592" />
-    <line
-       x1="1470.13"
-       y1="400.82999"
-       x2="1482.37"
-       y2="403.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34594" />
-    <line
-       x1="1482.37"
-       y1="403.10999"
-       x2="1480.74"
-       y2="406.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34596" />
-    <line
-       x1="1470.13"
-       y1="400.82999"
-       x2="1480.74"
-       y2="406.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34598" />
-    <line
-       x1="1480.74"
-       y1="406.82001"
-       x2="1478.49"
-       y2="407.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34600" />
-    <line
-       x1="1470.13"
-       y1="400.82999"
-       x2="1478.49"
-       y2="407.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34602" />
-    <line
-       x1="1478.49"
-       y1="407.09"
-       x2="1477.87"
-       y2="403.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34604" />
-    <line
-       x1="1470.13"
-       y1="400.82999"
-       x2="1477.87"
-       y2="403.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34606" />
-    <line
-       x1="1477.87"
-       y1="403.64001"
-       x2="1479.5"
-       y2="399.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34608" />
-    <line
-       x1="1479.5"
-       y1="399.92001"
-       x2="1470.13"
-       y2="400.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34610" />
-    <line
-       x1="1466.8"
-       y1="399.98001"
-       x2="1478.42"
-       y2="398.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34612" />
-    <line
-       x1="1478.42"
-       y1="398.81"
-       x2="1479.04"
-       y2="402.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34614" />
-    <line
-       x1="1466.8"
-       y1="399.98001"
-       x2="1479.04"
-       y2="402.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34616" />
-    <line
-       x1="1479.04"
-       y1="402.26001"
-       x2="1477.41"
-       y2="405.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34618" />
-    <line
-       x1="1466.8"
-       y1="399.98001"
-       x2="1477.41"
-       y2="405.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34620" />
-    <line
-       x1="1477.41"
-       y1="405.97"
-       x2="1475.16"
-       y2="406.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34622" />
-    <line
-       x1="1466.8"
-       y1="399.98001"
-       x2="1475.16"
-       y2="406.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34624" />
-    <line
-       x1="1475.16"
-       y1="406.23999"
-       x2="1474.54"
-       y2="402.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34626" />
-    <line
-       x1="1466.8"
-       y1="399.98001"
-       x2="1474.54"
-       y2="402.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34628" />
-    <line
-       x1="1474.54"
-       y1="402.79001"
-       x2="1476.17"
-       y2="399.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34630" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1475.09"
-       y2="397.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34632" />
-    <line
-       x1="1475.09"
-       y1="397.95999"
-       x2="1475.7"
-       y2="401.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34634" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1475.7"
-       y2="401.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34636" />
-    <line
-       x1="1475.7"
-       y1="401.41"
-       x2="1474.0699"
-       y2="405.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34638" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1474.0699"
-       y2="405.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34640" />
-    <line
-       x1="1474.0699"
-       y1="405.13"
-       x2="1471.8199"
-       y2="405.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34642" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1471.8199"
-       y2="405.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34644" />
-    <line
-       x1="1471.8199"
-       y1="405.39001"
-       x2="1471.2"
-       y2="401.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34646" />
-    <line
-       x1="1463.47"
-       y1="399.14001"
-       x2="1471.2"
-       y2="401.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34648" />
-    <line
-       x1="1471.2"
-       y1="401.94"
-       x2="1472.84"
-       y2="398.23001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34650" />
-    <line
-       x1="1472.84"
-       y1="398.23001"
-       x2="1463.47"
-       y2="399.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34652" />
-    <line
-       x1="409.06"
-       y1="99.459999"
-       x2="409.92001"
-       y2="97.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34654" />
-    <line
-       x1="403.26001"
-       y1="88.860001"
-       x2="409.92001"
-       y2="97.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34656" />
-    <line
-       x1="409.92001"
-       y1="97.25"
-       x2="406.91"
-       y2="96.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34658" />
-    <line
-       x1="403.26001"
-       y1="88.860001"
-       x2="406.91"
-       y2="96.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34660" />
-    <line
-       x1="403.26001"
-       y1="88.860001"
-       x2="403.04999"
-       y2="97.959999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34662" />
-    <line
-       x1="403.26001"
-       y1="88.860001"
-       x2="402.19"
-       y2="100.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34664" />
-    <line
-       x1="402.19"
-       y1="100.18"
-       x2="405.19"
-       y2="100.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34666" />
-    <line
-       x1="403.26001"
-       y1="88.860001"
-       x2="405.19"
-       y2="100.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34668" />
-    <line
-       x1="405.19"
-       y1="100.93"
-       x2="409.06"
-       y2="99.459999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34670" />
-    <line
-       x1="409.06"
-       y1="99.459999"
-       x2="403.26001"
-       y2="88.860001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34672" />
-    <line
-       x1="408.13"
-       y1="96.18"
-       x2="408.98999"
-       y2="93.970001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34674" />
-    <line
-       x1="408.98999"
-       y1="93.970001"
-       x2="405.98001"
-       y2="93.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34676" />
-    <line
-       x1="402.32999"
-       y1="85.57"
-       x2="405.98001"
-       y2="93.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34678" />
-    <line
-       x1="402.32999"
-       y1="85.57"
-       x2="402.12"
-       y2="94.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34680" />
-    <line
-       x1="402.32999"
-       y1="85.57"
-       x2="401.25"
-       y2="96.889999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34682" />
-    <line
-       x1="401.25"
-       y1="96.889999"
-       x2="404.26001"
-       y2="97.639999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34684" />
-    <line
-       x1="402.32999"
-       y1="85.57"
-       x2="404.26001"
-       y2="97.639999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34686" />
-    <line
-       x1="404.26001"
-       y1="97.639999"
-       x2="408.13"
-       y2="96.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34688" />
-    <line
-       x1="408.13"
-       y1="96.18"
-       x2="402.32999"
-       y2="85.57"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34690" />
-    <line
-       x1="407.20001"
-       y1="92.889999"
-       x2="408.06"
-       y2="90.68"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34692" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="408.06"
-       y2="90.68"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34694" />
-    <line
-       x1="408.06"
-       y1="90.68"
-       x2="405.04999"
-       y2="89.940002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34696" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="405.04999"
-       y2="89.940002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34698" />
-    <line
-       x1="405.04999"
-       y1="89.940002"
-       x2="401.19"
-       y2="91.400002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34700" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="401.19"
-       y2="91.400002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34702" />
-    <line
-       x1="401.19"
-       y1="91.400002"
-       x2="400.32001"
-       y2="93.610001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34704" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="400.32001"
-       y2="93.610001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34706" />
-    <line
-       x1="400.32001"
-       y1="93.610001"
-       x2="403.32999"
-       y2="94.360001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34708" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="403.32999"
-       y2="94.360001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34710" />
-    <line
-       x1="403.32999"
-       y1="94.360001"
-       x2="407.20001"
-       y2="92.889999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34712" />
-    <line
-       x1="407.20001"
-       y1="92.889999"
-       x2="401.39999"
-       y2="82.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34714" />
-    <line
-       x1="387.59"
-       y1="88.660004"
-       x2="390.70001"
-       y2="91.07"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34716" />
-    <line
-       x1="396.29001"
-       y1="86.239998"
-       x2="390.70001"
-       y2="91.07"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34718" />
-    <line
-       x1="390.70001"
-       y1="91.07"
-       x2="391.70999"
-       y2="94.610001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34720" />
-    <line
-       x1="396.29001"
-       y1="86.239998"
-       x2="391.70999"
-       y2="94.610001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34722" />
-    <line
-       x1="391.70999"
-       y1="94.610001"
-       x2="389.60001"
-       y2="95.720001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34724" />
-    <line
-       x1="396.29001"
-       y1="86.239998"
-       x2="389.60001"
-       y2="95.720001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34726" />
-    <line
-       x1="389.60001"
-       y1="95.720001"
-       x2="386.5"
-       y2="93.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34728" />
-    <line
-       x1="396.29001"
-       y1="86.239998"
-       x2="386.5"
-       y2="93.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34730" />
-    <line
-       x1="386.5"
-       y1="93.309998"
-       x2="385.48999"
-       y2="89.779999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34732" />
-    <line
-       x1="396.29001"
-       y1="86.239998"
-       x2="385.48999"
-       y2="89.779999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34734" />
-    <line
-       x1="385.48999"
-       y1="89.779999"
-       x2="387.59"
-       y2="88.660004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34736" />
-    <line
-       x1="387.59"
-       y1="88.660004"
-       x2="396.29001"
-       y2="86.239998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34738" />
-    <line
-       x1="398.84"
-       y1="84.269997"
-       x2="393.26999"
-       y2="89.089996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34740" />
-    <line
-       x1="393.26999"
-       y1="89.089996"
-       x2="394.26999"
-       y2="92.620003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34742" />
-    <line
-       x1="398.84"
-       y1="84.269997"
-       x2="394.26999"
-       y2="92.620003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34744" />
-    <line
-       x1="394.26999"
-       y1="92.620003"
-       x2="392.16"
-       y2="93.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34746" />
-    <line
-       x1="398.84"
-       y1="84.269997"
-       x2="392.16"
-       y2="93.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34748" />
-    <line
-       x1="392.16"
-       y1="93.730003"
-       x2="389.06"
-       y2="91.32"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34750" />
-    <line
-       x1="398.84"
-       y1="84.269997"
-       x2="389.06"
-       y2="91.32"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34752" />
-    <line
-       x1="389.06"
-       y1="91.32"
-       x2="388.04999"
-       y2="87.800003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34754" />
-    <line
-       x1="398.84"
-       y1="84.269997"
-       x2="388.04999"
-       y2="87.800003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34756" />
-    <line
-       x1="388.04999"
-       y1="87.800003"
-       x2="390.16"
-       y2="86.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34758" />
-    <line
-       x1="390.16"
-       y1="86.68"
-       x2="398.84"
-       y2="84.269997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34760" />
-    <line
-       x1="392.72"
-       y1="84.699997"
-       x2="395.82999"
-       y2="87.110001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34762" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="395.82999"
-       y2="87.110001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34764" />
-    <line
-       x1="395.82999"
-       y1="87.110001"
-       x2="396.82999"
-       y2="90.629997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34766" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="396.82999"
-       y2="90.629997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34768" />
-    <line
-       x1="396.82999"
-       y1="90.629997"
-       x2="394.73001"
-       y2="91.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34770" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="394.73001"
-       y2="91.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34772" />
-    <line
-       x1="394.73001"
-       y1="91.75"
-       x2="391.62"
-       y2="89.339996"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34774" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="391.62"
-       y2="89.339996"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34776" />
-    <line
-       x1="391.62"
-       y1="89.339996"
-       x2="390.62"
-       y2="85.82"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34778" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="390.62"
-       y2="85.82"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34780" />
-    <line
-       x1="390.62"
-       y1="85.82"
-       x2="392.72"
-       y2="84.699997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34782" />
-    <line
-       x1="392.72"
-       y1="84.699997"
-       x2="401.39999"
-       y2="82.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34784" />
-    <line
-       x1="407.01999"
-       y1="83.669998"
-       x2="417.34"
-       y2="82.150002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34786" />
-    <line
-       x1="417.34"
-       y1="82.150002"
-       x2="418.34"
-       y2="85.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34788" />
-    <line
-       x1="407.01999"
-       y1="83.669998"
-       x2="418.34"
-       y2="85.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34790" />
-    <line
-       x1="418.34"
-       y1="85.68"
-       x2="416.47"
-       y2="89.290001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34792" />
-    <line
-       x1="416.47"
-       y1="89.290001"
-       x2="413.60001"
-       y2="89.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34794" />
-    <line
-       x1="413.60001"
-       y1="89.360001"
-       x2="412.60001"
-       y2="85.830002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34796" />
-    <line
-       x1="412.60001"
-       y1="85.830002"
-       x2="414.48001"
-       y2="82.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34798" />
-    <line
-       x1="414.48001"
-       y1="82.220001"
-       x2="407.01999"
-       y2="83.669998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34800" />
-    <line
-       x1="404.20999"
-       y1="82.980003"
-       x2="414.51999"
-       y2="81.459999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34802" />
-    <line
-       x1="414.51999"
-       y1="81.459999"
-       x2="415.51999"
-       y2="84.980003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34804" />
-    <line
-       x1="415.51999"
-       y1="84.980003"
-       x2="413.64999"
-       y2="88.589996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34806" />
-    <line
-       x1="404.20999"
-       y1="82.980003"
-       x2="413.64999"
-       y2="88.589996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34808" />
-    <line
-       x1="413.64999"
-       y1="88.589996"
-       x2="410.78"
-       y2="88.660004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34810" />
-    <line
-       x1="410.78"
-       y1="88.660004"
-       x2="409.78"
-       y2="85.129997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34812" />
-    <line
-       x1="409.78"
-       y1="85.129997"
-       x2="411.66"
-       y2="81.529999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34814" />
-    <line
-       x1="411.66"
-       y1="81.529999"
-       x2="404.20999"
-       y2="82.980003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34816" />
-    <line
-       x1="408.84"
-       y1="80.830002"
-       x2="411.70999"
-       y2="80.760002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34818" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="411.70999"
-       y2="80.760002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34820" />
-    <line
-       x1="411.70999"
-       y1="80.760002"
-       x2="412.70001"
-       y2="84.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34822" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="412.70001"
-       y2="84.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34824" />
-    <line
-       x1="412.70001"
-       y1="84.290001"
-       x2="410.82999"
-       y2="87.889999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34826" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="410.82999"
-       y2="87.889999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34828" />
-    <line
-       x1="410.82999"
-       y1="87.889999"
-       x2="407.95999"
-       y2="87.970001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34830" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="407.95999"
-       y2="87.970001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34832" />
-    <line
-       x1="407.95999"
-       y1="87.970001"
-       x2="406.95999"
-       y2="84.440002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34834" />
-    <line
-       x1="401.39999"
-       y1="82.290001"
-       x2="406.95999"
-       y2="84.440002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34836" />
-    <line
-       x1="406.95999"
-       y1="84.440002"
-       x2="408.84"
-       y2="80.830002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34838" />
-    <line
-       x1="408.84"
-       y1="80.830002"
-       x2="401.39999"
-       y2="82.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34840" />
-    <line
-       x1="1342.7"
-       y1="287.41"
-       x2="1342.9399"
-       y2="285.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34842" />
-    <line
-       x1="1342.9399"
-       y1="285.07001"
-       x2="1339.46"
-       y2="284.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34844" />
-    <line
-       x1="1337.36"
-       y1="276.85999"
-       x2="1339.46"
-       y2="284.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34846" />
-    <line
-       x1="1339.46"
-       y1="284.22"
-       x2="1335.74"
-       y2="285.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34848" />
-    <line
-       x1="1337.36"
-       y1="276.85999"
-       x2="1335.5"
-       y2="288.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34850" />
-    <line
-       x1="1335.5"
-       y1="288.07001"
-       x2="1338.97"
-       y2="288.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34852" />
-    <line
-       x1="1337.36"
-       y1="276.85999"
-       x2="1338.97"
-       y2="288.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34854" />
-    <line
-       x1="1338.97"
-       y1="288.92001"
-       x2="1342.7"
-       y2="287.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34856" />
-    <line
-       x1="1342.7"
-       y1="287.41"
-       x2="1337.36"
-       y2="276.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34858" />
-    <line
-       x1="1342.08"
-       y1="284.17999"
-       x2="1342.3199"
-       y2="281.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34860" />
-    <line
-       x1="1342.3199"
-       y1="281.82999"
-       x2="1338.84"
-       y2="280.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34862" />
-    <line
-       x1="1336.74"
-       y1="273.62"
-       x2="1338.84"
-       y2="280.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34864" />
-    <line
-       x1="1338.84"
-       y1="280.98999"
-       x2="1335.12"
-       y2="282.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34866" />
-    <line
-       x1="1336.74"
-       y1="273.62"
-       x2="1334.88"
-       y2="284.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34868" />
-    <line
-       x1="1334.88"
-       y1="284.84"
-       x2="1338.35"
-       y2="285.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34870" />
-    <line
-       x1="1336.74"
-       y1="273.62"
-       x2="1338.35"
-       y2="285.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34872" />
-    <line
-       x1="1338.35"
-       y1="285.67999"
-       x2="1342.08"
-       y2="284.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34874" />
-    <line
-       x1="1342.08"
-       y1="284.17999"
-       x2="1336.74"
-       y2="273.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34876" />
-    <line
-       x1="1341.46"
-       y1="280.94"
-       x2="1341.7"
-       y2="278.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34878" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1341.7"
-       y2="278.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34880" />
-    <line
-       x1="1341.7"
-       y1="278.60001"
-       x2="1338.22"
-       y2="277.76001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34882" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1338.22"
-       y2="277.76001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34884" />
-    <line
-       x1="1338.22"
-       y1="277.76001"
-       x2="1334.5"
-       y2="279.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34886" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1334.25"
-       y2="281.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34888" />
-    <line
-       x1="1334.25"
-       y1="281.60999"
-       x2="1337.73"
-       y2="282.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34890" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1337.73"
-       y2="282.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34892" />
-    <line
-       x1="1337.73"
-       y1="282.45001"
-       x2="1341.46"
-       y2="280.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34894" />
-    <line
-       x1="1341.46"
-       y1="280.94"
-       x2="1336.12"
-       y2="270.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34896" />
-    <line
-       x1="1324.71"
-       y1="277.29001"
-       x2="1328.0699"
-       y2="279.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34898" />
-    <line
-       x1="1328.74"
-       y1="283.23001"
-       x2="1326.05"
-       y2="284.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34900" />
-    <line
-       x1="1331.83"
-       y1="274.53"
-       x2="1326.05"
-       y2="284.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34902" />
-    <line
-       x1="1326.05"
-       y1="284.23999"
-       x2="1322.7"
-       y2="281.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34904" />
-    <line
-       x1="1331.83"
-       y1="274.53"
-       x2="1322.7"
-       y2="281.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34906" />
-    <line
-       x1="1322.7"
-       y1="281.76999"
-       x2="1322.03"
-       y2="278.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34908" />
-    <line
-       x1="1322.03"
-       y1="278.29001"
-       x2="1324.71"
-       y2="277.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34910" />
-    <line
-       x1="1324.71"
-       y1="277.29001"
-       x2="1331.83"
-       y2="274.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34912" />
-    <line
-       x1="1326.86"
-       y1="275.20001"
-       x2="1330.22"
-       y2="277.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34914" />
-    <line
-       x1="1333.98"
-       y1="272.45001"
-       x2="1330.22"
-       y2="277.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34916" />
-    <line
-       x1="1333.98"
-       y1="272.45001"
-       x2="1330.89"
-       y2="281.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34918" />
-    <line
-       x1="1330.89"
-       y1="281.14999"
-       x2="1328.2"
-       y2="282.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34920" />
-    <line
-       x1="1333.98"
-       y1="272.45001"
-       x2="1328.2"
-       y2="282.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34922" />
-    <line
-       x1="1328.2"
-       y1="282.16"
-       x2="1324.86"
-       y2="279.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34924" />
-    <line
-       x1="1333.98"
-       y1="272.45001"
-       x2="1324.86"
-       y2="279.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34926" />
-    <line
-       x1="1324.86"
-       y1="279.69"
-       x2="1324.1801"
-       y2="276.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34928" />
-    <line
-       x1="1326.86"
-       y1="275.20001"
-       x2="1333.98"
-       y2="272.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34930" />
-    <line
-       x1="1329.02"
-       y1="273.13"
-       x2="1332.37"
-       y2="275.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34932" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1332.37"
-       y2="275.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34934" />
-    <line
-       x1="1332.37"
-       y1="275.59"
-       x2="1333.04"
-       y2="279.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34936" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1333.04"
-       y2="279.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34938" />
-    <line
-       x1="1333.04"
-       y1="279.07001"
-       x2="1330.35"
-       y2="280.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34940" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1330.35"
-       y2="280.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34942" />
-    <line
-       x1="1330.35"
-       y1="280.07999"
-       x2="1327"
-       y2="277.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34944" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1327"
-       y2="277.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34946" />
-    <line
-       x1="1327"
-       y1="277.60999"
-       x2="1326.33"
-       y2="274.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34948" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1326.33"
-       y2="274.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34950" />
-    <line
-       x1="1326.33"
-       y1="274.14001"
-       x2="1329.02"
-       y2="273.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34952" />
-    <line
-       x1="1329.02"
-       y1="273.13"
-       x2="1336.12"
-       y2="270.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line34954" />
-    <line
-       x1="1342.62"
-       y1="271.95001"
-       x2="1354.05"
-       y2="270.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34956" />
-    <line
-       x1="1354.05"
-       y1="270.63"
-       x2="1354.71"
-       y2="274.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34958" />
-    <line
-       x1="1342.62"
-       y1="271.95001"
-       x2="1354.71"
-       y2="274.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34960" />
-    <line
-       x1="1354.71"
-       y1="274.10999"
-       x2="1353.0601"
-       y2="277.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34962" />
-    <line
-       x1="1342.62"
-       y1="271.95001"
-       x2="1353.0601"
-       y2="277.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34964" />
-    <line
-       x1="1353.0601"
-       y1="277.78"
-       x2="1350.75"
-       y2="277.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34966" />
-    <line
-       x1="1342.62"
-       y1="271.95001"
-       x2="1350.75"
-       y2="277.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34968" />
-    <line
-       x1="1350.75"
-       y1="277.95999"
-       x2="1350.08"
-       y2="274.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34970" />
-    <line
-       x1="1342.62"
-       y1="271.95001"
-       x2="1350.08"
-       y2="274.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34972" />
-    <line
-       x1="1350.08"
-       y1="274.48001"
-       x2="1351.74"
-       y2="270.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34974" />
-    <line
-       x1="1351.74"
-       y1="270.81"
-       x2="1342.62"
-       y2="271.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34976" />
-    <line
-       x1="1339.37"
-       y1="271.16"
-       x2="1350.79"
-       y2="269.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34978" />
-    <line
-       x1="1350.79"
-       y1="269.84"
-       x2="1351.45"
-       y2="273.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34980" />
-    <line
-       x1="1339.37"
-       y1="271.16"
-       x2="1351.45"
-       y2="273.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34982" />
-    <line
-       x1="1351.45"
-       y1="273.32001"
-       x2="1349.8"
-       y2="276.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34984" />
-    <line
-       x1="1339.37"
-       y1="271.16"
-       x2="1349.8"
-       y2="276.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34986" />
-    <line
-       x1="1349.8"
-       y1="276.98999"
-       x2="1347.48"
-       y2="277.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34988" />
-    <line
-       x1="1339.37"
-       y1="271.16"
-       x2="1347.48"
-       y2="277.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34990" />
-    <line
-       x1="1347.48"
-       y1="277.17999"
-       x2="1346.8199"
-       y2="273.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34992" />
-    <line
-       x1="1339.37"
-       y1="271.16"
-       x2="1346.8199"
-       y2="273.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34994" />
-    <line
-       x1="1346.8199"
-       y1="273.70001"
-       x2="1348.48"
-       y2="270.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34996" />
-    <line
-       x1="1348.48"
-       y1="270.03"
-       x2="1339.37"
-       y2="271.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line34998" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1347.53"
-       y2="269.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35000" />
-    <line
-       x1="1347.53"
-       y1="269.06"
-       x2="1348.2"
-       y2="272.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35002" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1348.2"
-       y2="272.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35004" />
-    <line
-       x1="1348.2"
-       y1="272.54001"
-       x2="1346.54"
-       y2="276.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35006" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1346.54"
-       y2="276.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35008" />
-    <line
-       x1="1346.54"
-       y1="276.20001"
-       x2="1344.22"
-       y2="276.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35010" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1344.22"
-       y2="276.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35012" />
-    <line
-       x1="1344.22"
-       y1="276.39001"
-       x2="1343.5601"
-       y2="272.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35014" />
-    <line
-       x1="1336.12"
-       y1="270.38"
-       x2="1343.5601"
-       y2="272.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35016" />
-    <line
-       x1="1343.5601"
-       y1="272.91"
-       x2="1345.21"
-       y2="269.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35018" />
-    <line
-       x1="1345.21"
-       y1="269.25"
-       x2="1336.12"
-       y2="270.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35020" />
-    <line
-       x1="152.86"
-       y1="412.89001"
-       x2="153.89999"
-       y2="410.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35022" />
-    <line
-       x1="146.88"
-       y1="402.38"
-       x2="153.89999"
-       y2="410.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35024" />
-    <line
-       x1="153.89999"
-       y1="410.45999"
-       x2="150.99001"
-       y2="409.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35026" />
-    <line
-       x1="146.88"
-       y1="402.38"
-       x2="146.00999"
-       y2="413.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35028" />
-    <line
-       x1="146.00999"
-       y1="413.51999"
-       x2="148.91"
-       y2="414.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35030" />
-    <line
-       x1="146.88"
-       y1="402.38"
-       x2="148.91"
-       y2="414.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35032" />
-    <line
-       x1="148.91"
-       y1="414.42999"
-       x2="152.86"
-       y2="412.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35034" />
-    <line
-       x1="152.86"
-       y1="412.89001"
-       x2="146.88"
-       y2="402.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35036" />
-    <line
-       x1="151.84"
-       y1="409.70001"
-       x2="152.88"
-       y2="407.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35038" />
-    <line
-       x1="145.85001"
-       y1="399.17001"
-       x2="152.88"
-       y2="407.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35040" />
-    <line
-       x1="152.88"
-       y1="407.26001"
-       x2="149.97"
-       y2="406.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35042" />
-    <line
-       x1="149.97"
-       y1="406.35001"
-       x2="146.02"
-       y2="407.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35044" />
-    <line
-       x1="145.85001"
-       y1="399.17001"
-       x2="144.98"
-       y2="410.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35046" />
-    <line
-       x1="144.98"
-       y1="410.32001"
-       x2="147.89"
-       y2="411.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35048" />
-    <line
-       x1="145.85001"
-       y1="399.17001"
-       x2="147.89"
-       y2="411.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35050" />
-    <line
-       x1="147.89"
-       y1="411.23001"
-       x2="151.84"
-       y2="409.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35052" />
-    <line
-       x1="151.84"
-       y1="409.70001"
-       x2="145.85001"
-       y2="399.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35054" />
-    <line
-       x1="150.81"
-       y1="406.48999"
-       x2="151.85001"
-       y2="404.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35056" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="151.85001"
-       y2="404.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35058" />
-    <line
-       x1="151.85001"
-       y1="404.04999"
-       x2="148.95"
-       y2="403.14999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35060" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="148.95"
-       y2="403.14999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35062" />
-    <line
-       x1="148.95"
-       y1="403.14999"
-       x2="145"
-       y2="404.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35064" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="145"
-       y2="404.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35066" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="143.96001"
-       y2="407.10999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35068" />
-    <line
-       x1="143.96001"
-       y1="407.10999"
-       x2="146.86"
-       y2="408.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35070" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="146.86"
-       y2="408.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35072" />
-    <line
-       x1="146.86"
-       y1="408.01999"
-       x2="150.81"
-       y2="406.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35074" />
-    <line
-       x1="150.81"
-       y1="406.48999"
-       x2="144.82001"
-       y2="395.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35076" />
-    <line
-       x1="139.42999"
-       y1="400.23001"
-       x2="133.3"
-       y2="405.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35078" />
-    <line
-       x1="133.3"
-       y1="405.73001"
-       x2="134.39999"
-       y2="409.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35080" />
-    <line
-       x1="139.42999"
-       y1="400.23001"
-       x2="134.39999"
-       y2="409.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35082" />
-    <line
-       x1="134.39999"
-       y1="409.17001"
-       x2="132.44"
-       y2="410.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35084" />
-    <line
-       x1="139.42999"
-       y1="400.23001"
-       x2="132.44"
-       y2="410.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35086" />
-    <line
-       x1="132.44"
-       y1="410.10999"
-       x2="129.37"
-       y2="407.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35088" />
-    <line
-       x1="139.42999"
-       y1="400.23001"
-       x2="129.37"
-       y2="407.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35090" />
-    <line
-       x1="129.37"
-       y1="407.60001"
-       x2="128.25999"
-       y2="404.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35092" />
-    <line
-       x1="128.25999"
-       y1="404.16"
-       x2="130.22"
-       y2="403.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35094" />
-    <line
-       x1="130.22"
-       y1="403.22"
-       x2="139.42999"
-       y2="400.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35096" />
-    <line
-       x1="142.13"
-       y1="398.10001"
-       x2="136"
-       y2="403.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35098" />
-    <line
-       x1="142.13"
-       y1="398.10001"
-       x2="137.11"
-       y2="407.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35100" />
-    <line
-       x1="137.11"
-       y1="407.03"
-       x2="135.14"
-       y2="407.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35102" />
-    <line
-       x1="142.13"
-       y1="398.10001"
-       x2="135.14"
-       y2="407.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35104" />
-    <line
-       x1="135.14"
-       y1="407.95999"
-       x2="132.07001"
-       y2="405.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35106" />
-    <line
-       x1="142.13"
-       y1="398.10001"
-       x2="132.07001"
-       y2="405.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35108" />
-    <line
-       x1="132.07001"
-       y1="405.45001"
-       x2="130.96001"
-       y2="402.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35110" />
-    <line
-       x1="142.13"
-       y1="398.10001"
-       x2="130.96001"
-       y2="402.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35112" />
-    <line
-       x1="130.96001"
-       y1="402.01001"
-       x2="132.92999"
-       y2="401.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35114" />
-    <line
-       x1="132.92999"
-       y1="401.07001"
-       x2="142.13"
-       y2="398.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35116" />
-    <line
-       x1="135.63"
-       y1="398.92999"
-       x2="138.7"
-       y2="401.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35118" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="138.7"
-       y2="401.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35120" />
-    <line
-       x1="138.7"
-       y1="401.44"
-       x2="139.81"
-       y2="404.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35122" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="139.81"
-       y2="404.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35124" />
-    <line
-       x1="139.81"
-       y1="404.88"
-       x2="137.84"
-       y2="405.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35126" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="137.84"
-       y2="405.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35128" />
-    <line
-       x1="137.84"
-       y1="405.82001"
-       x2="134.77"
-       y2="403.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35130" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="134.77"
-       y2="403.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35132" />
-    <line
-       x1="134.77"
-       y1="403.31"
-       x2="133.67"
-       y2="399.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35134" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="133.67"
-       y2="399.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35136" />
-    <line
-       x1="133.67"
-       y1="399.87"
-       x2="135.63"
-       y2="398.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35138" />
-    <line
-       x1="135.63"
-       y1="398.92999"
-       x2="144.82001"
-       y2="395.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35140" />
-    <line
-       x1="150.25999"
-       y1="397.64001"
-       x2="160.37"
-       y2="396.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35142" />
-    <line
-       x1="160.37"
-       y1="396.45999"
-       x2="161.47"
-       y2="399.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35144" />
-    <line
-       x1="150.25999"
-       y1="397.64001"
-       x2="161.47"
-       y2="399.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35146" />
-    <line
-       x1="161.47"
-       y1="399.91"
-       x2="159.52"
-       y2="403.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35148" />
-    <line
-       x1="150.25999"
-       y1="397.64001"
-       x2="159.52"
-       y2="403.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35150" />
-    <line
-       x1="159.52"
-       y1="403.62"
-       x2="156.47"
-       y2="403.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35152" />
-    <line
-       x1="156.47"
-       y1="403.89001"
-       x2="155.38"
-       y2="400.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35154" />
-    <line
-       x1="150.25999"
-       y1="397.64001"
-       x2="155.38"
-       y2="400.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35156" />
-    <line
-       x1="155.38"
-       y1="400.44"
-       x2="157.32001"
-       y2="396.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35158" />
-    <line
-       x1="157.32001"
-       y1="396.73001"
-       x2="150.25999"
-       y2="397.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35160" />
-    <line
-       x1="147.53999"
-       y1="396.79999"
-       x2="157.64999"
-       y2="395.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35162" />
-    <line
-       x1="157.64999"
-       y1="395.62"
-       x2="158.75"
-       y2="399.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35164" />
-    <line
-       x1="147.53999"
-       y1="396.79999"
-       x2="158.75"
-       y2="399.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35166" />
-    <line
-       x1="158.75"
-       y1="399.07001"
-       x2="156.8"
-       y2="402.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35168" />
-    <line
-       x1="147.53999"
-       y1="396.79999"
-       x2="156.8"
-       y2="402.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35170" />
-    <line
-       x1="156.8"
-       y1="402.78"
-       x2="153.75"
-       y2="403.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35172" />
-    <line
-       x1="147.53999"
-       y1="396.79999"
-       x2="153.75"
-       y2="403.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35174" />
-    <line
-       x1="153.75"
-       y1="403.04001"
-       x2="152.64999"
-       y2="399.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35176" />
-    <line
-       x1="147.53999"
-       y1="396.79999"
-       x2="152.64999"
-       y2="399.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35178" />
-    <line
-       x1="152.64999"
-       y1="399.59"
-       x2="154.60001"
-       y2="395.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35180" />
-    <line
-       x1="154.60001"
-       y1="395.88"
-       x2="147.53999"
-       y2="396.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35182" />
-    <line
-       x1="151.88"
-       y1="395.04001"
-       x2="154.92999"
-       y2="394.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35184" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="154.92999"
-       y2="394.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35186" />
-    <line
-       x1="154.92999"
-       y1="394.78"
-       x2="156.02"
-       y2="398.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35188" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="156.02"
-       y2="398.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35190" />
-    <line
-       x1="156.02"
-       y1="398.22"
-       x2="154.07001"
-       y2="401.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35192" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="154.07001"
-       y2="401.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35194" />
-    <line
-       x1="154.07001"
-       y1="401.92999"
-       x2="151.03"
-       y2="402.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35196" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="151.03"
-       y2="402.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35198" />
-    <line
-       x1="151.03"
-       y1="402.20001"
-       x2="149.92999"
-       y2="398.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35200" />
-    <line
-       x1="144.82001"
-       y1="395.95999"
-       x2="149.92999"
-       y2="398.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35202" />
-    <line
-       x1="149.92999"
-       y1="398.75"
-       x2="151.88"
-       y2="395.04001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35204" />
-    <line
-       x1="151.88"
-       y1="395.04001"
-       x2="144.82001"
-       y2="395.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35206" />
-    <line
-       x1="1436.01"
-       y1="505.29001"
-       x2="1436.2"
-       y2="502.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35208" />
-    <line
-       x1="1430.7"
-       y1="494.79999"
-       x2="1432.65"
-       y2="501.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35210" />
-    <line
-       x1="1432.65"
-       y1="501.82999"
-       x2="1428.9301"
-       y2="503.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35212" />
-    <line
-       x1="1430.7"
-       y1="494.79999"
-       x2="1428.9301"
-       y2="503.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35214" />
-    <line
-       x1="1428.9301"
-       y1="503.38"
-       x2="1428.74"
-       y2="505.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35216" />
-    <line
-       x1="1430.7"
-       y1="494.79999"
-       x2="1428.74"
-       y2="505.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35218" />
-    <line
-       x1="1428.74"
-       y1="505.89001"
-       x2="1432.29"
-       y2="506.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35220" />
-    <line
-       x1="1430.7"
-       y1="494.79999"
-       x2="1432.29"
-       y2="506.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35222" />
-    <line
-       x1="1432.29"
-       y1="506.84"
-       x2="1436.01"
-       y2="505.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35224" />
-    <line
-       x1="1436.01"
-       y1="505.29001"
-       x2="1430.7"
-       y2="494.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35226" />
-    <line
-       x1="1435.42"
-       y1="502.10999"
-       x2="1435.61"
-       y2="499.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35228" />
-    <line
-       x1="1435.61"
-       y1="499.60999"
-       x2="1432.0601"
-       y2="498.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35230" />
-    <line
-       x1="1430.11"
-       y1="491.60999"
-       x2="1432.0601"
-       y2="498.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35232" />
-    <line
-       x1="1432.0601"
-       y1="498.64999"
-       x2="1428.34"
-       y2="500.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35234" />
-    <line
-       x1="1430.11"
-       y1="491.60999"
-       x2="1428.34"
-       y2="500.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35236" />
-    <line
-       x1="1430.11"
-       y1="491.60999"
-       x2="1428.15"
-       y2="502.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35238" />
-    <line
-       x1="1428.15"
-       y1="502.70999"
-       x2="1431.7"
-       y2="503.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35240" />
-    <line
-       x1="1430.11"
-       y1="491.60999"
-       x2="1431.7"
-       y2="503.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35242" />
-    <line
-       x1="1431.7"
-       y1="503.66"
-       x2="1435.42"
-       y2="502.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35244" />
-    <line
-       x1="1435.42"
-       y1="502.10999"
-       x2="1430.11"
-       y2="491.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35246" />
-    <line
-       x1="1434.83"
-       y1="498.92999"
-       x2="1435.02"
-       y2="496.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35248" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1435.02"
-       y2="496.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35250" />
-    <line
-       x1="1435.02"
-       y1="496.42999"
-       x2="1431.47"
-       y2="495.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35252" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1431.47"
-       y2="495.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35254" />
-    <line
-       x1="1431.47"
-       y1="495.48001"
-       x2="1427.75"
-       y2="497.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35256" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1427.75"
-       y2="497.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35258" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1427.5601"
-       y2="499.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35260" />
-    <line
-       x1="1427.5601"
-       y1="499.53"
-       x2="1431.1"
-       y2="500.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35262" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1431.1"
-       y2="500.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35264" />
-    <line
-       x1="1431.1"
-       y1="500.48001"
-       x2="1434.83"
-       y2="498.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35266" />
-    <line
-       x1="1434.83"
-       y1="498.92999"
-       x2="1429.51"
-       y2="488.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35268" />
-    <line
-       x1="1418.29"
-       y1="495.95001"
-       x2="1421.6899"
-       y2="498.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35270" />
-    <line
-       x1="1425.29"
-       y1="492.79999"
-       x2="1421.6899"
-       y2="498.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35272" />
-    <line
-       x1="1421.6899"
-       y1="498.48001"
-       x2="1422.33"
-       y2="501.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35274" />
-    <line
-       x1="1425.29"
-       y1="492.79999"
-       x2="1422.33"
-       y2="501.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35276" />
-    <line
-       x1="1422.33"
-       y1="501.91"
-       x2="1419.5699"
-       y2="502.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35278" />
-    <line
-       x1="1425.29"
-       y1="492.79999"
-       x2="1419.5699"
-       y2="502.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35280" />
-    <line
-       x1="1419.5699"
-       y1="502.79001"
-       x2="1416.1801"
-       y2="500.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35282" />
-    <line
-       x1="1425.29"
-       y1="492.79999"
-       x2="1416.1801"
-       y2="500.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35284" />
-    <line
-       x1="1416.1801"
-       y1="500.25"
-       x2="1415.54"
-       y2="496.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35286" />
-    <line
-       x1="1425.29"
-       y1="492.79999"
-       x2="1415.54"
-       y2="496.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35288" />
-    <line
-       x1="1415.54"
-       y1="496.82999"
-       x2="1418.29"
-       y2="495.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35290" />
-    <line
-       x1="1418.29"
-       y1="495.95001"
-       x2="1425.29"
-       y2="492.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35292" />
-    <line
-       x1="1420.41"
-       y1="493.76001"
-       x2="1423.8101"
-       y2="496.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35294" />
-    <line
-       x1="1427.4"
-       y1="490.60999"
-       x2="1423.8101"
-       y2="496.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35296" />
-    <line
-       x1="1423.8101"
-       y1="496.29001"
-       x2="1424.45"
-       y2="499.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35298" />
-    <line
-       x1="1427.4"
-       y1="490.60999"
-       x2="1424.45"
-       y2="499.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35300" />
-    <line
-       x1="1424.45"
-       y1="499.70999"
-       x2="1421.6899"
-       y2="500.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35302" />
-    <line
-       x1="1427.4"
-       y1="490.60999"
-       x2="1421.6899"
-       y2="500.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35304" />
-    <line
-       x1="1421.6899"
-       y1="500.59"
-       x2="1418.3"
-       y2="498.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35306" />
-    <line
-       x1="1427.4"
-       y1="490.60999"
-       x2="1418.3"
-       y2="498.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35308" />
-    <line
-       x1="1418.3"
-       y1="498.04999"
-       x2="1417.66"
-       y2="494.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35310" />
-    <line
-       x1="1417.66"
-       y1="494.64001"
-       x2="1420.41"
-       y2="493.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35312" />
-    <line
-       x1="1420.41"
-       y1="493.76001"
-       x2="1427.4"
-       y2="490.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35314" />
-    <line
-       x1="1422.53"
-       y1="491.57001"
-       x2="1425.9301"
-       y2="494.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35316" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1425.9301"
-       y2="494.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35318" />
-    <line
-       x1="1425.9301"
-       y1="494.10001"
-       x2="1426.5601"
-       y2="497.51999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35320" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1426.5601"
-       y2="497.51999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35322" />
-    <line
-       x1="1426.5601"
-       y1="497.51999"
-       x2="1423.8101"
-       y2="498.39999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35324" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1423.8101"
-       y2="498.39999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35326" />
-    <line
-       x1="1423.8101"
-       y1="498.39999"
-       x2="1420.42"
-       y2="495.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35328" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1420.42"
-       y2="495.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35330" />
-    <line
-       x1="1420.42"
-       y1="495.87"
-       x2="1419.78"
-       y2="492.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35332" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1419.78"
-       y2="492.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35334" />
-    <line
-       x1="1419.78"
-       y1="492.45001"
-       x2="1422.53"
-       y2="491.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35336" />
-    <line
-       x1="1422.53"
-       y1="491.57001"
-       x2="1429.51"
-       y2="488.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35338" />
-    <line
-       x1="1436.14"
-       y1="490.20001"
-       x2="1447.74"
-       y2="489.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35340" />
-    <line
-       x1="1447.74"
-       y1="489.12"
-       x2="1448.37"
-       y2="492.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35342" />
-    <line
-       x1="1436.14"
-       y1="490.20001"
-       x2="1448.37"
-       y2="492.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35344" />
-    <line
-       x1="1448.37"
-       y1="492.54001"
-       x2="1446.73"
-       y2="496.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35346" />
-    <line
-       x1="1436.14"
-       y1="490.20001"
-       x2="1446.73"
-       y2="496.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35348" />
-    <line
-       x1="1446.73"
-       y1="496.29001"
-       x2="1444.46"
-       y2="496.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35350" />
-    <line
-       x1="1436.14"
-       y1="490.20001"
-       x2="1444.46"
-       y2="496.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35352" />
-    <line
-       x1="1444.46"
-       y1="496.60999"
-       x2="1443.83"
-       y2="493.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35354" />
-    <line
-       x1="1436.14"
-       y1="490.20001"
-       x2="1443.83"
-       y2="493.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35356" />
-    <line
-       x1="1443.83"
-       y1="493.19"
-       x2="1445.47"
-       y2="489.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35358" />
-    <line
-       x1="1445.47"
-       y1="489.44"
-       x2="1436.14"
-       y2="490.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35360" />
-    <line
-       x1="1432.8199"
-       y1="489.31"
-       x2="1444.42"
-       y2="488.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35362" />
-    <line
-       x1="1444.42"
-       y1="488.23001"
-       x2="1445.05"
-       y2="491.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35364" />
-    <line
-       x1="1445.05"
-       y1="491.66"
-       x2="1443.41"
-       y2="495.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35366" />
-    <line
-       x1="1432.8199"
-       y1="489.31"
-       x2="1443.41"
-       y2="495.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35368" />
-    <line
-       x1="1443.41"
-       y1="495.39001"
-       x2="1441.13"
-       y2="495.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35370" />
-    <line
-       x1="1432.8199"
-       y1="489.31"
-       x2="1441.13"
-       y2="495.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35372" />
-    <line
-       x1="1441.13"
-       y1="495.72"
-       x2="1440.5"
-       y2="492.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35374" />
-    <line
-       x1="1432.8199"
-       y1="489.31"
-       x2="1440.5"
-       y2="492.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35376" />
-    <line
-       x1="1440.5"
-       y1="492.29999"
-       x2="1442.14"
-       y2="488.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35378" />
-    <line
-       x1="1442.14"
-       y1="488.54999"
-       x2="1432.8199"
-       y2="489.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35380" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1441.1"
-       y2="487.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35382" />
-    <line
-       x1="1441.1"
-       y1="487.35001"
-       x2="1441.73"
-       y2="490.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35384" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1441.73"
-       y2="490.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35386" />
-    <line
-       x1="1441.73"
-       y1="490.76999"
-       x2="1440.09"
-       y2="494.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35388" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1440.09"
-       y2="494.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35390" />
-    <line
-       x1="1440.09"
-       y1="494.5"
-       x2="1437.8101"
-       y2="494.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35392" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1437.8101"
-       y2="494.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35394" />
-    <line
-       x1="1437.8101"
-       y1="494.82999"
-       x2="1437.1801"
-       y2="491.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35396" />
-    <line
-       x1="1429.51"
-       y1="488.42999"
-       x2="1437.1801"
-       y2="491.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35398" />
-    <line
-       x1="1437.1801"
-       y1="491.41"
-       x2="1438.8199"
-       y2="487.67001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35400" />
-    <line
-       x1="1438.8199"
-       y1="487.67001"
-       x2="1429.51"
-       y2="488.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35402" />
-    <line
-       x1="123.04"
-       y1="213.17999"
-       x2="124.1"
-       y2="210.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35404" />
-    <line
-       x1="124.1"
-       y1="210.88"
-       x2="121.21"
-       y2="210.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35406" />
-    <line
-       x1="117.06"
-       y1="202.58"
-       x2="116.21"
-       y2="213.86"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35408" />
-    <line
-       x1="116.21"
-       y1="213.86"
-       x2="119.1"
-       y2="214.67"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35410" />
-    <line
-       x1="117.06"
-       y1="202.58"
-       x2="119.1"
-       y2="214.67"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35412" />
-    <line
-       x1="119.1"
-       y1="214.67"
-       x2="123.04"
-       y2="213.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35414" />
-    <line
-       x1="123.04"
-       y1="213.17999"
-       x2="117.06"
-       y2="202.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35416" />
-    <line
-       x1="122.01"
-       y1="209.91"
-       x2="123.07"
-       y2="207.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35418" />
-    <line
-       x1="116.02"
-       y1="199.31"
-       x2="123.07"
-       y2="207.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35420" />
-    <line
-       x1="123.07"
-       y1="207.62"
-       x2="120.18"
-       y2="206.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35422" />
-    <line
-       x1="116.24"
-       y1="208.3"
-       x2="115.18"
-       y2="210.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35424" />
-    <line
-       x1="116.02"
-       y1="199.31"
-       x2="115.18"
-       y2="210.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35426" />
-    <line
-       x1="115.18"
-       y1="210.60001"
-       x2="118.07"
-       y2="211.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35428" />
-    <line
-       x1="116.02"
-       y1="199.31"
-       x2="118.07"
-       y2="211.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35430" />
-    <line
-       x1="118.07"
-       y1="211.41"
-       x2="122.01"
-       y2="209.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35432" />
-    <line
-       x1="122.01"
-       y1="209.91"
-       x2="116.02"
-       y2="199.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35434" />
-    <line
-       x1="120.98"
-       y1="206.64999"
-       x2="122.04"
-       y2="204.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35436" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="122.04"
-       y2="204.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35438" />
-    <line
-       x1="122.04"
-       y1="204.35001"
-       x2="119.15"
-       y2="203.55"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35440" />
-    <line
-       x1="119.15"
-       y1="203.55"
-       x2="115.21"
-       y2="205.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35442" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="115.21"
-       y2="205.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35444" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="114.15"
-       y2="207.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35446" />
-    <line
-       x1="114.15"
-       y1="207.34"
-       x2="117.03"
-       y2="208.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35448" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="117.03"
-       y2="208.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35450" />
-    <line
-       x1="117.03"
-       y1="208.14"
-       x2="120.98"
-       y2="206.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35452" />
-    <line
-       x1="120.98"
-       y1="206.64999"
-       x2="114.99"
-       y2="196.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35454" />
-    <line
-       x1="100.34"
-       y1="202.75"
-       x2="103.4"
-       y2="205.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35456" />
-    <line
-       x1="109.59"
-       y1="200.12"
-       x2="103.4"
-       y2="205.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35458" />
-    <line
-       x1="103.4"
-       y1="205.21001"
-       x2="104.52"
-       y2="208.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35460" />
-    <line
-       x1="109.59"
-       y1="200.12"
-       x2="104.52"
-       y2="208.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35462" />
-    <line
-       x1="104.52"
-       y1="208.72"
-       x2="102.57"
-       y2="209.77"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35464" />
-    <line
-       x1="109.59"
-       y1="200.12"
-       x2="102.57"
-       y2="209.77"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35466" />
-    <line
-       x1="102.57"
-       y1="209.77"
-       x2="99.519997"
-       y2="207.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35468" />
-    <line
-       x1="109.59"
-       y1="200.12"
-       x2="99.519997"
-       y2="207.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35470" />
-    <line
-       x1="99.519997"
-       y1="207.32001"
-       x2="98.400002"
-       y2="203.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35472" />
-    <line
-       x1="109.59"
-       y1="200.12"
-       x2="98.400002"
-       y2="203.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35474" />
-    <line
-       x1="98.400002"
-       y1="203.81"
-       x2="100.34"
-       y2="202.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35476" />
-    <line
-       x1="100.34"
-       y1="202.75"
-       x2="109.59"
-       y2="200.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35478" />
-    <line
-       x1="103.05"
-       y1="200.7"
-       x2="106.11"
-       y2="203.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35480" />
-    <line
-       x1="112.29"
-       y1="198.08"
-       x2="106.11"
-       y2="203.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35482" />
-    <line
-       x1="106.11"
-       y1="203.16"
-       x2="107.23"
-       y2="206.67"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35484" />
-    <line
-       x1="112.29"
-       y1="198.08"
-       x2="107.23"
-       y2="206.67"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35486" />
-    <line
-       x1="107.23"
-       y1="206.67"
-       x2="105.28"
-       y2="207.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35488" />
-    <line
-       x1="112.29"
-       y1="198.08"
-       x2="105.28"
-       y2="207.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35490" />
-    <line
-       x1="105.28"
-       y1="207.72"
-       x2="102.23"
-       y2="205.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35492" />
-    <line
-       x1="112.29"
-       y1="198.08"
-       x2="102.23"
-       y2="205.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35494" />
-    <line
-       x1="102.23"
-       y1="205.27"
-       x2="101.11"
-       y2="201.75999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35496" />
-    <line
-       x1="101.11"
-       y1="201.75999"
-       x2="103.05"
-       y2="200.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35498" />
-    <line
-       x1="103.05"
-       y1="200.7"
-       x2="112.29"
-       y2="198.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35500" />
-    <line
-       x1="105.76"
-       y1="198.66"
-       x2="108.82"
-       y2="201.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35502" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="108.82"
-       y2="201.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35504" />
-    <line
-       x1="108.82"
-       y1="201.11"
-       x2="109.93"
-       y2="204.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35506" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="109.93"
-       y2="204.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35508" />
-    <line
-       x1="109.93"
-       y1="204.62"
-       x2="107.99"
-       y2="205.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35510" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="107.99"
-       y2="205.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35512" />
-    <line
-       x1="107.99"
-       y1="205.67999"
-       x2="104.94"
-       y2="203.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35514" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="104.94"
-       y2="203.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35516" />
-    <line
-       x1="104.94"
-       y1="203.22"
-       x2="103.82"
-       y2="199.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35518" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="103.82"
-       y2="199.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35520" />
-    <line
-       x1="103.82"
-       y1="199.71001"
-       x2="105.76"
-       y2="198.66"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35522" />
-    <line
-       x1="105.76"
-       y1="198.66"
-       x2="114.99"
-       y2="196.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35524" />
-    <line
-       x1="120.38"
-       y1="197.53999"
-       x2="130.45"
-       y2="196.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35526" />
-    <line
-       x1="130.45"
-       y1="196.13"
-       x2="131.55"
-       y2="199.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35528" />
-    <line
-       x1="120.38"
-       y1="197.53999"
-       x2="131.55"
-       y2="199.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35530" />
-    <line
-       x1="131.55"
-       y1="199.64"
-       x2="129.60001"
-       y2="203.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35532" />
-    <line
-       x1="120.38"
-       y1="197.53999"
-       x2="129.60001"
-       y2="203.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35534" />
-    <line
-       x1="129.60001"
-       y1="203.3"
-       x2="126.54"
-       y2="203.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35536" />
-    <line
-       x1="126.54"
-       y1="203.44"
-       x2="125.43"
-       y2="199.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35538" />
-    <line
-       x1="120.38"
-       y1="197.53999"
-       x2="125.43"
-       y2="199.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35540" />
-    <line
-       x1="125.43"
-       y1="199.92999"
-       x2="127.38"
-       y2="196.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35542" />
-    <line
-       x1="127.38"
-       y1="196.27"
-       x2="120.38"
-       y2="197.53999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35544" />
-    <line
-       x1="117.68"
-       y1="196.78999"
-       x2="127.74"
-       y2="195.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35546" />
-    <line
-       x1="127.74"
-       y1="195.38"
-       x2="128.84"
-       y2="198.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35548" />
-    <line
-       x1="117.68"
-       y1="196.78999"
-       x2="128.84"
-       y2="198.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35550" />
-    <line
-       x1="128.84"
-       y1="198.89"
-       x2="126.89"
-       y2="202.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35552" />
-    <line
-       x1="117.68"
-       y1="196.78999"
-       x2="126.89"
-       y2="202.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35554" />
-    <line
-       x1="126.89"
-       y1="202.55"
-       x2="123.83"
-       y2="202.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35556" />
-    <line
-       x1="123.83"
-       y1="202.69"
-       x2="122.73"
-       y2="199.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35558" />
-    <line
-       x1="117.68"
-       y1="196.78999"
-       x2="122.73"
-       y2="199.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35560" />
-    <line
-       x1="122.73"
-       y1="199.17999"
-       x2="124.68"
-       y2="195.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35562" />
-    <line
-       x1="124.68"
-       y1="195.52"
-       x2="117.68"
-       y2="196.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35564" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="125.04"
-       y2="194.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35566" />
-    <line
-       x1="125.04"
-       y1="194.63"
-       x2="126.14"
-       y2="198.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35568" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="126.14"
-       y2="198.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35570" />
-    <line
-       x1="126.14"
-       y1="198.14"
-       x2="124.19"
-       y2="201.78999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35572" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="124.19"
-       y2="201.78999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35574" />
-    <line
-       x1="124.19"
-       y1="201.78999"
-       x2="121.13"
-       y2="201.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35576" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="121.13"
-       y2="201.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35578" />
-    <line
-       x1="121.13"
-       y1="201.94"
-       x2="120.02"
-       y2="198.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35580" />
-    <line
-       x1="114.99"
-       y1="196.03999"
-       x2="120.02"
-       y2="198.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35582" />
-    <line
-       x1="120.02"
-       y1="198.42999"
-       x2="121.98"
-       y2="194.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35584" />
-    <line
-       x1="121.98"
-       y1="194.77"
-       x2="114.99"
-       y2="196.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35586" />
-    <line
-       x1="1420.49"
-       y1="266.79999"
-       x2="1420.6801"
-       y2="264.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35588" />
-    <line
-       x1="1415.1801"
-       y1="256.22"
-       x2="1420.6801"
-       y2="264.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35590" />
-    <line
-       x1="1420.6801"
-       y1="264.45999"
-       x2="1417.16"
-       y2="263.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35592" />
-    <line
-       x1="1417.16"
-       y1="263.63"
-       x2="1413.45"
-       y2="265.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35594" />
-    <line
-       x1="1415.1801"
-       y1="256.22"
-       x2="1413.45"
-       y2="265.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35596" />
-    <line
-       x1="1415.1801"
-       y1="256.22"
-       x2="1413.25"
-       y2="267.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35598" />
-    <line
-       x1="1413.25"
-       y1="267.45999"
-       x2="1416.77"
-       y2="268.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35600" />
-    <line
-       x1="1415.1801"
-       y1="256.22"
-       x2="1416.77"
-       y2="268.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35602" />
-    <line
-       x1="1416.77"
-       y1="268.29999"
-       x2="1420.49"
-       y2="266.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35604" />
-    <line
-       x1="1420.49"
-       y1="266.79999"
-       x2="1415.1801"
-       y2="256.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35606" />
-    <line
-       x1="1419.89"
-       y1="263.54999"
-       x2="1420.09"
-       y2="261.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35608" />
-    <line
-       x1="1420.09"
-       y1="261.20999"
-       x2="1416.5699"
-       y2="260.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35610" />
-    <line
-       x1="1414.59"
-       y1="252.97"
-       x2="1416.5699"
-       y2="260.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35612" />
-    <line
-       x1="1416.5699"
-       y1="260.38"
-       x2="1412.86"
-       y2="261.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35614" />
-    <line
-       x1="1414.59"
-       y1="252.97"
-       x2="1412.66"
-       y2="264.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35616" />
-    <line
-       x1="1412.66"
-       y1="264.22"
-       x2="1416.1801"
-       y2="265.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35618" />
-    <line
-       x1="1414.59"
-       y1="252.97"
-       x2="1416.1801"
-       y2="265.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35620" />
-    <line
-       x1="1416.1801"
-       y1="265.04999"
-       x2="1419.89"
-       y2="263.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35622" />
-    <line
-       x1="1419.89"
-       y1="263.54999"
-       x2="1414.59"
-       y2="252.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35624" />
-    <line
-       x1="1419.3"
-       y1="260.29999"
-       x2="1419.49"
-       y2="257.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35626" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1419.49"
-       y2="257.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35628" />
-    <line
-       x1="1419.49"
-       y1="257.97"
-       x2="1415.97"
-       y2="257.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35630" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1415.97"
-       y2="257.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35632" />
-    <line
-       x1="1415.97"
-       y1="257.14001"
-       x2="1412.26"
-       y2="258.64001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35634" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1412.0601"
-       y2="260.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35636" />
-    <line
-       x1="1412.0601"
-       y1="260.97"
-       x2="1415.59"
-       y2="261.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35638" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1415.59"
-       y2="261.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35640" />
-    <line
-       x1="1415.59"
-       y1="261.81"
-       x2="1419.3"
-       y2="260.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35642" />
-    <line
-       x1="1419.3"
-       y1="260.29999"
-       x2="1414"
-       y2="249.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35644" />
-    <line
-       x1="1402.78"
-       y1="256.57001"
-       x2="1406.16"
-       y2="259.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35646" />
-    <line
-       x1="1409.77"
-       y1="253.85001"
-       x2="1406.8"
-       y2="262.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35648" />
-    <line
-       x1="1406.8"
-       y1="262.54001"
-       x2="1404.0699"
-       y2="263.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35650" />
-    <line
-       x1="1409.77"
-       y1="253.85001"
-       x2="1404.0699"
-       y2="263.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35652" />
-    <line
-       x1="1404.0699"
-       y1="263.56"
-       x2="1400.6899"
-       y2="261.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35654" />
-    <line
-       x1="1409.77"
-       y1="253.85001"
-       x2="1400.6899"
-       y2="261.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35656" />
-    <line
-       x1="1400.6899"
-       y1="261.09"
-       x2="1400.05"
-       y2="257.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35658" />
-    <line
-       x1="1400.05"
-       y1="257.60001"
-       x2="1402.78"
-       y2="256.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35660" />
-    <line
-       x1="1402.78"
-       y1="256.57001"
-       x2="1409.77"
-       y2="253.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35662" />
-    <line
-       x1="1404.9"
-       y1="254.5"
-       x2="1408.28"
-       y2="256.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35664" />
-    <line
-       x1="1411.89"
-       y1="251.78999"
-       x2="1408.28"
-       y2="256.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35666" />
-    <line
-       x1="1411.89"
-       y1="251.78999"
-       x2="1408.92"
-       y2="260.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35668" />
-    <line
-       x1="1408.92"
-       y1="260.45999"
-       x2="1406.1801"
-       y2="261.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35670" />
-    <line
-       x1="1411.89"
-       y1="251.78999"
-       x2="1406.1801"
-       y2="261.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35672" />
-    <line
-       x1="1406.1801"
-       y1="261.48001"
-       x2="1402.8101"
-       y2="259.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35674" />
-    <line
-       x1="1411.89"
-       y1="251.78999"
-       x2="1402.8101"
-       y2="259.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35676" />
-    <line
-       x1="1402.17"
-       y1="255.53"
-       x2="1404.9"
-       y2="254.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35678" />
-    <line
-       x1="1404.9"
-       y1="254.5"
-       x2="1411.89"
-       y2="251.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35680" />
-    <line
-       x1="1407.02"
-       y1="252.42999"
-       x2="1410.39"
-       y2="254.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35682" />
-    <line
-       x1="1410.39"
-       y1="254.89999"
-       x2="1411.03"
-       y2="258.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35684" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1411.03"
-       y2="258.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35686" />
-    <line
-       x1="1411.03"
-       y1="258.39001"
-       x2="1408.3"
-       y2="259.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35688" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1408.3"
-       y2="259.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35690" />
-    <line
-       x1="1408.3"
-       y1="259.41"
-       x2="1404.9301"
-       y2="256.95001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35692" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1404.9301"
-       y2="256.95001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35694" />
-    <line
-       x1="1404.9301"
-       y1="256.95001"
-       x2="1404.29"
-       y2="253.46001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35696" />
-    <line
-       x1="1404.29"
-       y1="253.46001"
-       x2="1407.02"
-       y2="252.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35698" />
-    <line
-       x1="1407.02"
-       y1="252.42999"
-       x2="1414"
-       y2="249.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35700" />
-    <line
-       x1="1420.58"
-       y1="251.27"
-       x2="1432.12"
-       y2="249.92"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35702" />
-    <line
-       x1="1432.12"
-       y1="249.92"
-       x2="1432.75"
-       y2="253.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35704" />
-    <line
-       x1="1420.58"
-       y1="251.27"
-       x2="1432.75"
-       y2="253.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35706" />
-    <line
-       x1="1432.75"
-       y1="253.41"
-       x2="1431.11"
-       y2="257.07999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35708" />
-    <line
-       x1="1420.58"
-       y1="251.27"
-       x2="1431.11"
-       y2="257.07999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35710" />
-    <line
-       x1="1431.11"
-       y1="257.07999"
-       x2="1428.84"
-       y2="257.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35712" />
-    <line
-       x1="1420.58"
-       y1="251.27"
-       x2="1428.84"
-       y2="257.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35714" />
-    <line
-       x1="1428.84"
-       y1="257.26001"
-       x2="1428.2"
-       y2="253.77"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35716" />
-    <line
-       x1="1420.58"
-       y1="251.27"
-       x2="1428.2"
-       y2="253.77"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35718" />
-    <line
-       x1="1428.2"
-       y1="253.77"
-       x2="1429.84"
-       y2="250.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35720" />
-    <line
-       x1="1429.84"
-       y1="250.09"
-       x2="1420.58"
-       y2="251.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35722" />
-    <line
-       x1="1417.29"
-       y1="250.49001"
-       x2="1428.8101"
-       y2="249.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35724" />
-    <line
-       x1="1428.8101"
-       y1="249.14999"
-       x2="1429.45"
-       y2="252.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35726" />
-    <line
-       x1="1417.29"
-       y1="250.49001"
-       x2="1429.45"
-       y2="252.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35728" />
-    <line
-       x1="1429.45"
-       y1="252.64"
-       x2="1427.8101"
-       y2="256.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35730" />
-    <line
-       x1="1417.29"
-       y1="250.49001"
-       x2="1427.8101"
-       y2="256.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35732" />
-    <line
-       x1="1427.8101"
-       y1="256.29999"
-       x2="1425.54"
-       y2="256.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35734" />
-    <line
-       x1="1417.29"
-       y1="250.49001"
-       x2="1425.54"
-       y2="256.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35736" />
-    <line
-       x1="1425.54"
-       y1="256.48001"
-       x2="1424.9"
-       y2="252.99001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35738" />
-    <line
-       x1="1417.29"
-       y1="250.49001"
-       x2="1424.9"
-       y2="252.99001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35740" />
-    <line
-       x1="1424.9"
-       y1="252.99001"
-       x2="1426.54"
-       y2="249.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35742" />
-    <line
-       x1="1426.54"
-       y1="249.32001"
-       x2="1417.29"
-       y2="250.49001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35744" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1425.51"
-       y2="248.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35746" />
-    <line
-       x1="1425.51"
-       y1="248.38"
-       x2="1426.15"
-       y2="251.86"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35748" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1426.15"
-       y2="251.86"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35750" />
-    <line
-       x1="1426.15"
-       y1="251.86"
-       x2="1424.51"
-       y2="255.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35752" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1424.51"
-       y2="255.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35754" />
-    <line
-       x1="1424.51"
-       y1="255.53"
-       x2="1422.24"
-       y2="255.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35756" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1422.24"
-       y2="255.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35758" />
-    <line
-       x1="1422.24"
-       y1="255.71001"
-       x2="1421.6"
-       y2="252.21001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35760" />
-    <line
-       x1="1414"
-       y1="249.72"
-       x2="1421.6"
-       y2="252.21001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35762" />
-    <line
-       x1="1421.6"
-       y1="252.21001"
-       x2="1423.24"
-       y2="248.55"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35764" />
-    <line
-       x1="1423.24"
-       y1="248.55"
-       x2="1414"
-       y2="249.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35766" />
-    <line
-       x1="436.20999"
-       y1="94.220001"
-       x2="437.04999"
-       y2="92.019997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35768" />
-    <line
-       x1="437.04999"
-       y1="92.019997"
-       x2="434.04001"
-       y2="91.269997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35770" />
-    <line
-       x1="430.42999"
-       y1="83.629997"
-       x2="434.04001"
-       y2="91.269997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35772" />
-    <line
-       x1="434.04001"
-       y1="91.269997"
-       x2="430.17999"
-       y2="92.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35774" />
-    <line
-       x1="430.42999"
-       y1="83.629997"
-       x2="430.17999"
-       y2="92.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35776" />
-    <line
-       x1="430.42999"
-       y1="83.629997"
-       x2="429.32999"
-       y2="94.940002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35778" />
-    <line
-       x1="429.32999"
-       y1="94.940002"
-       x2="432.35001"
-       y2="95.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35780" />
-    <line
-       x1="430.42999"
-       y1="83.629997"
-       x2="432.35001"
-       y2="95.68"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35782" />
-    <line
-       x1="432.35001"
-       y1="95.68"
-       x2="436.20999"
-       y2="94.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35784" />
-    <line
-       x1="436.20999"
-       y1="94.220001"
-       x2="430.42999"
-       y2="83.629997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35786" />
-    <line
-       x1="435.29999"
-       y1="90.940002"
-       x2="436.14001"
-       y2="88.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35788" />
-    <line
-       x1="429.51001"
-       y1="80.339996"
-       x2="436.14001"
-       y2="88.730003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35790" />
-    <line
-       x1="436.14001"
-       y1="88.730003"
-       x2="433.12"
-       y2="87.989998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35792" />
-    <line
-       x1="429.51001"
-       y1="80.339996"
-       x2="433.12"
-       y2="87.989998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35794" />
-    <line
-       x1="429.51001"
-       y1="80.339996"
-       x2="429.26001"
-       y2="89.449997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35796" />
-    <line
-       x1="429.26001"
-       y1="89.449997"
-       x2="428.41"
-       y2="91.660004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35798" />
-    <line
-       x1="429.51001"
-       y1="80.339996"
-       x2="428.41"
-       y2="91.660004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35800" />
-    <line
-       x1="428.41"
-       y1="91.660004"
-       x2="431.42999"
-       y2="92.400002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35802" />
-    <line
-       x1="431.42999"
-       y1="92.400002"
-       x2="435.29999"
-       y2="90.940002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35804" />
-    <line
-       x1="435.29999"
-       y1="90.940002"
-       x2="429.51001"
-       y2="80.339996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35806" />
-    <line
-       x1="434.38"
-       y1="87.650002"
-       x2="435.22"
-       y2="85.449997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35808" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="435.22"
-       y2="85.449997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35810" />
-    <line
-       x1="435.22"
-       y1="85.449997"
-       x2="432.20001"
-       y2="84.709999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35812" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="432.20001"
-       y2="84.709999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35814" />
-    <line
-       x1="432.20001"
-       y1="84.709999"
-       x2="428.34"
-       y2="86.169998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35816" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="428.34"
-       y2="86.169998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35818" />
-    <line
-       x1="428.34"
-       y1="86.169998"
-       x2="427.48999"
-       y2="88.379997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35820" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="427.48999"
-       y2="88.379997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35822" />
-    <line
-       x1="427.48999"
-       y1="88.379997"
-       x2="430.51001"
-       y2="89.120003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35824" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="430.51001"
-       y2="89.120003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35826" />
-    <line
-       x1="430.51001"
-       y1="89.120003"
-       x2="434.38"
-       y2="87.650002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35828" />
-    <line
-       x1="434.38"
-       y1="87.650002"
-       x2="428.59"
-       y2="77.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35830" />
-    <line
-       x1="414.85999"
-       y1="83.410004"
-       x2="417.97"
-       y2="85.82"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35832" />
-    <line
-       x1="423.5"
-       y1="81"
-       x2="417.97"
-       y2="85.82"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35834" />
-    <line
-       x1="417.97"
-       y1="85.82"
-       x2="418.97"
-       y2="89.349998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35836" />
-    <line
-       x1="423.5"
-       y1="81"
-       x2="418.97"
-       y2="89.349998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35838" />
-    <line
-       x1="418.97"
-       y1="89.349998"
-       x2="416.85001"
-       y2="90.459999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35840" />
-    <line
-       x1="423.5"
-       y1="81"
-       x2="416.85001"
-       y2="90.459999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35842" />
-    <line
-       x1="416.85001"
-       y1="90.459999"
-       x2="413.73001"
-       y2="88.050003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35844" />
-    <line
-       x1="423.5"
-       y1="81"
-       x2="413.73001"
-       y2="88.050003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35846" />
-    <line
-       x1="413.73001"
-       y1="88.050003"
-       x2="412.73999"
-       y2="84.529999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35848" />
-    <line
-       x1="423.5"
-       y1="81"
-       x2="412.73999"
-       y2="84.529999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35850" />
-    <line
-       x1="412.73999"
-       y1="84.529999"
-       x2="414.85999"
-       y2="83.410004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35852" />
-    <line
-       x1="414.85999"
-       y1="83.410004"
-       x2="423.5"
-       y2="81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35854" />
-    <line
-       x1="426.04999"
-       y1="79.019997"
-       x2="420.51999"
-       y2="83.830002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35856" />
-    <line
-       x1="420.51999"
-       y1="83.830002"
-       x2="421.51999"
-       y2="87.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35858" />
-    <line
-       x1="421.51999"
-       y1="87.360001"
-       x2="419.39999"
-       y2="88.480003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35860" />
-    <line
-       x1="426.04999"
-       y1="79.019997"
-       x2="419.39999"
-       y2="88.480003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35862" />
-    <line
-       x1="419.39999"
-       y1="88.480003"
-       x2="416.29001"
-       y2="86.07"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35864" />
-    <line
-       x1="426.04999"
-       y1="79.019997"
-       x2="416.29001"
-       y2="86.07"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35866" />
-    <line
-       x1="416.29001"
-       y1="86.07"
-       x2="415.29001"
-       y2="82.550003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35868" />
-    <line
-       x1="415.29001"
-       y1="82.550003"
-       x2="417.41"
-       y2="81.43"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35870" />
-    <line
-       x1="417.41"
-       y1="81.43"
-       x2="426.04999"
-       y2="79.019997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35872" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="423.07001"
-       y2="81.849998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35874" />
-    <line
-       x1="423.07001"
-       y1="81.849998"
-       x2="424.07001"
-       y2="85.379997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35876" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="424.07001"
-       y2="85.379997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35878" />
-    <line
-       x1="424.07001"
-       y1="85.379997"
-       x2="421.95001"
-       y2="86.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35880" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="421.95001"
-       y2="86.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35882" />
-    <line
-       x1="421.95001"
-       y1="86.5"
-       x2="418.84"
-       y2="84.099998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35884" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="418.84"
-       y2="84.099998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35886" />
-    <line
-       x1="418.84"
-       y1="84.099998"
-       x2="417.84"
-       y2="80.57"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35888" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="417.84"
-       y2="80.57"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35890" />
-    <line
-       x1="417.84"
-       y1="80.57"
-       x2="419.95999"
-       y2="79.449997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35892" />
-    <line
-       x1="419.95999"
-       y1="79.449997"
-       x2="428.59"
-       y2="77.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35894" />
-    <line
-       x1="441.73001"
-       y1="76.959999"
-       x2="444.57999"
-       y2="76.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35896" />
-    <line
-       x1="434.23001"
-       y1="78.43"
-       x2="444.57999"
-       y2="76.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35898" />
-    <line
-       x1="444.57999"
-       y1="76.900002"
-       x2="445.57001"
-       y2="80.43"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35900" />
-    <line
-       x1="434.23001"
-       y1="78.43"
-       x2="445.57001"
-       y2="80.43"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35902" />
-    <line
-       x1="445.57001"
-       y1="80.43"
-       x2="443.70001"
-       y2="84.029999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35904" />
-    <line
-       x1="434.23001"
-       y1="78.43"
-       x2="443.70001"
-       y2="84.029999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35906" />
-    <line
-       x1="443.70001"
-       y1="84.029999"
-       x2="440.85001"
-       y2="84.110001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35908" />
-    <line
-       x1="440.85001"
-       y1="84.110001"
-       x2="439.85999"
-       y2="80.57"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35910" />
-    <line
-       x1="434.23001"
-       y1="78.43"
-       x2="439.85999"
-       y2="80.57"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35912" />
-    <line
-       x1="439.85999"
-       y1="80.57"
-       x2="441.73001"
-       y2="76.959999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35914" />
-    <line
-       x1="441.73001"
-       y1="76.959999"
-       x2="434.23001"
-       y2="78.43"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35916" />
-    <line
-       x1="431.41"
-       y1="77.739998"
-       x2="441.75"
-       y2="76.209999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35918" />
-    <line
-       x1="441.75"
-       y1="76.209999"
-       x2="442.73001"
-       y2="79.739998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35920" />
-    <line
-       x1="431.41"
-       y1="77.739998"
-       x2="442.73001"
-       y2="79.739998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35922" />
-    <line
-       x1="442.73001"
-       y1="79.739998"
-       x2="440.87"
-       y2="83.339996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35924" />
-    <line
-       x1="431.41"
-       y1="77.739998"
-       x2="440.87"
-       y2="83.339996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35926" />
-    <line
-       x1="440.87"
-       y1="83.339996"
-       x2="438.01999"
-       y2="83.410004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35928" />
-    <line
-       x1="438.01999"
-       y1="83.410004"
-       x2="437.04001"
-       y2="79.879997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35930" />
-    <line
-       x1="431.41"
-       y1="77.739998"
-       x2="437.04001"
-       y2="79.879997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35932" />
-    <line
-       x1="437.04001"
-       y1="79.879997"
-       x2="438.89999"
-       y2="76.279999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35934" />
-    <line
-       x1="438.89999"
-       y1="76.279999"
-       x2="431.41"
-       y2="77.739998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35936" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="438.92001"
-       y2="75.519997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35938" />
-    <line
-       x1="438.92001"
-       y1="75.519997"
-       x2="439.91"
-       y2="79.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35940" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="439.91"
-       y2="79.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35942" />
-    <line
-       x1="439.91"
-       y1="79.050003"
-       x2="438.04999"
-       y2="82.650002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35944" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="438.04999"
-       y2="82.650002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35946" />
-    <line
-       x1="438.04999"
-       y1="82.650002"
-       x2="435.19"
-       y2="82.720001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35948" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="435.19"
-       y2="82.720001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35950" />
-    <line
-       x1="435.19"
-       y1="82.720001"
-       x2="434.20001"
-       y2="79.190002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35952" />
-    <line
-       x1="428.59"
-       y1="77.050003"
-       x2="434.20001"
-       y2="79.190002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35954" />
-    <line
-       x1="434.20001"
-       y1="79.190002"
-       x2="436.07001"
-       y2="75.589996"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35956" />
-    <line
-       x1="436.07001"
-       y1="75.589996"
-       x2="428.59"
-       y2="77.050003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line35958" />
-    <line
-       x1="1162.05"
-       y1="669.09998"
-       x2="1162.42"
-       y2="666.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35960" />
-    <line
-       x1="1162.42"
-       y1="666.47998"
-       x2="1159.02"
-       y2="665.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35962" />
-    <line
-       x1="1156.6"
-       y1="658.70001"
-       x2="1159.02"
-       y2="665.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35964" />
-    <line
-       x1="1159.02"
-       y1="665.45001"
-       x2="1155.25"
-       y2="667.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35966" />
-    <line
-       x1="1154.88"
-       y1="669.64001"
-       x2="1156.6"
-       y2="658.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35968" />
-    <line
-       x1="1156.6"
-       y1="658.70001"
-       x2="1154.88"
-       y2="669.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35970" />
-    <line
-       x1="1154.88"
-       y1="669.64001"
-       x2="1158.28"
-       y2="670.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35972" />
-    <line
-       x1="1156.6"
-       y1="658.70001"
-       x2="1158.28"
-       y2="670.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35974" />
-    <line
-       x1="1158.28"
-       y1="670.67999"
-       x2="1162.05"
-       y2="669.09998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35976" />
-    <line
-       x1="1162.05"
-       y1="669.09998"
-       x2="1156.6"
-       y2="658.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35978" />
-    <line
-       x1="1161.37"
-       y1="665.97998"
-       x2="1161.74"
-       y2="663.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35980" />
-    <line
-       x1="1155.91"
-       y1="655.57001"
-       x2="1161.74"
-       y2="663.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35982" />
-    <line
-       x1="1161.74"
-       y1="663.35999"
-       x2="1158.33"
-       y2="662.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35984" />
-    <line
-       x1="1155.91"
-       y1="655.57001"
-       x2="1158.33"
-       y2="662.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35986" />
-    <line
-       x1="1158.33"
-       y1="662.33002"
-       x2="1154.5601"
-       y2="663.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35988" />
-    <line
-       x1="1155.91"
-       y1="655.57001"
-       x2="1154.2"
-       y2="666.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35990" />
-    <line
-       x1="1154.2"
-       y1="666.52002"
-       x2="1157.6"
-       y2="667.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35992" />
-    <line
-       x1="1155.91"
-       y1="655.57001"
-       x2="1157.6"
-       y2="667.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35994" />
-    <line
-       x1="1157.6"
-       y1="667.56"
-       x2="1161.37"
-       y2="665.97998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35996" />
-    <line
-       x1="1161.37"
-       y1="665.97998"
-       x2="1155.91"
-       y2="655.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line35998" />
-    <line
-       x1="1160.6899"
-       y1="662.85999"
-       x2="1161.05"
-       y2="660.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36000" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1161.05"
-       y2="660.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36002" />
-    <line
-       x1="1161.05"
-       y1="660.25"
-       x2="1157.65"
-       y2="659.21002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36004" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1157.65"
-       y2="659.21002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36006" />
-    <line
-       x1="1157.65"
-       y1="659.21002"
-       x2="1153.88"
-       y2="660.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36008" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1153.51"
-       y2="663.40002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36010" />
-    <line
-       x1="1153.51"
-       y1="663.40002"
-       x2="1156.91"
-       y2="664.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36012" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1156.91"
-       y2="664.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36014" />
-    <line
-       x1="1156.91"
-       y1="664.44"
-       x2="1160.6899"
-       y2="662.85999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36016" />
-    <line
-       x1="1160.6899"
-       y1="662.85999"
-       x2="1155.23"
-       y2="652.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36018" />
-    <line
-       x1="1143.29"
-       y1="660.40002"
-       x2="1146.62"
-       y2="662.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36020" />
-    <line
-       x1="1150.76"
-       y1="656.96002"
-       x2="1146.62"
-       y2="662.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36022" />
-    <line
-       x1="1150.76"
-       y1="656.96002"
-       x2="1147.36"
-       y2="666.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36024" />
-    <line
-       x1="1147.36"
-       y1="666.33002"
-       x2="1144.77"
-       y2="667.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36026" />
-    <line
-       x1="1150.76"
-       y1="656.96002"
-       x2="1144.77"
-       y2="667.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36028" />
-    <line
-       x1="1144.77"
-       y1="667.10999"
-       x2="1141.45"
-       y2="664.53998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36030" />
-    <line
-       x1="1150.76"
-       y1="656.96002"
-       x2="1141.45"
-       y2="664.53998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36032" />
-    <line
-       x1="1141.45"
-       y1="664.53998"
-       x2="1140.71"
-       y2="661.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36034" />
-    <line
-       x1="1140.71"
-       y1="661.17999"
-       x2="1143.29"
-       y2="660.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36036" />
-    <line
-       x1="1143.29"
-       y1="660.40002"
-       x2="1150.76"
-       y2="656.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36038" />
-    <line
-       x1="1145.54"
-       y1="658.13"
-       x2="1148.86"
-       y2="660.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36040" />
-    <line
-       x1="1152.99"
-       y1="654.71002"
-       x2="1148.86"
-       y2="660.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36042" />
-    <line
-       x1="1152.99"
-       y1="654.71002"
-       x2="1149.6"
-       y2="664.06"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36044" />
-    <line
-       x1="1149.6"
-       y1="664.06"
-       x2="1147.02"
-       y2="664.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36046" />
-    <line
-       x1="1152.99"
-       y1="654.71002"
-       x2="1147.02"
-       y2="664.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36048" />
-    <line
-       x1="1147.02"
-       y1="664.84003"
-       x2="1143.6899"
-       y2="662.27002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36050" />
-    <line
-       x1="1152.99"
-       y1="654.71002"
-       x2="1143.6899"
-       y2="662.27002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36052" />
-    <line
-       x1="1143.6899"
-       y1="662.27002"
-       x2="1142.95"
-       y2="658.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36054" />
-    <line
-       x1="1142.95"
-       y1="658.90997"
-       x2="1145.54"
-       y2="658.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36056" />
-    <line
-       x1="1145.54"
-       y1="658.13"
-       x2="1152.99"
-       y2="654.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36058" />
-    <line
-       x1="1147.78"
-       y1="655.87"
-       x2="1151.1"
-       y2="658.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36060" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1151.1"
-       y2="658.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36062" />
-    <line
-       x1="1151.1"
-       y1="658.44"
-       x2="1151.84"
-       y2="661.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36064" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1151.84"
-       y2="661.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36066" />
-    <line
-       x1="1151.84"
-       y1="661.79999"
-       x2="1149.25"
-       y2="662.58002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36068" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1149.25"
-       y2="662.58002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36070" />
-    <line
-       x1="1149.25"
-       y1="662.58002"
-       x2="1145.9301"
-       y2="660.01001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36072" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1145.9301"
-       y2="660.01001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36074" />
-    <line
-       x1="1145.9301"
-       y1="660.01001"
-       x2="1145.2"
-       y2="656.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36076" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1145.2"
-       y2="656.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36078" />
-    <line
-       x1="1145.2"
-       y1="656.65997"
-       x2="1147.78"
-       y2="655.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36080" />
-    <line
-       x1="1147.78"
-       y1="655.87"
-       x2="1155.23"
-       y2="652.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36082" />
-    <line
-       x1="1161.6"
-       y1="654.37"
-       x2="1172.88"
-       y2="653.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36084" />
-    <line
-       x1="1172.88"
-       y1="653.47998"
-       x2="1173.6"
-       y2="656.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36086" />
-    <line
-       x1="1161.6"
-       y1="654.37"
-       x2="1173.6"
-       y2="656.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36088" />
-    <line
-       x1="1173.6"
-       y1="656.84003"
-       x2="1171.9"
-       y2="660.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36090" />
-    <line
-       x1="1161.6"
-       y1="654.37"
-       x2="1171.9"
-       y2="660.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36092" />
-    <line
-       x1="1171.9"
-       y1="660.62"
-       x2="1169.46"
-       y2="661.03998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36094" />
-    <line
-       x1="1161.6"
-       y1="654.37"
-       x2="1169.46"
-       y2="661.03998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36096" />
-    <line
-       x1="1169.46"
-       y1="661.03998"
-       x2="1168.73"
-       y2="657.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36098" />
-    <line
-       x1="1161.6"
-       y1="654.37"
-       x2="1168.73"
-       y2="657.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36100" />
-    <line
-       x1="1168.73"
-       y1="657.67999"
-       x2="1170.4399"
-       y2="653.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36102" />
-    <line
-       x1="1170.4399"
-       y1="653.90002"
-       x2="1161.6"
-       y2="654.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36104" />
-    <line
-       x1="1158.41"
-       y1="653.40997"
-       x2="1169.6801"
-       y2="652.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36106" />
-    <line
-       x1="1169.6801"
-       y1="652.52002"
-       x2="1170.41"
-       y2="655.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36108" />
-    <line
-       x1="1158.41"
-       y1="653.40997"
-       x2="1170.41"
-       y2="655.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36110" />
-    <line
-       x1="1170.41"
-       y1="655.88"
-       x2="1168.71"
-       y2="659.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36112" />
-    <line
-       x1="1158.41"
-       y1="653.40997"
-       x2="1168.71"
-       y2="659.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36114" />
-    <line
-       x1="1168.71"
-       y1="659.65002"
-       x2="1166.27"
-       y2="660.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36116" />
-    <line
-       x1="1158.41"
-       y1="653.40997"
-       x2="1166.27"
-       y2="660.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36118" />
-    <line
-       x1="1166.27"
-       y1="660.07001"
-       x2="1165.54"
-       y2="656.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36120" />
-    <line
-       x1="1158.41"
-       y1="653.40997"
-       x2="1165.54"
-       y2="656.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36122" />
-    <line
-       x1="1165.54"
-       y1="656.71002"
-       x2="1167.24"
-       y2="652.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36124" />
-    <line
-       x1="1167.24"
-       y1="652.94"
-       x2="1158.41"
-       y2="653.40997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36126" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1166.49"
-       y2="651.56"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36128" />
-    <line
-       x1="1166.49"
-       y1="651.56"
-       x2="1167.22"
-       y2="654.90997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36130" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1167.22"
-       y2="654.90997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36132" />
-    <line
-       x1="1167.22"
-       y1="654.90997"
-       x2="1165.52"
-       y2="658.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36134" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1165.52"
-       y2="658.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36136" />
-    <line
-       x1="1165.52"
-       y1="658.69"
-       x2="1163.08"
-       y2="659.10999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36138" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1163.08"
-       y2="659.10999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36140" />
-    <line
-       x1="1163.08"
-       y1="659.10999"
-       x2="1162.34"
-       y2="655.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36142" />
-    <line
-       x1="1155.23"
-       y1="652.45001"
-       x2="1162.34"
-       y2="655.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36144" />
-    <line
-       x1="1162.34"
-       y1="655.75"
-       x2="1164.05"
-       y2="651.97998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36146" />
-    <line
-       x1="1164.05"
-       y1="651.97998"
-       x2="1155.23"
-       y2="652.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36148" />
-    <line
-       x1="462.26999"
-       y1="188.84"
-       x2="463.10001"
-       y2="186.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36150" />
-    <line
-       x1="456.5"
-       y1="178.28999"
-       x2="463.10001"
-       y2="186.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36152" />
-    <line
-       x1="463.10001"
-       y1="186.57001"
-       x2="460.07001"
-       y2="185.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36154" />
-    <line
-       x1="456.5"
-       y1="178.28999"
-       x2="460.07001"
-       y2="185.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36156" />
-    <line
-       x1="456.5"
-       y1="178.28999"
-       x2="456.20999"
-       y2="187.25999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36158" />
-    <line
-       x1="456.20999"
-       y1="187.25999"
-       x2="455.38"
-       y2="189.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36160" />
-    <line
-       x1="456.5"
-       y1="178.28999"
-       x2="455.38"
-       y2="189.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36162" />
-    <line
-       x1="455.38"
-       y1="189.53"
-       x2="458.41"
-       y2="190.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36164" />
-    <line
-       x1="456.5"
-       y1="178.28999"
-       x2="458.41"
-       y2="190.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36166" />
-    <line
-       x1="458.41"
-       y1="190.32001"
-       x2="462.26999"
-       y2="188.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36168" />
-    <line
-       x1="462.26999"
-       y1="188.84"
-       x2="456.5"
-       y2="178.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36170" />
-    <line
-       x1="461.35999"
-       y1="185.59"
-       x2="462.19"
-       y2="183.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36172" />
-    <line
-       x1="455.59"
-       y1="175.03"
-       x2="462.19"
-       y2="183.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36174" />
-    <line
-       x1="462.19"
-       y1="183.32001"
-       x2="459.16"
-       y2="182.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36176" />
-    <line
-       x1="455.59"
-       y1="175.03"
-       x2="459.16"
-       y2="182.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36178" />
-    <line
-       x1="459.16"
-       y1="182.53"
-       x2="455.29999"
-       y2="184.00999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36180" />
-    <line
-       x1="455.59"
-       y1="175.03"
-       x2="455.29999"
-       y2="184.00999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36182" />
-    <line
-       x1="455.29999"
-       y1="184.00999"
-       x2="454.47"
-       y2="186.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36184" />
-    <line
-       x1="455.59"
-       y1="175.03"
-       x2="454.47"
-       y2="186.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36186" />
-    <line
-       x1="454.47"
-       y1="186.28"
-       x2="457.5"
-       y2="187.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36188" />
-    <line
-       x1="455.59"
-       y1="175.03"
-       x2="457.5"
-       y2="187.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36190" />
-    <line
-       x1="457.5"
-       y1="187.07001"
-       x2="461.35999"
-       y2="185.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36192" />
-    <line
-       x1="461.35999"
-       y1="185.59"
-       x2="455.59"
-       y2="175.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36194" />
-    <line
-       x1="460.45001"
-       y1="182.34"
-       x2="461.28"
-       y2="180.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36196" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="461.28"
-       y2="180.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36198" />
-    <line
-       x1="461.28"
-       y1="180.07001"
-       x2="458.23999"
-       y2="179.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36200" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="458.23999"
-       y2="179.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36202" />
-    <line
-       x1="458.23999"
-       y1="179.28"
-       x2="454.38"
-       y2="180.75999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36204" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="454.38"
-       y2="180.75999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36206" />
-    <line
-       x1="454.38"
-       y1="180.75999"
-       x2="453.54999"
-       y2="183.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36208" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="453.54999"
-       y2="183.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36210" />
-    <line
-       x1="453.54999"
-       y1="183.02"
-       x2="456.59"
-       y2="183.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36212" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="456.59"
-       y2="183.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36214" />
-    <line
-       x1="456.59"
-       y1="183.82001"
-       x2="460.45001"
-       y2="182.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36216" />
-    <line
-       x1="460.45001"
-       y1="182.34"
-       x2="454.67999"
-       y2="171.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36218" />
-    <line
-       x1="441"
-       y1="178.38"
-       x2="444.13"
-       y2="180.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36220" />
-    <line
-       x1="449.60999"
-       y1="175.81"
-       x2="444.13"
-       y2="180.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36222" />
-    <line
-       x1="444.13"
-       y1="180.82001"
-       x2="445.10999"
-       y2="184.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36224" />
-    <line
-       x1="445.10999"
-       y1="184.32001"
-       x2="442.98001"
-       y2="185.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36226" />
-    <line
-       x1="449.60999"
-       y1="175.81"
-       x2="442.98001"
-       y2="185.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36228" />
-    <line
-       x1="442.98001"
-       y1="185.38"
-       x2="439.85999"
-       y2="182.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36230" />
-    <line
-       x1="449.60999"
-       y1="175.81"
-       x2="439.85999"
-       y2="182.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36232" />
-    <line
-       x1="439.85999"
-       y1="182.95"
-       x2="438.87"
-       y2="179.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36234" />
-    <line
-       x1="449.60999"
-       y1="175.81"
-       x2="438.87"
-       y2="179.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36236" />
-    <line
-       x1="438.87"
-       y1="179.45"
-       x2="441"
-       y2="178.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36238" />
-    <line
-       x1="441"
-       y1="178.38"
-       x2="449.60999"
-       y2="175.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36240" />
-    <line
-       x1="443.54999"
-       y1="176.36"
-       x2="446.67001"
-       y2="178.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36242" />
-    <line
-       x1="452.14001"
-       y1="173.78999"
-       x2="446.67001"
-       y2="178.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36244" />
-    <line
-       x1="446.67001"
-       y1="178.78999"
-       x2="447.66"
-       y2="182.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36246" />
-    <line
-       x1="452.14001"
-       y1="173.78999"
-       x2="447.66"
-       y2="182.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36248" />
-    <line
-       x1="447.66"
-       y1="182.28999"
-       x2="445.51999"
-       y2="183.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36250" />
-    <line
-       x1="452.14001"
-       y1="173.78999"
-       x2="445.51999"
-       y2="183.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36252" />
-    <line
-       x1="445.51999"
-       y1="183.35001"
-       x2="442.39999"
-       y2="180.92"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36254" />
-    <line
-       x1="452.14001"
-       y1="173.78999"
-       x2="442.39999"
-       y2="180.92"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36256" />
-    <line
-       x1="442.39999"
-       y1="180.92"
-       x2="441.41"
-       y2="177.42"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36258" />
-    <line
-       x1="452.14001"
-       y1="173.78999"
-       x2="441.41"
-       y2="177.42"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36260" />
-    <line
-       x1="443.54999"
-       y1="176.36"
-       x2="452.14001"
-       y2="173.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36262" />
-    <line
-       x1="446.09"
-       y1="174.34"
-       x2="449.20999"
-       y2="176.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36264" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="449.20999"
-       y2="176.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36266" />
-    <line
-       x1="449.20999"
-       y1="176.77"
-       x2="450.19"
-       y2="180.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36268" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="450.19"
-       y2="180.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36270" />
-    <line
-       x1="450.19"
-       y1="180.27"
-       x2="448.04999"
-       y2="181.33"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36272" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="448.04999"
-       y2="181.33"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36274" />
-    <line
-       x1="448.04999"
-       y1="181.33"
-       x2="444.94"
-       y2="178.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36276" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="444.94"
-       y2="178.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36278" />
-    <line
-       x1="444.94"
-       y1="178.89999"
-       x2="443.95001"
-       y2="175.39999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36280" />
-    <line
-       x1="443.95001"
-       y1="175.39999"
-       x2="446.09"
-       y2="174.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36282" />
-    <line
-       x1="446.09"
-       y1="174.34"
-       x2="454.67999"
-       y2="171.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36284" />
-    <line
-       x1="467.89001"
-       y1="171.94"
-       x2="470.73001"
-       y2="171.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36286" />
-    <line
-       x1="460.34"
-       y1="173.24001"
-       x2="470.73001"
-       y2="171.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36288" />
-    <line
-       x1="470.73001"
-       y1="171.82001"
-       x2="471.70001"
-       y2="175.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36290" />
-    <line
-       x1="460.34"
-       y1="173.24001"
-       x2="471.70001"
-       y2="175.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36292" />
-    <line
-       x1="471.70001"
-       y1="175.32001"
-       x2="469.85001"
-       y2="178.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36294" />
-    <line
-       x1="460.34"
-       y1="173.24001"
-       x2="469.85001"
-       y2="178.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36296" />
-    <line
-       x1="469.85001"
-       y1="178.94"
-       x2="467.01001"
-       y2="179.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36298" />
-    <line
-       x1="467.01001"
-       y1="179.07001"
-       x2="466.03"
-       y2="175.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36300" />
-    <line
-       x1="460.34"
-       y1="173.24001"
-       x2="466.03"
-       y2="175.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36302" />
-    <line
-       x1="466.03"
-       y1="175.57001"
-       x2="467.89001"
-       y2="171.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36304" />
-    <line
-       x1="467.89001"
-       y1="171.94"
-       x2="460.34"
-       y2="173.24001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36306" />
-    <line
-       x1="457.51001"
-       y1="172.5"
-       x2="467.88"
-       y2="171.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36308" />
-    <line
-       x1="467.88"
-       y1="171.08"
-       x2="468.85999"
-       y2="174.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36310" />
-    <line
-       x1="457.51001"
-       y1="172.5"
-       x2="468.85999"
-       y2="174.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36312" />
-    <line
-       x1="468.85999"
-       y1="174.58"
-       x2="467"
-       y2="178.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36314" />
-    <line
-       x1="457.51001"
-       y1="172.5"
-       x2="467"
-       y2="178.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36316" />
-    <line
-       x1="467"
-       y1="178.21001"
-       x2="464.17001"
-       y2="178.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36318" />
-    <line
-       x1="464.17001"
-       y1="178.34"
-       x2="463.19"
-       y2="174.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36320" />
-    <line
-       x1="457.51001"
-       y1="172.5"
-       x2="463.19"
-       y2="174.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36322" />
-    <line
-       x1="463.19"
-       y1="174.84"
-       x2="465.04999"
-       y2="171.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36324" />
-    <line
-       x1="465.04999"
-       y1="171.21001"
-       x2="457.51001"
-       y2="172.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36326" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="465.04001"
-       y2="170.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36328" />
-    <line
-       x1="465.04001"
-       y1="170.35001"
-       x2="466.01999"
-       y2="173.85001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36330" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="466.01999"
-       y2="173.85001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36332" />
-    <line
-       x1="466.01999"
-       y1="173.85001"
-       x2="464.16"
-       y2="177.47"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36334" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="464.16"
-       y2="177.47"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36336" />
-    <line
-       x1="464.16"
-       y1="177.47"
-       x2="461.32001"
-       y2="177.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36338" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="461.32001"
-       y2="177.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36340" />
-    <line
-       x1="461.32001"
-       y1="177.60001"
-       x2="460.34"
-       y2="174.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36342" />
-    <line
-       x1="454.67999"
-       y1="171.77"
-       x2="460.34"
-       y2="174.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36344" />
-    <line
-       x1="460.34"
-       y1="174.10001"
-       x2="462.20001"
-       y2="170.47"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36346" />
-    <line
-       x1="462.20001"
-       y1="170.47"
-       x2="454.67999"
-       y2="171.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36348" />
-    <line
-       x1="1567.1"
-       y1="360.42999"
-       x2="1567.1899"
-       y2="358.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36350" />
-    <line
-       x1="1567.1899"
-       y1="358.01999"
-       x2="1563.58"
-       y2="357.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36352" />
-    <line
-       x1="1561.84"
-       y1="349.85001"
-       x2="1563.58"
-       y2="357.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36354" />
-    <line
-       x1="1563.58"
-       y1="357.13"
-       x2="1559.88"
-       y2="358.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36356" />
-    <line
-       x1="1561.84"
-       y1="349.85001"
-       x2="1559.88"
-       y2="358.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36358" />
-    <line
-       x1="1561.84"
-       y1="349.85001"
-       x2="1559.78"
-       y2="361.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36360" />
-    <line
-       x1="1561.84"
-       y1="349.85001"
-       x2="1563.39"
-       y2="361.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36362" />
-    <line
-       x1="1563.39"
-       y1="361.95001"
-       x2="1567.1"
-       y2="360.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36364" />
-    <line
-       x1="1567.1"
-       y1="360.42999"
-       x2="1561.84"
-       y2="349.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36366" />
-    <line
-       x1="1566.55"
-       y1="357.20001"
-       x2="1566.64"
-       y2="354.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36368" />
-    <line
-       x1="1566.64"
-       y1="354.79001"
-       x2="1563.04"
-       y2="353.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36370" />
-    <line
-       x1="1561.3"
-       y1="346.60999"
-       x2="1563.04"
-       y2="353.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36372" />
-    <line
-       x1="1563.04"
-       y1="353.89999"
-       x2="1559.33"
-       y2="355.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36374" />
-    <line
-       x1="1561.3"
-       y1="346.60999"
-       x2="1559.33"
-       y2="355.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36376" />
-    <line
-       x1="1561.3"
-       y1="346.60999"
-       x2="1559.23"
-       y2="357.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36378" />
-    <line
-       x1="1559.23"
-       y1="357.84"
-       x2="1562.84"
-       y2="358.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36380" />
-    <line
-       x1="1561.3"
-       y1="346.60999"
-       x2="1562.84"
-       y2="358.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36382" />
-    <line
-       x1="1562.84"
-       y1="358.72"
-       x2="1566.55"
-       y2="357.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36384" />
-    <line
-       x1="1566.55"
-       y1="357.20001"
-       x2="1561.3"
-       y2="346.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36386" />
-    <line
-       x1="1566"
-       y1="353.95999"
-       x2="1566.1"
-       y2="351.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36388" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1566.1"
-       y2="351.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36390" />
-    <line
-       x1="1566.1"
-       y1="351.54999"
-       x2="1562.49"
-       y2="350.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36392" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1562.49"
-       y2="350.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36394" />
-    <line
-       x1="1562.49"
-       y1="350.67999"
-       x2="1558.79"
-       y2="352.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36396" />
-    <line
-       x1="1558.79"
-       y1="352.20001"
-       x2="1558.6801"
-       y2="354.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36398" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1558.6801"
-       y2="354.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36400" />
-    <line
-       x1="1558.6801"
-       y1="354.60999"
-       x2="1562.3"
-       y2="355.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36402" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1562.3"
-       y2="355.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36404" />
-    <line
-       x1="1562.3"
-       y1="355.48999"
-       x2="1566"
-       y2="353.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36406" />
-    <line
-       x1="1566"
-       y1="353.95999"
-       x2="1560.75"
-       y2="343.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36408" />
-    <line
-       x1="1549.87"
-       y1="350.51999"
-       x2="1553.3"
-       y2="353.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36410" />
-    <line
-       x1="1556.64"
-       y1="347.62"
-       x2="1553.89"
-       y2="356.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36412" />
-    <line
-       x1="1553.89"
-       y1="356.5"
-       x2="1551.05"
-       y2="357.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36414" />
-    <line
-       x1="1556.64"
-       y1="347.62"
-       x2="1551.05"
-       y2="357.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36416" />
-    <line
-       x1="1551.05"
-       y1="357.45999"
-       x2="1547.63"
-       y2="354.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36418" />
-    <line
-       x1="1556.64"
-       y1="347.62"
-       x2="1547.63"
-       y2="354.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36420" />
-    <line
-       x1="1547.63"
-       y1="354.95999"
-       x2="1547.04"
-       y2="351.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36422" />
-    <line
-       x1="1547.04"
-       y1="351.48999"
-       x2="1549.87"
-       y2="350.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36424" />
-    <line
-       x1="1549.87"
-       y1="350.51999"
-       x2="1556.64"
-       y2="347.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36426" />
-    <line
-       x1="1551.9301"
-       y1="348.39001"
-       x2="1555.36"
-       y2="350.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36428" />
-    <line
-       x1="1558.7"
-       y1="345.5"
-       x2="1555.95"
-       y2="354.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36430" />
-    <line
-       x1="1555.95"
-       y1="354.37"
-       x2="1553.12"
-       y2="355.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36432" />
-    <line
-       x1="1558.7"
-       y1="345.5"
-       x2="1553.12"
-       y2="355.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36434" />
-    <line
-       x1="1553.12"
-       y1="355.34"
-       x2="1549.6899"
-       y2="352.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36436" />
-    <line
-       x1="1558.7"
-       y1="345.5"
-       x2="1549.6899"
-       y2="352.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36438" />
-    <line
-       x1="1549.6899"
-       y1="352.82999"
-       x2="1549.1"
-       y2="349.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36440" />
-    <line
-       x1="1558.7"
-       y1="345.5"
-       x2="1549.1"
-       y2="349.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36442" />
-    <line
-       x1="1549.1"
-       y1="349.35999"
-       x2="1551.9301"
-       y2="348.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36444" />
-    <line
-       x1="1551.9301"
-       y1="348.39001"
-       x2="1558.7"
-       y2="345.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36446" />
-    <line
-       x1="1553.99"
-       y1="346.26999"
-       x2="1557.42"
-       y2="348.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36448" />
-    <line
-       x1="1557.42"
-       y1="348.76999"
-       x2="1558.01"
-       y2="352.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36450" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1558.01"
-       y2="352.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36452" />
-    <line
-       x1="1558.01"
-       y1="352.23999"
-       x2="1555.1801"
-       y2="353.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36454" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1555.1801"
-       y2="353.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36456" />
-    <line
-       x1="1555.1801"
-       y1="353.20999"
-       x2="1551.75"
-       y2="350.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36458" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1551.75"
-       y2="350.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36460" />
-    <line
-       x1="1551.75"
-       y1="350.70999"
-       x2="1551.16"
-       y2="347.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36462" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1551.16"
-       y2="347.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36464" />
-    <line
-       x1="1551.16"
-       y1="347.23999"
-       x2="1553.99"
-       y2="346.26999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36466" />
-    <line
-       x1="1553.99"
-       y1="346.26999"
-       x2="1560.75"
-       y2="343.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36468" />
-    <line
-       x1="1567.5"
-       y1="345.01999"
-       x2="1579.26"
-       y2="343.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36470" />
-    <line
-       x1="1579.26"
-       y1="343.76999"
-       x2="1579.84"
-       y2="347.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36472" />
-    <line
-       x1="1567.5"
-       y1="345.01999"
-       x2="1579.84"
-       y2="347.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36474" />
-    <line
-       x1="1579.84"
-       y1="347.25"
-       x2="1578.23"
-       y2="350.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36476" />
-    <line
-       x1="1567.5"
-       y1="345.01999"
-       x2="1578.23"
-       y2="350.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36478" />
-    <line
-       x1="1578.23"
-       y1="350.95999"
-       x2="1576.04"
-       y2="351.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36480" />
-    <line
-       x1="1567.5"
-       y1="345.01999"
-       x2="1576.04"
-       y2="351.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36482" />
-    <line
-       x1="1576.04"
-       y1="351.19"
-       x2="1575.46"
-       y2="347.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36484" />
-    <line
-       x1="1567.5"
-       y1="345.01999"
-       x2="1575.46"
-       y2="347.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36486" />
-    <line
-       x1="1577.0699"
-       y1="344"
-       x2="1567.5"
-       y2="345.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36488" />
-    <line
-       x1="1564.13"
-       y1="344.20001"
-       x2="1575.88"
-       y2="342.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36490" />
-    <line
-       x1="1575.88"
-       y1="342.95001"
-       x2="1576.46"
-       y2="346.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36492" />
-    <line
-       x1="1564.13"
-       y1="344.20001"
-       x2="1576.46"
-       y2="346.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36494" />
-    <line
-       x1="1576.46"
-       y1="346.42999"
-       x2="1574.85"
-       y2="350.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36496" />
-    <line
-       x1="1564.13"
-       y1="344.20001"
-       x2="1574.85"
-       y2="350.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36498" />
-    <line
-       x1="1574.85"
-       y1="350.13"
-       x2="1572.65"
-       y2="350.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36500" />
-    <line
-       x1="1564.13"
-       y1="344.20001"
-       x2="1572.65"
-       y2="350.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36502" />
-    <line
-       x1="1572.65"
-       y1="350.37"
-       x2="1572.0699"
-       y2="346.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36504" />
-    <line
-       x1="1564.13"
-       y1="344.20001"
-       x2="1572.0699"
-       y2="346.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36506" />
-    <line
-       x1="1572.0699"
-       y1="346.89001"
-       x2="1573.6801"
-       y2="343.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36508" />
-    <line
-       x1="1573.6801"
-       y1="343.17999"
-       x2="1564.13"
-       y2="344.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36510" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1572.49"
-       y2="342.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36512" />
-    <line
-       x1="1572.49"
-       y1="342.13"
-       x2="1573.0699"
-       y2="345.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36514" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1573.0699"
-       y2="345.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36516" />
-    <line
-       x1="1573.0699"
-       y1="345.60999"
-       x2="1571.46"
-       y2="349.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36518" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1571.46"
-       y2="349.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36520" />
-    <line
-       x1="1571.46"
-       y1="349.31"
-       x2="1569.27"
-       y2="349.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36522" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1569.27"
-       y2="349.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36524" />
-    <line
-       x1="1569.27"
-       y1="349.54001"
-       x2="1568.6801"
-       y2="346.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36526" />
-    <line
-       x1="1560.75"
-       y1="343.38"
-       x2="1568.6801"
-       y2="346.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36528" />
-    <line
-       x1="1568.6801"
-       y1="346.07001"
-       x2="1570.3"
-       y2="342.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36530" />
-    <line
-       x1="1570.3"
-       y1="342.35999"
-       x2="1560.75"
-       y2="343.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36532" />
-    <line
-       x1="379.91"
-       y1="74.129997"
-       x2="380.79001"
-       y2="71.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36534" />
-    <line
-       x1="380.79001"
-       y1="71.93"
-       x2="377.79001"
-       y2="71.199997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36536" />
-    <line
-       x1="374.09"
-       y1="63.52"
-       x2="373.04001"
-       y2="74.849998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36538" />
-    <line
-       x1="373.04001"
-       y1="74.849998"
-       x2="376.03"
-       y2="75.589996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36540" />
-    <line
-       x1="374.09"
-       y1="63.52"
-       x2="376.03"
-       y2="75.589996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36542" />
-    <line
-       x1="376.03"
-       y1="75.589996"
-       x2="379.91"
-       y2="74.129997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36544" />
-    <line
-       x1="379.91"
-       y1="74.129997"
-       x2="374.09"
-       y2="63.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36546" />
-    <line
-       x1="378.97"
-       y1="70.839996"
-       x2="379.85001"
-       y2="68.639999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36548" />
-    <line
-       x1="379.85001"
-       y1="68.639999"
-       x2="376.85999"
-       y2="67.910004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36550" />
-    <line
-       x1="373.14999"
-       y1="60.220001"
-       x2="376.85999"
-       y2="67.910004"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36552" />
-    <line
-       x1="376.85999"
-       y1="67.910004"
-       x2="372.98001"
-       y2="69.370003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36554" />
-    <line
-       x1="373.14999"
-       y1="60.220001"
-       x2="372.10001"
-       y2="71.559998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36556" />
-    <line
-       x1="372.10001"
-       y1="71.559998"
-       x2="375.09"
-       y2="72.300003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36558" />
-    <line
-       x1="373.14999"
-       y1="60.220001"
-       x2="375.09"
-       y2="72.300003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36560" />
-    <line
-       x1="375.09"
-       y1="72.300003"
-       x2="378.97"
-       y2="70.839996"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36562" />
-    <line
-       x1="378.97"
-       y1="70.839996"
-       x2="373.14999"
-       y2="60.220001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36564" />
-    <line
-       x1="378.03"
-       y1="67.540001"
-       x2="378.91"
-       y2="65.349998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36566" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="378.91"
-       y2="65.349998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36568" />
-    <line
-       x1="378.91"
-       y1="65.349998"
-       x2="375.91"
-       y2="64.620003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36570" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="375.91"
-       y2="64.620003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36572" />
-    <line
-       x1="375.91"
-       y1="64.620003"
-       x2="372.04001"
-       y2="66.07"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36574" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="372.04001"
-       y2="66.07"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36576" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="371.16"
-       y2="68.269997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36578" />
-    <line
-       x1="371.16"
-       y1="68.269997"
-       x2="374.14999"
-       y2="69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36580" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="374.14999"
-       y2="69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36582" />
-    <line
-       x1="374.14999"
-       y1="69"
-       x2="378.03"
-       y2="67.540001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36584" />
-    <line
-       x1="378.03"
-       y1="67.540001"
-       x2="372.20999"
-       y2="56.919998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36586" />
-    <line
-       x1="358.32001"
-       y1="63.23"
-       x2="361.42001"
-       y2="65.629997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36588" />
-    <line
-       x1="361.42001"
-       y1="65.629997"
-       x2="362.44"
-       y2="69.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36590" />
-    <line
-       x1="362.44"
-       y1="69.18"
-       x2="360.35001"
-       y2="70.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36592" />
-    <line
-       x1="367.07001"
-       y1="60.849998"
-       x2="360.35001"
-       y2="70.309998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36594" />
-    <line
-       x1="360.35001"
-       y1="70.309998"
-       x2="357.25"
-       y2="67.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36596" />
-    <line
-       x1="367.07001"
-       y1="60.849998"
-       x2="357.25"
-       y2="67.900002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36598" />
-    <line
-       x1="357.25"
-       y1="67.900002"
-       x2="356.23001"
-       y2="64.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36600" />
-    <line
-       x1="367.07001"
-       y1="60.849998"
-       x2="356.23001"
-       y2="64.360001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36602" />
-    <line
-       x1="356.23001"
-       y1="64.360001"
-       x2="358.32001"
-       y2="63.23"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36604" />
-    <line
-       x1="358.32001"
-       y1="63.23"
-       x2="367.07001"
-       y2="60.849998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36606" />
-    <line
-       x1="360.89999"
-       y1="61.25"
-       x2="364"
-       y2="63.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36608" />
-    <line
-       x1="369.64001"
-       y1="58.889999"
-       x2="364"
-       y2="63.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36610" />
-    <line
-       x1="364"
-       y1="63.66"
-       x2="365.01999"
-       y2="67.199997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36612" />
-    <line
-       x1="369.64001"
-       y1="58.889999"
-       x2="365.01999"
-       y2="67.199997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36614" />
-    <line
-       x1="365.01999"
-       y1="67.199997"
-       x2="362.92999"
-       y2="68.330002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36616" />
-    <line
-       x1="369.64001"
-       y1="58.889999"
-       x2="362.92999"
-       y2="68.330002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36618" />
-    <line
-       x1="362.92999"
-       y1="68.330002"
-       x2="359.82999"
-       y2="65.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36620" />
-    <line
-       x1="369.64001"
-       y1="58.889999"
-       x2="359.82999"
-       y2="65.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36622" />
-    <line
-       x1="359.82999"
-       y1="65.93"
-       x2="358.81"
-       y2="62.389999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36624" />
-    <line
-       x1="369.64001"
-       y1="58.889999"
-       x2="358.81"
-       y2="62.389999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36626" />
-    <line
-       x1="358.81"
-       y1="62.389999"
-       x2="360.89999"
-       y2="61.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36628" />
-    <line
-       x1="360.89999"
-       y1="61.25"
-       x2="369.64001"
-       y2="58.889999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36630" />
-    <line
-       x1="363.48001"
-       y1="59.290001"
-       x2="366.57999"
-       y2="61.689999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36632" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="366.57999"
-       y2="61.689999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36634" />
-    <line
-       x1="366.57999"
-       y1="61.689999"
-       x2="367.59"
-       y2="65.230003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36636" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="367.59"
-       y2="65.230003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36638" />
-    <line
-       x1="367.59"
-       y1="65.230003"
-       x2="365.5"
-       y2="66.360001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36640" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="365.5"
-       y2="66.360001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36642" />
-    <line
-       x1="365.5"
-       y1="66.360001"
-       x2="362.41"
-       y2="63.959999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36644" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="362.41"
-       y2="63.959999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36646" />
-    <line
-       x1="362.41"
-       y1="63.959999"
-       x2="361.39001"
-       y2="60.419998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36648" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="361.39001"
-       y2="60.419998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36650" />
-    <line
-       x1="361.39001"
-       y1="60.419998"
-       x2="363.48001"
-       y2="59.290001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36652" />
-    <line
-       x1="363.48001"
-       y1="59.290001"
-       x2="372.20999"
-       y2="56.919998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36654" />
-    <line
-       x1="377.79999"
-       y1="58.279999"
-       x2="388.09"
-       y2="56.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36656" />
-    <line
-       x1="388.09"
-       y1="56.73"
-       x2="389.10001"
-       y2="60.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36658" />
-    <line
-       x1="377.79999"
-       y1="58.279999"
-       x2="389.10001"
-       y2="60.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36660" />
-    <line
-       x1="389.10001"
-       y1="60.27"
-       x2="387.22"
-       y2="63.869999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36662" />
-    <line
-       x1="377.79999"
-       y1="58.279999"
-       x2="387.22"
-       y2="63.869999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36664" />
-    <line
-       x1="387.22"
-       y1="63.869999"
-       x2="384.34"
-       y2="63.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36666" />
-    <line
-       x1="384.34"
-       y1="63.93"
-       x2="383.32999"
-       y2="60.389999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36668" />
-    <line
-       x1="377.79999"
-       y1="58.279999"
-       x2="383.32999"
-       y2="60.389999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36670" />
-    <line
-       x1="383.32999"
-       y1="60.389999"
-       x2="385.20999"
-       y2="56.790001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36672" />
-    <line
-       x1="385.20999"
-       y1="56.790001"
-       x2="377.79999"
-       y2="58.279999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36674" />
-    <line
-       x1="375"
-       y1="57.599998"
-       x2="385.29001"
-       y2="56.049999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36676" />
-    <line
-       x1="385.29001"
-       y1="56.049999"
-       x2="386.29001"
-       y2="59.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36678" />
-    <line
-       x1="375"
-       y1="57.599998"
-       x2="386.29001"
-       y2="59.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36680" />
-    <line
-       x1="386.29001"
-       y1="59.59"
-       x2="384.42001"
-       y2="63.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36682" />
-    <line
-       x1="375"
-       y1="57.599998"
-       x2="384.42001"
-       y2="63.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36684" />
-    <line
-       x1="384.42001"
-       y1="63.18"
-       x2="381.53"
-       y2="63.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36686" />
-    <line
-       x1="381.53"
-       y1="63.25"
-       x2="380.51999"
-       y2="59.700001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36688" />
-    <line
-       x1="375"
-       y1="57.599998"
-       x2="380.51999"
-       y2="59.700001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36690" />
-    <line
-       x1="380.51999"
-       y1="59.700001"
-       x2="382.39999"
-       y2="56.099998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36692" />
-    <line
-       x1="382.39999"
-       y1="56.099998"
-       x2="375"
-       y2="57.599998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36694" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="382.48001"
-       y2="55.369999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36696" />
-    <line
-       x1="382.48001"
-       y1="55.369999"
-       x2="383.48999"
-       y2="58.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36698" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="383.48999"
-       y2="58.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36700" />
-    <line
-       x1="383.48999"
-       y1="58.91"
-       x2="381.60999"
-       y2="62.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36702" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="381.60999"
-       y2="62.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36704" />
-    <line
-       x1="381.60999"
-       y1="62.5"
-       x2="378.73001"
-       y2="62.560001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36706" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="378.73001"
-       y2="62.560001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36708" />
-    <line
-       x1="378.73001"
-       y1="62.560001"
-       x2="377.70999"
-       y2="59.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36710" />
-    <line
-       x1="372.20999"
-       y1="56.919998"
-       x2="377.70999"
-       y2="59.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36712" />
-    <line
-       x1="377.70999"
-       y1="59.02"
-       x2="379.60001"
-       y2="55.419998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36714" />
-    <line
-       x1="379.60001"
-       y1="55.419998"
-       x2="372.20999"
-       y2="56.919998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36716" />
-    <g
-       transform="translate(766.42581,-118.34516)"
-       id="g59488">
-      <polygon
-         id="polygon36718"
-         points="136.29,688.4 135.82,687.65 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36720"
-         points="135.82,687.65 134.43,687.37 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36722"
-         points="134.43,687.37 132.65,687.66 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36724"
-         points="132.65,687.66 131.16,688.41 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36726"
-         points="131.16,688.41 130.53,689.34 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36728"
-         points="130.53,689.34 131,690.09 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36730"
-         points="131,690.09 132.39,690.37 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36732"
-         points="132.39,690.37 134.17,690.08 135.66,689.33 "
-         style="opacity:1;fill:#c30000" />
-      <polygon
-         id="polygon36768"
-         points="137.95,712.93 137.43,714.04 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36770"
-         points="137.43,714.04 137.81,715.61 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36772"
-         points="137.81,715.61 138.93,717.04 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36774"
-         points="138.93,717.04 140.38,717.79 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36776"
-         points="140.38,717.79 141.58,717.58 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36778"
-         points="141.58,717.58 142.09,716.48 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36780"
-         points="142.09,716.48 141.71,714.91 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36782"
-         points="141.71,714.91 140.59,713.47 139.15,712.72 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36788"
-         points="160.35,702.72 160.86,701.62 141.58,717.58 "
-         style="opacity:1;fill:#007f00" />
-      <polygon
-         id="polygon36790"
-         points="142.09,716.48 141.58,717.58 160.86,701.62 "
-         style="opacity:1;fill:#007f00" />
-      <polygon
-         id="polygon36810"
-         points="156.9,693.63 153.69,694.21 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36812"
-         points="153.69,694.21 152.32,697.15 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36814"
-         points="152.32,697.15 153.33,701.33 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36816"
-         points="153.33,701.33 156.32,705.16 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36818"
-         points="156.32,705.16 160.16,707.16 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36820"
-         points="160.16,707.16 163.38,706.59 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36822"
-         points="163.38,706.59 164.75,703.65 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36824"
-         points="164.75,703.65 163.74,699.46 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36826"
-         points="163.74,699.46 160.74,695.64 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36828"
-         points="160.74,695.64 156.9,693.63 158.53,700.4 "
-         style="opacity:1;fill:#00b700" />
-      <polygon
-         id="polygon36830"
-         points="138.21,714.04 137.86,715.83 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36832"
-         points="137.86,715.83 138.23,717.4 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36834"
-         points="138.23,717.4 139.2,718.15 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36836"
-         points="139.2,718.15 140.38,717.79 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36838"
-         points="140.38,717.79 141.32,716.47 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36840"
-         points="141.32,716.47 141.67,714.68 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36842"
-         points="141.67,714.68 141.29,713.11 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36844"
-         points="141.29,713.11 140.33,712.36 139.15,712.72 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36872"
-         points="114.73,703.74 112.21,707.27 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36874"
-         points="112.21,707.27 111.27,712.04 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36876"
-         points="111.27,712.04 112.28,716.22 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36878"
-         points="112.28,716.22 114.84,718.21 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36880"
-         points="114.84,718.21 117.98,717.27 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36882"
-         points="117.98,717.27 120.5,713.74 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36884"
-         points="120.5,713.74 121.43,708.97 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36886"
-         points="121.43,708.97 120.43,704.79 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36888"
-         points="120.43,704.79 117.87,702.79 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <polygon
-         id="polygon36890"
-         points="117.87,702.79 114.73,703.74 116.36,710.5 "
-         style="opacity:1;fill:#000087" />
-      <text
-         id="text36900"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="667.08002"
-         x="123.56">X</text>
-      <text
-         id="text36902"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="689.21997"
-         x="171.81">Y</text>
-      <text
-         id="text36904"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="708.63"
-         x="91.300003">Z</text>
-    </g>
-  </g>
-</svg>
diff --git a/docs/source/images/Spindle_mode.svg b/docs/source/images/Spindle_mode.svg
deleted file mode 100644
index 9584fe42d3a6c1bfa70392201458bb907f61436a..0000000000000000000000000000000000000000
--- a/docs/source/images/Spindle_mode.svg
+++ /dev/null
@@ -1,101246 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="650"
-   height="245.6801"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="Spindle_mode.svg">
-  <metadata
-     id="metadata40662">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <defs
-     id="defs40660">
-    <script
-       id="script40364"
-       type="text/ecmascript"><![CDATA[
-var svgdoc, root; 
-var fTol = 2000.;
-var fBlueTol = 0.05 * fTol;
-var fGreenTol = 0.017 * fTol;
-var fRedTol = 0.032 * fTol;
-var svgnsz="http://www.w3.org/2000/svg";
-var version = 'Viewer unknown';
-try
-{
-version = window.getSVGViewerVersion();
-if(version.search("Adobe") != -1)
-{
-svgnsz = null;
-}
-}
-catch(er)
-{
-}
-function SubDivideTriangle(evt, x1,y1,x2,y2,x3,y3,c1R,c1G,c1B,c2R,c2G,c2B,c3R,c3G,c3B,alpha)
-{
-svgdoc=evt.target.ownerDocument;
-root=evt.target;
-
-if(Math.abs(c2B - c1B) > fBlueTol ||
-Math.abs(c2G - c1G) > fGreenTol ||
-Math.abs(c2R - c1R) > fRedTol ||
-Math.abs(c3B - c1B) > fBlueTol ||
-Math.abs(c3G - c1G) > fGreenTol ||
-Math.abs(c3R - c1R) > fRedTol ||
-Math.abs(c2B - c3B) > fBlueTol ||
-Math.abs(c2G - c3G) > fGreenTol ||
-Math.abs(c2R - c3R) > fRedTol )
-{
-var v1x = 0.5*(x1+x2);
-var v1y = 0.5*(y1+y2);
-var v2x = 0.5*(x1+x3);
-var v2y = 0.5*(y1+y3);
-var v3x = 0.5*(x2+x3);
-var v3y = 0.5*(y2+y3);
-var c1r = 0.5*(c1R+c2R);
-var c1g = 0.5*(c1G+c2G);
-var c1b = 0.5*(c1B+c2B);
-var c2r = 0.5*(c1R+c3R);
-var c2g = 0.5*(c1G+c3G);
-var c2b = 0.5*(c1B+c3B);
-var c3r = 0.5*(c2R+c3R);
-var c3g = 0.5*(c2G+c3G);
-var c3b = 0.5*(c2B+c3B);
-SubDivideTriangle(evt,x1,y1,v1x,v1y,v2x,v2y, c1R,c1G,c1B,c1r,c1g,c1b,c2r,c2g,c2b, alpha);
-SubDivideTriangle(evt,v1x,v1y,v2x,v2y,v3x,v3y, c1r,c1g,c1b,c2r,c2g,c2b,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v1x,v1y,x2,y2,v3x,v3y, c1r,c1g,c1b,c2R,c2G,c2B,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v2x,v2y,v3x,v3y,x3,y3, c2r,c2g,c2b,c3r,c3g,c3b,c3R,c3G,c3B,alpha);
-}
-else
-{
-obj = svgdoc.createElementNS(svgnsz,'polygon');
-str = String(x1) + "," + String(y1) + " " + String(x2) + "," + String(y2) + " " + String(x3) + "," + String(y3) ;
-obj.setAttributeNS(null,'points', str);
-var rc = Math.round((c1R+c2R+c3R)/3.0).toString(16);
-var gc = Math.round((c1G+c2G+c3G)/3.0).toString(16);
-var bc = Math.round((c1B+c2B+c3B)/3.0).toString(16);
-if(rc.length == 1) rc = "0"+rc;
-if(gc.length == 1) gc = "0"+gc;
-if(bc.length == 1) bc = "0"+bc;
-cStr = "#" + rc + gc + bc;
-aStr = String(alpha);
-obj.setAttributeNS(null, "style", "fill:" + cStr + "; stroke:" + cStr + "; opacity:" + aStr );
-aStr = String(alpha);
-obj.setAttributeNS(null,"opacity", aStr);
-root.appendChild(obj);
-}
-}
-]]></script>
-  </defs>
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1203"
-     inkscape:window-height="633"
-     id="namedview40658"
-     showgrid="false"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:zoom="0.25094803"
-     inkscape:cx="588.59922"
-     inkscape:cy="329.21624"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="svg2" />
-  <g
-     id="g40366"
-     onload="SubDivideTriangle(evt,142.02,715.71,135.66,689.33,134.17,690.08,135,0,0,135,0,0,167,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40368"
-     onload="SubDivideTriangle(evt,134.17,690.08,140.52,716.46,142.02,715.71,167,0,0,167,0,0,135,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40370"
-     onload="SubDivideTriangle(evt,140.52,716.46,134.17,690.08,132.39,690.37,167,0,0,167,0,0,183,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40372"
-     onload="SubDivideTriangle(evt,132.39,690.37,138.74,716.76,140.52,716.46,183,0,0,183,0,0,167,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40374"
-     onload="SubDivideTriangle(evt,138.74,716.76,132.39,690.37,131.00,690.09,183,0,0,183,0,0,177,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40376"
-     onload="SubDivideTriangle(evt,131.00,690.09,137.35,716.47,138.74,716.76,177,0,0,177,0,0,183,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40378"
-     onload="SubDivideTriangle(evt,137.35,716.47,131.00,690.09,130.53,689.34,177,0,0,177,0,0,152,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40380"
-     onload="SubDivideTriangle(evt,130.53,689.34,136.88,715.73,137.35,716.47,152,0,0,152,0,0,177,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40382"
-     onload="SubDivideTriangle(evt,142.64,714.79,136.29,688.40,135.66,689.33,127,0,0,127,0,0,135,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40384"
-     onload="SubDivideTriangle(evt,135.66,689.33,142.02,715.71,142.64,714.79,135,0,0,135,0,0,127,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40386"
-     onload="SubDivideTriangle(evt,129.99,674.66,139.41,690.09,141.10,687.62,195,0,0,164,0,0,133,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40388"
-     onload="SubDivideTriangle(evt,129.99,674.66,141.10,687.62,139.84,685.62,195,0,0,133,0,0,127,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40390"
-     onload="SubDivideTriangle(evt,129.99,674.66,125.73,690.13,126.98,692.12,195,0,0,179,0,0,202,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40392"
-     onload="SubDivideTriangle(evt,129.99,674.66,126.98,692.12,130.69,692.87,195,0,0,202,0,0,213,5,5,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40394"
-     onload="SubDivideTriangle(evt,129.99,674.66,130.69,692.87,135.44,692.09,195,0,0,213,5,5,192,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40396"
-     onload="SubDivideTriangle(evt,129.99,674.66,135.44,692.09,139.41,690.09,195,0,0,192,0,0,164,0,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40414"
-     onload="SubDivideTriangle(evt,139.15,712.72,157.92,697.86,156.71,698.08,0,195,0,0,195,0,0,177,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40416"
-     onload="SubDivideTriangle(evt,156.71,698.08,137.95,712.93,139.15,712.72,0,177,0,0,177,0,0,195,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40422"
-     onload="SubDivideTriangle(evt,142.09,716.48,160.86,701.62,160.48,700.05,0,127,0,0,127,0,0,156,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40424"
-     onload="SubDivideTriangle(evt,160.48,700.05,141.71,714.91,142.09,716.48,0,156,0,0,156,0,0,127,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40426"
-     onload="SubDivideTriangle(evt,141.71,714.91,160.48,700.05,159.36,698.61,0,156,0,0,156,0,0,187,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40428"
-     onload="SubDivideTriangle(evt,159.36,698.61,140.59,713.47,141.71,714.91,0,187,0,0,187,0,0,156,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40430"
-     onload="SubDivideTriangle(evt,140.59,713.47,159.36,698.61,157.92,697.86,0,187,0,0,187,0,0,195,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40432"
-     onload="SubDivideTriangle(evt,157.92,697.86,139.15,712.72,140.59,713.47,0,195,0,0,195,0,0,187,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40434"
-     onload="SubDivideTriangle(evt,168.64,692.40,156.90,693.63,160.74,695.64,0,127,0,0,164,0,0,157,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40436"
-     onload="SubDivideTriangle(evt,168.64,692.40,160.74,695.64,163.74,699.46,0,127,0,0,157,0,0,129,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40438"
-     onload="SubDivideTriangle(evt,168.64,692.40,163.74,699.46,164.75,703.65,0,127,0,0,129,0,0,127,0,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40476"
-     onload="SubDivideTriangle(evt,139.15,712.72,115.75,707.96,114.80,709.29,0,0,195,0,0,195,0,0,215,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40478"
-     onload="SubDivideTriangle(evt,114.80,709.29,138.21,714.04,139.15,712.72,0,0,215,0,0,215,0,0,195,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40480"
-     onload="SubDivideTriangle(evt,138.21,714.04,114.80,709.29,114.45,711.08,0,0,215,0,0,215,0,0,201,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40482"
-     onload="SubDivideTriangle(evt,114.45,711.08,137.86,715.83,138.21,714.04,0,0,201,0,0,201,0,0,215,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40484"
-     onload="SubDivideTriangle(evt,137.86,715.83,114.45,711.08,114.83,712.64,0,0,201,0,0,201,0,0,159,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40486"
-     onload="SubDivideTriangle(evt,114.83,712.64,138.23,717.40,137.86,715.83,0,0,159,0,0,159,0,0,201,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40488"
-     onload="SubDivideTriangle(evt,138.23,717.40,114.83,712.64,115.79,713.39,0,0,159,0,0,159,0,0,127,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40490"
-     onload="SubDivideTriangle(evt,115.79,713.39,139.20,718.15,138.23,717.40,0,0,127,0,0,127,0,0,159,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40492"
-     onload="SubDivideTriangle(evt,140.33,712.36,116.92,707.61,115.75,707.96,0,0,149,0,0,149,0,0,195,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40494"
-     onload="SubDivideTriangle(evt,115.75,707.96,139.15,712.72,140.33,712.36,0,0,195,0,0,195,0,0,149,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40496"
-     onload="SubDivideTriangle(evt,103.75,707.95,112.28,716.22,111.27,712.04,0,0,127,0,0,152,0,0,190,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40498"
-     onload="SubDivideTriangle(evt,103.75,707.95,111.27,712.04,112.21,707.27,0,0,127,0,0,190,0,0,203,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <g
-     id="g40500"
-     onload="SubDivideTriangle(evt,103.75,707.95,112.21,707.27,114.73,703.74,0,0,127,0,0,203,0,0,185,1.00)"
-     transform="translate(-99.702354,-476.53614)" />
-  <text
-     id="text40648"
-     style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-     y="160.26385"
-     x="131.40765" />
-  <g
-     id="g65278"
-     transform="matrix(0.39812463,0,0,0.39812463,-39.693963,-41.851977)">
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="489.3,220.34 489.38,220.63 489.7,220.66 "
-       id="polygon8" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="482.49,224.77 488.43,221.03 488.63,220.69 "
-       id="polygon10" />
-    <line
-       x1="457.73001"
-       y1="235.39999"
-       x2="489.76999"
-       y2="221.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="483.98,224.63 489.71,220.38 490.12,220.55 "
-       id="polygon14" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="483.98,224.63 477.83,228.72 478.2,229.01 "
-       id="polygon16" />
-    <line
-       x1="489.76999"
-       y1="221.8"
-       x2="475.79001"
-       y2="231.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="478.41,229.86 478.48,229.39 478.66,229.83 "
-       id="polygon20" />
-    <line
-       x1="475.79001"
-       y1="231.91"
-       x2="468.56"
-       y2="237.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="470.18,232.98 476.14,229.21 476.34,228.86 "
-       id="polygon24" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="471.67,232.84 477.43,228.55 477.83,228.72 "
-       id="polygon26" />
-    <line
-       x1="356.04999"
-       y1="128.32001"
-       x2="355.66"
-       y2="127.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28" />
-    <line
-       x1="356.42999"
-       y1="129.53"
-       x2="356.04999"
-       y2="128.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="472.04,233.13 477.83,228.72 478.2,229.01 "
-       id="polygon32" />
-    <line
-       x1="355.66"
-       y1="127.11"
-       x2="355.23999"
-       y2="125.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="472.32,233.52 478.2,229.01 478.48,229.39 "
-       id="polygon36" />
-    <line
-       x1="356.79001"
-       y1="130.73"
-       x2="356.42999"
-       y2="129.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line38" />
-    <line
-       x1="355.23999"
-       y1="125.92"
-       x2="354.81"
-       y2="124.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line40" />
-    <line
-       x1="357.13"
-       y1="131.92"
-       x2="356.79001"
-       y2="130.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line42" />
-    <line
-       x1="354.81"
-       y1="124.75"
-       x2="354.35999"
-       y2="123.6"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line44" />
-    <line
-       x1="357.45999"
-       y1="133.10001"
-       x2="357.13"
-       y2="131.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line46" />
-    <line
-       x1="354.35999"
-       y1="123.6"
-       x2="353.89001"
-       y2="122.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line48" />
-    <line
-       x1="353.89001"
-       y1="122.48"
-       x2="353.41"
-       y2="121.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line50" />
-    <line
-       x1="358.04999"
-       y1="135.36"
-       x2="357.76999"
-       y2="134.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line52" />
-    <line
-       x1="353.41"
-       y1="121.41"
-       x2="352.92001"
-       y2="120.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line54" />
-    <line
-       x1="358.32001"
-       y1="136.44"
-       x2="358.04999"
-       y2="135.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line56" />
-    <line
-       x1="358.57999"
-       y1="137.47"
-       x2="358.32001"
-       y2="136.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line58" />
-    <line
-       x1="352.41"
-       y1="119.4"
-       x2="351.88"
-       y2="118.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line60" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="478.64,230.7 472.48,234.82 472.28,235.17 "
-       id="polygon62" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="477.02,228.52 470.86,232.64 471.27,232.67 "
-       id="polygon64" />
-    <line
-       x1="385.07999"
-       y1="127.84"
-       x2="384.67999"
-       y2="126.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line66" />
-    <line
-       x1="385.45999"
-       y1="129.05"
-       x2="385.07999"
-       y2="127.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line68" />
-    <line
-       x1="384.67999"
-       y1="126.64"
-       x2="384.26999"
-       y2="125.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line70" />
-    <line
-       x1="384.26999"
-       y1="125.45"
-       x2="383.84"
-       y2="124.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line72" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="478.66,229.83 472.5,233.96 472.55,234.41 "
-       id="polygon74" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="477.83,228.72 471.67,232.84 472.04,233.13 "
-       id="polygon76" />
-    <line
-       x1="386.16"
-       y1="131.45"
-       x2="385.82001"
-       y2="130.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line78" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="478.48,229.39 472.32,233.52 472.5,233.96 "
-       id="polygon80" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="478.2,229.01 472.04,233.13 472.32,233.52 "
-       id="polygon82" />
-    <line
-       x1="358.82001"
-       y1="138.45"
-       x2="358.57999"
-       y2="137.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line84" />
-    <line
-       x1="351.88"
-       y1="118.48"
-       x2="351.34"
-       y2="117.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line86" />
-    <line
-       x1="386.48999"
-       y1="132.63"
-       x2="386.16"
-       y2="131.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line88" />
-    <line
-       x1="383.39001"
-       y1="123.12"
-       x2="382.92999"
-       y2="122"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line90" />
-    <line
-       x1="386.79999"
-       y1="133.77"
-       x2="386.48999"
-       y2="132.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line92" />
-    <line
-       x1="382.92999"
-       y1="122"
-       x2="382.45001"
-       y2="120.93"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line94" />
-    <line
-       x1="351.34"
-       y1="117.63"
-       x2="350.79999"
-       y2="116.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line96" />
-    <line
-       x1="387.09"
-       y1="134.89"
-       x2="386.79999"
-       y2="133.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line98" />
-    <line
-       x1="382.45001"
-       y1="120.93"
-       x2="381.95999"
-       y2="119.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line100" />
-    <line
-       x1="387.37"
-       y1="135.97"
-       x2="387.09"
-       y2="134.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line102" />
-    <line
-       x1="359.26001"
-       y1="140.22"
-       x2="359.04999"
-       y2="139.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line104" />
-    <line
-       x1="381.95999"
-       y1="119.89"
-       x2="381.45001"
-       y2="118.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line106" />
-    <line
-       x1="350.79999"
-       y1="116.84"
-       x2="350.23999"
-       y2="116.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line108" />
-    <line
-       x1="387.63"
-       y1="137"
-       x2="387.37"
-       y2="135.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line110" />
-    <line
-       x1="381.45001"
-       y1="118.91"
-       x2="380.92999"
-       y2="118"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line112" />
-    <line
-       x1="414.14001"
-       y1="127.37"
-       x2="413.75"
-       y2="126.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line114" />
-    <line
-       x1="414.51999"
-       y1="128.57001"
-       x2="414.14001"
-       y2="127.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line116" />
-    <line
-       x1="413.75"
-       y1="126.16"
-       x2="413.32999"
-       y2="124.96"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line118" />
-    <line
-       x1="359.45999"
-       y1="141"
-       x2="359.26001"
-       y2="140.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line120" />
-    <line
-       x1="414.88"
-       y1="129.78"
-       x2="414.51999"
-       y2="128.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line122" />
-    <line
-       x1="413.32999"
-       y1="124.96"
-       x2="412.89999"
-       y2="123.79"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line124" />
-    <line
-       x1="415.23001"
-       y1="130.97"
-       x2="414.88"
-       y2="129.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line126" />
-    <line
-       x1="412.89999"
-       y1="123.79"
-       x2="412.45999"
-       y2="122.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line128" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="472.29,234.34 472.55,234.41 472.48,234.82 "
-       id="polygon130" />
-    <line
-       x1="460.70999"
-       y1="242.8"
-       x2="468.56"
-       y2="237.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line132" />
-    <line
-       x1="387.88"
-       y1="137.98"
-       x2="387.63"
-       y2="137"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line134" />
-    <line
-       x1="415.56"
-       y1="132.14999"
-       x2="415.23001"
-       y2="130.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line136" />
-    <line
-       x1="412.45999"
-       y1="122.64"
-       x2="411.98999"
-       y2="121.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line138" />
-    <line
-       x1="359.64001"
-       y1="141.71001"
-       x2="359.45999"
-       y2="141"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line140" />
-    <line
-       x1="349.67001"
-       y1="115.5"
-       x2="349.09"
-       y2="114.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line142" />
-    <line
-       x1="411.98999"
-       y1="121.52"
-       x2="411.51999"
-       y2="120.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line144" />
-    <line
-       x1="388.10999"
-       y1="138.89"
-       x2="387.88"
-       y2="137.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line146" />
-    <line
-       x1="380.39001"
-       y1="117.14"
-       x2="379.85001"
-       y2="116.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line148" />
-    <line
-       x1="416.16"
-       y1="134.42"
-       x2="415.87"
-       y2="133.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line150" />
-    <line
-       x1="411.51999"
-       y1="120.45"
-       x2="411.03"
-       y2="119.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line152" />
-    <line
-       x1="359.82001"
-       y1="142.35001"
-       x2="359.64001"
-       y2="141.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line154" />
-    <line
-       x1="416.45001"
-       y1="135.5"
-       x2="416.16"
-       y2="134.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line156" />
-    <line
-       x1="388.32001"
-       y1="139.75"
-       x2="388.10999"
-       y2="138.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line158" />
-    <line
-       x1="379.85001"
-       y1="116.36"
-       x2="379.29001"
-       y2="115.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line160" />
-    <line
-       x1="416.70999"
-       y1="136.53"
-       x2="416.45001"
-       y2="135.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line162" />
-    <line
-       x1="410.51999"
-       y1="118.43"
-       x2="410"
-       y2="117.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line164" />
-    <line
-       x1="466.76001"
-       y1="141.11"
-       x2="466.75"
-       y2="140.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line166" />
-    <line
-       x1="466.73999"
-       y1="141.98"
-       x2="466.76001"
-       y2="141.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line168" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="464,237.13 469.98,233.32 470.18,232.98 "
-       id="polygon170" />
-    <line
-       x1="466.70999"
-       y1="139.37"
-       x2="466.64001"
-       y2="138.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line172" />
-    <line
-       x1="466.70001"
-       y1="142.84"
-       x2="466.73999"
-       y2="141.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line174" />
-    <line
-       x1="388.53"
-       y1="140.53999"
-       x2="388.32001"
-       y2="139.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line176" />
-    <line
-       x1="466.64001"
-       y1="138.50999"
-       x2="466.54999"
-       y2="137.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line178" />
-    <line
-       x1="348.51001"
-       y1="114.48"
-       x2="347.92001"
-       y2="114.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line180" />
-    <line
-       x1="379.29001"
-       y1="115.64"
-       x2="378.73001"
-       y2="115.01"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line182" />
-    <line
-       x1="466.54999"
-       y1="137.67"
-       x2="466.41"
-       y2="136.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line184" />
-    <line
-       x1="416.95999"
-       y1="137.5"
-       x2="416.70999"
-       y2="136.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line186" />
-    <line
-       x1="466.41"
-       y1="136.84"
-       x2="466.25"
-       y2="136.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line188" />
-    <line
-       x1="410"
-       y1="117.52"
-       x2="409.47"
-       y2="116.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line190" />
-    <line
-       x1="466.42001"
-       y1="145.35001"
-       x2="466.54001"
-       y2="144.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line192" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="465.08,236.82 470.85,232.64 471.27,232.67 "
-       id="polygon194" />
-    <line
-       x1="466.25"
-       y1="136.03999"
-       x2="466.06"
-       y2="135.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line196" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="465.49,236.99 471.27,232.67 471.67,232.84 "
-       id="polygon198" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="466.38,238.55 472.5,233.96 472.55,234.41 "
-       id="polygon200" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="465.86,237.28 471.67,232.84 472.04,233.13 "
-       id="polygon202" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="466.32,238.11 472.32,233.52 472.5,233.96 "
-       id="polygon204" />
-    <line
-       x1="388.72"
-       y1="141.25"
-       x2="388.53"
-       y2="140.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line206" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="466.14,237.66 472.04,233.13 472.32,233.52 "
-       id="polygon208" />
-    <line
-       x1="436.38"
-       y1="132.38"
-       x2="437.45999"
-       y2="132.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line210" />
-    <line
-       x1="360.14001"
-       y1="143.36"
-       x2="359.98999"
-       y2="142.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line212" />
-    <line
-       x1="417.20001"
-       y1="138.42999"
-       x2="416.95999"
-       y2="137.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line214" />
-    <line
-       x1="409.47"
-       y1="116.66"
-       x2="408.92999"
-       y2="115.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line216" />
-    <line
-       x1="466.14999"
-       y1="146.91"
-       x2="466.29001"
-       y2="146.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line218" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="431.99,139.51 435.32,131.32 435.68,131.19 "
-       id="polygon220" />
-    <line
-       x1="465.84"
-       y1="134.52"
-       x2="465.57999"
-       y2="133.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line222" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="433.7,140.03 437,131.44 437.39,131.71 "
-       id="polygon224" />
-    <line
-       x1="445.64999"
-       y1="135.7"
-       x2="437.79999"
-       y2="132.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line226" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="433.32,139.76 436.56,131.25 437,131.44 "
-       id="polygon228" />
-    <line
-       x1="465.98999"
-       y1="147.64"
-       x2="466.14999"
-       y2="146.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line230" />
-    <line
-       x1="465.57999"
-       y1="133.82001"
-       x2="465.29001"
-       y2="133.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line232" />
-    <line
-       x1="378.16"
-       y1="114.46"
-       x2="377.57999"
-       y2="114"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line234" />
-    <line
-       x1="417.42001"
-       y1="139.28"
-       x2="417.20001"
-       y2="138.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line236" />
-    <line
-       x1="347.32999"
-       y1="113.83"
-       x2="346.73001"
-       y2="113.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line238" />
-    <line
-       x1="465.82001"
-       y1="148.34"
-       x2="465.98999"
-       y2="147.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line240" />
-    <line
-       x1="326.14999"
-       y1="129.63"
-       x2="310.60999"
-       y2="129.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line242" />
-    <line
-       x1="464.95999"
-       y1="132.53"
-       x2="464.60999"
-       y2="131.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line244" />
-    <line
-       x1="389.07001"
-       y1="142.42999"
-       x2="388.89999"
-       y2="141.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line246" />
-    <line
-       x1="377.57999"
-       y1="114"
-       x2="377"
-       y2="113.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line248" />
-    <line
-       x1="408.38"
-       y1="115.16"
-       x2="407.82001"
-       y2="114.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line250" />
-    <line
-       x1="465.45001"
-       y1="149.60001"
-       x2="465.64001"
-       y2="148.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line252" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="472.48,234.82 466.3,238.97 466.1,239.32 "
-       id="polygon254" />
-    <line
-       x1="310.60999"
-       y1="129.61"
-       x2="309.44"
-       y2="131.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line256" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="312.9,136.87 310.2,128.52 310.66,128.42 "
-       id="polygon258" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="470.85,232.64 464.67,236.78 465.08,236.82 "
-       id="polygon260" />
-    <line
-       x1="417.82001"
-       y1="140.78"
-       x2="417.63"
-       y2="140.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line262" />
-    <line
-       x1="445.79001"
-       y1="136.35001"
-       x2="445.75"
-       y2="136.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line264" />
-    <line
-       x1="407.82001"
-       y1="114.53"
-       x2="407.26001"
-       y2="113.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line266" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="472.55,234.41 466.38,238.55 466.3,238.97 "
-       id="polygon268" />
-    <line
-       x1="464.23001"
-       y1="131.42999"
-       x2="463.81"
-       y2="130.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line270" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="437.67,132.04 433.99,140.36 434.15,140.71 "
-       id="polygon272" />
-    <line
-       x1="437.79999"
-       y1="132.89"
-       x2="437.79999"
-       y2="132.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line274" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="472.5,233.96 466.32,238.11 466.38,238.55 "
-       id="polygon276" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="471.67,232.84 465.49,236.99 465.86,237.28 "
-       id="polygon278" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="472.32,233.52 466.14,237.66 466.32,238.11 "
-       id="polygon280" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="472.04,233.13 465.86,237.28 466.14,237.66 "
-       id="polygon282" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="437.39,131.71 433.7,140.03 433.99,140.36 "
-       id="polygon284" />
-    <line
-       x1="346.14001"
-       y1="113.55"
-       x2="345.54001"
-       y2="113.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line286" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="437,131.44 433.32,139.76 433.7,140.03 "
-       id="polygon288" />
-    <line
-       x1="360.57999"
-       y1="144.2"
-       x2="360.44"
-       y2="144.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line290" />
-    <line
-       x1="465.06"
-       y1="150.67"
-       x2="465.25"
-       y2="150.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line292" />
-    <line
-       x1="456.67001"
-       y1="242.78999"
-       x2="454.64999"
-       y2="242.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line294" />
-    <line
-       x1="327.25"
-       y1="130.38"
-       x2="326.98001"
-       y2="130.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line296" />
-    <line
-       x1="454.64999"
-       y1="242.64"
-       x2="452.64999"
-       y2="242.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line298" />
-    <line
-       x1="376.41"
-       y1="113.34"
-       x2="375.82001"
-       y2="113.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line300" />
-    <line
-       x1="463.37"
-       y1="130.53999"
-       x2="462.89999"
-       y2="130.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line302" />
-    <line
-       x1="389.39001"
-       y1="143.25999"
-       x2="389.23999"
-       y2="142.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line304" />
-    <line
-       x1="452.64999"
-       y1="242.41"
-       x2="450.66"
-       y2="242.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line306" />
-    <line
-       x1="345.54001"
-       y1="113.55"
-       x2="344.95001"
-       y2="113.65"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line308" />
-    <line
-       x1="450.66"
-       y1="242.10001"
-       x2="448.70001"
-       y2="241.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line310" />
-    <line
-       x1="418.19"
-       y1="141.96001"
-       x2="418.01001"
-       y2="141.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line312" />
-    <line
-       x1="464.67999"
-       y1="151.53"
-       x2="464.87"
-       y2="151.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line314" />
-    <line
-       x1="448.70001"
-       y1="241.71001"
-       x2="446.76999"
-       y2="241.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line316" />
-    <line
-       x1="375.82001"
-       y1="113.16"
-       x2="375.23001"
-       y2="113.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line318" />
-    <line
-       x1="446.76999"
-       y1="241.24001"
-       x2="444.87"
-       y2="240.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line320" />
-    <line
-       x1="484.38"
-       y1="146.95"
-       x2="484.37"
-       y2="146.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line322" />
-    <line
-       x1="484.35999"
-       y1="147.82001"
-       x2="484.38"
-       y2="146.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line324" />
-    <line
-       x1="484.32999"
-       y1="145.21001"
-       x2="484.26001"
-       y2="144.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line326" />
-    <line
-       x1="484.32001"
-       y1="148.69"
-       x2="484.35999"
-       y2="147.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line328" />
-    <line
-       x1="484.26001"
-       y1="144.35001"
-       x2="484.16"
-       y2="143.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line330" />
-    <line
-       x1="446.32001"
-       y1="137.17"
-       x2="446.23999"
-       y2="137.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line332" />
-    <line
-       x1="418.35999"
-       y1="142.42"
-       x2="418.19"
-       y2="141.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line334" />
-    <line
-       x1="484.16"
-       y1="143.50999"
-       x2="484.04001"
-       y2="142.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line336" />
-    <line
-       x1="328.32001"
-       y1="130.62"
-       x2="328.04999"
-       y2="130.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line338" />
-    <line
-       x1="455.73999"
-       y1="235.78"
-       x2="457.73001"
-       y2="235.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line340" />
-    <line
-       x1="453.73001"
-       y1="236.05"
-       x2="455.73999"
-       y2="235.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line342" />
-    <line
-       x1="451.70999"
-       y1="236.23"
-       x2="453.73001"
-       y2="236.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line344" />
-    <line
-       x1="484.16"
-       y1="150.38"
-       x2="484.25"
-       y2="149.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line346" />
-    <line
-       x1="444.87"
-       y1="240.7"
-       x2="443.01001"
-       y2="240.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line348" />
-    <line
-       x1="449.67999"
-       y1="236.3"
-       x2="451.70999"
-       y2="236.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line350" />
-    <line
-       x1="447.64001"
-       y1="236.27"
-       x2="449.67999"
-       y2="236.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line352" />
-    <line
-       x1="484.04001"
-       y1="142.67999"
-       x2="483.88"
-       y2="141.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line354" />
-    <line
-       x1="445.62"
-       y1="236.14"
-       x2="447.64001"
-       y2="236.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line356" />
-    <line
-       x1="483.88"
-       y1="141.88"
-       x2="483.67999"
-       y2="141.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line358" />
-    <line
-       x1="344.35001"
-       y1="113.84"
-       x2="343.76999"
-       y2="114.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line360" />
-    <line
-       x1="441.59"
-       y1="235.58"
-       x2="443.60001"
-       y2="235.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line362" />
-    <line
-       x1="443.01001"
-       y1="240.10001"
-       x2="441.20001"
-       y2="239.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line364" />
-    <line
-       x1="439.60999"
-       y1="235.16"
-       x2="441.59"
-       y2="235.58"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line366" />
-    <line
-       x1="483.76999"
-       y1="152.77"
-       x2="483.92001"
-       y2="152"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line368" />
-    <line
-       x1="437.66"
-       y1="234.64999"
-       x2="439.60999"
-       y2="235.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line370" />
-    <line
-       x1="483.45999"
-       y1="140.36"
-       x2="483.20001"
-       y2="139.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line372" />
-    <line
-       x1="464.14999"
-       y1="152.38"
-       x2="464.32001"
-       y2="152.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line374" />
-    <line
-       x1="374.64001"
-       y1="113.06"
-       x2="374.04999"
-       y2="113.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line376" />
-    <line
-       x1="435.73001"
-       y1="234.05"
-       x2="437.66"
-       y2="234.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line378" />
-    <line
-       x1="483.60999"
-       y1="153.5"
-       x2="483.76999"
-       y2="152.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line380" />
-    <line
-       x1="329.10999"
-       y1="130.45"
-       x2="328.84"
-       y2="130.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line382" />
-    <line
-       x1="483.20001"
-       y1="139.64999"
-       x2="482.91"
-       y2="138.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line384" />
-    <line
-       x1="433.84"
-       y1="233.38"
-       x2="435.73001"
-       y2="234.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line386" />
-    <line
-       x1="483.45001"
-       y1="154.2"
-       x2="483.60999"
-       y2="153.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line388" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="430.48,149.41 434.15,140.71 434.18,141.05 "
-       id="polygon390" />
-    <line
-       x1="432"
-       y1="232.62"
-       x2="433.84"
-       y2="233.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="428.29,147.87 431.63,139.64 431.99,139.51 "
-       id="polygon394" />
-    <line
-       x1="459.62"
-       y1="129.3"
-       x2="459.01001"
-       y2="129.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line396" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="457.79,241.3 463.8,237.47 464,237.13 "
-       id="polygon398" />
-    <line
-       x1="430.20001"
-       y1="231.78999"
-       x2="432"
-       y2="232.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line400" />
-    <line
-       x1="482.59"
-       y1="138.36"
-       x2="482.23999"
-       y2="137.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line402" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="430.3,148.72 433.7,140.03 433.99,140.36 "
-       id="polygon404" />
-    <line
-       x1="343.17999"
-       y1="114.5"
-       x2="342.60999"
-       y2="114.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line406" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="428.72,147.85 431.99,139.51 432.42,139.49 "
-       id="polygon408" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="430.01,148.39 433.32,139.76 433.7,140.03 "
-       id="polygon410" />
-    <line
-       x1="463.85999"
-       y1="152.63"
-       x2="464"
-       y2="152.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line412" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="429.18,147.93 432.42,139.49 432.88,139.57 "
-       id="polygon414" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="429.63,148.12 432.88,139.57 433.32,139.76 "
-       id="polygon416" />
-    <line
-       x1="447.32999"
-       y1="136.66"
-       x2="447.17001"
-       y2="136.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line418" />
-    <line
-       x1="437.70999"
-       y1="237.92999"
-       x2="436.06"
-       y2="237.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line420" />
-    <line
-       x1="483.07999"
-       y1="155.46001"
-       x2="483.26999"
-       y2="154.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line422" />
-    <line
-       x1="428.44"
-       y1="230.88"
-       x2="430.20001"
-       y2="231.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line424" />
-    <line
-       x1="482.23999"
-       y1="137.78999"
-       x2="481.85999"
-       y2="137.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line426" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="458.88,240.99 464.67,236.78 465.08,236.82 "
-       id="polygon428" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="460.09,243.15 466.38,238.55 466.3,238.97 "
-       id="polygon430" />
-    <line
-       x1="361.25"
-       y1="143.71001"
-       x2="361.12"
-       y2="144"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line432" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="459.28,241.16 465.08,236.82 465.49,236.99 "
-       id="polygon434" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="460.17,242.73 466.32,238.11 466.38,238.55 "
-       id="polygon436" />
-    <line
-       x1="373.45999"
-       y1="113.36"
-       x2="372.89001"
-       y2="113.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line438" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="459.65,241.46 465.49,236.99 465.86,237.28 "
-       id="polygon440" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="460.11,242.28 466.14,237.66 466.32,238.11 "
-       id="polygon442" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="459.93,241.84 465.86,237.28 466.14,237.66 "
-       id="polygon444" />
-    <line
-       x1="426.75"
-       y1="229.92"
-       x2="428.44"
-       y2="230.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line446" />
-    <line
-       x1="436.06"
-       y1="237.11"
-       x2="434.45999"
-       y2="236.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line448" />
-    <line
-       x1="458.39001"
-       y1="129.5"
-       x2="457.76999"
-       y2="129.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line450" />
-    <line
-       x1="330.45999"
-       y1="129.53"
-       x2="330.17999"
-       y2="129.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line452" />
-    <line
-       x1="442.5"
-       y1="120"
-       x2="442.12"
-       y2="119.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line454" />
-    <line
-       x1="442.12"
-       y1="119.5"
-       x2="441.72"
-       y2="119.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line456" />
-    <line
-       x1="443.63"
-       y1="121.5"
-       x2="443.26001"
-       y2="121"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line458" />
-    <line
-       x1="425.10999"
-       y1="228.89"
-       x2="426.75"
-       y2="229.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line460" />
-    <line
-       x1="481.44"
-       y1="136.78999"
-       x2="481"
-       y2="136.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line462" />
-    <line
-       x1="482.70001"
-       y1="156.53999"
-       x2="482.89001"
-       y2="156.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line464" />
-    <line
-       x1="441.32999"
-       y1="118.54"
-       x2="440.92999"
-       y2="118.07"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line466" />
-    <line
-       x1="457.76999"
-       y1="129.7"
-       x2="457.14001"
-       y2="129.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line468" />
-    <line
-       x1="444.34"
-       y1="122.5"
-       x2="443.98999"
-       y2="122"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line470" />
-    <line
-       x1="448.29999"
-       y1="135.77"
-       x2="448.07999"
-       y2="135.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line472" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="316.02,145.47 313.36,136.87 313.78,136.98 "
-       id="polygon474" />
-    <line
-       x1="440.51999"
-       y1="117.61"
-       x2="440.10999"
-       y2="117.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line476" />
-    <line
-       x1="372.89001"
-       y1="113.64"
-       x2="372.31"
-       y2="114.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line478" />
-    <line
-       x1="434.45999"
-       y1="236.25"
-       x2="432.92999"
-       y2="235.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line480" />
-    <line
-       x1="445.04001"
-       y1="123.46"
-       x2="444.70001"
-       y2="122.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line482" />
-    <line
-       x1="342.04999"
-       y1="115.53"
-       x2="341.48999"
-       y2="116.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line484" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="315.6,145.36 312.9,136.87 313.36,136.87 "
-       id="polygon486" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="431.38,139.87 427.68,148.23 427.94,148 "
-       id="polygon488" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="434.15,140.71 430.46,149.07 430.48,149.41 "
-       id="polygon490" />
-    <line
-       x1="390.26001"
-       y1="143.53"
-       x2="390.10999"
-       y2="143.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line492" />
-    <line
-       x1="445.72"
-       y1="124.39"
-       x2="445.38"
-       y2="123.93"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line494" />
-    <line
-       x1="331.29999"
-       y1="128.63"
-       x2="331.01999"
-       y2="128.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="431.63,139.64 427.94,148 428.29,147.87 "
-       id="polygon498" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="433.99,140.36 430.3,148.72 430.46,149.07 "
-       id="polygon500" />
-    <line
-       x1="439.26999"
-       y1="116.33"
-       x2="438.84"
-       y2="115.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line502" />
-    <line
-       x1="403.19"
-       y1="112.68"
-       x2="402.60999"
-       y2="112.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line504" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="431.99,139.51 428.29,147.87 428.72,147.85 "
-       id="polygon506" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="433.7,140.03 430.01,148.39 430.3,148.72 "
-       id="polygon508" />
-    <line
-       x1="456.5"
-       y1="130.25999"
-       x2="455.87"
-       y2="130.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line510" />
-    <line
-       x1="480.54001"
-       y1="136.00999"
-       x2="480.04001"
-       y2="135.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line512" />
-    <line
-       x1="361.54001"
-       y1="142.86"
-       x2="361.39001"
-       y2="143.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line514" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="432.42,139.49 428.72,147.85 429.18,147.93 "
-       id="polygon516" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="433.32,139.76 429.63,148.12 430.01,148.39 "
-       id="polygon518" />
-    <line
-       x1="449.54999"
-       y1="134.59"
-       x2="449.26999"
-       y2="134.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line520" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="432.88,139.57 429.18,147.93 429.63,148.12 "
-       id="polygon522" />
-    <line
-       x1="422.01999"
-       y1="226.7"
-       x2="423.54001"
-       y2="227.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line524" />
-    <line
-       x1="432.92999"
-       y1="235.35001"
-       x2="431.47"
-       y2="234.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line526" />
-    <line
-       x1="446.37"
-       y1="125.26"
-       x2="446.04999"
-       y2="124.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line528" />
-    <line
-       x1="482.32001"
-       y1="157.39"
-       x2="482.5"
-       y2="156.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line530" />
-    <line
-       x1="341.04999"
-       y1="116.47"
-       x2="340.62"
-       y2="116.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line532" />
-    <line
-       x1="438.41"
-       y1="115.58"
-       x2="437.98001"
-       y2="115.24"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line534" />
-    <line
-       x1="455.47"
-       y1="130.75"
-       x2="455.07999"
-       y2="130.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line536" />
-    <line
-       x1="450.42999"
-       y1="133.82001"
-       x2="450.13"
-       y2="134.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line538" />
-    <line
-       x1="340.62"
-       y1="116.8"
-       x2="340.17999"
-       y2="117.15"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line540" />
-    <line
-       x1="454.29999"
-       y1="131.23"
-       x2="453.92001"
-       y2="131.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line542" />
-    <line
-       x1="332.17999"
-       y1="127.5"
-       x2="331.88"
-       y2="127.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line544" />
-    <line
-       x1="502.04001"
-       y1="152.81"
-       x2="502.04001"
-       y2="151.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line546" />
-    <line
-       x1="453.54001"
-       y1="131.63"
-       x2="453.17001"
-       y2="131.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line548" />
-    <line
-       x1="502.04001"
-       y1="151.92999"
-       x2="502"
-       y2="151.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line550" />
-    <line
-       x1="451.73001"
-       y1="132.78999"
-       x2="451.39001"
-       y2="133.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line552" />
-    <line
-       x1="502.03"
-       y1="153.67999"
-       x2="502.04001"
-       y2="152.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line554" />
-    <line
-       x1="452.07999"
-       y1="132.53999"
-       x2="451.73001"
-       y2="132.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line556" />
-    <line
-       x1="437.54001"
-       y1="114.92"
-       x2="437.10001"
-       y2="114.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line558" />
-    <line
-       x1="502"
-       y1="151.07001"
-       x2="501.92999"
-       y2="150.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line560" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="464.67,236.78 458.46,240.96 458.88,240.99 "
-       id="polygon562" />
-    <line
-       x1="420.59"
-       y1="225.53"
-       x2="422.01999"
-       y2="226.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line564" />
-    <line
-       x1="402.60999"
-       y1="112.87"
-       x2="402.04001"
-       y2="113.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line566" />
-    <line
-       x1="501.98001"
-       y1="154.55"
-       x2="502.03"
-       y2="153.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line568" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="466.38,238.55 460.17,242.73 460.09,243.15 "
-       id="polygon570" />
-    <line
-       x1="339.76001"
-       y1="117.53"
-       x2="339.34"
-       y2="117.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line572" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="465.08,236.82 458.88,240.99 459.28,241.16 "
-       id="polygon574" />
-    <line
-       x1="371.73999"
-       y1="114.49"
-       x2="371.17999"
-       y2="115.04"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line576" />
-    <line
-       x1="447.32001"
-       y1="126.41"
-       x2="447"
-       y2="126.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line578" />
-    <line
-       x1="431.47"
-       y1="234.42"
-       x2="430.09"
-       y2="233.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line580" />
-    <line
-       x1="501.84"
-       y1="149.36"
-       x2="501.70999"
-       y2="148.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line582" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="466.32,238.11 460.11,242.28 460.17,242.73 "
-       id="polygon584" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="465.49,236.99 459.28,241.16 459.65,241.46 "
-       id="polygon586" />
-    <line
-       x1="479.53"
-       y1="135.47"
-       x2="478.98999"
-       y2="135.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line588" />
-    <line
-       x1="332.79001"
-       y1="126.64"
-       x2="332.48001"
-       y2="127.07"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line590" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="466.14,237.66 459.93,241.84 460.11,242.28 "
-       id="polygon592" />
-    <line
-       x1="501.82999"
-       y1="156.25"
-       x2="501.91"
-       y2="155.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line594" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="465.86,237.28 459.65,241.46 459.93,241.84 "
-       id="polygon596" />
-    <line
-       x1="419.28"
-       y1="143.25"
-       x2="419.13"
-       y2="143.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line598" />
-    <line
-       x1="501.70999"
-       y1="148.53999"
-       x2="501.54999"
-       y2="147.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line600" />
-    <line
-       x1="436.66"
-       y1="114.37"
-       x2="436.20999"
-       y2="114.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line602" />
-    <line
-       x1="501.54999"
-       y1="147.73"
-       x2="501.35999"
-       y2="146.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line604" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="311.43,137.79 313.66,146.28 313.89,145.95 "
-       id="polygon606" />
-    <line
-       x1="333.41"
-       y1="125.71"
-       x2="333.10001"
-       y2="126.18"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line608" />
-    <line
-       x1="419.22"
-       y1="224.33"
-       x2="420.59"
-       y2="225.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line610" />
-    <line
-       x1="338.51001"
-       y1="118.78"
-       x2="338.10999"
-       y2="119.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line612" />
-    <line
-       x1="390.54999"
-       y1="142.86"
-       x2="390.39999"
-       y2="143.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line614" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="312.9,136.87 315.14,145.36 315.6,145.36 "
-       id="polygon616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="312.43,136.97 314.67,145.46 315.14,145.36 "
-       id="polygon618" />
-    <line
-       x1="501.35999"
-       y1="146.95"
-       x2="501.13"
-       y2="146.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line620" />
-    <line
-       x1="463.48001"
-       y1="151.91"
-       x2="463.48001"
-       y2="152.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line622" />
-    <line
-       x1="337.70999"
-       y1="119.7"
-       x2="337.32001"
-       y2="120.18"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line624" />
-    <line
-       x1="501.45001"
-       y1="158.63"
-       x2="501.59"
-       y2="157.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line626" />
-    <line
-       x1="334.39999"
-       y1="124.24"
-       x2="334.07001"
-       y2="124.74"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line628" />
-    <line
-       x1="337.32001"
-       y1="120.18"
-       x2="336.92999"
-       y2="120.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line630" />
-    <line
-       x1="430.09"
-       y1="233.47"
-       x2="428.76999"
-       y2="232.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line632" />
-    <line
-       x1="448.22"
-       y1="127.36"
-       x2="447.92001"
-       y2="127.07"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line634" />
-    <line
-       x1="334.73999"
-       y1="123.73"
-       x2="334.39999"
-       y2="124.24"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line636" />
-    <line
-       x1="336.54999"
-       y1="121.18"
-       x2="336.17999"
-       y2="121.68"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line638" />
-    <line
-       x1="335.45001"
-       y1="122.71"
-       x2="335.09"
-       y2="123.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line640" />
-    <line
-       x1="478.42999"
-       y1="135.17999"
-       x2="477.85999"
-       y2="135.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line642" />
-    <line
-       x1="417.92999"
-       y1="223.10001"
-       x2="419.22"
-       y2="224.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line644" />
-    <line
-       x1="501.29001"
-       y1="159.37"
-       x2="501.45001"
-       y2="158.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line646" />
-    <line
-       x1="435.31"
-       y1="113.75"
-       x2="434.85999"
-       y2="113.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line648" />
-    <line
-       x1="500.88"
-       y1="145.5"
-       x2="500.59"
-       y2="144.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line650" />
-    <line
-       x1="362.01999"
-       y1="140.94"
-       x2="361.85999"
-       y2="141.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line652" />
-    <line
-       x1="370.63"
-       y1="115.68"
-       x2="370.09"
-       y2="116.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line654" />
-    <line
-       x1="401.47"
-       y1="113.54"
-       x2="400.91"
-       y2="114"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line656" />
-    <line
-       x1="477.85999"
-       y1="135.13"
-       x2="477.26001"
-       y2="135.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line658" />
-    <line
-       x1="481.64999"
-       y1="158.39999"
-       x2="481.79999"
-       y2="158.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line660" />
-    <line
-       x1="500.59"
-       y1="144.84"
-       x2="500.26999"
-       y2="144.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line662" />
-    <line
-       x1="463.54999"
-       y1="127.11"
-       x2="459.64999"
-       y2="127.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line664" />
-    <line
-       x1="428.76999"
-       y1="232.5"
-       x2="427.54001"
-       y2="231.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line666" />
-    <line
-       x1="434.39999"
-       y1="113.5"
-       x2="433.95001"
-       y2="113.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line668" />
-    <line
-       x1="416.72"
-       y1="221.85001"
-       x2="417.92999"
-       y2="223.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line670" />
-    <line
-       x1="419.57999"
-       y1="142.77"
-       x2="419.42999"
-       y2="143.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line672" />
-    <line
-       x1="500.94"
-       y1="160.72"
-       x2="501.12"
-       y2="160.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line674" />
-    <line
-       x1="370.09"
-       y1="116.41"
-       x2="369.57001"
-       y2="117.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line676" />
-    <line
-       x1="362.20001"
-       y1="140.14"
-       x2="362.01999"
-       y2="140.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line678" />
-    <line
-       x1="500.76001"
-       y1="161.33"
-       x2="500.94"
-       y2="160.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line680" />
-    <line
-       x1="463.64999"
-       y1="150.78"
-       x2="463.57001"
-       y2="151.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line682" />
-    <line
-       x1="476.66"
-       y1="135.21001"
-       x2="476.04001"
-       y2="135.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line684" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="459.49,241.64 459.28,241.16 459.65,241.46 "
-       id="polygon686" />
-    <line
-       x1="433.5"
-       y1="113.38"
-       x2="433.04001"
-       y2="113.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line688" />
-    <line
-       x1="415.59"
-       y1="220.59"
-       x2="416.72"
-       y2="221.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line690" />
-    <line
-       x1="369.57001"
-       y1="117.2"
-       x2="369.04999"
-       y2="118.07"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line692" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="426.77,157.81 430.46,149.07 430.48,149.41 "
-       id="polygon694" />
-    <line
-       x1="427.54001"
-       y1="231.53"
-       x2="426.38"
-       y2="230.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line696" />
-    <line
-       x1="362.39001"
-       y1="139.27"
-       x2="362.20001"
-       y2="140.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line698" />
-    <line
-       x1="499.53"
-       y1="143.11"
-       x2="499.12"
-       y2="142.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="424.23,156.4 427.68,148.23 427.94,148 "
-       id="polygon702" />
-    <line
-       x1="391.01999"
-       y1="141.19"
-       x2="390.85999"
-       y2="141.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line704" />
-    <line
-       x1="400.35001"
-       y1="114.56"
-       x2="399.79999"
-       y2="115.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line706" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="426.75,157.46 430.3,148.72 430.46,149.07 "
-       id="polygon708" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="424.58,156.27 427.94,148 428.29,147.88 "
-       id="polygon710" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="426.59,157.12 430.01,148.39 430.3,148.72 "
-       id="polygon712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="425.01,156.25 428.29,147.88 428.72,147.85 "
-       id="polygon714" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="426.3,156.79 429.63,148.12 430.01,148.39 "
-       id="polygon716" />
-    <line
-       x1="369.04999"
-       y1="118.07"
-       x2="368.54999"
-       y2="119"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line718" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="425.47,156.33 428.72,147.85 429.18,147.94 "
-       id="polygon720" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="425.92,156.52 429.18,147.94 429.63,148.12 "
-       id="polygon722" />
-    <line
-       x1="500.38"
-       y1="162.41"
-       x2="500.57001"
-       y2="161.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line724" />
-    <line
-       x1="362.60001"
-       y1="138.34"
-       x2="362.39001"
-       y2="139.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line726" />
-    <line
-       x1="475.42001"
-       y1="135.53999"
-       x2="474.79001"
-       y2="135.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line728" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="460.02,136.14 464.94,127.22 465,127.55 "
-       id="polygon730" />
-    <line
-       x1="414.54001"
-       y1="219.31"
-       x2="415.59"
-       y2="220.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line732" />
-    <line
-       x1="432.13"
-       y1="113.44"
-       x2="431.67999"
-       y2="113.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line734" />
-    <line
-       x1="391.20001"
-       y1="140.47"
-       x2="391.01999"
-       y2="141.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line736" />
-    <line
-       x1="399.79999"
-       y1="115.2"
-       x2="399.26999"
-       y2="115.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line738" />
-    <line
-       x1="426.38"
-       y1="230.53999"
-       x2="425.29999"
-       y2="229.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line740" />
-    <line
-       x1="498.67999"
-       y1="142.22"
-       x2="498.22"
-       y2="141.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line742" />
-    <line
-       x1="297.17999"
-       y1="151.46001"
-       x2="309.44"
-       y2="131.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line744" />
-    <line
-       x1="474.79001"
-       y1="135.78999"
-       x2="474.14999"
-       y2="136.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line746" />
-    <line
-       x1="368.54999"
-       y1="119"
-       x2="368.06"
-       y2="119.99"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line748" />
-    <line
-       x1="464.10001"
-       y1="149.22"
-       x2="463.92001"
-       y2="149.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line750" />
-    <line
-       x1="362.82001"
-       y1="137.35001"
-       x2="362.60001"
-       y2="138.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line752" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="459.78,135.47 464.45,126.55 464.75,126.88 "
-       id="polygon754" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="459.09,134.87 463.63,126.07 464.07,126.27 "
-       id="polygon756" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.34,115.5 406.25,106.05 406.66,105.96 "
-       id="polygon758" />
-    <line
-       x1="431.23001"
-       y1="113.64"
-       x2="430.79001"
-       y2="113.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.8,115.51 406.66,105.96 407.13,105.96 "
-       id="polygon762" />
-    <line
-       x1="464.32001"
-       y1="148.63"
-       x2="464.10001"
-       y2="149.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line764" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="405.28,115.61 407.13,105.96 407.6,106.07 "
-       id="polygon766" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="451.55,245.5 457.59,241.65 457.79,241.3 "
-       id="polygon768" />
-    <line
-       x1="368.06"
-       y1="119.99"
-       x2="367.59"
-       y2="121.04"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line770" />
-    <polygon
-       style="opacity:1;fill:#0000e8"
-       points="316.61,146.29 318.85,154.82 318.76,155.17 "
-       id="polygon772" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="318.59,154.21 316.02,145.47 316.34,145.68 "
-       id="polygon774" />
-    <line
-       x1="391.38"
-       y1="139.67"
-       x2="391.20001"
-       y2="140.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line776" />
-    <line
-       x1="363.04999"
-       y1="136.3"
-       x2="362.82001"
-       y2="137.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line778" />
-    <line
-       x1="413.57001"
-       y1="218.03999"
-       x2="414.54001"
-       y2="219.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line780" />
-    <line
-       x1="420.04999"
-       y1="141.36"
-       x2="419.89001"
-       y2="141.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line782" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="315.91,154.81 313.57,146.63 313.66,146.28 "
-       id="polygon784" />
-    <line
-       x1="430.79001"
-       y1="113.8"
-       x2="430.34"
-       y2="113.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line786" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="318.27,154.01 315.61,145.36 316.02,145.47 "
-       id="polygon788" />
-    <line
-       x1="473.51999"
-       y1="136.46001"
-       x2="472.88"
-       y2="136.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line790" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="317.85,153.9 315.14,145.36 315.61,145.36 "
-       id="polygon792" />
-    <line
-       x1="367.59"
-       y1="121.04"
-       x2="367.14001"
-       y2="122.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="316.48,154.21 313.89,145.95 314.24,145.67 "
-       id="polygon796" />
-    <line
-       x1="425.29999"
-       y1="229.56"
-       x2="424.32001"
-       y2="228.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line798" />
-    <line
-       x1="363.29001"
-       y1="135.21001"
-       x2="363.04999"
-       y2="136.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line800" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="452.64,245.2 458.46,240.96 458.88,240.99 "
-       id="polygon802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="316.91,154 314.24,145.67 314.67,145.47 "
-       id="polygon804" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="453.86,247.36 460.17,242.73 460.09,243.15 "
-       id="polygon806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.68,148.23 423.97,156.63 424.23,156.4 "
-       id="polygon808" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="453.05,245.37 458.88,240.99 459.28,241.16 "
-       id="polygon810" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="453.94,246.94 460.11,242.28 460.17,242.73 "
-       id="polygon812" />
-    <line
-       x1="398.75"
-       y1="116.71"
-       x2="398.23999"
-       y2="117.58"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line814" />
-    <line
-       x1="499.82001"
-       y1="163.62"
-       x2="500"
-       y2="163.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line816" />
-    <line
-       x1="391.57999"
-       y1="138.8"
-       x2="391.38"
-       y2="139.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line818" />
-    <line
-       x1="464.84"
-       y1="147.34"
-       x2="464.56"
-       y2="148"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line820" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="453.41,245.66 459.28,241.16 459.65,241.46 "
-       id="polygon822" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="453.88,246.49 459.93,241.84 460.11,242.28 "
-       id="polygon824" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="453.7,246.05 459.65,241.46 459.93,241.84 "
-       id="polygon826" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.94,148 424.23,156.4 424.58,156.27 "
-       id="polygon828" />
-    <line
-       x1="367.14001"
-       y1="122.13"
-       x2="366.70001"
-       y2="123.26"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line830" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="430.3,148.72 426.59,157.12 426.75,157.46 "
-       id="polygon832" />
-    <line
-       x1="363.54999"
-       y1="134.08"
-       x2="363.29001"
-       y2="135.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line834" />
-    <line
-       x1="420.23001"
-       y1="140.72"
-       x2="420.04999"
-       y2="141.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line836" />
-    <line
-       x1="472.25"
-       y1="137.34"
-       x2="471.63"
-       y2="137.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line838" />
-    <line
-       x1="497.20999"
-       y1="141.32001"
-       x2="496.67999"
-       y2="141.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="428.29,147.88 424.58,156.27 425.01,156.25 "
-       id="polygon842" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="430.01,148.39 426.3,156.79 426.59,157.12 "
-       id="polygon844" />
-    <line
-       x1="412.67999"
-       y1="216.77"
-       x2="413.57001"
-       y2="218.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line846" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="428.72,147.85 425.01,156.25 425.47,156.33 "
-       id="polygon848" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="429.63,148.12 425.92,156.52 426.3,156.79 "
-       id="polygon850" />
-    <line
-       x1="429.45001"
-       y1="114.44"
-       x2="429.01999"
-       y2="114.71"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line852" />
-    <line
-       x1="366.70001"
-       y1="123.26"
-       x2="366.28"
-       y2="124.43"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line854" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="429.18,147.94 425.47,156.33 425.92,156.52 "
-       id="polygon856" />
-    <line
-       x1="363.84"
-       y1="132.91"
-       x2="363.54999"
-       y2="134.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line858" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="464.94,127.22 459.96,135.82 460.02,136.14 "
-       id="polygon860" />
-    <line
-       x1="471.63"
-       y1="137.85001"
-       x2="471.01999"
-       y2="138.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line862" />
-    <line
-       x1="398.23999"
-       y1="117.58"
-       x2="397.73999"
-       y2="118.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line864" />
-    <line
-       x1="465.5"
-       y1="145.96001"
-       x2="465.16"
-       y2="146.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line866" />
-    <line
-       x1="366.28"
-       y1="124.43"
-       x2="365.88"
-       y2="125.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line868" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="464.75,126.88 459.78,135.47 459.96,135.82 "
-       id="polygon870" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="462.8,125.96 457.82,134.55 458.22,134.55 "
-       id="polygon872" />
-    <line
-       x1="448.22"
-       y1="127.36"
-       x2="459.64999"
-       y2="127.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line874" />
-    <line
-       x1="364.13"
-       y1="131.72"
-       x2="363.84"
-       y2="132.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line876" />
-    <line
-       x1="471.01999"
-       y1="138.39999"
-       x2="470.41"
-       y2="138.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line878" />
-    <line
-       x1="496.67999"
-       y1="141.14"
-       x2="496.12"
-       y2="141.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line880" />
-    <line
-       x1="364.45001"
-       y1="130.5"
-       x2="364.13"
-       y2="131.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line882" />
-    <line
-       x1="424.32001"
-       y1="228.59"
-       x2="423.41"
-       y2="227.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line884" />
-    <line
-       x1="365.48999"
-       y1="126.83"
-       x2="365.13"
-       y2="128.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line886" />
-    <line
-       x1="364.76999"
-       y1="129.28"
-       x2="364.45001"
-       y2="130.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line888" />
-    <line
-       x1="365.13"
-       y1="128.05"
-       x2="364.76999"
-       y2="129.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="406.25,106.05 403.93,115.59 404.34,115.5 "
-       id="polygon892" />
-    <line
-       x1="466.28"
-       y1="144.52"
-       x2="465.88"
-       y2="145.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line894" />
-    <line
-       x1="469.82001"
-       y1="139.61"
-       x2="469.25"
-       y2="140.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line896" />
-    <line
-       x1="397.73999"
-       y1="118.52"
-       x2="397.26001"
-       y2="119.51"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line898" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="406.66,105.96 404.34,115.5 404.8,115.51 "
-       id="polygon900" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="407.6,106.07 405.28,115.61 405.71,115.8 "
-       id="polygon902" />
-    <line
-       x1="392.01001"
-       y1="136.88"
-       x2="391.79001"
-       y2="137.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line904" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="407.13,105.96 404.8,115.51 405.28,115.61 "
-       id="polygon906" />
-    <line
-       x1="499.5"
-       y1="164.13"
-       x2="499.66"
-       y2="163.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line908" />
-    <line
-       x1="469.25"
-       y1="140.25999"
-       x2="468.70001"
-       y2="140.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line910" />
-    <line
-       x1="467.17001"
-       y1="143.06"
-       x2="466.70999"
-       y2="143.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line912" />
-    <line
-       x1="467.66"
-       y1="142.34"
-       x2="467.17001"
-       y2="143.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line914" />
-    <line
-       x1="468.17001"
-       y1="141.63"
-       x2="467.66"
-       y2="142.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line916" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="313.57,146.63 315.82,155.16 315.91,154.81 "
-       id="polygon918" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="316.02,145.47 318.27,154.01 318.59,154.21 "
-       id="polygon920" />
-    <line
-       x1="481.17999"
-       y1="157.46001"
-       x2="481.14999"
-       y2="157.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line922" />
-    <line
-       x1="397.26001"
-       y1="119.51"
-       x2="396.79001"
-       y2="120.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line924" />
-    <line
-       x1="428.48001"
-       y1="115.43"
-       x2="427.95999"
-       y2="116.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line926" />
-    <line
-       x1="420.60001"
-       y1="139.2"
-       x2="420.41"
-       y2="140"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line928" />
-    <line
-       x1="392.23999"
-       y1="135.83"
-       x2="392.01001"
-       y2="136.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line930" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="313.66,146.28 315.91,154.81 316.14,154.48 "
-       id="polygon932" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="315.61,145.36 317.85,153.9 318.27,154.01 "
-       id="polygon934" />
-    <line
-       x1="495.54001"
-       y1="140.98"
-       x2="494.95001"
-       y2="140.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line936" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="313.89,145.95 316.14,154.48 316.48,154.21 "
-       id="polygon938" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="315.14,145.36 317.38,153.9 317.85,153.9 "
-       id="polygon940" />
-    <polygon
-       style="opacity:1;fill:#0000d4"
-       points="459.6,243.73 453.37,247.94 452.99,248.05 "
-       id="polygon942" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="314.24,145.67 316.48,154.21 316.91,154 "
-       id="polygon944" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="314.67,145.47 316.91,154 317.38,153.9 "
-       id="polygon946" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="426.77,157.81 426.46,157.45 426.48,157.72 "
-       id="polygon948" />
-    <line
-       x1="396.79001"
-       y1="120.55"
-       x2="396.34"
-       y2="121.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line950" />
-    <line
-       x1="423.41"
-       y1="227.63"
-       x2="422.59"
-       y2="226.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line952" />
-    <line
-       x1="392.48999"
-       y1="134.73"
-       x2="392.23999"
-       y2="135.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line954" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="458.09,241.07 451.85,245.27 452.23,245.16 "
-       id="polygon956" />
-    <line
-       x1="427.95999"
-       y1="116.23"
-       x2="427.45999"
-       y2="117.1"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line958" />
-    <line
-       x1="494.95001"
-       y1="140.99001"
-       x2="494.35001"
-       y2="141.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line960" />
-    <line
-       x1="420.79999"
-       y1="138.33"
-       x2="420.60001"
-       y2="139.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line962" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="458.46,240.96 452.23,245.16 452.64,245.2 "
-       id="polygon964" />
-    <line
-       x1="396.34"
-       y1="121.64"
-       x2="395.89999"
-       y2="122.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line966" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="458.88,240.99 452.64,245.2 453.05,245.37 "
-       id="polygon968" />
-    <line
-       x1="392.76001"
-       y1="133.60001"
-       x2="392.48999"
-       y2="134.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line970" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="460.11,242.28 453.88,246.49 453.94,246.94 "
-       id="polygon972" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="459.28,241.16 453.05,245.37 453.41,245.66 "
-       id="polygon974" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="459.93,241.84 453.7,246.05 453.88,246.49 "
-       id="polygon976" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="459.65,241.46 453.41,245.66 453.7,246.05 "
-       id="polygon978" />
-    <line
-       x1="481.32999"
-       y1="156.66"
-       x2="481.23999"
-       y2="157.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line980" />
-    <line
-       x1="393.04001"
-       y1="132.42999"
-       x2="392.76001"
-       y2="133.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line982" />
-    <line
-       x1="427.45999"
-       y1="117.1"
-       x2="426.97"
-       y2="118.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line984" />
-    <line
-       x1="421.01001"
-       y1="137.39"
-       x2="420.79999"
-       y2="138.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line986" />
-    <line
-       x1="395.48001"
-       y1="123.95"
-       x2="395.07999"
-       y2="125.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line988" />
-    <line
-       x1="393.34"
-       y1="131.24001"
-       x2="393.04001"
-       y2="132.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line990" />
-    <line
-       x1="395.07999"
-       y1="125.14"
-       x2="394.70001"
-       y2="126.35"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line992" />
-    <line
-       x1="393.64999"
-       y1="130.03"
-       x2="393.34"
-       y2="131.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line994" />
-    <line
-       x1="422.59"
-       y1="226.7"
-       x2="421.85999"
-       y2="225.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line996" />
-    <line
-       x1="394.70001"
-       y1="126.35"
-       x2="394.32999"
-       y2="127.57"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line998" />
-    <line
-       x1="393.98001"
-       y1="128.8"
-       x2="393.64999"
-       y2="130.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1000" />
-    <line
-       x1="394.32999"
-       y1="127.57"
-       x2="393.98001"
-       y2="128.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1002" />
-    <line
-       x1="410.54001"
-       y1="213.06"
-       x2="411.17001"
-       y2="214.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1004" />
-    <line
-       x1="426.97"
-       y1="118.03"
-       x2="426.48999"
-       y2="119.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1006" />
-    <line
-       x1="421.23001"
-       y1="136.39999"
-       x2="421.01001"
-       y2="137.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1008" />
-    <line
-       x1="493.10999"
-       y1="141.39"
-       x2="492.48001"
-       y2="141.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1010" />
-    <line
-       x1="481.60001"
-       y1="155.66"
-       x2="481.45001"
-       y2="156.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1012" />
-    <line
-       x1="426.48999"
-       y1="119.02"
-       x2="426.01999"
-       y2="120.07"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1014" />
-    <line
-       x1="421.47"
-       y1="135.36"
-       x2="421.23001"
-       y2="136.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1016" />
-    <line
-       x1="492.48001"
-       y1="141.64999"
-       x2="491.85001"
-       y2="141.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1018" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="423.05,166.24 426.75,157.47 426.77,157.81 "
-       id="polygon1020" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="455.03,144.77 459.96,135.82 460.02,136.14 "
-       id="polygon1022" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="420.5,164.84 423.97,156.63 424.23,156.4 "
-       id="polygon1024" />
-    <line
-       x1="426.01999"
-       y1="120.07"
-       x2="425.57001"
-       y2="121.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1026" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="423.04,165.9 426.59,157.12 426.75,157.47 "
-       id="polygon1028" />
-    <line
-       x1="421.73001"
-       y1="134.25999"
-       x2="421.47"
-       y2="135.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="452.82,143.18 457.5,134.66 457.82,134.55 "
-       id="polygon1032" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="454.97,144.45 459.78,135.47 459.96,135.82 "
-       id="polygon1034" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="420.86,164.7 424.23,156.4 424.58,156.27 "
-       id="polygon1036" />
-    <line
-       x1="421.85999"
-       y1="225.78999"
-       x2="421.20999"
-       y2="224.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1038" />
-    <line
-       x1="410"
-       y1="211.88"
-       x2="410.54001"
-       y2="213.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1040" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="422.87,165.55 426.3,156.79 426.59,157.12 "
-       id="polygon1042" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="403.97,125.93 406.06,116.05 406.3,116.34 "
-       id="polygon1044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="421.29,164.68 424.58,156.27 425.01,156.25 "
-       id="polygon1046" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="454.78,144.1 459.48,135.14 459.78,135.47 "
-       id="polygon1048" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="422.58,165.22 425.92,156.52 426.3,156.79 "
-       id="polygon1050" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="453.67,247.7 453.61,247.21 453.45,247.48 "
-       id="polygon1052" />
-    <line
-       x1="425.57001"
-       y1="121.16"
-       x2="425.14001"
-       y2="122.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1054" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="421.75,164.77 425.01,156.25 425.47,156.34 "
-       id="polygon1056" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="422.2,164.95 425.47,156.34 425.92,156.52 "
-       id="polygon1058" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.6,125.18 403.62,115.77 403.93,115.59 "
-       id="polygon1060" />
-    <line
-       x1="422"
-       y1="133.13"
-       x2="421.73001"
-       y2="134.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1062" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="454.48,143.77 459.09,134.87 459.48,135.14 "
-       id="polygon1064" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="454.09,143.49 458.66,134.66 459.09,134.87 "
-       id="polygon1066" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="403.73,125.63 405.71,115.8 406.06,116.05 "
-       id="polygon1068" />
-    <line
-       x1="491.20999"
-       y1="142.32001"
-       x2="490.57999"
-       y2="142.74001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.01,125.09 403.93,115.59 404.34,115.51 "
-       id="polygon1072" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="403.38,125.39 405.28,115.61 405.71,115.8 "
-       id="polygon1074" />
-    <line
-       x1="482.25"
-       y1="153.87"
-       x2="482"
-       y2="154.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.47,125.1 404.34,115.51 404.8,115.52 "
-       id="polygon1078" />
-    <line
-       x1="425.14001"
-       y1="122.3"
-       x2="424.73001"
-       y2="123.46"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1080" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="402.95,125.2 404.8,115.52 405.28,115.61 "
-       id="polygon1082" />
-    <line
-       x1="422.28"
-       y1="131.96001"
-       x2="422"
-       y2="133.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1084" />
-    <line
-       x1="490.57999"
-       y1="142.74001"
-       x2="489.95001"
-       y2="143.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1086" />
-    <line
-       x1="424.73001"
-       y1="123.46"
-       x2="424.32001"
-       y2="124.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1088" />
-    <line
-       x1="422.57999"
-       y1="130.75999"
-       x2="422.28"
-       y2="131.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1090" />
-    <line
-       x1="482.54001"
-       y1="153.21001"
-       x2="482.25"
-       y2="153.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1092" />
-    <line
-       x1="424.32001"
-       y1="124.66"
-       x2="423.94"
-       y2="125.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1094" />
-    <line
-       x1="422.89001"
-       y1="129.55"
-       x2="422.57999"
-       y2="130.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1096" />
-    <line
-       x1="423.94"
-       y1="125.87"
-       x2="423.57001"
-       y2="127.1"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1098" />
-    <line
-       x1="423.23001"
-       y1="128.32001"
-       x2="422.89001"
-       y2="129.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1100" />
-    <line
-       x1="423.57001"
-       y1="127.1"
-       x2="423.23001"
-       y2="128.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1102" />
-    <line
-       x1="482.85001"
-       y1="152.53"
-       x2="482.54001"
-       y2="153.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1104" />
-    <line
-       x1="409.54001"
-       y1="210.73"
-       x2="410"
-       y2="211.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1106" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="320.85,162.8 318.27,154.01 318.59,154.21 "
-       id="polygon1108" />
-    <line
-       x1="421.20999"
-       y1="224.91"
-       x2="420.64001"
-       y2="224.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1110" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="318.16,163.39 315.82,155.16 315.91,154.81 "
-       id="polygon1112" />
-    <line
-       x1="489.32999"
-       y1="143.71001"
-       x2="488.70999"
-       y2="144.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1114" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="406.35,116.93 404.02,126.51 403.83,126.75 "
-       id="polygon1116" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="320.52,162.59 317.85,153.9 318.27,154.01 "
-       id="polygon1118" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="318.39,163.07 315.91,154.81 316.14,154.48 "
-       id="polygon1120" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="320.11,162.48 317.38,153.9 317.85,153.9 "
-       id="polygon1122" />
-    <line
-       x1="488.70999"
-       y1="144.27"
-       x2="488.10999"
-       y2="144.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1124" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="318.73,162.79 316.14,154.48 316.48,154.21 "
-       id="polygon1126" />
-    <line
-       x1="483.57001"
-       y1="151.12"
-       x2="483.19"
-       y2="151.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="319.64,162.48 316.91,154 317.38,153.9 "
-       id="polygon1130" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="319.16,162.59 316.48,154.21 316.91,154 "
-       id="polygon1132" />
-    <line
-       x1="518.20001"
-       y1="153.42999"
-       x2="518.03003"
-       y2="153.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1134" />
-    <line
-       x1="518.5"
-       y1="154.23"
-       x2="518.34998"
-       y2="153.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1136" />
-    <line
-       x1="517.65997"
-       y1="152.25999"
-       x2="517.45001"
-       y2="151.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1138" />
-    <line
-       x1="518.89001"
-       y1="155.46001"
-       x2="518.77002"
-       y2="155.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1140" />
-    <line
-       x1="483.97"
-       y1="150.39"
-       x2="483.57001"
-       y2="151.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1142" />
-    <line
-       x1="517.23999"
-       y1="151.52"
-       x2="517.02002"
-       y2="151.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1144" />
-    <line
-       x1="487.53"
-       y1="145.48"
-       x2="486.95001"
-       y2="146.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1146" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="459.78,135.47 454.78,144.1 454.97,144.45 "
-       id="polygon1148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="457.82,134.55 452.82,143.18 453.22,143.18 "
-       id="polygon1150" />
-    <line
-       x1="484.41"
-       y1="149.66"
-       x2="483.97"
-       y2="150.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1152" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="424.23,156.4 420.5,164.84 420.86,164.7 "
-       id="polygon1154" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="426.59,157.12 422.87,165.55 423.04,165.9 "
-       id="polygon1156" />
-    <line
-       x1="519.20001"
-       y1="156.66"
-       x2="519.09998"
-       y2="156.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1158" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="403.62,115.77 401.28,125.35 401.6,125.18 "
-       id="polygon1160" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="406.06,116.05 403.73,125.63 403.97,125.93 "
-       id="polygon1162" />
-    <line
-       x1="486.39999"
-       y1="146.8"
-       x2="485.87"
-       y2="147.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1164" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="459.48,135.14 454.48,143.77 454.78,144.1 "
-       id="polygon1166" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="458.22,134.55 453.22,143.18 453.66,143.29 "
-       id="polygon1168" />
-    <line
-       x1="485.35999"
-       y1="148.21001"
-       x2="484.87"
-       y2="148.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1170" />
-    <line
-       x1="485.87"
-       y1="147.5"
-       x2="485.35999"
-       y2="148.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1172" />
-    <line
-       x1="516.53998"
-       y1="150.5"
-       x2="516.28003"
-       y2="150.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1174" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="459.09,134.87 454.09,143.49 454.48,143.77 "
-       id="polygon1176" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="458.66,134.66 453.66,143.29 454.09,143.49 "
-       id="polygon1178" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="424.58,156.27 420.86,164.7 421.29,164.68 "
-       id="polygon1180" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="426.3,156.79 422.58,165.22 422.87,165.55 "
-       id="polygon1182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="403.93,115.59 401.6,125.18 402.01,125.09 "
-       id="polygon1184" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="405.71,115.8 403.38,125.39 403.73,125.63 "
-       id="polygon1186" />
-    <line
-       x1="498.89999"
-       y1="163.36"
-       x2="498.87"
-       y2="163.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1188" />
-    <line
-       x1="519.35999"
-       y1="157.42999"
-       x2="519.28003"
-       y2="157.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1190" />
-    <line
-       x1="409.16"
-       y1="209.63"
-       x2="409.54001"
-       y2="210.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1192" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="425.01,156.25 421.29,164.68 421.75,164.77 "
-       id="polygon1194" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="425.92,156.52 422.2,164.95 422.58,165.22 "
-       id="polygon1196" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="425.47,156.34 421.75,164.77 422.2,164.95 "
-       id="polygon1198" />
-    <polygon
-       style="opacity:1;fill:#0000d4"
-       points="446.73,252.28 453.37,247.94 452.99,248.05 "
-       id="polygon1200" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.34,115.51 402.01,125.09 402.47,125.1 "
-       id="polygon1202" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="405.28,115.61 402.95,125.2 403.38,125.39 "
-       id="polygon1204" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="404.8,115.52 402.47,125.1 402.95,125.2 "
-       id="polygon1206" />
-    <line
-       x1="420.64001"
-       y1="224.07001"
-       x2="420.17001"
-       y2="223.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1208" />
-    <line
-       x1="519.51001"
-       y1="158.17"
-       x2="519.44"
-       y2="157.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1210" />
-    <line
-       x1="515.45001"
-       y1="149.36"
-       x2="515.14001"
-       y2="149.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1212" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="447.41,251.94 453.86,247.36 453.67,247.7 "
-       id="polygon1214" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="446.38,249.43 452.23,245.16 452.64,245.2 "
-       id="polygon1216" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="447.61,251.59 453.94,246.94 453.86,247.36 "
-       id="polygon1218" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="446.79,249.6 452.64,245.2 453.05,245.37 "
-       id="polygon1220" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="447.68,251.17 453.88,246.49 453.94,246.94 "
-       id="polygon1222" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="318.59,154.21 320.85,162.8 321.05,163.07 "
-       id="polygon1224" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="447.15,249.89 453.05,245.37 453.41,245.66 "
-       id="polygon1226" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="447.62,250.72 453.7,246.05 453.88,246.49 "
-       id="polygon1228" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="447.44,250.28 453.41,245.66 453.7,246.05 "
-       id="polygon1230" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="315.82,155.16 318.07,163.74 318.16,163.39 "
-       id="polygon1232" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="318.27,154.01 320.52,162.59 320.85,162.8 "
-       id="polygon1234" />
-    <line
-       x1="514.19"
-       y1="148.50999"
-       x2="513.84998"
-       y2="148.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1236" />
-    <line
-       x1="519.75"
-       y1="159.49001"
-       x2="519.69"
-       y2="159.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1238" />
-    <line
-       x1="499.04999"
-       y1="162.55"
-       x2="498.95999"
-       y2="162.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1240" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="315.91,154.81 318.16,163.39 318.39,163.07 "
-       id="polygon1242" />
-    <line
-       x1="408.85999"
-       y1="208.58"
-       x2="409.16"
-       y2="209.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1244" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="317.85,153.9 320.11,162.48 320.52,162.59 "
-       id="polygon1246" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="316.14,154.48 318.39,163.07 318.73,162.79 "
-       id="polygon1248" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="317.38,153.9 319.64,162.48 320.11,162.48 "
-       id="polygon1250" />
-    <line
-       x1="513.51001"
-       y1="148.21001"
-       x2="513.15997"
-       y2="148.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="316.48,154.21 318.73,162.79 319.16,162.59 "
-       id="polygon1254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="316.91,154 319.16,162.59 319.64,162.48 "
-       id="polygon1256" />
-    <line
-       x1="512.42999"
-       y1="147.92"
-       x2="512.06"
-       y2="147.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1258" />
-    <line
-       x1="499.32999"
-       y1="161.55"
-       x2="499.17999"
-       y2="162.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1260" />
-    <line
-       x1="511.67999"
-       y1="147.83"
-       x2="511.29999"
-       y2="147.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1262" />
-    <line
-       x1="408.64001"
-       y1="207.59"
-       x2="408.85999"
-       y2="208.58"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1264" />
-    <line
-       x1="510.53"
-       y1="147.87"
-       x2="510.14001"
-       y2="147.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1266" />
-    <line
-       x1="419.78"
-       y1="222.53999"
-       x2="419.47"
-       y2="221.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1268" />
-    <line
-       x1="509.75"
-       y1="148"
-       x2="509.35001"
-       y2="148.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1270" />
-    <line
-       x1="499.73999"
-       y1="160.39"
-       x2="499.51999"
-       y2="160.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1272" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="452.23,245.16 445.96,249.39 446.38,249.43 "
-       id="polygon1274" />
-    <line
-       x1="529.19"
-       y1="163.16"
-       x2="525.17999"
-       y2="161.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1276" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="454.95,145.05 449.93,153.71 449.72,153.91 "
-       id="polygon1278" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="450.02,153.43 454.97,144.45 455.03,144.77 "
-       id="polygon1280" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="452.64,245.2 446.38,249.43 446.79,249.6 "
-       id="polygon1282" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="401.73,135.85 403.97,125.93 404.07,126.23 "
-       id="polygon1284" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="453.88,246.49 447.62,250.72 447.68,251.17 "
-       id="polygon1286" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="453.05,245.37 446.79,249.6 447.15,249.89 "
-       id="polygon1288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="447.8,151.84 452.5,143.29 452.82,143.18 "
-       id="polygon1290" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="453.7,246.05 447.44,250.28 447.62,250.72 "
-       id="polygon1292" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="453.41,245.66 447.15,249.89 447.44,250.28 "
-       id="polygon1294" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="449.96,153.1 454.78,144.1 454.97,144.45 "
-       id="polygon1296" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.94,134.98 401.09,125.59 401.28,125.35 "
-       id="polygon1298" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="401.63,135.55 403.73,125.64 403.97,125.93 "
-       id="polygon1300" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="448.2,151.84 452.82,143.18 453.22,143.18 "
-       id="polygon1302" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="449.77,152.76 454.48,143.77 454.78,144.1 "
-       id="polygon1304" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="399.25,134.8 401.28,125.35 401.6,125.18 "
-       id="polygon1306" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="448.64,151.95 453.22,143.18 453.66,143.29 "
-       id="polygon1308" />
-    <line
-       x1="508.32999"
-       y1="148.62"
-       x2="507.70001"
-       y2="149.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1310" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="449.46,152.43 454.09,143.5 454.48,143.77 "
-       id="polygon1312" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="419.32,174.71 423.03,165.9 423.05,166.24 "
-       id="polygon1314" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="401.39,135.26 403.38,125.39 403.73,125.64 "
-       id="polygon1316" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="449.08,152.15 453.66,143.29 454.09,143.5 "
-       id="polygon1318" />
-    <line
-       x1="408.51001"
-       y1="206.66"
-       x2="408.64001"
-       y2="207.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1320" />
-    <line
-       x1="500.26999"
-       y1="159.11"
-       x2="499.98999"
-       y2="159.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1322" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="399.66,134.72 401.6,125.18 402.01,125.09 "
-       id="polygon1324" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="401.04,135.01 402.95,125.2 403.38,125.39 "
-       id="polygon1326" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="400.13,134.73 402.01,125.09 402.47,125.1 "
-       id="polygon1328" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="419.3,174.37 422.87,165.55 423.03,165.9 "
-       id="polygon1330" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="400.6,134.83 402.47,125.1 402.95,125.2 "
-       id="polygon1332" />
-    <line
-       x1="507.70001"
-       y1="149.08"
-       x2="507.07999"
-       y2="149.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1334" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.13,173.17 420.5,164.84 420.86,164.7 "
-       id="polygon1336" />
-    <line
-       x1="500.59"
-       y1="158.42"
-       x2="500.26999"
-       y2="159.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1338" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="419.14,174.02 422.58,165.23 422.87,165.55 "
-       id="polygon1340" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.55,173.15 420.86,164.7 421.29,164.68 "
-       id="polygon1342" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="418.85,173.69 422.2,164.95 422.58,165.23 "
-       id="polygon1344" />
-    <line
-       x1="419.47"
-       y1="221.85001"
-       x2="419.25"
-       y2="221.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1346" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="418.02,173.23 421.29,164.68 421.75,164.77 "
-       id="polygon1348" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="418.46,173.42 421.75,164.77 422.2,164.95 "
-       id="polygon1350" />
-    <line
-       x1="506.45999"
-       y1="150.14"
-       x2="505.85999"
-       y2="150.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1352" />
-    <line
-       x1="501.31"
-       y1="157"
-       x2="500.92999"
-       y2="157.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1354" />
-    <line
-       x1="501.72"
-       y1="156.28"
-       x2="501.31"
-       y2="157"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1356" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="320.38,172.7 318.32,164.35 318.13,164.07 "
-       id="polygon1358" />
-    <line
-       x1="505.26999"
-       y1="151.36"
-       x2="504.70001"
-       y2="152.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1360" />
-    <line
-       x1="502.14999"
-       y1="155.55"
-       x2="501.72"
-       y2="156.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1362" />
-    <line
-       x1="504.70001"
-       y1="152.00999"
-       x2="504.14999"
-       y2="152.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1364" />
-    <line
-       x1="408.44"
-       y1="205.78999"
-       x2="408.51001"
-       y2="206.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1366" />
-    <line
-       x1="502.60999"
-       y1="154.82001"
-       x2="502.14999"
-       y2="155.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1368" />
-    <line
-       x1="503.60999"
-       y1="153.38"
-       x2="503.10001"
-       y2="154.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1370" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="323.11,171.42 320.52,162.59 320.85,162.8 "
-       id="polygon1372" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="454.97,144.45 449.96,153.1 450.02,153.43 "
-       id="polygon1374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="452.5,143.29 447.48,151.94 447.8,151.84 "
-       id="polygon1376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.09,125.59 398.75,135.21 398.94,134.98 "
-       id="polygon1378" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="322.78,171.22 320.11,162.48 320.52,162.59 "
-       id="polygon1380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="452.82,143.18 447.8,151.84 448.2,151.84 "
-       id="polygon1382" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="320.64,171.7 318.16,163.4 318.39,163.07 "
-       id="polygon1384" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.28,125.35 398.94,134.98 399.25,134.8 "
-       id="polygon1386" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="322.36,171.11 319.64,162.48 320.11,162.48 "
-       id="polygon1388" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="454.48,143.77 449.46,152.43 449.77,152.76 "
-       id="polygon1390" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="453.22,143.18 448.2,151.84 448.64,151.95 "
-       id="polygon1392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="320.99,171.42 318.39,163.07 318.73,162.79 "
-       id="polygon1394" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="321.9,171.11 319.16,162.59 319.64,162.48 "
-       id="polygon1396" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="454.09,143.5 449.08,152.15 449.46,152.43 "
-       id="polygon1398" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="453.66,143.29 448.64,151.95 449.08,152.15 "
-       id="polygon1400" />
-    <line
-       x1="297.17999"
-       y1="151.46001"
-       x2="295.51999"
-       y2="151.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="321.42,171.21 318.73,162.79 319.16,162.59 "
-       id="polygon1404" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.6,125.18 399.25,134.8 399.66,134.72 "
-       id="polygon1406" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="403.38,125.39 401.04,135.01 401.39,135.26 "
-       id="polygon1408" />
-    <line
-       x1="529.19"
-       y1="163.16"
-       x2="527.21997"
-       y2="163.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1410" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="520.96,168.99 528.71,161.98 529.06,162.1 "
-       id="polygon1412" />
-    <line
-       x1="519.84998"
-       y1="160.06"
-       x2="525.17999"
-       y2="161.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1414" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.01,125.09 399.66,134.72 400.13,134.73 "
-       id="polygon1416" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="402.95,125.2 400.6,134.83 401.04,135.01 "
-       id="polygon1418" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="402.47,125.1 400.13,134.73 400.6,134.83 "
-       id="polygon1420" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="420.25,165.06 416.51,173.52 416.77,173.3 "
-       id="polygon1422" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="423.03,165.9 419.3,174.37 419.32,174.71 "
-       id="polygon1424" />
-    <line
-       x1="295.51999"
-       y1="151.95"
-       x2="293.84"
-       y2="152.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1426" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="521.67,169.55 529.43,162.34 529.77,162.66 "
-       id="polygon1428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="420.5,164.84 416.77,173.3 417.13,173.17 "
-       id="polygon1430" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="422.87,165.55 419.14,174.02 419.3,174.37 "
-       id="polygon1432" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="420.86,164.7 417.13,173.17 417.55,173.15 "
-       id="polygon1434" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="422.58,165.23 418.85,173.69 419.14,174.02 "
-       id="polygon1436" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="421.29,164.68 417.55,173.15 418.02,173.23 "
-       id="polygon1438" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="422.2,164.95 418.46,173.42 418.85,173.69 "
-       id="polygon1440" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="421.75,164.77 418.02,173.23 418.46,173.42 "
-       id="polygon1442" />
-    <line
-       x1="293.84"
-       y1="152.36"
-       x2="292.16"
-       y2="152.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1444" />
-    <line
-       x1="292.16"
-       y1="152.7"
-       x2="290.47"
-       y2="152.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1446" />
-    <line
-       x1="419.10001"
-       y1="220.66"
-       x2="419.03"
-       y2="220.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1448" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="401.34,135.58 401.39,135.26 401.63,135.55 "
-       id="polygon1450" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="320.52,162.59 322.78,171.22 323.11,171.42 "
-       id="polygon1452" />
-    <line
-       x1="290.47"
-       y1="152.95"
-       x2="288.79001"
-       y2="153.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="318.16,163.4 320.41,172.02 320.64,171.7 "
-       id="polygon1456" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="320.11,162.48 322.36,171.11 322.78,171.22 "
-       id="polygon1458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="318.39,163.07 320.64,171.7 320.99,171.42 "
-       id="polygon1460" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="319.64,162.48 321.9,171.11 322.36,171.11 "
-       id="polygon1462" />
-    <line
-       x1="408.53"
-       y1="204.28"
-       x2="408.45001"
-       y2="205"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="318.73,162.79 320.99,171.42 321.42,171.21 "
-       id="polygon1466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="319.16,162.59 321.42,171.21 321.9,171.11 "
-       id="polygon1468" />
-    <line
-       x1="288.79001"
-       y1="153.13"
-       x2="287.13"
-       y2="153.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1470" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="441.12,256.2 447.61,251.59 447.41,251.94 "
-       id="polygon1472" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="440.08,253.68 445.96,249.39 446.38,249.43 "
-       id="polygon1474" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="441.39,255.43 447.62,250.72 447.68,251.17 "
-       id="polygon1476" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="440.86,254.15 446.79,249.6 447.15,249.89 "
-       id="polygon1478" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="441.33,254.98 447.44,250.28 447.62,250.72 "
-       id="polygon1480" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="441.15,254.54 447.15,249.89 447.44,250.28 "
-       id="polygon1482" />
-    <line
-       x1="287.13"
-       y1="153.22"
-       x2="285.48001"
-       y2="153.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1484" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="444.98,162.12 449.96,153.1 450.02,153.43 "
-       id="polygon1486" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="399.38,145.52 401.63,135.55 401.73,135.85 "
-       id="polygon1488" />
-    <line
-       x1="408.67001"
-       y1="203.64999"
-       x2="408.53"
-       y2="204.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="442.77,160.52 447.48,151.94 447.8,151.84 "
-       id="polygon1492" />
-    <line
-       x1="285.48001"
-       y1="153.25"
-       x2="283.85001"
-       y2="153.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.58,144.64 398.75,135.21 398.94,134.98 "
-       id="polygon1496" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="444.93,161.79 449.77,152.76 449.96,153.1 "
-       id="polygon1498" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="320.67,172.6 320.38,172.7 320.32,172.37 "
-       id="polygon1500" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="399.28,145.21 401.39,135.26 401.63,135.55 "
-       id="polygon1502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="443.17,160.53 447.8,151.84 448.2,151.84 "
-       id="polygon1504" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="444.74,161.45 449.46,152.43 449.77,152.76 "
-       id="polygon1506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.9,144.47 398.94,134.98 399.25,134.81 "
-       id="polygon1508" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="443.61,160.64 448.2,151.84 448.64,151.95 "
-       id="polygon1510" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="444.43,161.12 449.08,152.15 449.46,152.43 "
-       id="polygon1512" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="399.04,144.93 401.04,135.02 401.39,135.26 "
-       id="polygon1514" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="444.05,160.84 448.64,151.95 449.08,152.15 "
-       id="polygon1516" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.31,144.38 399.25,134.81 399.66,134.72 "
-       id="polygon1518" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="398.68,144.68 400.6,134.83 401.04,135.02 "
-       id="polygon1520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.77,144.39 399.66,134.72 400.13,134.73 "
-       id="polygon1522" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="398.25,144.49 400.13,134.73 400.6,134.83 "
-       id="polygon1524" />
-    <line
-       x1="283.85001"
-       y1="153.2"
-       x2="282.25"
-       y2="153.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1526" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="415.58,183.21 419.3,174.37 419.32,174.71 "
-       id="polygon1528" />
-    <line
-       x1="282.25"
-       y1="153.08"
-       x2="280.67999"
-       y2="152.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.38,181.67 416.77,173.3 417.13,173.17 "
-       id="polygon1532" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="415.39,182.52 418.85,173.69 419.14,174.02 "
-       id="polygon1534" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="447.61,251.59 441.31,255.85 441.12,256.2 "
-       id="polygon1536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.8,181.64 417.13,173.17 417.55,173.15 "
-       id="polygon1538" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="445.96,249.39 439.67,253.64 440.08,253.68 "
-       id="polygon1540" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="512.48,175.76 520.32,168.87 520.61,168.87 "
-       id="polygon1542" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="415.1,182.19 418.46,173.42 418.85,173.69 "
-       id="polygon1544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="447.27,152.14 442.24,160.83 442.45,160.63 "
-       id="polygon1546" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="414.27,181.73 417.55,173.15 418.02,173.23 "
-       id="polygon1548" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="414.71,181.92 418.02,173.23 418.46,173.42 "
-       id="polygon1550" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="447.68,251.17 441.39,255.43 441.31,255.85 "
-       id="polygon1552" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="446.38,249.43 440.08,253.68 440.49,253.86 "
-       id="polygon1554" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="447.62,250.72 441.33,254.98 441.39,255.43 "
-       id="polygon1556" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="446.79,249.6 440.49,253.86 440.86,254.15 "
-       id="polygon1558" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="449.96,153.1 444.93,161.79 444.98,162.12 "
-       id="polygon1560" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="447.44,250.28 441.15,254.54 441.33,254.98 "
-       id="polygon1562" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="447.48,151.94 442.45,160.63 442.77,160.52 "
-       id="polygon1564" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="447.15,249.89 440.86,254.15 441.15,254.54 "
-       id="polygon1566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.75,135.21 396.39,144.88 396.58,144.64 "
-       id="polygon1568" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="401.63,135.55 399.28,145.21 399.38,145.52 "
-       id="polygon1570" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="514.04,177.23 521.96,169.93 522.18,170.33 "
-       id="polygon1572" />
-    <line
-       x1="280.67999"
-       y1="152.89999"
-       x2="279.16"
-       y2="152.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1574" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="449.77,152.76 444.74,161.45 444.93,161.79 "
-       id="polygon1576" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="513.83,176.83 521.67,169.55 521.96,169.93 "
-       id="polygon1578" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="447.8,151.84 442.77,160.52 443.17,160.53 "
-       id="polygon1580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.94,134.98 396.58,144.64 396.9,144.47 "
-       id="polygon1582" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="325.57,180.37 323.11,171.42 323.31,171.7 "
-       id="polygon1584" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="401.39,135.26 399.04,144.93 399.28,145.21 "
-       id="polygon1586" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="449.46,152.43 444.43,161.12 444.74,161.45 "
-       id="polygon1588" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="448.2,151.84 443.17,160.53 443.61,160.64 "
-       id="polygon1590" />
-    <line
-       x1="419.12"
-       y1="219.42"
-       x2="419.26999"
-       y2="219.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1592" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="449.08,152.15 444.05,160.84 444.43,161.12 "
-       id="polygon1594" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="448.64,151.95 443.61,160.64 444.05,160.84 "
-       id="polygon1596" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="399.25,134.81 396.9,144.47 397.31,144.38 "
-       id="polygon1598" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="401.04,135.02 398.68,144.68 399.04,144.93 "
-       id="polygon1600" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="325.38,180.09 322.78,171.22 323.11,171.42 "
-       id="polygon1602" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="399.66,134.72 397.31,144.38 397.77,144.39 "
-       id="polygon1604" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="400.6,134.83 398.25,144.49 398.68,144.68 "
-       id="polygon1606" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="400.13,134.73 397.77,144.39 398.25,144.49 "
-       id="polygon1608" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="322.68,180.7 320.32,172.37 320.41,172.02 "
-       id="polygon1610" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="325.05,179.89 322.36,171.11 322.78,171.22 "
-       id="polygon1612" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="322.91,180.37 320.41,172.02 320.64,171.7 "
-       id="polygon1614" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="324.63,179.78 321.9,171.11 322.36,171.11 "
-       id="polygon1616" />
-    <line
-       x1="409.14001"
-       y1="202.64"
-       x2="408.88"
-       y2="203.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1618" />
-    <line
-       x1="279.16"
-       y1="152.64999"
-       x2="277.67999"
-       y2="152.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1620" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="323.25,180.09 320.64,171.7 320.99,171.42 "
-       id="polygon1622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="324.16,179.78 321.42,171.21 321.9,171.11 "
-       id="polygon1624" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="323.69,179.89 320.99,171.42 321.42,171.21 "
-       id="polygon1626" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="520.32,168.87 512.18,175.76 512.48,175.76 "
-       id="polygon1628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="416.51,173.52 412.76,182.02 413.02,181.8 "
-       id="polygon1630" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="419.3,174.37 415.55,182.87 415.58,183.21 "
-       id="polygon1632" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="522.29,170.71 514.16,177.61 514.16,177.93 "
-       id="polygon1634" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="416.77,173.3 413.02,181.8 413.38,181.67 "
-       id="polygon1636" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="419.14,174.02 415.39,182.52 415.55,182.87 "
-       id="polygon1638" />
-    <line
-       x1="277.67999"
-       y1="152.34"
-       x2="276.23999"
-       y2="151.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1640" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="522.18,170.33 514.04,177.23 514.16,177.61 "
-       id="polygon1642" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.13,173.17 413.38,181.67 413.8,181.64 "
-       id="polygon1644" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="520.96,168.99 512.82,175.89 513.19,176.12 "
-       id="polygon1646" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="418.85,173.69 415.1,182.19 415.39,182.52 "
-       id="polygon1648" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="440.66,256.16 440.82,256.43 440.44,256.54 "
-       id="polygon1650" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="521.96,169.93 513.83,176.83 514.04,177.23 "
-       id="polygon1652" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="417.55,173.15 413.8,181.64 414.27,181.73 "
-       id="polygon1654" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="418.46,173.42 414.71,181.92 415.1,182.19 "
-       id="polygon1656" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="521.32,169.23 513.19,176.12 513.54,176.45 "
-       id="polygon1658" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="418.02,173.23 414.27,181.73 414.71,181.92 "
-       id="polygon1660" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="323.11,171.42 325.38,180.09 325.57,180.37 "
-       id="polygon1662" />
-    <line
-       x1="276.23999"
-       y1="151.97"
-       x2="274.85999"
-       y2="151.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1664" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="320.32,172.37 322.59,181.04 322.68,180.7 "
-       id="polygon1666" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="322.78,171.22 325.05,179.89 325.38,180.09 "
-       id="polygon1668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="320.41,172.02 322.68,180.7 322.91,180.37 "
-       id="polygon1670" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="322.36,171.11 324.63,179.78 325.05,179.89 "
-       id="polygon1672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="320.64,171.7 322.91,180.37 323.25,180.09 "
-       id="polygon1674" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="321.9,171.11 324.16,179.78 324.63,179.78 "
-       id="polygon1676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="320.99,171.42 323.25,180.09 323.69,179.89 "
-       id="polygon1678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="321.42,171.21 323.69,179.89 324.16,179.78 "
-       id="polygon1680" />
-    <line
-       x1="419.48001"
-       y1="219"
-       x2="419.75"
-       y2="218.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1682" />
-    <line
-       x1="274.85999"
-       y1="151.55"
-       x2="273.54001"
-       y2="151.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1684" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="444.9,162.39 439.86,171.11 439.64,171.31 "
-       id="polygon1686" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="439.94,170.84 444.93,161.79 444.98,162.12 "
-       id="polygon1688" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="437.72,169.24 442.45,160.63 442.77,160.53 "
-       id="polygon1690" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="439.88,170.51 444.74,161.45 444.93,161.79 "
-       id="polygon1692" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="396.92,154.91 399.04,144.93 399.28,145.21 "
-       id="polygon1694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="438.12,169.25 442.77,160.53 443.17,160.53 "
-       id="polygon1696" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="439.69,170.17 444.43,161.12 444.74,161.45 "
-       id="polygon1698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.54,154.17 396.58,144.64 396.9,144.47 "
-       id="polygon1700" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="396.68,154.63 398.68,144.68 399.04,144.93 "
-       id="polygon1702" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="438.56,169.36 443.17,160.53 443.61,160.64 "
-       id="polygon1704" />
-    <line
-       x1="273.54001"
-       y1="151.07001"
-       x2="272.28"
-       y2="150.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1706" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="325.33,180.73 325.57,180.37 325.63,180.7 "
-       id="polygon1708" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="439.39,169.84 444.05,160.84 444.43,161.12 "
-       id="polygon1710" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="439,169.56 443.61,160.64 444.05,160.84 "
-       id="polygon1712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.95,154.08 396.9,144.47 397.31,144.39 "
-       id="polygon1714" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="396.32,154.38 398.25,144.5 398.68,144.68 "
-       id="polygon1716" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.41,154.09 397.31,144.39 397.77,144.39 "
-       id="polygon1718" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="395.89,154.19 397.77,144.39 398.25,144.5 "
-       id="polygon1720" />
-    <line
-       x1="491.42001"
-       y1="171.37"
-       x2="527.21997"
-       y2="163.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1722" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="433.76,257.96 439.67,253.64 440.08,253.68 "
-       id="polygon1724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="504.32,182.67 512.18,175.76 512.48,175.76 "
-       id="polygon1726" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="434.17,258.13 440.08,253.68 440.49,253.86 "
-       id="polygon1728" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="435.07,259.71 441.33,254.98 441.39,255.43 "
-       id="polygon1730" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="434.54,258.43 440.49,253.86 440.86,254.15 "
-       id="polygon1732" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="435.01,259.25 441.15,254.54 441.33,254.98 "
-       id="polygon1734" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="504.67,182.8 512.48,175.76 512.82,175.89 "
-       id="polygon1736" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="434.83,258.81 440.86,254.15 441.15,254.54 "
-       id="polygon1738" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="506,184.52 514.04,177.23 514.16,177.61 "
-       id="polygon1740" />
-    <line
-       x1="272.28"
-       y1="150.56"
-       x2="271.09"
-       y2="150"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1742" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="505.03,183.03 512.82,175.89 513.19,176.12 "
-       id="polygon1744" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="505.89,184.14 513.83,176.83 514.04,177.23 "
-       id="polygon1746" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="505.38,183.36 513.19,176.12 513.54,176.45 "
-       id="polygon1748" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="505.67,183.74 513.54,176.45 513.83,176.83 "
-       id="polygon1750" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="411.82,191.73 415.55,182.87 415.58,183.21 "
-       id="polygon1752" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="409.25,190.32 412.76,182.02 413.02,181.8 "
-       id="polygon1754" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="444.93,161.79 439.88,170.51 439.94,170.84 "
-       id="polygon1756" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="442.45,160.63 437.4,169.34 437.72,169.24 "
-       id="polygon1758" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="399.28,145.21 396.92,154.91 397.02,155.21 "
-       id="polygon1760" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="513.82,178.3 505.67,185.21 505.38,185.21 "
-       id="polygon1762" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="411.8,191.39 415.39,182.52 415.55,182.87 "
-       id="polygon1764" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="409.61,190.2 413.02,181.8 413.38,181.67 "
-       id="polygon1766" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="444.74,161.45 439.69,170.17 439.88,170.51 "
-       id="polygon1768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="442.77,160.53 437.72,169.24 438.12,169.25 "
-       id="polygon1770" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="411.63,191.04 415.1,182.19 415.39,182.52 "
-       id="polygon1772" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.58,144.64 394.21,154.34 394.54,154.17 "
-       id="polygon1774" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="399.04,144.93 396.68,154.63 396.92,154.91 "
-       id="polygon1776" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="410.05,190.17 413.38,181.67 413.8,181.64 "
-       id="polygon1778" />
-    <line
-       x1="271.09"
-       y1="150"
-       x2="269.95999"
-       y2="149.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1780" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="444.43,161.12 439.39,169.84 439.69,170.17 "
-       id="polygon1782" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="443.17,160.53 438.12,169.25 438.56,169.36 "
-       id="polygon1784" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="411.34,190.72 414.71,181.92 415.1,182.19 "
-       id="polygon1786" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="410.51,190.26 413.8,181.64 414.27,181.73 "
-       id="polygon1788" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.9,144.47 394.54,154.17 394.95,154.08 "
-       id="polygon1790" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="410.95,190.45 414.27,181.73 414.71,181.92 "
-       id="polygon1792" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="444.05,160.84 439,169.56 439.39,169.84 "
-       id="polygon1794" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="398.68,144.68 396.32,154.38 396.68,154.63 "
-       id="polygon1796" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="443.61,160.64 438.56,169.36 439,169.56 "
-       id="polygon1798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.31,144.39 394.95,154.08 395.41,154.09 "
-       id="polygon1800" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="398.25,144.5 395.89,154.19 396.32,154.38 "
-       id="polygon1802" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="397.77,144.39 395.41,154.09 395.89,154.19 "
-       id="polygon1804" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="514.16,177.93 506,184.85 505.89,185.08 "
-       id="polygon1806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="512.18,175.76 504.02,182.67 504.32,182.67 "
-       id="polygon1808" />
-    <line
-       x1="410.67999"
-       y1="201.77"
-       x2="410.23001"
-       y2="201.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1810" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="514.16,177.61 506,184.52 506,184.85 "
-       id="polygon1812" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="512.48,175.76 504.32,182.67 504.67,182.8 "
-       id="polygon1814" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="514.04,177.23 505.89,184.14 506,184.52 "
-       id="polygon1816" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="327.65,188.8 325.05,179.89 325.38,180.09 "
-       id="polygon1818" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="512.82,175.89 504.67,182.8 505.03,183.03 "
-       id="polygon1820" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="513.83,176.83 505.67,183.74 505.89,184.14 "
-       id="polygon1822" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="513.19,176.12 505.03,183.03 505.38,183.36 "
-       id="polygon1824" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="513.54,176.45 505.38,183.36 505.67,183.74 "
-       id="polygon1826" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="327.32,188.6 324.63,179.78 325.05,179.89 "
-       id="polygon1828" />
-    <line
-       x1="269.95999"
-       y1="149.39999"
-       x2="268.91"
-       y2="148.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.18,189.08 322.68,180.7 322.91,180.37 "
-       id="polygon1832" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="326.9,188.49 324.16,179.78 324.63,179.78 "
-       id="polygon1834" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="441.31,255.85 435,260.13 434.8,260.48 "
-       id="polygon1836" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.53,188.8 322.91,180.37 323.26,180.09 "
-       id="polygon1838" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="439.67,253.64 433.35,257.92 433.76,257.96 "
-       id="polygon1840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="326.43,188.49 323.69,179.89 324.16,179.78 "
-       id="polygon1842" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.96,188.6 323.26,180.09 323.69,179.89 "
-       id="polygon1844" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="441.39,255.43 435.07,259.71 435,260.13 "
-       id="polygon1846" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="440.08,253.68 433.76,257.96 434.17,258.13 "
-       id="polygon1848" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="441.33,254.98 435.01,259.25 435.07,259.71 "
-       id="polygon1850" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="440.49,253.86 434.17,258.13 434.54,258.43 "
-       id="polygon1852" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="441.15,254.54 434.83,258.81 435.01,259.25 "
-       id="polygon1854" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="440.86,254.15 434.54,258.43 434.83,258.81 "
-       id="polygon1856" />
-    <line
-       x1="420.45999"
-       y1="219.03999"
-       x2="420.89001"
-       y2="219.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1858" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="412.76,182.02 409,190.55 409.25,190.32 "
-       id="polygon1860" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.02,181.8 409.25,190.32 409.61,190.2 "
-       id="polygon1862" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="415.39,182.52 411.63,191.04 411.8,191.39 "
-       id="polygon1864" />
-    <line
-       x1="268.91"
-       y1="148.78"
-       x2="267.94"
-       y2="148.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1866" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.38,181.67 409.61,190.2 410.05,190.17 "
-       id="polygon1868" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="415.1,182.19 411.34,190.72 411.63,191.04 "
-       id="polygon1870" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="413.8,181.64 410.05,190.17 410.51,190.26 "
-       id="polygon1872" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="414.71,181.92 410.95,190.45 411.34,190.72 "
-       id="polygon1874" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="414.27,181.73 410.51,190.26 410.95,190.45 "
-       id="polygon1876" />
-    <line
-       x1="377.84"
-       y1="323.75"
-       x2="374.25"
-       y2="321.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1878" />
-    <line
-       x1="381.51999"
-       y1="325.60999"
-       x2="377.84"
-       y2="323.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1880" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="322.59,181.04 324.85,189.75 324.95,189.41 "
-       id="polygon1882" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="325.05,179.89 327.32,188.6 327.65,188.8 "
-       id="polygon1884" />
-    <line
-       x1="374.25"
-       y1="321.69"
-       x2="370.79001"
-       y2="319.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1886" />
-    <line
-       x1="385.29001"
-       y1="327.26001"
-       x2="381.51999"
-       y2="325.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1888" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="322.68,180.7 324.95,189.41 325.18,189.08 "
-       id="polygon1890" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="324.63,179.78 326.9,188.49 327.32,188.6 "
-       id="polygon1892" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="322.91,180.37 325.18,189.08 325.53,188.8 "
-       id="polygon1894" />
-    <line
-       x1="389.13"
-       y1="328.67001"
-       x2="385.29001"
-       y2="327.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1896" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="324.16,179.78 326.43,188.49 326.9,188.49 "
-       id="polygon1898" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="495.63,189.73 503.7,183.04 503.81,182.8 "
-       id="polygon1900" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="323.26,180.09 325.53,188.8 325.96,188.6 "
-       id="polygon1902" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="323.69,179.89 325.96,188.6 326.43,188.49 "
-       id="polygon1904" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="434.88,179.58 439.88,170.51 439.94,170.84 "
-       id="polygon1906" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="434.5,260.71 434.59,260.25 434.34,260.45 "
-       id="polygon1908" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="432.66,177.99 437.4,169.34 437.72,169.24 "
-       id="polygon1910" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="497.71,192.02 506,184.85 505.89,185.08 "
-       id="polygon1912" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="434.82,179.26 439.69,170.17 439.88,170.51 "
-       id="polygon1914" />
-    <line
-       x1="393"
-       y1="329.85001"
-       x2="389.13"
-       y2="328.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1916" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="394.55,164.64 396.68,154.63 396.92,154.91 "
-       id="polygon1918" />
-    <line
-       x1="367.45001"
-       y1="317.01999"
-       x2="364.26999"
-       y2="314.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1920" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="433.06,177.99 437.72,169.24 438.12,169.25 "
-       id="polygon1922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="392.16,163.89 394.21,154.34 394.54,154.17 "
-       id="polygon1924" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="434.63,178.91 439.39,169.84 439.69,170.17 "
-       id="polygon1926" />
-    <line
-       x1="413.44"
-       y1="201.71001"
-       x2="411.16"
-       y2="201.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1928" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="497.82,191.78 506,184.52 506,184.85 "
-       id="polygon1930" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="394.31,164.36 396.32,154.38 396.68,154.63 "
-       id="polygon1932" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="433.5,178.1 438.12,169.25 438.56,169.36 "
-       id="polygon1934" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="434.32,178.59 439,169.56 439.39,169.84 "
-       id="polygon1936" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="433.93,178.31 438.56,169.36 439,169.56 "
-       id="polygon1938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="392.57,163.81 394.54,154.17 394.95,154.08 "
-       id="polygon1940" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="434.38,258.61 434.54,258.43 434.83,258.81 "
-       id="polygon1942" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="393.95,164.11 395.89,154.19 396.32,154.38 "
-       id="polygon1944" />
-    <line
-       x1="267.04999"
-       y1="147.45"
-       x2="266.23999"
-       y2="146.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1946" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.04,163.82 394.95,154.08 395.41,154.09 "
-       id="polygon1948" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="496.48,189.73 504.32,182.67 504.66,182.8 "
-       id="polygon1950" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="393.52,163.92 395.41,154.09 395.89,154.19 "
-       id="polygon1952" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="497.82,191.46 505.89,184.14 506,184.52 "
-       id="polygon1954" />
-    <line
-       x1="396.91"
-       y1="330.76999"
-       x2="393"
-       y2="329.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1956" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="496.85,189.96 504.66,182.8 505.03,183.03 "
-       id="polygon1958" />
-    <line
-       x1="364.26999"
-       y1="314.45001"
-       x2="361.25"
-       y2="311.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1960" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="497.71,191.07 505.67,183.74 505.89,184.14 "
-       id="polygon1962" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="497.2,190.29 505.03,183.03 505.38,183.36 "
-       id="polygon1964" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="497.49,190.67 505.38,183.36 505.67,183.74 "
-       id="polygon1966" />
-    <line
-       x1="421.37"
-       y1="219.53"
-       x2="421.88"
-       y2="219.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1968" />
-    <line
-       x1="400.82001"
-       y1="331.44"
-       x2="396.91"
-       y2="330.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1970" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="396.97,155.5 394.6,165.22 394.41,165.46 "
-       id="polygon1972" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="437.19,169.54 432.13,178.29 432.34,178.09 "
-       id="polygon1974" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="326.8,188.71 326.43,188.49 326.9,188.49 "
-       id="polygon1976" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="439.88,170.51 434.82,179.26 434.88,179.58 "
-       id="polygon1978" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="437.4,169.34 432.34,178.09 432.66,177.99 "
-       id="polygon1980" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="504.02,182.67 495.84,189.61 496.14,189.61 "
-       id="polygon1982" />
-    <line
-       x1="404.70999"
-       y1="331.82999"
-       x2="400.82001"
-       y2="331.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line1984" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="439.69,170.17 434.63,178.91 434.82,179.26 "
-       id="polygon1986" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="437.72,169.24 432.66,177.99 433.06,177.99 "
-       id="polygon1988" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.21,154.34 391.84,164.07 392.16,163.89 "
-       id="polygon1990" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="506,184.52 497.82,191.46 497.82,191.78 "
-       id="polygon1992" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="396.68,154.63 394.31,164.36 394.55,164.64 "
-       id="polygon1994" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="504.32,182.67 496.14,189.61 496.48,189.73 "
-       id="polygon1996" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="426.32,262.55 432.47,258.61 432.67,258.27 "
-       id="polygon1998" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="439.39,169.84 434.32,178.59 434.63,178.91 "
-       id="polygon2000" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="438.12,169.25 433.06,177.99 433.5,178.1 "
-       id="polygon2002" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.54,154.17 392.16,163.89 392.57,163.81 "
-       id="polygon2004" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="396.32,154.38 393.95,164.11 394.31,164.36 "
-       id="polygon2006" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="505.89,184.14 497.71,191.07 497.82,191.46 "
-       id="polygon2008" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="439,169.56 433.93,178.31 434.32,178.59 "
-       id="polygon2010" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="438.56,169.36 433.5,178.1 433.93,178.31 "
-       id="polygon2012" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="504.66,182.8 496.48,189.73 496.85,189.96 "
-       id="polygon2014" />
-    <polygon
-       style="opacity:1;fill:#0000ef"
-       points="411.7,192.03 407.93,200.59 407.68,200.81 "
-       id="polygon2016" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="408.05,200.29 411.8,191.39 411.82,191.73 "
-       id="polygon2018" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.95,154.08 392.57,163.81 393.04,163.82 "
-       id="polygon2020" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="395.89,154.19 393.52,163.92 393.95,164.11 "
-       id="polygon2022" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="505.67,183.74 497.49,190.67 497.71,191.07 "
-       id="polygon2024" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="395.41,154.09 393.04,163.82 393.52,163.92 "
-       id="polygon2026" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="505.03,183.03 496.85,189.96 497.2,190.29 "
-       id="polygon2028" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="505.38,183.36 497.2,190.29 497.49,190.67 "
-       id="polygon2030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="405.48,198.88 409,190.55 409.25,190.32 "
-       id="polygon2032" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="408.03,199.95 411.63,191.04 411.8,191.39 "
-       id="polygon2034" />
-    <line
-       x1="415.78"
-       y1="201.92"
-       x2="413.44"
-       y2="201.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2036" />
-    <line
-       x1="265.51001"
-       y1="146.05"
-       x2="264.87"
-       y2="145.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2038" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="405.84,198.75 409.25,190.32 409.61,190.2 "
-       id="polygon2040" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="427.41,262.25 433.35,257.92 433.76,257.96 "
-       id="polygon2042" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="407.86,199.6 411.34,190.72 411.63,191.04 "
-       id="polygon2044" />
-    <line
-       x1="408.57999"
-       y1="331.95999"
-       x2="404.70999"
-       y2="331.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="406.27,198.73 409.61,190.2 410.05,190.17 "
-       id="polygon2048" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="427.82,262.42 433.76,257.96 434.17,258.13 "
-       id="polygon2050" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="407.57,199.27 410.95,190.45 411.34,190.72 "
-       id="polygon2052" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="428.72,264 435.01,259.25 435.07,259.71 "
-       id="polygon2054" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="406.73,198.82 410.05,190.17 410.51,190.26 "
-       id="polygon2056" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="407.18,199 410.51,190.26 410.95,190.45 "
-       id="polygon2058" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="428.19,262.71 434.17,258.13 434.54,258.43 "
-       id="polygon2060" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="428.66,263.55 434.83,258.81 435.01,259.25 "
-       id="polygon2062" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="428.48,263.11 434.54,258.43 434.83,258.81 "
-       id="polygon2064" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="330.13,197.82 327.65,188.8 327.85,189.08 "
-       id="polygon2066" />
-    <line
-       x1="466.57001"
-       y1="166.36"
-       x2="468.23001"
-       y2="167.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2068" />
-    <line
-       x1="468.23001"
-       y1="167.25999"
-       x2="469.92001"
-       y2="168.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2070" />
-    <line
-       x1="464.95999"
-       y1="165.39"
-       x2="466.57001"
-       y2="166.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2072" />
-    <line
-       x1="469.92001"
-       y1="168.09"
-       x2="471.63"
-       y2="168.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2074" />
-    <line
-       x1="463.38"
-       y1="164.36"
-       x2="464.95999"
-       y2="165.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2076" />
-    <line
-       x1="471.63"
-       y1="168.84"
-       x2="473.38"
-       y2="169.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2078" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="329.93,197.55 327.32,188.6 327.65,188.8 "
-       id="polygon2080" />
-    <line
-       x1="422.42999"
-       y1="220.42"
-       x2="423"
-       y2="221.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2082" />
-    <line
-       x1="461.85001"
-       y1="163.28"
-       x2="463.38"
-       y2="164.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2084" />
-    <line
-       x1="473.38"
-       y1="169.52"
-       x2="475.14001"
-       y2="170.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2086" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="327.22,198.15 324.85,189.75 324.95,189.41 "
-       id="polygon2088" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="329.6,197.34 326.9,188.49 327.32,188.6 "
-       id="polygon2090" />
-    <line
-       x1="475.14001"
-       y1="170.12"
-       x2="476.92999"
-       y2="170.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2092" />
-    <line
-       x1="460.35999"
-       y1="162.14999"
-       x2="461.85001"
-       y2="163.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2094" />
-    <line
-       x1="412.39001"
-       y1="331.79999"
-       x2="408.57999"
-       y2="331.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2096" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="327.45,197.82 324.95,189.41 325.18,189.08 "
-       id="polygon2098" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="329.18,197.24 326.43,188.49 326.9,188.49 "
-       id="polygon2100" />
-    <line
-       x1="476.92999"
-       y1="170.63"
-       x2="478.73001"
-       y2="171.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2102" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="327.8,197.55 325.18,189.08 325.53,188.8 "
-       id="polygon2104" />
-    <line
-       x1="458.92999"
-       y1="160.97"
-       x2="460.35999"
-       y2="162.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2106" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="328.71,197.24 325.96,188.6 326.43,188.49 "
-       id="polygon2108" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="328.24,197.34 325.53,188.8 325.96,188.6 "
-       id="polygon2110" />
-    <line
-       x1="478.73001"
-       y1="171.05"
-       x2="480.54001"
-       y2="171.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2112" />
-    <line
-       x1="457.54001"
-       y1="159.75999"
-       x2="458.92999"
-       y2="160.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2114" />
-    <line
-       x1="480.54001"
-       y1="171.39"
-       x2="482.35999"
-       y2="171.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2116" />
-    <line
-       x1="353.32001"
-       y1="303.04999"
-       x2="351.09"
-       y2="300.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2118" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="409,190.55 405.23,199.1 405.48,198.88 "
-       id="polygon2120" />
-    <line
-       x1="456.20001"
-       y1="158.50999"
-       x2="457.54001"
-       y2="159.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2122" />
-    <line
-       x1="482.35999"
-       y1="171.63"
-       x2="484.17999"
-       y2="171.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2124" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="409.25,190.32 405.48,198.88 405.84,198.75 "
-       id="polygon2126" />
-    <line
-       x1="416.14001"
-       y1="331.35999"
-       x2="412.39001"
-       y2="331.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2128" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="411.63,191.04 407.86,199.6 408.03,199.95 "
-       id="polygon2130" />
-    <line
-       x1="484.17999"
-       y1="171.77"
-       x2="486.01001"
-       y2="171.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2132" />
-    <line
-       x1="264.32001"
-       y1="144.63"
-       x2="263.85999"
-       y2="143.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2134" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="409.61,190.2 405.84,198.75 406.27,198.73 "
-       id="polygon2136" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="411.34,190.72 407.57,199.27 407.86,199.6 "
-       id="polygon2138" />
-    <line
-       x1="454.92001"
-       y1="157.24001"
-       x2="456.20001"
-       y2="158.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2140" />
-    <line
-       x1="418.17001"
-       y1="202.44"
-       x2="415.78"
-       y2="201.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2142" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="410.05,190.17 406.27,198.73 406.73,198.82 "
-       id="polygon2144" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="410.95,190.45 407.18,199 407.57,199.27 "
-       id="polygon2146" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="410.51,190.26 406.73,198.82 407.18,199 "
-       id="polygon2148" />
-    <line
-       x1="486.01001"
-       y1="171.82001"
-       x2="487.82001"
-       y2="171.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2150" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="435,260.13 428.64,264.42 428.45,264.77 "
-       id="polygon2152" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="433.35,257.92 427,262.21 427.41,262.25 "
-       id="polygon2154" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="435.07,259.71 428.72,264 428.64,264.42 "
-       id="polygon2156" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="433.76,257.96 427.41,262.25 427.82,262.42 "
-       id="polygon2158" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="487.94,196.57 495.84,189.61 496.14,189.61 "
-       id="polygon2160" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="489.63,198.74 497.82,191.46 497.82,191.78 "
-       id="polygon2162" />
-    <line
-       x1="453.70001"
-       y1="155.95"
-       x2="454.92001"
-       y2="157.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2164" />
-    <line
-       x1="487.82001"
-       y1="171.77"
-       x2="489.63"
-       y2="171.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2166" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="435.01,259.25 428.66,263.55 428.72,264 "
-       id="polygon2168" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="434.17,258.13 427.82,262.42 428.19,262.71 "
-       id="polygon2170" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.25,186.86 432.13,178.29 432.34,178.09 "
-       id="polygon2172" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="434.83,258.81 428.48,263.11 428.66,263.55 "
-       id="polygon2174" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="434.54,258.43 428.19,262.71 428.48,263.11 "
-       id="polygon2176" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="392.27,174.7 394.55,164.64 394.65,164.94 "
-       id="polygon2178" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="434.8,179.86 429.72,188.63 429.51,188.83 "
-       id="polygon2180" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="429.8,188.36 434.82,179.26 434.88,179.58 "
-       id="polygon2182" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="488.29,196.69 496.14,189.61 496.48,189.73 "
-       id="polygon2184" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="489.63,198.42 497.71,191.07 497.82,191.46 "
-       id="polygon2186" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="327.32,188.6 329.6,197.34 329.93,197.55 "
-       id="polygon2188" />
-    <line
-       x1="489.63"
-       y1="171.62"
-       x2="491.42001"
-       y2="171.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2190" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.46,173.82 391.65,164.3 391.84,164.07 "
-       id="polygon2192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.57,186.76 432.34,178.09 432.66,177.99 "
-       id="polygon2194" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="488.65,196.93 496.48,189.73 496.85,189.96 "
-       id="polygon2196" />
-    <line
-       x1="351.09"
-       y1="300.03"
-       x2="349.07999"
-       y2="296.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2198" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="489.51,198.04 497.49,190.68 497.71,191.07 "
-       id="polygon2200" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="429.74,188.03 434.63,178.91 434.82,179.26 "
-       id="polygon2202" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="392.17,174.4 394.3,164.36 394.55,164.64 "
-       id="polygon2204" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="324.95,189.41 327.22,198.15 327.45,197.82 "
-       id="polygon2206" />
-    <line
-       x1="419.79999"
-       y1="330.64999"
-       x2="416.14001"
-       y2="331.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2208" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="326.9,188.49 329.18,197.24 329.6,197.34 "
-       id="polygon2210" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="489,197.25 496.85,189.96 497.2,190.29 "
-       id="polygon2212" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="489.3,197.64 497.2,190.29 497.49,190.68 "
-       id="polygon2214" />
-    <line
-       x1="452.54001"
-       y1="154.64"
-       x2="453.70001"
-       y2="155.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2216" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.78,173.66 391.84,164.07 392.16,163.89 "
-       id="polygon2218" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.98,186.77 432.66,177.99 433.06,177.99 "
-       id="polygon2220" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.18,189.08 327.45,197.82 327.8,197.55 "
-       id="polygon2222" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="429.55,187.69 434.32,178.59 434.63,178.91 "
-       id="polygon2224" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="326.43,188.49 328.71,197.24 329.18,197.24 "
-       id="polygon2226" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="391.93,174.11 393.95,164.11 394.3,164.36 "
-       id="polygon2228" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.53,188.8 327.8,197.55 328.24,197.34 "
-       id="polygon2230" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.96,188.6 328.24,197.34 328.71,197.24 "
-       id="polygon2232" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="428.42,186.88 433.06,177.99 433.5,178.1 "
-       id="polygon2234" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="429.24,187.36 433.93,178.31 434.32,178.59 "
-       id="polygon2236" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.19,173.57 392.16,163.89 392.57,163.81 "
-       id="polygon2238" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="428.85,187.08 433.5,178.1 433.93,178.31 "
-       id="polygon2240" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="391.57,173.87 393.52,163.92 393.95,164.11 "
-       id="polygon2242" />
-    <line
-       x1="423.59"
-       y1="221.7"
-       x2="424.20001"
-       y2="222.49001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.66,173.58 392.57,163.81 393.04,163.82 "
-       id="polygon2246" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="391.14,173.68 393.04,163.82 393.52,163.92 "
-       id="polygon2248" />
-    <line
-       x1="451.42999"
-       y1="153.32001"
-       x2="452.54001"
-       y2="154.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2250" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="497.82,191.78 489.63,198.74 489.52,198.98 "
-       id="polygon2252" />
-    <line
-       x1="423.34"
-       y1="329.64999"
-       x2="419.79999"
-       y2="330.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="495.84,189.61 487.64,196.57 487.94,196.57 "
-       id="polygon2256" />
-    <line
-       x1="450.39001"
-       y1="152.00999"
-       x2="451.42999"
-       y2="153.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2258" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="497.82,191.46 489.63,198.42 489.63,198.74 "
-       id="polygon2260" />
-    <line
-       x1="263.48001"
-       y1="143.22"
-       x2="263.19"
-       y2="142.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2262" />
-    <line
-       x1="349.07999"
-       y1="296.97"
-       x2="347.29999"
-       y2="293.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2264" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="496.14,189.61 487.94,196.57 488.29,196.69 "
-       id="polygon2266" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="497.71,191.07 489.51,198.04 489.63,198.42 "
-       id="polygon2268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="426.77,262.59 426.32,262.55 426.62,262.32 "
-       id="polygon2270" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="496.48,189.73 488.29,196.69 488.65,196.93 "
-       id="polygon2272" />
-    <line
-       x1="424.20001"
-       y1="222.49001"
-       x2="424.82001"
-       y2="223.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2274" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="497.49,190.68 489.3,197.64 489.51,198.04 "
-       id="polygon2276" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.65,164.3 389.27,174.06 389.46,173.82 "
-       id="polygon2278" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="496.85,189.96 488.65,196.93 489,197.25 "
-       id="polygon2280" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="394.55,164.64 392.17,174.4 392.27,174.7 "
-       id="polygon2282" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="497.2,190.29 489,197.25 489.3,197.64 "
-       id="polygon2284" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="432.34,178.09 427.25,186.86 427.57,186.76 "
-       id="polygon2286" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="428.23,264.55 428.64,264.43 428.45,264.77 "
-       id="polygon2288" />
-    <line
-       x1="449.41"
-       y1="150.7"
-       x2="450.39001"
-       y2="152.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2290" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.84,164.07 389.46,173.82 389.78,173.66 "
-       id="polygon2292" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="434.63,178.91 429.55,187.69 429.74,188.03 "
-       id="polygon2294" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="394.3,164.36 391.93,174.11 392.17,174.4 "
-       id="polygon2296" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="432.66,177.99 427.57,186.76 427.98,186.77 "
-       id="polygon2298" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.41,262.25 427.41,262.53 427.73,262.67 "
-       id="polygon2300" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="428.66,263.55 428.26,263.21 428.41,263.57 "
-       id="polygon2302" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="434.32,178.59 429.24,187.36 429.55,187.69 "
-       id="polygon2304" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="433.06,177.99 427.98,186.77 428.42,186.88 "
-       id="polygon2306" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="392.16,163.89 389.78,173.66 390.19,173.57 "
-       id="polygon2308" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="393.95,164.11 391.57,173.87 391.93,174.11 "
-       id="polygon2310" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="433.93,178.31 428.85,187.08 429.24,187.36 "
-       id="polygon2312" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="433.5,178.1 428.42,186.88 428.85,187.08 "
-       id="polygon2314" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="392.57,163.81 390.19,173.57 390.66,173.58 "
-       id="polygon2316" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="393.52,163.92 391.14,173.68 391.57,173.87 "
-       id="polygon2318" />
-    <line
-       x1="426.76999"
-       y1="328.38"
-       x2="423.34"
-       y2="329.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2320" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="393.04,163.82 390.66,173.58 391.14,173.68 "
-       id="polygon2322" />
-    <line
-       x1="263.19"
-       y1="142.53999"
-       x2="263"
-       y2="141.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2324" />
-    <line
-       x1="448.48001"
-       y1="149.39999"
-       x2="449.41"
-       y2="150.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2326" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="404.27,208.87 408.03,199.95 408.05,200.29 "
-       id="polygon2328" />
-    <line
-       x1="347.29999"
-       y1="293.89999"
-       x2="345.76001"
-       y2="290.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2330" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="404.25,208.53 407.86,199.6 408.03,199.95 "
-       id="polygon2332" />
-    <line
-       x1="424.82001"
-       y1="223.37"
-       x2="427.32001"
-       y2="225.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2334" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.05,207.33 405.48,198.88 405.84,198.75 "
-       id="polygon2336" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="429.72,188.63 429.52,188.25 429.45,188.48 "
-       id="polygon2338" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="404.08,208.18 407.57,199.27 407.86,199.6 "
-       id="polygon2340" />
-    <line
-       x1="447.63"
-       y1="148.12"
-       x2="448.48001"
-       y2="149.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2342" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.49,207.31 405.84,198.75 406.27,198.73 "
-       id="polygon2344" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="403.79,207.86 407.18,199 407.57,199.27 "
-       id="polygon2346" />
-    <line
-       x1="430.04999"
-       y1="326.82999"
-       x2="426.76999"
-       y2="328.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2348" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="402.95,207.39 406.27,198.73 406.73,198.82 "
-       id="polygon2350" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="403.4,207.58 406.73,198.82 407.18,199 "
-       id="polygon2352" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="332.42,206.6 329.93,197.55 330.13,197.82 "
-       id="polygon2354" />
-    <line
-       x1="423.01999"
-       y1="204.38"
-       x2="420.59"
-       y2="203.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2356" />
-    <line
-       x1="263"
-       y1="141.88"
-       x2="262.89001"
-       y2="141.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2358" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="419.94,266.86 426.12,262.9 426.32,262.55 "
-       id="polygon2360" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="329.5,206.93 327.13,198.5 327.22,198.15 "
-       id="polygon2362" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="479.21,203.68 487.32,196.93 487.43,196.69 "
-       id="polygon2364" />
-    <line
-       x1="446.82999"
-       y1="146.86"
-       x2="447.63"
-       y2="148.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2366" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="331.89,206.12 329.18,197.24 329.6,197.34 "
-       id="polygon2368" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="329.74,206.6 327.22,198.15 327.45,197.82 "
-       id="polygon2370" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="331.47,206.01 328.71,197.24 329.18,197.24 "
-       id="polygon2372" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="481.3,205.97 489.63,198.74 489.52,198.98 "
-       id="polygon2374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="330.09,206.32 327.45,197.82 327.8,197.55 "
-       id="polygon2376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="331,206.01 328.24,197.34 328.71,197.24 "
-       id="polygon2378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="330.52,206.12 327.8,197.55 328.24,197.34 "
-       id="polygon2380" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="426.12,262.9 419.74,267.2 419.94,266.86 "
-       id="polygon2382" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="421.03,266.55 427,262.21 427.41,262.25 "
-       id="polygon2384" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="422.27,268.73 428.72,264 428.64,264.43 "
-       id="polygon2386" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="421.44,266.72 427.41,262.25 427.82,262.42 "
-       id="polygon2388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="479.72,203.55 487.64,196.57 487.94,196.57 "
-       id="polygon2390" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="422.34,268.31 428.66,263.55 428.72,264 "
-       id="polygon2392" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="481.41,205.73 489.63,198.42 489.63,198.74 "
-       id="polygon2394" />
-    <line
-       x1="345.76001"
-       y1="290.85001"
-       x2="344.45999"
-       y2="287.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2396" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="421.81,267.02 427.82,262.42 428.19,262.71 "
-       id="polygon2398" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="422.29,267.85 428.48,263.11 428.66,263.55 "
-       id="polygon2400" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="422.1,267.41 428.19,262.71 428.48,263.11 "
-       id="polygon2402" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="480.07,203.68 487.94,196.57 488.29,196.69 "
-       id="polygon2404" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="481.41,205.41 489.51,198.04 489.63,198.42 "
-       id="polygon2406" />
-    <line
-       x1="446.09"
-       y1="145.63"
-       x2="446.82999"
-       y2="146.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2408" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="480.44,203.92 488.29,196.69 488.65,196.93 "
-       id="polygon2410" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="481.3,205.03 489.3,197.64 489.51,198.04 "
-       id="polygon2412" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="405.23,199.1 401.44,207.68 401.7,207.46 "
-       id="polygon2414" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="408.03,199.95 404.25,208.53 404.27,208.87 "
-       id="polygon2416" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="480.79,204.25 488.65,196.93 489,197.25 "
-       id="polygon2418" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="481.08,204.63 489,197.25 489.3,197.64 "
-       id="polygon2420" />
-    <line
-       x1="427.32001"
-       y1="225.03"
-       x2="429.82001"
-       y2="226.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2422" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="405.48,198.88 401.7,207.46 402.05,207.33 "
-       id="polygon2424" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="407.86,199.6 404.08,208.18 404.25,208.53 "
-       id="polygon2426" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="389.89,184.49 392.17,174.4 392.27,174.7 "
-       id="polygon2428" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="424.71,197.16 429.74,188.03 429.8,188.36 "
-       id="polygon2430" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="405.84,198.75 402.05,207.33 402.49,207.31 "
-       id="polygon2432" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="407.57,199.27 403.79,207.86 404.08,208.18 "
-       id="polygon2434" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.07,183.61 389.27,174.06 389.46,173.82 "
-       id="polygon2436" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="406.27,198.73 402.49,207.31 402.95,207.39 "
-       id="polygon2438" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="407.18,199 403.4,207.58 403.79,207.86 "
-       id="polygon2440" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="406.73,198.82 402.95,207.39 403.4,207.58 "
-       id="polygon2442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="422.48,195.56 427.25,186.86 427.57,186.76 "
-       id="polygon2444" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="389.79,184.19 391.93,174.11 392.17,174.4 "
-       id="polygon2446" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="424.65,196.83 429.55,187.69 429.74,188.03 "
-       id="polygon2448" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.39,183.44 389.46,173.82 389.78,173.66 "
-       id="polygon2450" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="422.88,195.56 427.57,186.76 427.98,186.77 "
-       id="polygon2452" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="329.93,197.55 332.21,206.32 332.42,206.6 "
-       id="polygon2454" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="424.46,196.49 429.24,187.36 429.55,187.69 "
-       id="polygon2456" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="389.55,183.9 391.57,173.87 391.93,174.11 "
-       id="polygon2458" />
-    <line
-       x1="425.44"
-       y1="205.78999"
-       x2="423.01999"
-       y2="204.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2460" />
-    <line
-       x1="445.42001"
-       y1="144.44"
-       x2="446.09"
-       y2="145.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2462" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="423.32,195.67 427.98,186.77 428.42,186.88 "
-       id="polygon2464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.8,183.36 389.78,173.66 390.19,173.57 "
-       id="polygon2466" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="424.15,196.16 428.85,187.08 429.24,187.36 "
-       id="polygon2468" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="423.76,195.88 428.42,186.88 428.85,187.08 "
-       id="polygon2470" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="389.19,183.66 391.14,173.68 391.57,173.87 "
-       id="polygon2472" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="327.13,198.5 329.41,207.27 329.5,206.93 "
-       id="polygon2474" />
-    <line
-       x1="262.85999"
-       y1="140.63"
-       x2="262.92999"
-       y2="140.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2476" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="329.6,197.34 331.89,206.12 332.21,206.32 "
-       id="polygon2478" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="388.75,183.47 390.66,173.58 391.14,173.68 "
-       id="polygon2480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="487.64,196.57 479.43,203.55 479.72,203.55 "
-       id="polygon2482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="327.22,198.15 329.5,206.93 329.74,206.6 "
-       id="polygon2484" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="329.18,197.24 331.47,206.01 331.89,206.12 "
-       id="polygon2486" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="489.63,198.42 481.41,205.41 481.41,205.73 "
-       id="polygon2488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="327.45,197.82 329.74,206.6 330.09,206.32 "
-       id="polygon2490" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="328.71,197.24 331,206.01 331.47,206.01 "
-       id="polygon2492" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="487.94,196.57 479.72,203.55 480.07,203.68 "
-       id="polygon2494" />
-    <line
-       x1="344.45999"
-       y1="287.84"
-       x2="343.41"
-       y2="284.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="327.8,197.55 330.09,206.32 330.52,206.12 "
-       id="polygon2498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="328.24,197.34 330.52,206.12 331,206.01 "
-       id="polygon2500" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="489.51,198.04 481.3,205.03 481.41,205.41 "
-       id="polygon2502" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="488.29,196.69 480.07,203.68 480.44,203.92 "
-       id="polygon2504" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="489.3,197.64 481.08,204.63 481.3,205.03 "
-       id="polygon2506" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="488.65,196.93 480.44,203.92 480.79,204.25 "
-       id="polygon2508" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="489,197.25 480.79,204.25 481.08,204.63 "
-       id="polygon2510" />
-    <line
-       x1="444.81"
-       y1="143.28999"
-       x2="445.42001"
-       y2="144.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2512" />
-    <line
-       x1="429.82001"
-       y1="226.96001"
-       x2="432.29999"
-       y2="229.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2514" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="428.72,264 422.34,268.31 422.27,268.73 "
-       id="polygon2516" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="427.41,262.25 421.03,266.55 421.44,266.72 "
-       id="polygon2518" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="428.66,263.55 422.29,267.85 422.34,268.31 "
-       id="polygon2520" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="427.82,262.42 421.44,266.72 421.81,267.02 "
-       id="polygon2522" />
-    <line
-       x1="438.89999"
-       y1="320.62"
-       x2="436.13"
-       y2="322.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2524" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.04,187.06 421.95,195.86 422.16,195.66 "
-       id="polygon2526" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="428.48,263.11 422.1,267.41 422.29,267.85 "
-       id="polygon2528" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="428.19,262.71 421.81,267.02 422.1,267.41 "
-       id="polygon2530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.27,174.06 386.88,183.85 387.07,183.61 "
-       id="polygon2532" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="429.74,188.03 424.65,196.83 424.71,197.16 "
-       id="polygon2534" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.25,186.86 422.16,195.66 422.48,195.56 "
-       id="polygon2536" />
-    <line
-       x1="357.32999"
-       y1="295.54999"
-       x2="360.45999"
-       y2="298.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2538" />
-    <line
-       x1="363.75"
-       y1="300.85001"
-       x2="367.17999"
-       y2="303.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2540" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.46,173.82 387.07,183.61 387.39,183.44 "
-       id="polygon2542" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="391.93,174.11 389.55,183.9 389.79,184.19 "
-       id="polygon2544" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="429.55,187.69 424.46,196.49 424.65,196.83 "
-       id="polygon2546" />
-    <line
-       x1="354.35999"
-       y1="292.64001"
-       x2="357.32999"
-       y2="295.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="427.57,186.76 422.48,195.56 422.88,195.56 "
-       id="polygon2550" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.78,173.66 387.39,183.44 387.8,183.36 "
-       id="polygon2552" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="429.24,187.36 424.15,196.16 424.46,196.49 "
-       id="polygon2554" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="391.57,173.87 389.19,183.66 389.55,183.9 "
-       id="polygon2556" />
-    <line
-       x1="367.17999"
-       y1="303.20001"
-       x2="370.72"
-       y2="305.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2558" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="427.98,186.77 422.88,195.56 423.32,195.67 "
-       id="polygon2560" />
-    <line
-       x1="444.25"
-       y1="142.19"
-       x2="444.81"
-       y2="143.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2562" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="329.77,207.5 329.47,207.6 329.41,207.27 "
-       id="polygon2564" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="428.85,187.08 423.76,195.88 424.15,196.16 "
-       id="polygon2566" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="428.42,186.88 423.32,195.67 423.76,195.88 "
-       id="polygon2568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.19,173.57 387.8,183.36 388.27,183.37 "
-       id="polygon2570" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="391.14,173.68 388.75,183.47 389.19,183.66 "
-       id="polygon2572" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="390.66,173.58 388.27,183.37 388.75,183.47 "
-       id="polygon2574" />
-    <line
-       x1="427.84"
-       y1="207.48"
-       x2="425.44"
-       y2="205.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2576" />
-    <line
-       x1="370.72"
-       y1="305.32001"
-       x2="374.38"
-       y2="307.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2578" />
-    <line
-       x1="348.98999"
-       y1="286.37"
-       x2="351.57999"
-       y2="289.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2580" />
-    <line
-       x1="343.41"
-       y1="284.88"
-       x2="342.60999"
-       y2="282"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2582" />
-    <line
-       x1="441.47"
-       y1="318.04999"
-       x2="438.89999"
-       y2="320.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2584" />
-    <line
-       x1="263.07999"
-       y1="139.52"
-       x2="263.32001"
-       y2="139.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2586" />
-    <line
-       x1="374.38"
-       y1="307.20001"
-       x2="378.12"
-       y2="308.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2588" />
-    <line
-       x1="432.29999"
-       y1="229.14"
-       x2="434.73001"
-       y2="231.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2590" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="424.19,197.43 424.63,197.43 424.41,197.63 "
-       id="polygon2592" />
-    <line
-       x1="346.60999"
-       y1="283.06"
-       x2="348.98999"
-       y2="286.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2594" />
-    <line
-       x1="443.76001"
-       y1="141.14"
-       x2="444.25"
-       y2="142.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2596" />
-    <line
-       x1="378.12"
-       y1="308.82999"
-       x2="381.92999"
-       y2="310.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2598" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="400.48,217.48 404.25,208.53 404.27,208.87 "
-       id="polygon2600" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="473.07,212.99 481.41,205.73 481.3,205.97 "
-       id="polygon2602" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="400.46,217.14 404.08,208.18 404.25,208.53 "
-       id="polygon2604" />
-    <line
-       x1="344.42999"
-       y1="279.67001"
-       x2="346.60999"
-       y2="283.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2606" />
-    <line
-       x1="443.82999"
-       y1="315.26001"
-       x2="441.47"
-       y2="318.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2608" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.26,215.93 401.7,207.46 402.05,207.33 "
-       id="polygon2610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="471.49,210.57 479.43,203.55 479.72,203.56 "
-       id="polygon2612" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="473.18,212.76 481.41,205.41 481.41,205.73 "
-       id="polygon2614" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="400.29,216.79 403.79,207.86 404.08,208.18 "
-       id="polygon2616" />
-    <line
-       x1="381.92999"
-       y1="310.20001"
-       x2="385.79001"
-       y2="311.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2618" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.69,215.91 402.05,207.33 402.49,207.31 "
-       id="polygon2620" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="400,216.46 403.4,207.58 403.79,207.86 "
-       id="polygon2622" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="331.76,216.4 329.67,207.88 329.47,207.6 "
-       id="polygon2624" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="399.16,216 402.49,207.31 402.95,207.39 "
-       id="polygon2626" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="399.61,216.19 402.95,207.39 403.4,207.58 "
-       id="polygon2628" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="471.84,210.7 479.72,203.56 480.07,203.68 "
-       id="polygon2630" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="473.18,212.43 481.3,205.03 481.41,205.41 "
-       id="polygon2632" />
-    <line
-       x1="443.32001"
-       y1="140.14999"
-       x2="443.76001"
-       y2="141.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2634" />
-    <line
-       x1="430.17999"
-       y1="209.46001"
-       x2="427.84"
-       y2="207.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2636" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="472.2,210.94 480.07,203.68 480.43,203.92 "
-       id="polygon2638" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="473.07,212.05 481.08,204.63 481.3,205.03 "
-       id="polygon2640" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="472.55,211.27 480.43,203.92 480.78,204.25 "
-       id="polygon2642" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="472.85,211.65 480.78,204.25 481.08,204.63 "
-       id="polygon2644" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="334.51,215.12 331.89,206.12 332.21,206.32 "
-       id="polygon2646" />
-    <line
-       x1="434.73001"
-       y1="231.57001"
-       x2="437.09"
-       y2="234.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2648" />
-    <line
-       x1="342.48999"
-       y1="276.20001"
-       x2="344.42999"
-       y2="279.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2650" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="334.18,214.91 331.47,206.01 331.89,206.12 "
-       id="polygon2652" />
-    <line
-       x1="342.60999"
-       y1="282"
-       x2="342.06"
-       y2="279.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2654" />
-    <line
-       x1="385.79001"
-       y1="311.29001"
-       x2="389.67999"
-       y2="312.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.03,215.4 329.5,206.93 329.74,206.6 "
-       id="polygon2658" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="333.77,214.81 331,206.01 331.47,206.01 "
-       id="polygon2660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.38,215.12 329.74,206.6 330.09,206.32 "
-       id="polygon2662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="333.29,214.81 330.52,206.12 331,206.01 "
-       id="polygon2664" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.82,214.92 330.09,206.32 330.52,206.12 "
-       id="polygon2666" />
-    <line
-       x1="445.95999"
-       y1="312.26001"
-       x2="443.82999"
-       y2="315.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2668" />
-    <line
-       x1="263.63"
-       y1="138.59"
-       x2="264.01999"
-       y2="138.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2670" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="387.5,194.3 389.79,184.19 389.89,184.49 "
-       id="polygon2672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.05,204.48 421.95,195.86 422.16,195.66 "
-       id="polygon2674" />
-    <line
-       x1="442.92999"
-       y1="139.23"
-       x2="443.32001"
-       y2="140.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2676" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="481.41,205.73 473.18,212.76 473.07,212.99 "
-       id="polygon2678" />
-    <line
-       x1="389.67999"
-       y1="312.09"
-       x2="393.59"
-       y2="312.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="479.43,203.55 471.2,210.57 471.49,210.57 "
-       id="polygon2682" />
-    <line
-       x1="340.76999"
-       y1="272.70001"
-       x2="342.48999"
-       y2="276.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2684" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="387.4,194 389.55,183.9 389.79,184.19 "
-       id="polygon2686" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="419.54,205.65 424.46,196.49 424.65,196.83 "
-       id="polygon2688" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="413.53,271.16 419.74,267.2 419.94,266.86 "
-       id="polygon2690" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="481.41,205.41 473.18,212.43 473.18,212.76 "
-       id="polygon2692" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.44,207.68 397.64,216.29 397.9,216.06 "
-       id="polygon2694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385,193.26 387.07,183.61 387.39,183.44 "
-       id="polygon2696" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="479.72,203.56 471.49,210.57 471.84,210.7 "
-       id="polygon2698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.77,204.38 422.48,195.56 422.88,195.56 "
-       id="polygon2700" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="387.16,193.71 389.19,183.65 389.55,183.9 "
-       id="polygon2702" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="419.35,205.31 424.15,196.16 424.46,196.49 "
-       id="polygon2704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.41,193.17 387.39,183.44 387.8,183.36 "
-       id="polygon2706" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="481.3,205.03 473.07,212.05 473.18,212.43 "
-       id="polygon2708" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="418.21,204.5 422.88,195.56 423.32,195.67 "
-       id="polygon2710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.7,207.46 397.9,216.06 398.26,215.93 "
-       id="polygon2712" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="404.08,208.18 400.29,216.79 400.46,217.14 "
-       id="polygon2714" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="419.04,204.98 423.76,195.88 424.15,196.16 "
-       id="polygon2716" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="386.8,193.47 388.75,183.47 389.19,183.65 "
-       id="polygon2718" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="480.07,203.68 471.84,210.7 472.2,210.94 "
-       id="polygon2720" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="418.65,204.7 423.32,195.67 423.76,195.88 "
-       id="polygon2722" />
-    <line
-       x1="437.09"
-       y1="234.23"
-       x2="439.38"
-       y2="237.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.88,193.18 387.8,183.36 388.27,183.37 "
-       id="polygon2726" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="386.36,193.29 388.27,183.37 388.75,183.47 "
-       id="polygon2728" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="481.08,204.63 472.85,211.65 473.07,212.05 "
-       id="polygon2730" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="480.43,203.92 472.2,210.94 472.55,211.27 "
-       id="polygon2732" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.05,207.33 398.26,215.93 398.69,215.91 "
-       id="polygon2734" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="480.78,204.25 472.55,211.27 472.85,211.65 "
-       id="polygon2736" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="403.79,207.86 400,216.46 400.29,216.79 "
-       id="polygon2738" />
-    <line
-       x1="447.88"
-       y1="309.06"
-       x2="445.95999"
-       y2="312.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2740" />
-    <line
-       x1="432.45999"
-       y1="211.71001"
-       x2="430.17999"
-       y2="209.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2742" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="402.49,207.31 398.69,215.91 399.16,216 "
-       id="polygon2744" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="403.4,207.58 399.61,216.19 400,216.46 "
-       id="polygon2746" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="414.62,270.86 420.62,266.51 421.03,266.55 "
-       id="polygon2748" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="402.95,207.39 399.16,216 399.61,216.19 "
-       id="polygon2750" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="415.86,273.04 422.34,268.31 422.27,268.73 "
-       id="polygon2752" />
-    <line
-       x1="393.59"
-       y1="312.60999"
-       x2="397.48999"
-       y2="312.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2754" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="415.04,271.03 421.03,266.55 421.44,266.72 "
-       id="polygon2756" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="415.93,272.62 422.29,267.85 422.34,268.31 "
-       id="polygon2758" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="415.41,271.33 421.44,266.72 421.81,267.02 "
-       id="polygon2760" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="415.88,272.16 422.1,267.41 422.29,267.85 "
-       id="polygon2762" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="415.7,271.72 421.81,267.02 422.1,267.41 "
-       id="polygon2764" />
-    <line
-       x1="442.60001"
-       y1="138.37"
-       x2="442.92999"
-       y2="139.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2766" />
-    <line
-       x1="339.29001"
-       y1="269.17999"
-       x2="340.76999"
-       y2="272.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="329.5,206.93 331.79,215.73 332.03,215.4 "
-       id="polygon2770" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="331.47,206.01 333.77,214.81 334.18,214.91 "
-       id="polygon2772" />
-    <line
-       x1="342.06"
-       y1="279.22"
-       x2="341.76001"
-       y2="276.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2774" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="424.63,197.43 419.52,206.25 419.31,206.45 "
-       id="polygon2776" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="329.74,206.6 332.03,215.4 332.38,215.12 "
-       id="polygon2778" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="331,206.01 333.29,214.81 333.77,214.81 "
-       id="polygon2780" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="330.09,206.32 332.38,215.12 332.82,214.92 "
-       id="polygon2782" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="330.52,206.12 332.82,214.92 333.29,214.81 "
-       id="polygon2784" />
-    <line
-       x1="397.48999"
-       y1="312.82001"
-       x2="401.35999"
-       y2="312.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2786" />
-    <line
-       x1="449.54001"
-       y1="305.67999"
-       x2="447.88"
-       y2="309.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2788" />
-    <line
-       x1="439.38"
-       y1="237.13"
-       x2="441.56"
-       y2="240.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.88,183.85 384.49,193.66 384.68,193.43 "
-       id="polygon2792" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="389.79,184.19 387.4,194 387.5,194.3 "
-       id="polygon2794" />
-    <line
-       x1="264.48999"
-       y1="137.87"
-       x2="265.03"
-       y2="137.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2796" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="424.65,196.83 419.54,205.65 419.6,205.98 "
-       id="polygon2798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="422.16,195.66 417.05,204.48 417.37,204.38 "
-       id="polygon2800" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.07,183.61 384.68,193.43 385,193.26 "
-       id="polygon2802" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="389.55,183.9 387.16,193.71 387.4,194 "
-       id="polygon2804" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="424.46,196.49 419.35,205.31 419.54,205.65 "
-       id="polygon2806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="422.48,195.56 417.37,204.38 417.77,204.38 "
-       id="polygon2808" />
-    <line
-       x1="442.32001"
-       y1="137.58"
-       x2="442.60001"
-       y2="138.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.39,183.44 385,193.26 385.41,193.17 "
-       id="polygon2812" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="389.19,183.65 386.8,193.47 387.16,193.71 "
-       id="polygon2814" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="424.15,196.16 419.04,204.98 419.35,205.31 "
-       id="polygon2816" />
-    <line
-       x1="338.06"
-       y1="265.66"
-       x2="339.29001"
-       y2="269.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2818" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="422.88,195.56 417.77,204.38 418.21,204.5 "
-       id="polygon2820" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.8,183.36 385.41,193.17 385.88,193.18 "
-       id="polygon2822" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="423.76,195.88 418.65,204.7 419.04,204.98 "
-       id="polygon2824" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="423.32,195.67 418.21,204.5 418.65,204.7 "
-       id="polygon2826" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="388.75,183.47 386.36,193.29 386.8,193.47 "
-       id="polygon2828" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="388.27,183.37 385.88,193.18 386.36,193.29 "
-       id="polygon2830" />
-    <line
-       x1="434.64999"
-       y1="214.22"
-       x2="432.45999"
-       y2="211.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2832" />
-    <line
-       x1="401.35999"
-       y1="312.73999"
-       x2="405.19"
-       y2="312.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2834" />
-    <line
-       x1="450.97"
-       y1="302.13"
-       x2="449.54001"
-       y2="305.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2836" />
-    <polygon
-       style="opacity:1;fill:#0000d4"
-       points="421.77,269.32 415.36,273.63 414.98,273.73 "
-       id="polygon2838" />
-    <line
-       x1="441.56"
-       y1="240.22"
-       x2="443.62"
-       y2="243.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2840" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="420.24,266.62 413.83,270.92 414.21,270.82 "
-       id="polygon2842" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="422.34,268.31 415.93,272.62 415.86,273.04 "
-       id="polygon2844" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="421.03,266.55 414.62,270.86 415.04,271.03 "
-       id="polygon2846" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="422.29,267.85 415.88,272.16 415.93,272.62 "
-       id="polygon2848" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="421.44,266.72 415.04,271.03 415.41,271.33 "
-       id="polygon2850" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="422.1,267.41 415.7,271.72 415.88,272.16 "
-       id="polygon2852" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="421.81,267.02 415.41,271.33 415.7,271.72 "
-       id="polygon2854" />
-    <line
-       x1="341.76001"
-       y1="276.56"
-       x2="341.70999"
-       y2="274.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2856" />
-    <line
-       x1="405.19"
-       y1="312.35999"
-       x2="408.95001"
-       y2="311.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2858" />
-    <line
-       x1="452.14999"
-       y1="298.44"
-       x2="450.97"
-       y2="302.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2860" />
-    <line
-       x1="337.06"
-       y1="262.17001"
-       x2="338.06"
-       y2="265.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2862" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="463.59,217.75 471.49,210.58 471.84,210.7 "
-       id="polygon2864" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="464.93,219.48 473.07,212.05 473.18,212.43 "
-       id="polygon2866" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="463.95,217.99 471.84,210.7 472.2,210.94 "
-       id="polygon2868" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="464.82,219.1 472.85,211.65 473.07,212.05 "
-       id="polygon2870" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="464.3,218.32 472.2,210.94 472.55,211.27 "
-       id="polygon2872" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="464.6,218.7 472.55,211.27 472.85,211.65 "
-       id="polygon2874" />
-    <line
-       x1="443.62"
-       y1="243.50999"
-       x2="445.54001"
-       y2="246.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2876" />
-    <line
-       x1="265.63"
-       y1="137.39"
-       x2="266.29999"
-       y2="137.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2878" />
-    <line
-       x1="436.73999"
-       y1="216.97"
-       x2="434.64999"
-       y2="214.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2880" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="396.68,226.11 400.46,217.14 400.48,217.48 "
-       id="polygon2882" />
-    <line
-       x1="453.07001"
-       y1="294.63"
-       x2="452.14999"
-       y2="298.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.09,224.69 397.64,216.29 397.9,216.06 "
-       id="polygon2886" />
-    <line
-       x1="408.95001"
-       y1="311.67001"
-       x2="412.64001"
-       y2="310.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2888" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="396.65,225.76 400.29,216.79 400.46,217.14 "
-       id="polygon2890" />
-    <line
-       x1="441.89001"
-       y1="136.25"
-       x2="442.07999"
-       y2="136.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2892" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.45,224.56 397.9,216.06 398.26,215.93 "
-       id="polygon2894" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="396.48,225.41 400,216.46 400.29,216.79 "
-       id="polygon2896" />
-    <line
-       x1="445.54001"
-       y1="246.97"
-       x2="447.32001"
-       y2="250.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2898" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.89,224.54 398.26,215.93 398.7,215.91 "
-       id="polygon2900" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="337.02,224.21 334.51,215.12 334.71,215.39 "
-       id="polygon2902" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="396.19,225.09 399.61,216.19 400,216.46 "
-       id="polygon2904" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="395.35,224.63 398.7,215.91 399.16,216 "
-       id="polygon2906" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="473.18,212.76 464.94,219.8 464.83,220.04 "
-       id="polygon2908" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="395.8,224.81 399.16,216 399.61,216.19 "
-       id="polygon2910" />
-    <line
-       x1="336.32001"
-       y1="258.73001"
-       x2="337.06"
-       y2="262.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="471.2,210.57 462.95,217.62 463.24,217.63 "
-       id="polygon2914" />
-    <line
-       x1="453.73999"
-       y1="290.70001"
-       x2="453.07001"
-       y2="294.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2916" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="336.81,223.93 334.18,214.91 334.51,215.12 "
-       id="polygon2918" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="473.18,212.43 464.93,219.48 464.94,219.8 "
-       id="polygon2920" />
-    <line
-       x1="266.29999"
-       y1="137.25"
-       x2="267.04001"
-       y2="137.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2922" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="334.09,224.54 331.7,216.07 331.79,215.73 "
-       id="polygon2924" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="471.49,210.58 463.24,217.63 463.59,217.75 "
-       id="polygon2926" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="336.48,223.73 333.76,214.81 334.18,214.91 "
-       id="polygon2928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="415.21,273.36 415.66,273.39 415.36,273.63 "
-       id="polygon2930" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="334.33,224.21 331.79,215.73 332.03,215.4 "
-       id="polygon2932" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="471.84,210.7 463.59,217.75 463.95,217.99 "
-       id="polygon2934" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="387.45,194.59 385.06,204.42 384.86,204.66 "
-       id="polygon2936" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="385.11,204.14 387.4,194 387.5,194.3 "
-       id="polygon2938" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="336.07,223.63 333.29,214.81 333.76,214.81 "
-       id="polygon2940" />
-    <line
-       x1="412.64001"
-       y1="310.67999"
-       x2="416.22"
-       y2="309.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2942" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="472.85,211.65 464.6,218.7 464.82,219.1 "
-       id="polygon2944" />
-    <line
-       x1="447.32001"
-       y1="250.59"
-       x2="448.92001"
-       y2="254.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2946" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="334.68,223.94 332.03,215.4 332.38,215.12 "
-       id="polygon2948" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="472.2,210.94 463.95,217.99 464.3,218.32 "
-       id="polygon2950" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="414.48,214.82 419.54,205.65 419.6,205.98 "
-       id="polygon2952" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="335.59,223.63 332.82,214.91 333.29,214.81 "
-       id="polygon2954" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="472.55,211.27 464.3,218.32 464.6,218.7 "
-       id="polygon2956" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="335.12,223.73 332.38,215.12 332.82,214.91 "
-       id="polygon2958" />
-    <line
-       x1="454.16"
-       y1="286.70001"
-       x2="453.73999"
-       y2="290.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2960" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="385,203.84 387.16,193.71 387.4,194 "
-       id="polygon2962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="412.25,213.22 417.05,204.48 417.37,204.38 "
-       id="polygon2964" />
-    <line
-       x1="341.70999"
-       y1="274.04001"
-       x2="341.89001"
-       y2="271.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2966" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="414.42,214.5 419.35,205.31 419.54,205.65 "
-       id="polygon2968" />
-    <line
-       x1="438.70001"
-       y1="219.95"
-       x2="436.73999"
-       y2="216.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.6,203.09 384.68,193.42 385,193.25 "
-       id="polygon2972" />
-    <line
-       x1="441.73999"
-       y1="135.71001"
-       x2="441.89001"
-       y2="136.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2974" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="415.24,271.52 415.41,271.33 415.7,271.72 "
-       id="polygon2976" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="384.76,203.55 386.8,193.47 387.16,193.71 "
-       id="polygon2978" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="412.65,213.23 417.37,204.38 417.77,204.38 "
-       id="polygon2980" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="414.23,214.16 419.04,204.98 419.35,205.31 "
-       id="polygon2982" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="383.02,203.01 385,193.25 385.41,193.17 "
-       id="polygon2984" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="384.4,203.3 386.36,193.29 386.8,193.47 "
-       id="polygon2986" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="413.09,213.34 417.77,204.38 418.21,204.49 "
-       id="polygon2988" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="413.92,213.83 418.65,204.7 419.04,204.98 "
-       id="polygon2990" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="383.48,203.02 385.41,193.17 385.88,193.18 "
-       id="polygon2992" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="413.53,213.55 418.21,204.49 418.65,204.7 "
-       id="polygon2994" />
-    <line
-       x1="448.92001"
-       y1="254.34"
-       x2="450.34"
-       y2="258.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line2996" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="383.96,203.12 385.88,193.18 386.36,193.29 "
-       id="polygon2998" />
-    <line
-       x1="454.32999"
-       y1="282.64001"
-       x2="454.16"
-       y2="286.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3000" />
-    <line
-       x1="267.04001"
-       y1="137.17999"
-       x2="267.82001"
-       y2="137.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3002" />
-    <line
-       x1="416.22"
-       y1="309.39999"
-       x2="419.67999"
-       y2="307.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3004" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.64,216.29 393.84,224.91 394.09,224.69 "
-       id="polygon3006" />
-    <line
-       x1="335.82001"
-       y1="255.36"
-       x2="336.32001"
-       y2="258.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3008" />
-    <line
-       x1="450.34"
-       y1="258.20999"
-       x2="451.56"
-       y2="262.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3010" />
-    <line
-       x1="454.25"
-       y1="278.53"
-       x2="454.32999"
-       y2="282.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.9,216.06 394.09,224.69 394.45,224.56 "
-       id="polygon3014" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="400.29,216.79 396.48,225.41 396.65,225.76 "
-       id="polygon3016" />
-    <line
-       x1="451.56"
-       y1="262.17001"
-       x2="452.57001"
-       y2="266.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3018" />
-    <line
-       x1="453.92001"
-       y1="274.41"
-       x2="454.25"
-       y2="278.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="398.26,215.93 394.45,224.56 394.89,224.54 "
-       id="polygon3022" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="400,216.46 396.19,225.09 396.48,225.41 "
-       id="polygon3024" />
-    <line
-       x1="452.57001"
-       y1="266.20999"
-       x2="453.35999"
-       y2="270.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3026" />
-    <line
-       x1="453.35999"
-       y1="270.29001"
-       x2="453.92001"
-       y2="274.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3028" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="398.7,215.91 394.89,224.54 395.35,224.63 "
-       id="polygon3030" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="399.61,216.19 395.8,224.81 396.19,225.09 "
-       id="polygon3032" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="334.51,215.12 336.81,223.93 337.02,224.21 "
-       id="polygon3034" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="399.16,216 395.35,224.63 395.8,224.81 "
-       id="polygon3036" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="331.7,216.07 334,224.89 334.09,224.54 "
-       id="polygon3038" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="334.18,214.91 336.48,223.73 336.81,223.93 "
-       id="polygon3040" />
-    <line
-       x1="440.53"
-       y1="223.14"
-       x2="438.70001"
-       y2="219.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3042" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="416.84,204.68 411.71,213.52 411.93,213.32 "
-       id="polygon3044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="331.79,215.73 334.09,224.54 334.33,224.21 "
-       id="polygon3046" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="333.76,214.81 336.07,223.63 336.48,223.73 "
-       id="polygon3048" />
-    <line
-       x1="419.67999"
-       y1="307.82999"
-       x2="423.01001"
-       y2="305.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3050" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="419.54,205.65 414.42,214.5 414.48,214.82 "
-       id="polygon3052" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.05,204.48 411.93,213.32 412.25,213.22 "
-       id="polygon3054" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.03,215.4 334.33,224.21 334.68,223.94 "
-       id="polygon3056" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="333.29,214.81 335.59,223.63 336.07,223.63 "
-       id="polygon3058" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="384.68,193.42 382.28,203.26 382.6,203.09 "
-       id="polygon3060" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.38,215.12 334.68,223.94 335.12,223.73 "
-       id="polygon3062" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="387.16,193.71 384.76,203.55 385,203.84 "
-       id="polygon3064" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="332.82,214.91 335.12,223.73 335.59,223.63 "
-       id="polygon3066" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="419.35,205.31 414.23,214.16 414.42,214.5 "
-       id="polygon3068" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="417.37,204.38 412.25,213.22 412.65,213.23 "
-       id="polygon3070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385,193.25 382.6,203.09 383.02,203.01 "
-       id="polygon3072" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="386.8,193.47 384.4,203.3 384.76,203.55 "
-       id="polygon3074" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="419.04,204.98 413.92,213.83 414.23,214.16 "
-       id="polygon3076" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="417.77,204.38 412.65,213.23 413.09,213.34 "
-       id="polygon3078" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.41,193.17 383.02,203.01 383.48,203.02 "
-       id="polygon3080" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="386.36,193.29 383.96,203.12 384.4,203.3 "
-       id="polygon3082" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="418.65,204.7 413.53,213.55 413.92,213.83 "
-       id="polygon3084" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="418.21,204.49 413.09,213.34 413.53,213.55 "
-       id="polygon3086" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="385.88,193.18 383.48,203.02 383.96,203.12 "
-       id="polygon3088" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="409.23,277.7 415.86,273.04 415.66,273.39 "
-       id="polygon3090" />
-    <line
-       x1="341.89001"
-       y1="271.67999"
-       x2="342.32001"
-       y2="269.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3092" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="408.19,275.16 414.21,270.82 414.63,270.85 "
-       id="polygon3094" />
-    <line
-       x1="335.56"
-       y1="252.09"
-       x2="335.82001"
-       y2="255.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3096" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="409.43,277.36 415.93,272.62 415.86,273.04 "
-       id="polygon3098" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="408.6,275.34 414.63,270.85 415.04,271.03 "
-       id="polygon3100" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="409.5,276.93 415.88,272.16 415.93,272.62 "
-       id="polygon3102" />
-    <line
-       x1="268.66"
-       y1="137.27"
-       x2="269.54001"
-       y2="137.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3104" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="408.97,275.64 415.04,271.03 415.41,271.33 "
-       id="polygon3106" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="409.44,276.47 415.7,271.72 415.88,272.16 "
-       id="polygon3108" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="454.97,224.7 462.95,217.62 463.24,217.63 "
-       id="polygon3110" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="409.26,276.03 415.41,271.33 415.7,271.72 "
-       id="polygon3112" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="456.68,226.88 464.93,219.48 464.94,219.8 "
-       id="polygon3114" />
-    <line
-       x1="423.01001"
-       y1="305.97"
-       x2="426.17999"
-       y2="303.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3116" />
-    <line
-       x1="441.56"
-       y1="134.89"
-       x2="441.63"
-       y2="135.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3118" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="455.32,224.83 463.24,217.63 463.59,217.75 "
-       id="polygon3120" />
-    <line
-       x1="442.20001"
-       y1="226.53999"
-       x2="440.53"
-       y2="223.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3122" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="456.67,226.56 464.82,219.1 464.93,219.48 "
-       id="polygon3124" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="396.36,225.74 396.48,225.41 396.65,225.76 "
-       id="polygon3126" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="455.68,225.07 463.59,217.75 463.95,217.99 "
-       id="polygon3128" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="456.55,226.18 464.6,218.7 464.82,219.1 "
-       id="polygon3130" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="456.04,225.39 463.95,217.99 464.3,218.32 "
-       id="polygon3132" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="456.33,225.77 464.3,218.32 464.6,218.7 "
-       id="polygon3134" />
-    <line
-       x1="426.17999"
-       y1="303.84"
-       x2="429.19"
-       y2="301.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3136" />
-    <line
-       x1="269.54001"
-       y1="137.42"
-       x2="270.45999"
-       y2="137.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3138" />
-    <line
-       x1="443.70001"
-       y1="230.10001"
-       x2="442.20001"
-       y2="226.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3140" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="464.94,219.8 456.68,226.88 456.57,227.12 "
-       id="polygon3142" />
-    <line
-       x1="335.54999"
-       y1="248.94"
-       x2="335.56"
-       y2="252.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3144" />
-    <line
-       x1="276.67001"
-       y1="236.05"
-       x2="273.07999"
-       y2="236.49001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="462.95,217.62 454.68,224.7 454.97,224.7 "
-       id="polygon3148" />
-    <line
-       x1="280.20999"
-       y1="235.38"
-       x2="276.67001"
-       y2="236.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3150" />
-    <line
-       x1="273.07999"
-       y1="236.49001"
-       x2="269.45999"
-       y2="236.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3152" />
-    <line
-       x1="283.67999"
-       y1="234.48"
-       x2="280.20999"
-       y2="235.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3154" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="464.93,219.48 456.67,226.56 456.68,226.88 "
-       id="polygon3156" />
-    <line
-       x1="269.45999"
-       y1="236.69"
-       x2="265.82999"
-       y2="236.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3158" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="463.24,217.63 454.97,224.7 455.32,224.83 "
-       id="polygon3160" />
-    <line
-       x1="429.19"
-       y1="301.45001"
-       x2="432.01999"
-       y2="298.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3162" />
-    <line
-       x1="287.04999"
-       y1="233.36"
-       x2="283.67999"
-       y2="234.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3164" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="464.82,219.1 456.55,226.18 456.67,226.56 "
-       id="polygon3166" />
-    <line
-       x1="270.45999"
-       y1="137.64999"
-       x2="271.42001"
-       y2="137.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3168" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="413.83,270.92 407.39,275.23 407.77,275.13 "
-       id="polygon3170" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="463.59,217.75 455.32,224.83 455.68,225.07 "
-       id="polygon3172" />
-    <line
-       x1="265.82999"
-       y1="236.67"
-       x2="262.20999"
-       y2="236.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3174" />
-    <line
-       x1="342.32001"
-       y1="269.5"
-       x2="342.98001"
-       y2="267.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3176" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="464.6,218.7 456.33,225.77 456.55,226.18 "
-       id="polygon3178" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="463.95,217.99 455.68,225.07 456.04,225.39 "
-       id="polygon3180" />
-    <line
-       x1="290.32001"
-       y1="232"
-       x2="287.04999"
-       y2="233.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3182" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="415.86,273.04 409.43,277.36 409.23,277.7 "
-       id="polygon3184" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="464.3,218.32 456.04,225.39 456.33,225.77 "
-       id="polygon3186" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="406.5,222.66 411.7,214.12 411.63,213.79 "
-       id="polygon3188" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="392.86,234.75 396.65,225.76 396.68,226.11 "
-       id="polygon3190" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="415.93,272.62 409.5,276.93 409.43,277.36 "
-       id="polygon3192" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="414.63,270.85 408.19,275.16 408.6,275.34 "
-       id="polygon3194" />
-    <line
-       x1="262.20999"
-       y1="236.41"
-       x2="258.62"
-       y2="235.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3196" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.27,233.33 393.84,224.91 394.09,224.68 "
-       id="polygon3198" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="415.88,272.16 409.44,276.47 409.5,276.93 "
-       id="polygon3200" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="415.04,271.03 408.6,275.34 408.97,275.64 "
-       id="polygon3202" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="392.84,234.41 396.48,225.41 396.65,225.76 "
-       id="polygon3204" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="415.7,271.72 409.26,276.03 409.44,276.47 "
-       id="polygon3206" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="415.41,271.33 408.97,275.64 409.26,276.03 "
-       id="polygon3208" />
-    <line
-       x1="293.47"
-       y1="230.42"
-       x2="290.32001"
-       y2="232"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3210" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.63,233.2 394.09,224.68 394.45,224.55 "
-       id="polygon3212" />
-    <line
-       x1="445.01001"
-       y1="233.82001"
-       x2="443.70001"
-       y2="230.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3214" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="392.67,234.06 396.19,225.08 396.48,225.41 "
-       id="polygon3216" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="382.71,214 385,203.84 385.11,204.14 "
-       id="polygon3218" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.07,233.18 394.45,224.55 394.89,224.54 "
-       id="polygon3220" />
-    <line
-       x1="432.01999"
-       y1="298.79999"
-       x2="434.66"
-       y2="295.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3222" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="392.38,233.73 395.8,224.81 396.19,225.08 "
-       id="polygon3224" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="414.4,215.1 409.27,223.96 409.06,224.16 "
-       id="polygon3226" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="409.35,223.69 414.43,214.5 414.48,214.82 "
-       id="polygon3228" />
-    <line
-       x1="258.62"
-       y1="235.94"
-       x2="255.08"
-       y2="235.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3230" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="391.53,233.27 394.89,224.54 395.35,224.62 "
-       id="polygon3232" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.88,213.12 382.09,203.5 382.28,203.26 "
-       id="polygon3234" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="391.98,233.46 395.35,224.62 395.8,224.81 "
-       id="polygon3236" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="339.13,232.76 336.48,223.73 336.81,223.93 "
-       id="polygon3238" />
-    <line
-       x1="296.47"
-       y1="228.63"
-       x2="293.47"
-       y2="230.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3240" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="382.61,213.7 384.76,203.55 385,203.84 "
-       id="polygon3242" />
-    <line
-       x1="271.42001"
-       y1="137.96001"
-       x2="272.39999"
-       y2="138.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="407.11,222.09 411.93,213.32 412.25,213.22 "
-       id="polygon3246" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="336.4,233.38 334,224.89 334.09,224.54 "
-       id="polygon3248" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="409.29,223.37 414.23,214.16 414.43,214.5 "
-       id="polygon3250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="380.2,212.95 382.28,203.26 382.6,203.09 "
-       id="polygon3252" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="338.8,232.56 336.07,223.63 336.48,223.73 "
-       id="polygon3254" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="382.36,213.41 384.4,203.3 384.76,203.55 "
-       id="polygon3256" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="407.52,222.09 412.25,213.22 412.65,213.23 "
-       id="polygon3258" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="336.63,233.04 334.09,224.54 334.33,224.21 "
-       id="polygon3260" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="409.1,223.02 413.92,213.83 414.23,214.16 "
-       id="polygon3262" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="380.61,212.87 382.6,203.09 383.02,203.01 "
-       id="polygon3264" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="382,213.16 383.96,203.12 384.4,203.3 "
-       id="polygon3266" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="338.38,232.45 335.59,223.63 336.07,223.63 "
-       id="polygon3268" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="407.96,222.2 412.65,213.23 413.09,213.34 "
-       id="polygon3270" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="381.09,212.88 383.02,203.01 383.48,203.02 "
-       id="polygon3272" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="408.79,222.7 413.53,213.54 413.92,213.83 "
-       id="polygon3274" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="336.99,232.77 334.33,224.21 334.68,223.93 "
-       id="polygon3276" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="381.56,212.98 383.48,203.02 383.96,203.12 "
-       id="polygon3278" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="408.4,222.41 413.09,213.34 413.53,213.54 "
-       id="polygon3280" />
-    <line
-       x1="299.31"
-       y1="226.63"
-       x2="296.47"
-       y2="228.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3282" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="337.9,232.45 335.12,223.73 335.59,223.63 "
-       id="polygon3284" />
-    <line
-       x1="255.08"
-       y1="235.25"
-       x2="251.61"
-       y2="234.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3286" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="337.43,232.56 334.68,223.93 335.12,223.73 "
-       id="polygon3288" />
-    <line
-       x1="335.76999"
-       y1="245.92999"
-       x2="335.54999"
-       y2="248.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3290" />
-    <line
-       x1="434.66"
-       y1="295.92999"
-       x2="437.07999"
-       y2="292.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3292" />
-    <line
-       x1="446.13"
-       y1="237.67999"
-       x2="445.01001"
-       y2="233.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3294" />
-    <line
-       x1="301.98001"
-       y1="224.42999"
-       x2="299.31"
-       y2="226.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3296" />
-    <line
-       x1="272.39999"
-       y1="138.36"
-       x2="273.41"
-       y2="138.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3298" />
-    <line
-       x1="251.61"
-       y1="234.36"
-       x2="248.22"
-       y2="233.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3300" />
-    <line
-       x1="437.07999"
-       y1="292.82001"
-       x2="439.29999"
-       y2="289.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3302" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="407.39,275.23 407.3,275.7 407.55,275.5 "
-       id="polygon3304" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.84,224.91 390.02,233.55 390.27,233.33 "
-       id="polygon3306" />
-    <line
-       x1="304.45999"
-       y1="222.03999"
-       x2="301.98001"
-       y2="224.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3308" />
-    <line
-       x1="447.03"
-       y1="241.66"
-       x2="446.13"
-       y2="237.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3310" />
-    <line
-       x1="342.98001"
-       y1="267.5"
-       x2="343.85999"
-       y2="265.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.09,224.68 390.27,233.33 390.63,233.2 "
-       id="polygon3314" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="396.48,225.41 392.67,234.06 392.84,234.41 "
-       id="polygon3316" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="385,203.84 382.61,213.7 382.71,214 "
-       id="polygon3318" />
-    <line
-       x1="248.22"
-       y1="233.25999"
-       x2="244.94"
-       y2="231.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3320" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="414.43,214.5 409.29,223.37 409.35,223.69 "
-       id="polygon3322" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="411.93,213.32 406.79,222.19 407.11,222.09 "
-       id="polygon3324" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.45,224.55 390.63,233.2 391.07,233.18 "
-       id="polygon3326" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="396.19,225.08 392.38,233.73 392.67,234.06 "
-       id="polygon3328" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="336.81,223.93 339.13,232.76 339.33,233.04 "
-       id="polygon3330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="408.51,275.59 408.19,275.16 408.6,275.34 "
-       id="polygon3332" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.28,203.26 379.88,213.12 380.2,212.95 "
-       id="polygon3334" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="384.76,203.55 382.36,213.41 382.61,213.7 "
-       id="polygon3336" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="394.89,224.54 391.07,233.18 391.53,233.27 "
-       id="polygon3338" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="395.8,224.81 391.98,233.46 392.38,233.73 "
-       id="polygon3340" />
-    <line
-       x1="439.29999"
-       y1="289.51999"
-       x2="441.28"
-       y2="286.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3342" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="395.35,224.62 391.53,233.27 391.98,233.46 "
-       id="polygon3344" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="414.23,214.16 409.1,223.02 409.29,223.37 "
-       id="polygon3346" />
-    <line
-       x1="273.41"
-       y1="138.84"
-       x2="276.35001"
-       y2="139.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3348" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="412.25,213.22 407.11,222.09 407.52,222.09 "
-       id="polygon3350" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="446.68,231.8 454.68,224.7 454.97,224.7 "
-       id="polygon3352" />
-    <line
-       x1="306.73001"
-       y1="219.48"
-       x2="304.45999"
-       y2="222.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3354" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="456.36,227.24 448.07,234.34 447.78,234.33 "
-       id="polygon3356" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="448.39,233.98 456.67,226.56 456.68,226.88 "
-       id="polygon3358" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="334,224.89 336.31,233.72 336.4,233.38 "
-       id="polygon3360" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="336.48,223.73 338.8,232.56 339.13,232.76 "
-       id="polygon3362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.6,203.09 380.2,212.95 380.61,212.87 "
-       id="polygon3364" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="384.4,203.3 382,213.16 382.36,213.41 "
-       id="polygon3366" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="413.92,213.83 408.79,222.7 409.1,223.02 "
-       id="polygon3368" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="412.65,213.23 407.52,222.09 407.96,222.2 "
-       id="polygon3370" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="383.02,203.01 380.61,212.87 381.09,212.88 "
-       id="polygon3372" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="383.96,203.12 381.56,212.98 382,213.16 "
-       id="polygon3374" />
-    <line
-       x1="447.72"
-       y1="245.71001"
-       x2="447.03"
-       y2="241.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3376" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="383.48,203.02 381.09,212.88 381.56,212.98 "
-       id="polygon3378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="334.09,224.54 336.4,233.38 336.63,233.04 "
-       id="polygon3380" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="413.53,213.54 408.4,222.41 408.79,222.7 "
-       id="polygon3382" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="413.09,213.34 407.96,222.2 408.4,222.41 "
-       id="polygon3384" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="447.03,231.93 454.97,224.7 455.32,224.83 "
-       id="polygon3386" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="336.07,223.63 338.38,232.45 338.8,232.56 "
-       id="polygon3388" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="448.39,233.66 456.55,226.18 456.67,226.56 "
-       id="polygon3390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="334.33,224.21 336.63,233.04 336.99,232.77 "
-       id="polygon3392" />
-    <line
-       x1="336.23001"
-       y1="243.07001"
-       x2="335.76999"
-       y2="245.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3394" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="335.59,223.63 337.9,232.45 338.38,232.45 "
-       id="polygon3396" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="447.4,232.16 455.32,224.83 455.68,225.07 "
-       id="polygon3398" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="448.27,233.28 456.33,225.77 456.55,226.18 "
-       id="polygon3400" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="334.68,223.93 336.99,232.77 337.43,232.56 "
-       id="polygon3402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="335.12,223.73 337.43,232.56 337.9,232.45 "
-       id="polygon3404" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="447.75,232.49 455.68,225.07 456.04,225.39 "
-       id="polygon3406" />
-    <line
-       x1="441.28"
-       y1="286.04001"
-       x2="443.04001"
-       y2="282.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3408" />
-    <line
-       x1="244.94"
-       y1="231.98"
-       x2="241.78999"
-       y2="230.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3410" />
-    <line
-       x1="308.79001"
-       y1="216.75"
-       x2="306.73001"
-       y2="219.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3412" />
-    <line
-       x1="448.17999"
-       y1="249.84"
-       x2="447.72"
-       y2="245.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3414" />
-    <line
-       x1="442.84"
-       y1="134.17999"
-       x2="441.51999"
-       y2="134.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3416" />
-    <line
-       x1="443.04001"
-       y1="282.38"
-       x2="444.54999"
-       y2="278.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3418" />
-    <line
-       x1="276.35001"
-       y1="139.46001"
-       x2="279.31"
-       y2="140.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3420" />
-    <line
-       x1="448.39999"
-       y1="254.00999"
-       x2="448.17999"
-       y2="249.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3422" />
-    <line
-       x1="310.63"
-       y1="213.87"
-       x2="308.79001"
-       y2="216.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3424" />
-    <line
-       x1="444.54999"
-       y1="278.57999"
-       x2="445.81"
-       y2="274.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3426" />
-    <line
-       x1="241.78999"
-       y1="230.52"
-       x2="238.77"
-       y2="228.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3428" />
-    <line
-       x1="448.38"
-       y1="258.20001"
-       x2="448.39999"
-       y2="254.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3430" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="454.68,224.7 446.39,231.79 446.68,231.8 "
-       id="polygon3432" />
-    <line
-       x1="445.81"
-       y1="274.66"
-       x2="446.82999"
-       y2="270.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3434" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="456.67,226.56 448.39,233.66 448.39,233.98 "
-       id="polygon3436" />
-    <line
-       x1="448.10999"
-       y1="262.39001"
-       x2="448.38"
-       y2="258.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3438" />
-    <line
-       x1="446.82999"
-       y1="270.64001"
-       x2="447.60001"
-       y2="266.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3440" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="454.97,224.7 446.68,231.8 447.03,231.93 "
-       id="polygon3442" />
-    <line
-       x1="447.60001"
-       y1="266.54001"
-       x2="448.10999"
-       y2="262.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3444" />
-    <line
-       x1="312.23001"
-       y1="210.85001"
-       x2="310.63"
-       y2="213.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3446" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="456.55,226.18 448.27,233.28 448.39,233.66 "
-       id="polygon3448" />
-    <line
-       x1="343.85999"
-       y1="265.72"
-       x2="344.95001"
-       y2="264.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3450" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="455.32,224.83 447.03,231.93 447.4,232.16 "
-       id="polygon3452" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="402.77,282.02 409.43,277.36 409.23,277.7 "
-       id="polygon3454" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="456.33,225.77 448.05,232.88 448.27,233.28 "
-       id="polygon3456" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="336.69,233.41 336.31,233.72 336.4,233.37 "
-       id="polygon3458" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="455.68,225.07 447.4,232.16 447.75,232.49 "
-       id="polygon3460" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="456.04,225.39 447.75,232.49 448.05,232.88 "
-       id="polygon3462" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="401.72,279.47 407.77,275.13 408.19,275.16 "
-       id="polygon3464" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="402.96,281.66 409.5,276.93 409.43,277.36 "
-       id="polygon3466" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="338.27,232.67 338.38,232.45 338.8,232.56 "
-       id="polygon3468" />
-    <line
-       x1="279.31"
-       y1="140.31"
-       x2="282.29001"
-       y2="141.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3470" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="402.14,279.64 408.19,275.16 408.6,275.34 "
-       id="polygon3472" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="403.04,281.24 409.44,276.47 409.5,276.93 "
-       id="polygon3474" />
-    <line
-       x1="336.91"
-       y1="240.39999"
-       x2="336.23001"
-       y2="243.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3476" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="402.5,279.94 408.6,275.34 408.97,275.64 "
-       id="polygon3478" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="402.98,280.78 409.26,276.03 409.44,276.47 "
-       id="polygon3480" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="402.8,280.34 408.97,275.64 409.26,276.03 "
-       id="polygon3482" />
-    <line
-       x1="313.57999"
-       y1="207.71001"
-       x2="312.23001"
-       y2="210.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3484" />
-    <line
-       x1="238.77"
-       y1="228.89"
-       x2="235.92"
-       y2="227.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3486" />
-    <line
-       x1="314.69"
-       y1="204.46001"
-       x2="313.57999"
-       y2="207.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3488" />
-    <line
-       x1="282.29001"
-       y1="141.39999"
-       x2="285.26001"
-       y2="142.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3490" />
-    <line
-       x1="444.20001"
-       y1="134.27"
-       x2="442.84"
-       y2="134.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3492" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="404.21,232.58 409.29,223.37 409.35,223.69 "
-       id="polygon3494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.48,223 379.69,213.36 379.88,213.12 "
-       id="polygon3496" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="389.04,243.41 392.84,234.41 392.86,234.75 "
-       id="polygon3498" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="380.2,223.58 382.36,213.41 382.61,213.7 "
-       id="polygon3500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.96,230.97 406.79,222.19 407.11,222.09 "
-       id="polygon3502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.8,222.83 379.88,213.12 380.2,212.95 "
-       id="polygon3504" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="404.15,232.25 409.1,223.02 409.29,223.37 "
-       id="polygon3506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.44,241.99 390.02,233.55 390.27,233.33 "
-       id="polygon3508" />
-    <line
-       x1="235.92"
-       y1="227.11"
-       x2="233.24001"
-       y2="225.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3510" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="379.96,223.29 382,213.16 382.36,213.41 "
-       id="polygon3512" />
-    <line
-       x1="336.91"
-       y1="240.39999"
-       x2="337.59"
-       y2="238.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3514" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="338.68,242.88 336.57,234.33 336.37,234.05 "
-       id="polygon3516" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="389.01,243.07 392.67,234.05 392.84,234.41 "
-       id="polygon3518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="402.37,230.98 407.11,222.09 407.52,222.09 "
-       id="polygon3520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="378.21,222.75 380.2,212.95 380.62,212.87 "
-       id="polygon3522" />
-    <line
-       x1="315.54001"
-       y1="201.13"
-       x2="314.69"
-       y2="204.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3524" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="341.65,241.87 339.13,232.76 339.33,233.04 "
-       id="polygon3526" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="403.95,231.91 408.79,222.69 409.1,223.02 "
-       id="polygon3528" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="379.6,223.04 381.56,212.98 382,213.16 "
-       id="polygon3530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.8,241.86 390.27,233.33 390.63,233.2 "
-       id="polygon3532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="378.68,222.76 380.62,212.87 381.09,212.88 "
-       id="polygon3534" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="402.81,231.09 407.52,222.09 407.96,222.2 "
-       id="polygon3536" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="388.84,242.72 392.38,233.73 392.67,234.05 "
-       id="polygon3538" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="379.16,222.86 381.09,212.88 381.56,212.98 "
-       id="polygon3540" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="403.64,231.58 408.4,222.41 408.79,222.69 "
-       id="polygon3542" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="403.25,231.3 407.96,222.2 408.4,222.41 "
-       id="polygon3544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.24,241.84 390.63,233.2 391.07,233.18 "
-       id="polygon3546" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="388.55,242.39 391.98,233.46 392.38,233.73 "
-       id="polygon3548" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="387.7,241.93 391.07,233.18 391.54,233.27 "
-       id="polygon3550" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="388.16,242.12 391.54,233.27 391.98,233.46 "
-       id="polygon3552" />
-    <line
-       x1="285.26001"
-       y1="142.71001"
-       x2="288.20001"
-       y2="144.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3554" />
-    <line
-       x1="337.81"
-       y1="237.92999"
-       x2="337.81"
-       y2="237.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="339.3,241.6 336.63,233.04 336.99,232.76 "
-       id="polygon3558" />
-    <line
-       x1="338.10999"
-       y1="237.31"
-       x2="338.10999"
-       y2="237.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="338.95,241.88 336.4,233.37 336.63,233.04 "
-       id="polygon3562" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="437.88,239.03 446.07,232.15 446.18,231.91 "
-       id="polygon3564" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="407.39,275.23 400.93,279.54 401.3,279.43 "
-       id="polygon3566" />
-    <line
-       x1="316.14001"
-       y1="197.72"
-       x2="315.54001"
-       y2="201.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3568" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="340.7,241.29 337.9,232.45 338.38,232.45 "
-       id="polygon3570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="340.22,241.29 337.42,232.56 337.9,232.45 "
-       id="polygon3572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="339.74,241.39 336.99,232.76 337.42,232.56 "
-       id="polygon3574" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="409.43,277.36 402.96,281.66 402.77,282.02 "
-       id="polygon3576" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="409.5,276.93 403.04,281.24 402.96,281.66 "
-       id="polygon3578" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="408.19,275.16 401.72,279.47 402.14,279.64 "
-       id="polygon3580" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="409.44,276.47 402.98,280.78 403.04,281.24 "
-       id="polygon3582" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="408.6,275.34 402.14,279.64 402.5,279.94 "
-       id="polygon3584" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="409.26,276.03 402.8,280.34 402.98,280.78 "
-       id="polygon3586" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="408.97,275.64 402.5,279.94 402.8,280.34 "
-       id="polygon3588" />
-    <line
-       x1="233.24001"
-       y1="225.19"
-       x2="230.75"
-       y2="223.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3590" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="438.38,238.91 446.39,231.79 446.68,231.8 "
-       id="polygon3592" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="448.07,234.34 439.77,241.45 439.48,241.45 "
-       id="polygon3594" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="440.09,241.1 448.39,233.66 448.39,233.98 "
-       id="polygon3596" />
-    <line
-       x1="316.47"
-       y1="194.25999"
-       x2="316.14001"
-       y2="197.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3598" />
-    <line
-       x1="288.20001"
-       y1="144.25999"
-       x2="291.09"
-       y2="146.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="406.58,222.39 401.43,231.27 401.64,231.07 "
-       id="polygon3602" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="438.73,239.04 446.68,231.8 447.03,231.93 "
-       id="polygon3604" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="440.08,240.78 448.27,233.28 448.39,233.66 "
-       id="polygon3606" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.69,213.36 377.28,223.23 377.48,223 "
-       id="polygon3608" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="382.61,213.7 380.2,223.58 380.3,223.88 "
-       id="polygon3610" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="439.09,239.28 447.03,231.93 447.4,232.16 "
-       id="polygon3612" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="439.96,240.39 448.05,232.88 448.27,233.28 "
-       id="polygon3614" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="409.29,223.37 404.15,232.25 404.21,232.58 "
-       id="polygon3616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="406.79,222.19 401.64,231.07 401.96,230.97 "
-       id="polygon3618" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="439.45,239.61 447.4,232.16 447.75,232.49 "
-       id="polygon3620" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="439.75,239.99 447.75,232.49 448.05,232.88 "
-       id="polygon3622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.88,213.12 377.48,223 377.8,222.83 "
-       id="polygon3624" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="382.36,213.41 379.96,223.29 380.2,223.58 "
-       id="polygon3626" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="409.1,223.02 403.95,231.91 404.15,232.25 "
-       id="polygon3628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="407.11,222.09 401.96,230.97 402.37,230.98 "
-       id="polygon3630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="380.2,212.95 377.8,222.83 378.21,222.75 "
-       id="polygon3632" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="382,213.16 379.6,223.04 379.96,223.29 "
-       id="polygon3634" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="392.84,234.41 389.01,243.07 389.04,243.41 "
-       id="polygon3636" />
-    <line
-       x1="291.09"
-       y1="146.02"
-       x2="293.89999"
-       y2="147.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3638" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="408.79,222.69 403.64,231.58 403.95,231.91 "
-       id="polygon3640" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="380.62,212.87 378.21,222.75 378.68,222.76 "
-       id="polygon3642" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="407.52,222.09 402.37,230.98 402.81,231.09 "
-       id="polygon3644" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="381.56,212.98 379.16,222.86 379.6,223.04 "
-       id="polygon3646" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="381.09,212.88 378.68,222.76 379.16,222.86 "
-       id="polygon3648" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="408.4,222.41 403.25,231.3 403.64,231.58 "
-       id="polygon3650" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="407.96,222.2 402.81,231.09 403.25,231.3 "
-       id="polygon3652" />
-    <line
-       x1="445.60999"
-       y1="134.66"
-       x2="444.20001"
-       y2="134.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3654" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.27,233.33 386.44,241.99 386.8,241.86 "
-       id="polygon3656" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="392.67,234.05 388.84,242.72 389.01,243.07 "
-       id="polygon3658" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="339.13,232.76 341.45,241.59 341.65,241.87 "
-       id="polygon3660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.63,233.2 386.8,241.86 387.24,241.84 "
-       id="polygon3662" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="392.38,233.73 388.55,242.39 388.84,242.72 "
-       id="polygon3664" />
-    <line
-       x1="316.37"
-       y1="187.24001"
-       x2="316.54999"
-       y2="190.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3666" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="336.31,233.72 338.63,242.55 338.71,242.21 "
-       id="polygon3668" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="391.07,233.18 387.24,241.84 387.7,241.93 "
-       id="polygon3670" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="391.98,233.46 388.16,242.12 388.55,242.39 "
-       id="polygon3672" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="338.8,232.55 341.12,241.39 341.45,241.59 "
-       id="polygon3674" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="391.54,233.27 387.7,241.93 388.16,242.12 "
-       id="polygon3676" />
-    <line
-       x1="230.75"
-       y1="223.14"
-       x2="228.45"
-       y2="220.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3678" />
-    <line
-       x1="293.89999"
-       y1="147.99001"
-       x2="296.63"
-       y2="150.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="336.4,233.37 338.71,242.21 338.95,241.88 "
-       id="polygon3682" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="338.38,232.45 340.7,241.29 341.12,241.39 "
-       id="polygon3684" />
-    <line
-       x1="375.16"
-       y1="204.55"
-       x2="377.23001"
-       y2="207.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3686" />
-    <line
-       x1="377.23001"
-       y1="207.8"
-       x2="379.45001"
-       y2="210.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3688" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="336.63,233.04 338.95,241.88 339.3,241.6 "
-       id="polygon3690" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="336.99,232.76 339.3,241.6 339.74,241.39 "
-       id="polygon3692" />
-    <line
-       x1="338.20001"
-       y1="237.14"
-       x2="338.20001"
-       y2="237.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3694" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="337.9,232.45 340.22,241.29 340.7,241.29 "
-       id="polygon3696" />
-    <line
-       x1="315.92999"
-       y1="183.73"
-       x2="316.37"
-       y2="187.24001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3698" />
-    <line
-       x1="373.23999"
-       y1="201.23"
-       x2="375.16"
-       y2="204.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="337.42,232.56 339.74,241.39 340.22,241.29 "
-       id="polygon3702" />
-    <line
-       x1="379.45001"
-       y1="210.94"
-       x2="381.81"
-       y2="213.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3704" />
-    <line
-       x1="338.91"
-       y1="235.67"
-       x2="338.20001"
-       y2="237.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3706" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="448.39,233.66 440.08,240.78 440.09,241.1 "
-       id="polygon3708" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="446.68,231.8 438.38,238.91 438.73,239.04 "
-       id="polygon3710" />
-    <line
-       x1="371.48001"
-       y1="197.85001"
-       x2="373.23999"
-       y2="201.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3712" />
-    <line
-       x1="296.63"
-       y1="150.16"
-       x2="299.25"
-       y2="152.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3714" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="448.27,233.28 439.96,240.39 440.08,240.78 "
-       id="polygon3716" />
-    <line
-       x1="346.23999"
-       y1="262.84"
-       x2="347.73001"
-       y2="261.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3718" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="447.03,231.93 438.73,239.04 439.09,239.28 "
-       id="polygon3720" />
-    <line
-       x1="381.81"
-       y1="213.96001"
-       x2="384.29999"
-       y2="216.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3722" />
-    <line
-       x1="315.23999"
-       y1="180.23"
-       x2="315.92999"
-       y2="183.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3724" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="448.05,232.88 439.75,239.99 439.96,240.39 "
-       id="polygon3726" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="401.38,279.72 401.3,279.43 401.72,279.47 "
-       id="polygon3728" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="447.4,232.16 439.09,239.28 439.45,239.61 "
-       id="polygon3730" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="447.75,232.49 439.45,239.61 439.75,239.99 "
-       id="polygon3732" />
-    <line
-       x1="299.25"
-       y1="152.53"
-       x2="301.75"
-       y2="155.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3734" />
-    <line
-       x1="369.89001"
-       y1="194.42"
-       x2="371.48001"
-       y2="197.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3736" />
-    <line
-       x1="314.29999"
-       y1="176.77"
-       x2="315.23999"
-       y2="180.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3738" />
-    <line
-       x1="384.29999"
-       y1="216.83"
-       x2="386.92001"
-       y2="219.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3740" />
-    <line
-       x1="313.13"
-       y1="173.36"
-       x2="314.29999"
-       y2="176.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3742" />
-    <line
-       x1="301.75"
-       y1="155.07001"
-       x2="304.10001"
-       y2="157.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3744" />
-    <line
-       x1="228.45"
-       y1="220.99001"
-       x2="226.38"
-       y2="218.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3746" />
-    <line
-       x1="311.73001"
-       y1="170.03999"
-       x2="313.13"
-       y2="173.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3748" />
-    <line
-       x1="304.10001"
-       y1="157.78999"
-       x2="306.29001"
-       y2="160.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3750" />
-    <line
-       x1="368.47"
-       y1="190.98"
-       x2="369.89001"
-       y2="194.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3752" />
-    <line
-       x1="310.12"
-       y1="166.78999"
-       x2="311.73001"
-       y2="170.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3754" />
-    <line
-       x1="306.29001"
-       y1="160.66"
-       x2="308.29999"
-       y2="163.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3756" />
-    <line
-       x1="386.92001"
-       y1="219.55"
-       x2="389.64001"
-       y2="222.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3758" />
-    <line
-       x1="308.29999"
-       y1="163.66"
-       x2="310.12"
-       y2="166.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3760" />
-    <line
-       x1="447.03"
-       y1="135.32001"
-       x2="445.60999"
-       y2="134.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3762" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="396.19,240.45 401.41,231.87 401.35,231.55 "
-       id="polygon3764" />
-    <line
-       x1="367.23001"
-       y1="187.55"
-       x2="368.47"
-       y2="190.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3766" />
-    <line
-       x1="389.64001"
-       y1="222.08"
-       x2="392.47"
-       y2="224.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3768" />
-    <line
-       x1="340.20999"
-       y1="233.64999"
-       x2="338.91"
-       y2="235.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3770" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="399.05,241.48 404.15,232.25 404.21,232.58 "
-       id="polygon3772" />
-    <line
-       x1="226.38"
-       y1="218.75"
-       x2="224.52"
-       y2="216.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3774" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="431.15,248.58 439.77,241.45 439.48,241.45 "
-       id="polygon3776" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="377.8,233.47 379.96,223.29 380.2,223.58 "
-       id="polygon3778" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.81,239.88 401.64,231.07 401.96,230.97 "
-       id="polygon3780" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.39,232.73 377.48,223 377.8,222.83 "
-       id="polygon3782" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="398.99,241.16 403.95,231.91 404.15,232.25 "
-       id="polygon3784" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="377.56,233.19 379.6,223.04 379.96,223.29 "
-       id="polygon3786" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="429.55,246.16 437.77,239.26 437.88,239.03 "
-       id="polygon3788" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="397.21,239.88 401.96,230.97 402.37,230.98 "
-       id="polygon3790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.8,232.64 377.8,222.83 378.21,222.75 "
-       id="polygon3792" />
-    <line
-       x1="347.73001"
-       y1="261.76999"
-       x2="349.39001"
-       y2="260.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3794" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="398.8,240.82 403.64,231.58 403.95,231.91 "
-       id="polygon3796" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="396.27,286.32 402.96,281.66 402.76,282.02 "
-       id="polygon3798" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="377.2,232.94 379.16,222.86 379.6,223.04 "
-       id="polygon3800" />
-    <line
-       x1="392.47"
-       y1="224.42"
-       x2="395.38"
-       y2="226.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.27,232.65 378.21,222.75 378.68,222.75 "
-       id="polygon3804" />
-    <line
-       x1="366.16"
-       y1="184.14"
-       x2="367.23001"
-       y2="187.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3806" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="376.75,232.75 378.68,222.75 379.16,222.86 "
-       id="polygon3808" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="397.65,240 402.37,230.98 402.81,231.09 "
-       id="polygon3810" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="398.49,240.48 403.25,231.3 403.64,231.58 "
-       id="polygon3812" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="395.23,283.77 401.31,279.43 401.72,279.46 "
-       id="polygon3814" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="398.09,240.2 402.81,231.09 403.25,231.3 "
-       id="polygon3816" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="396.47,285.97 403.04,281.24 402.96,281.66 "
-       id="polygon3818" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="395.64,283.94 401.72,279.46 402.14,279.64 "
-       id="polygon3820" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="396.54,285.54 402.98,280.78 403.04,281.24 "
-       id="polygon3822" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="385.2,252.09 389.01,243.07 389.04,243.41 "
-       id="polygon3824" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="396.01,284.24 402.14,279.64 402.51,279.94 "
-       id="polygon3826" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="396.48,285.09 402.8,280.34 402.98,280.78 "
-       id="polygon3828" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="396.3,284.64 402.51,279.94 402.8,280.34 "
-       id="polygon3830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="430.05,246.04 438.09,238.91 438.38,238.91 "
-       id="polygon3832" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="431.77,248.23 440.08,240.78 440.09,241.1 "
-       id="polygon3834" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="385.17,251.75 388.84,242.72 389.01,243.07 "
-       id="polygon3836" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="430.4,246.17 438.38,238.91 438.73,239.04 "
-       id="polygon3838" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="431.76,247.91 439.96,240.39 440.08,240.78 "
-       id="polygon3840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.96,250.54 386.44,241.99 386.8,241.86 "
-       id="polygon3842" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="385,251.4 388.55,242.39 388.84,242.72 "
-       id="polygon3844" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="343.77,250.42 341.11,241.39 341.45,241.59 "
-       id="polygon3846" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="383.4,250.52 386.8,241.86 387.24,241.84 "
-       id="polygon3848" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="430.77,246.41 438.73,239.04 439.09,239.28 "
-       id="polygon3850" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="431.64,247.53 439.75,239.99 439.96,240.39 "
-       id="polygon3852" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="384.71,251.07 388.16,242.12 388.55,242.39 "
-       id="polygon3854" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="341.04,251.04 338.63,242.55 338.71,242.21 "
-       id="polygon3856" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="383.86,250.61 387.24,241.84 387.7,241.93 "
-       id="polygon3858" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="431.12,246.74 439.09,239.28 439.45,239.61 "
-       id="polygon3860" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="431.42,247.13 439.45,239.61 439.75,239.99 "
-       id="polygon3862" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="384.32,250.8 387.7,241.93 388.16,242.12 "
-       id="polygon3864" />
-    <line
-       x1="395.38"
-       y1="226.55"
-       x2="398.38"
-       y2="228.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3866" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="343.45,250.22 340.69,241.28 341.11,241.39 "
-       id="polygon3868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="341.28,250.71 338.71,242.21 338.95,241.88 "
-       id="polygon3870" />
-    <line
-       x1="365.26999"
-       y1="180.78"
-       x2="366.16"
-       y2="184.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3872" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="343.02,250.11 340.22,241.28 340.69,241.28 "
-       id="polygon3874" />
-    <line
-       x1="224.52"
-       y1="216.42999"
-       x2="222.89999"
-       y2="214.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3876" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="341.63,250.43 338.95,241.88 339.3,241.59 "
-       id="polygon3878" />
-    <line
-       x1="448.45999"
-       y1="136.27"
-       x2="447.03"
-       y2="135.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="342.55,250.11 339.74,241.39 340.22,241.28 "
-       id="polygon3882" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="342.07,250.22 339.3,241.59 339.74,241.39 "
-       id="polygon3884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.28,223.23 374.88,233.13 375.07,232.89 "
-       id="polygon3886" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="380.2,223.58 377.8,233.47 377.9,233.77 "
-       id="polygon3888" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="404.15,232.25 398.99,241.16 399.05,241.48 "
-       id="polygon3890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.64,231.07 396.48,239.98 396.81,239.88 "
-       id="polygon3892" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.48,223 375.07,232.89 375.39,232.73 "
-       id="polygon3894" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="379.96,223.29 377.56,233.19 377.8,233.47 "
-       id="polygon3896" />
-    <line
-       x1="341.70001"
-       y1="231.87"
-       x2="340.20999"
-       y2="233.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3898" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="403.95,231.91 398.8,240.82 398.99,241.16 "
-       id="polygon3900" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.96,230.97 396.81,239.88 397.21,239.88 "
-       id="polygon3902" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.8,222.83 375.39,232.73 375.8,232.64 "
-       id="polygon3904" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="379.6,223.04 377.2,232.94 377.56,233.19 "
-       id="polygon3906" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="378.21,222.75 375.8,232.64 376.27,232.65 "
-       id="polygon3908" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="379.16,222.86 376.75,232.75 377.2,232.94 "
-       id="polygon3910" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="403.64,231.58 398.49,240.48 398.8,240.82 "
-       id="polygon3912" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="402.37,230.98 397.21,239.88 397.65,240 "
-       id="polygon3914" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="378.68,222.75 376.27,232.65 376.75,232.75 "
-       id="polygon3916" />
-    <line
-       x1="398.38"
-       y1="228.46001"
-       x2="401.42999"
-       y2="230.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3918" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="403.25,231.3 398.09,240.2 398.49,240.48 "
-       id="polygon3920" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="402.81,231.09 397.65,240 398.09,240.2 "
-       id="polygon3922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="438.09,238.91 429.76,246.04 430.05,246.04 "
-       id="polygon3924" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="440.08,240.78 431.76,247.91 431.77,248.23 "
-       id="polygon3926" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="438.38,238.91 430.05,246.04 430.4,246.17 "
-       id="polygon3928" />
-    <line
-       x1="364.54999"
-       y1="177.5"
-       x2="365.26999"
-       y2="180.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3930" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="400.93,279.54 394.43,283.84 394.81,283.73 "
-       id="polygon3932" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="439.96,240.39 431.64,247.53 431.76,247.91 "
-       id="polygon3934" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="438.73,239.04 430.4,246.17 430.77,246.41 "
-       id="polygon3936" />
-    <line
-       x1="349.39001"
-       y1="260.95001"
-       x2="351.22"
-       y2="260.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.18,242.21 382.34,250.89 382.6,250.67 "
-       id="polygon3940" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="389.01,243.07 385.17,251.75 385.2,252.09 "
-       id="polygon3942" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="439.75,239.99 431.42,247.13 431.64,247.53 "
-       id="polygon3944" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="401.31,279.43 394.81,283.73 395.23,283.77 "
-       id="polygon3946" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="439.09,239.28 430.77,246.41 431.12,246.74 "
-       id="polygon3948" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="439.45,239.61 431.12,246.74 431.42,247.13 "
-       id="polygon3950" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="403.04,281.24 396.54,285.54 396.47,285.97 "
-       id="polygon3952" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="341.45,241.59 343.77,250.42 343.98,250.7 "
-       id="polygon3954" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="401.72,279.46 395.23,283.77 395.64,283.94 "
-       id="polygon3956" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.44,241.99 382.6,250.67 382.96,250.54 "
-       id="polygon3958" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="388.84,242.72 385,251.4 385.17,251.75 "
-       id="polygon3960" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="402.98,280.78 396.48,285.09 396.54,285.54 "
-       id="polygon3962" />
-    <line
-       x1="222.89999"
-       y1="214.05"
-       x2="221.52"
-       y2="211.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3964" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="402.14,279.64 395.64,283.94 396.01,284.24 "
-       id="polygon3966" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="402.8,280.34 396.3,284.64 396.48,285.09 "
-       id="polygon3968" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="402.51,279.94 396.01,284.24 396.3,284.64 "
-       id="polygon3970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.8,241.86 382.96,250.54 383.4,250.52 "
-       id="polygon3972" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="388.55,242.39 384.71,251.07 385,251.4 "
-       id="polygon3974" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="341.11,241.39 343.45,250.22 343.77,250.42 "
-       id="polygon3976" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="387.24,241.84 383.4,250.52 383.86,250.61 "
-       id="polygon3978" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="388.16,242.12 384.32,250.8 384.71,251.07 "
-       id="polygon3980" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="387.7,241.93 383.86,250.61 384.32,250.8 "
-       id="polygon3982" />
-    <line
-       x1="401.42999"
-       y1="230.13"
-       x2="404.54001"
-       y2="231.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line3984" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="338.71,242.21 341.04,251.04 341.28,250.71 "
-       id="polygon3986" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="340.69,241.28 343.02,250.11 343.45,250.22 "
-       id="polygon3988" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="338.95,241.88 341.28,250.71 341.63,250.43 "
-       id="polygon3990" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="340.22,241.28 342.55,250.11 343.02,250.11 "
-       id="polygon3992" />
-    <polygon
-       style="opacity:1;fill:#0000ca"
-       points="431.45,248.23 431.66,248.46 431.45,248.59 "
-       id="polygon3994" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="339.3,241.59 341.63,250.43 342.07,250.22 "
-       id="polygon3996" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="339.74,241.39 342.07,250.22 342.55,250.11 "
-       id="polygon3998" />
-    <line
-       x1="449.89001"
-       y1="137.5"
-       x2="448.45999"
-       y2="136.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4000" />
-    <line
-       x1="364.01999"
-       y1="174.3"
-       x2="364.54999"
-       y2="177.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4002" />
-    <line
-       x1="343.35999"
-       y1="230.35001"
-       x2="341.70001"
-       y2="231.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4004" />
-    <line
-       x1="404.54001"
-       y1="231.53999"
-       x2="407.67999"
-       y2="232.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4006" />
-    <line
-       x1="221.52"
-       y1="211.64"
-       x2="220.39"
-       y2="209.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4008" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="393.59,250.88 398.97,241.76 398.76,241.96 "
-       id="polygon4010" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="421.2,253.3 429.44,246.39 429.55,246.16 "
-       id="polygon4012" />
-    <line
-       x1="351.22"
-       y1="260.41"
-       x2="353.20001"
-       y2="260.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4014" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="377.86,234.05 375.45,243.97 375.26,244.21 "
-       id="polygon4016" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="375.5,243.68 377.8,233.47 377.9,233.77 "
-       id="polygon4018" />
-    <line
-       x1="363.64999"
-       y1="171.21001"
-       x2="364.01999"
-       y2="174.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.27,285.48 396.48,285.09 396.54,285.54 "
-       id="polygon4022" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="393.89,250.41 398.99,241.16 399.05,241.48 "
-       id="polygon4024" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="375.39,243.39 377.56,233.18 377.8,233.47 "
-       id="polygon4026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.64,248.8 396.48,239.98 396.81,239.88 "
-       id="polygon4028" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="372.98,242.64 375.07,232.89 375.39,232.72 "
-       id="polygon4030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="421.7,253.18 429.76,246.04 430.05,246.04 "
-       id="polygon4032" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="393.82,250.08 398.8,240.81 398.99,241.16 "
-       id="polygon4034" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="375.15,243.1 377.2,232.93 377.56,233.18 "
-       id="polygon4036" />
-    <line
-       x1="407.67999"
-       y1="232.7"
-       x2="410.84"
-       y2="233.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4038" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="373.4,242.55 375.39,232.72 375.8,232.64 "
-       id="polygon4040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="392.04,248.8 396.81,239.88 397.21,239.88 "
-       id="polygon4042" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="374.79,242.85 376.75,232.75 377.2,232.93 "
-       id="polygon4044" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="393.63,249.74 398.49,240.48 398.8,240.81 "
-       id="polygon4046" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="422.05,253.31 430.05,246.04 430.4,246.17 "
-       id="polygon4048" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="423.41,255.05 431.64,247.53 431.76,247.91 "
-       id="polygon4050" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="373.87,242.56 375.8,232.64 376.28,232.65 "
-       id="polygon4052" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="374.35,242.66 376.28,232.65 376.75,232.75 "
-       id="polygon4054" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="392.48,248.92 397.21,239.88 397.66,239.99 "
-       id="polygon4056" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="393.32,249.41 398.09,240.2 398.49,240.48 "
-       id="polygon4058" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="392.93,249.13 397.66,239.99 398.09,240.2 "
-       id="polygon4060" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="422.42,253.55 430.4,246.17 430.77,246.41 "
-       id="polygon4062" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="423.29,254.67 431.42,247.13 431.64,247.53 "
-       id="polygon4064" />
-    <line
-       x1="451.29001"
-       y1="139"
-       x2="449.89001"
-       y2="137.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4066" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="422.77,253.88 430.77,246.41 431.12,246.74 "
-       id="polygon4068" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="423.07,254.27 431.12,246.74 431.42,247.13 "
-       id="polygon4070" />
-    <line
-       x1="220.39"
-       y1="209.2"
-       x2="219.52"
-       y2="206.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4072" />
-    <line
-       x1="345.17001"
-       y1="229.11"
-       x2="343.35999"
-       y2="230.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4074" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="431.45,248.59 423.1,255.73 422.8,255.73 "
-       id="polygon4076" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="381.35,260.79 385.17,251.75 385.2,252.09 "
-       id="polygon4078" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="343.34,260.55 341.21,252 341.01,251.72 "
-       id="polygon4080" />
-    <line
-       x1="363.45999"
-       y1="168.25999"
-       x2="363.64999"
-       y2="171.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4082" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="346.32,259.53 343.77,250.42 343.98,250.7 "
-       id="polygon4084" />
-    <line
-       x1="410.84"
-       y1="233.59"
-       x2="414.01999"
-       y2="234.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4086" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.27,240.18 391.1,249.1 391.31,248.9 "
-       id="polygon4088" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="429.76,246.04 421.41,253.18 421.7,253.18 "
-       id="polygon4090" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.11,259.23 382.6,250.67 382.96,250.54 "
-       id="polygon4092" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="346.11,259.25 343.44,250.21 343.77,250.42 "
-       id="polygon4094" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="377.8,233.47 375.39,243.39 375.5,243.68 "
-       id="polygon4096" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="387.6,288.36 393.93,284.42 394.13,284.07 "
-       id="polygon4098" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="381.16,260.09 384.71,251.07 385,251.4 "
-       id="polygon4100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.55,259.21 382.96,250.54 383.4,250.52 "
-       id="polygon4102" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="431.76,247.91 423.41,255.05 423.42,255.38 "
-       id="polygon4104" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="380.86,259.76 384.32,250.79 384.71,251.07 "
-       id="polygon4106" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="398.99,241.16 393.82,250.08 393.89,250.41 "
-       id="polygon4108" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="345.78,259.04 343.02,250.11 343.44,250.21 "
-       id="polygon4110" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.48,239.98 391.31,248.9 391.64,248.8 "
-       id="polygon4112" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.07,232.89 372.66,242.8 372.98,242.64 "
-       id="polygon4114" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="380.02,259.3 383.4,250.52 383.87,250.61 "
-       id="polygon4116" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="377.56,233.18 375.15,243.1 375.39,243.39 "
-       id="polygon4118" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="380.47,259.49 383.87,250.61 384.32,250.79 "
-       id="polygon4120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="343.61,259.54 341.04,251.04 341.27,250.71 "
-       id="polygon4122" />
-    <line
-       x1="353.20001"
-       y1="260.13"
-       x2="355.29999"
-       y2="260.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4124" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="345.36,258.93 342.55,250.11 343.02,250.11 "
-       id="polygon4126" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="431.64,247.53 423.29,254.67 423.41,255.05 "
-       id="polygon4128" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="398.8,240.81 393.63,249.74 393.82,250.08 "
-       id="polygon4130" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.39,232.72 372.98,242.64 373.4,242.55 "
-       id="polygon4132" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="430.4,246.17 422.05,253.31 422.42,253.55 "
-       id="polygon4134" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.81,239.88 391.64,248.8 392.04,248.8 "
-       id="polygon4136" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="343.96,259.25 341.27,250.71 341.63,250.43 "
-       id="polygon4138" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="344.88,258.94 342.07,250.22 342.55,250.11 "
-       id="polygon4140" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="344.4,259.04 341.63,250.43 342.07,250.22 "
-       id="polygon4142" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="431.42,247.13 423.07,254.27 423.29,254.67 "
-       id="polygon4144" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.8,232.64 373.4,242.55 373.87,242.56 "
-       id="polygon4146" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="376.75,232.75 374.35,242.66 374.79,242.85 "
-       id="polygon4148" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="430.77,246.41 422.42,253.55 422.77,253.88 "
-       id="polygon4150" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="388.7,288.05 394.81,283.73 395.23,283.77 "
-       id="polygon4152" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="398.49,240.48 393.32,249.41 393.63,249.74 "
-       id="polygon4154" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="431.12,246.74 422.77,253.88 423.07,254.27 "
-       id="polygon4156" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="397.21,239.88 392.04,248.8 392.48,248.92 "
-       id="polygon4158" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="376.28,232.65 373.87,242.56 374.35,242.66 "
-       id="polygon4160" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="389.94,290.27 396.54,285.54 396.47,285.97 "
-       id="polygon4162" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="398.09,240.2 392.93,249.13 393.32,249.41 "
-       id="polygon4164" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="397.66,239.99 392.48,248.92 392.93,249.13 "
-       id="polygon4166" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="389.12,288.23 395.23,283.77 395.64,283.94 "
-       id="polygon4168" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="390.02,289.84 396.48,285.09 396.54,285.54 "
-       id="polygon4170" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="389.48,288.54 395.64,283.94 396.01,284.24 "
-       id="polygon4172" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="389.96,289.38 396.3,284.64 396.48,285.09 "
-       id="polygon4174" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="389.78,288.93 396.01,284.24 396.3,284.64 "
-       id="polygon4176" />
-    <line
-       x1="219.52"
-       y1="206.75999"
-       x2="218.89999"
-       y2="204.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4178" />
-    <line
-       x1="452.66"
-       y1="140.75999"
-       x2="451.29001"
-       y2="139"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4180" />
-    <line
-       x1="414.01999"
-       y1="234.2"
-       x2="417.19"
-       y2="234.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4182" />
-    <line
-       x1="363.44"
-       y1="165.46001"
-       x2="363.45999"
-       y2="168.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4184" />
-    <line
-       x1="347.12"
-       y1="228.14"
-       x2="345.17001"
-       y2="229.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4186" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.34,250.89 378.49,259.58 378.75,259.36 "
-       id="polygon4188" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.6,250.67 378.75,259.36 379.11,259.23 "
-       id="polygon4190" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="385,251.4 381.16,260.09 381.32,260.45 "
-       id="polygon4192" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="343.44,250.21 345.78,259.04 346.11,259.25 "
-       id="polygon4194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="382.96,250.54 379.11,259.23 379.55,259.21 "
-       id="polygon4196" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="384.71,251.07 380.86,259.76 381.16,260.09 "
-       id="polygon4198" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="383.4,250.52 379.55,259.21 380.02,259.3 "
-       id="polygon4200" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="384.32,250.79 380.47,259.49 380.86,259.76 "
-       id="polygon4202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="341.04,251.04 343.38,259.87 343.61,259.54 "
-       id="polygon4204" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="343.02,250.11 345.36,258.93 345.78,259.04 "
-       id="polygon4206" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="383.87,250.61 380.02,259.3 380.47,259.49 "
-       id="polygon4208" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="341.27,250.71 343.61,259.54 343.96,259.25 "
-       id="polygon4210" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="342.55,250.11 344.88,258.94 345.36,258.93 "
-       id="polygon4212" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="341.63,250.43 343.96,259.25 344.4,259.04 "
-       id="polygon4214" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="342.07,250.22 344.4,259.04 344.88,258.94 "
-       id="polygon4216" />
-    <polygon
-       style="opacity:1;fill:#0000d4"
-       points="395.96,286.56 389.44,290.86 389.06,290.96 "
-       id="polygon4218" />
-    <line
-       x1="417.19"
-       y1="234.53999"
-       x2="420.34"
-       y2="234.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4220" />
-    <line
-       x1="355.29999"
-       y1="260.14001"
-       x2="357.51999"
-       y2="260.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4222" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="412.83,260.45 421.09,253.54 421.2,253.3 "
-       id="polygon4224" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="396.48,285.09 389.96,289.38 390.02,289.84 "
-       id="polygon4226" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="395.64,283.94 389.12,288.23 389.48,288.54 "
-       id="polygon4228" />
-    <line
-       x1="363.57001"
-       y1="162.83"
-       x2="363.44"
-       y2="165.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4230" />
-    <line
-       x1="453.98001"
-       y1="142.78"
-       x2="452.66"
-       y2="140.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4232" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="396.3,284.64 389.78,288.93 389.96,289.38 "
-       id="polygon4234" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="396.01,284.24 389.48,288.54 389.78,288.93 "
-       id="polygon4236" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="423.1,255.73 414.73,262.89 414.44,262.88 "
-       id="polygon4238" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="415.05,262.54 423.41,255.05 423.42,255.38 "
-       id="polygon4240" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="413.68,260.46 421.71,253.18 422.05,253.31 "
-       id="polygon4242" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="415.04,262.21 423.29,254.67 423.41,255.05 "
-       id="polygon4244" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="373.09,253.61 375.39,243.38 375.5,243.68 "
-       id="polygon4246" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="414.05,260.71 422.05,253.31 422.42,253.55 "
-       id="polygon4248" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="414.92,261.83 423.07,254.27 423.29,254.67 "
-       id="polygon4250" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="343.64,260.45 343.55,260.83 343.34,260.55 "
-       id="polygon4252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.25,252.73 372.46,243.04 372.66,242.8 "
-       id="polygon4254" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="414.4,261.04 422.42,253.55 422.77,253.88 "
-       id="polygon4256" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="414.7,261.42 422.77,253.88 423.07,254.27 "
-       id="polygon4258" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="388.71,259.35 393.83,250.08 393.89,250.41 "
-       id="polygon4260" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="372.99,253.31 375.15,243.09 375.39,243.38 "
-       id="polygon4262" />
-    <line
-       x1="420.34"
-       y1="234.59"
-       x2="423.45999"
-       y2="234.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4264" />
-    <line
-       x1="319.67001"
-       y1="366.10001"
-       x2="316.04001"
-       y2="364.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4266" />
-    <line
-       x1="323.41"
-       y1="367.98999"
-       x2="319.67001"
-       y2="366.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.57,252.56 372.66,242.8 372.98,242.63 "
-       id="polygon4270" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.46,257.74 391.31,248.9 391.64,248.8 "
-       id="polygon4272" />
-    <line
-       x1="349.19"
-       y1="227.47"
-       x2="347.12"
-       y2="228.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4274" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="388.65,259.02 393.63,249.74 393.83,250.08 "
-       id="polygon4276" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="372.75,253.02 374.79,242.84 375.15,243.09 "
-       id="polygon4278" />
-    <line
-       x1="316.04001"
-       y1="364.01001"
-       x2="312.51999"
-       y2="361.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4280" />
-    <line
-       x1="327.22"
-       y1="369.66"
-       x2="323.41"
-       y2="367.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4282" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.99,252.47 372.98,242.63 373.4,242.55 "
-       id="polygon4284" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.86,257.74 391.64,248.8 392.04,248.8 "
-       id="polygon4286" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="372.39,252.77 374.35,242.66 374.79,242.84 "
-       id="polygon4288" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="388.45,258.68 393.32,249.41 393.63,249.74 "
-       id="polygon4290" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.46,252.48 373.4,242.55 373.87,242.56 "
-       id="polygon4292" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="371.94,252.59 373.87,242.56 374.35,242.66 "
-       id="polygon4294" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="387.3,257.86 392.04,248.8 392.48,248.91 "
-       id="polygon4296" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="388.14,258.35 392.93,249.13 393.32,249.41 "
-       id="polygon4298" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="387.75,258.06 392.48,248.91 392.93,249.13 "
-       id="polygon4300" />
-    <line
-       x1="312.51999"
-       y1="361.73001"
-       x2="309.14001"
-       y2="359.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4302" />
-    <line
-       x1="331.10999"
-       y1="371.10001"
-       x2="327.22"
-       y2="369.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4304" />
-    <line
-       x1="335.03"
-       y1="372.29999"
-       x2="331.10999"
-       y2="371.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4306" />
-    <line
-       x1="309.14001"
-       y1="359.29001"
-       x2="305.89999"
-       y2="356.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4308" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="421.41,253.18 413.04,260.33 413.33,260.34 "
-       id="polygon4310" />
-    <line
-       x1="357.51999"
-       y1="260.42999"
-       x2="359.84"
-       y2="261.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4312" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="423.41,255.05 415.04,262.21 415.05,262.54 "
-       id="polygon4314" />
-    <line
-       x1="363.87"
-       y1="160.39"
-       x2="363.57001"
-       y2="162.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4316" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="421.71,253.18 413.33,260.34 413.68,260.46 "
-       id="polygon4318" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="389.74,290.62 389.53,290.39 389.29,290.58 "
-       id="polygon4320" />
-    <line
-       x1="455.23999"
-       y1="145.03999"
-       x2="453.98001"
-       y2="142.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4322" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="423.29,254.67 414.92,261.83 415.04,262.21 "
-       id="polygon4324" />
-    <line
-       x1="338.98001"
-       y1="373.23999"
-       x2="335.03"
-       y2="372.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4326" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="422.05,253.31 413.68,260.46 414.05,260.71 "
-       id="polygon4328" />
-    <line
-       x1="305.89999"
-       y1="356.69"
-       x2="302.82999"
-       y2="353.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4330" />
-    <line
-       x1="423.45999"
-       y1="234.35001"
-       x2="426.54001"
-       y2="233.83"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4332" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="423.07,254.27 414.7,261.42 414.92,261.83 "
-       id="polygon4334" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="422.42,253.55 414.05,260.71 414.4,261.04 "
-       id="polygon4336" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="422.77,253.88 414.4,261.04 414.7,261.42 "
-       id="polygon4338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="372.46,243.04 370.05,252.96 370.25,252.73 "
-       id="polygon4340" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="375.39,243.38 372.99,253.31 373.09,253.61 "
-       id="polygon4342" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="372.66,242.8 370.25,252.73 370.57,252.56 "
-       id="polygon4344" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.31,248.9 386.13,257.84 386.46,257.74 "
-       id="polygon4346" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="375.15,243.09 372.75,253.02 372.99,253.31 "
-       id="polygon4348" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="377.49,269.49 381.32,260.44 381.35,260.79 "
-       id="polygon4350" />
-    <line
-       x1="342.92999"
-       y1="373.92001"
-       x2="338.98001"
-       y2="373.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4352" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="348.66,268.34 346.11,259.24 346.32,259.53 "
-       id="polygon4354" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="372.98,242.63 370.57,252.56 370.99,252.47 "
-       id="polygon4356" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="393.63,249.74 388.45,258.68 388.65,259.02 "
-       id="polygon4358" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="374.79,242.84 372.39,252.77 372.75,253.02 "
-       id="polygon4360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="391.64,248.8 386.46,257.74 386.86,257.74 "
-       id="polygon4362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="373.4,242.55 370.99,252.47 371.46,252.48 "
-       id="polygon4364" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="377.46,269.15 381.16,260.09 381.32,260.44 "
-       id="polygon4366" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="374.35,242.66 371.94,252.59 372.39,252.77 "
-       id="polygon4368" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="393.32,249.41 388.14,258.35 388.45,258.68 "
-       id="polygon4370" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="373.87,242.56 371.46,252.48 371.94,252.59 "
-       id="polygon4372" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="392.04,248.8 386.86,257.74 387.3,257.86 "
-       id="polygon4374" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="348.46,268.05 345.78,259.04 346.11,259.24 "
-       id="polygon4376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.25,267.93 378.75,259.36 379.11,259.23 "
-       id="polygon4378" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="392.93,249.13 387.75,258.06 388.14,258.35 "
-       id="polygon4380" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="392.48,248.91 387.3,257.86 387.75,258.06 "
-       id="polygon4382" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="377.3,268.79 380.86,259.76 381.16,260.09 "
-       id="polygon4384" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="348.13,267.85 345.36,258.93 345.78,259.04 "
-       id="polygon4386" />
-    <line
-       x1="351.37"
-       y1="227.10001"
-       x2="349.19"
-       y2="227.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.68,267.91 379.11,259.23 379.55,259.2 "
-       id="polygon4390" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="377,268.46 380.47,259.48 380.86,259.76 "
-       id="polygon4392" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="376.15,268 379.55,259.2 380.02,259.29 "
-       id="polygon4394" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="345.96,268.35 343.38,259.86 343.61,259.53 "
-       id="polygon4396" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="376.61,268.19 380.02,259.29 380.47,259.48 "
-       id="polygon4398" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="347.71,267.74 344.88,258.93 345.36,258.93 "
-       id="polygon4400" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="346.31,268.06 343.61,259.53 343.96,259.25 "
-       id="polygon4402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="347.23,267.75 344.4,259.04 344.88,258.93 "
-       id="polygon4404" />
-    <line
-       x1="346.87"
-       y1="374.32999"
-       x2="342.92999"
-       y2="373.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4406" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="346.75,267.86 343.96,259.25 344.4,259.04 "
-       id="polygon4408" />
-    <line
-       x1="426.54001"
-       y1="233.83"
-       x2="429.54999"
-       y2="233.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4410" />
-    <line
-       x1="299.94"
-       y1="351.12"
-       x2="297.23999"
-       y2="348.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4412" />
-    <line
-       x1="364.31"
-       y1="158.14999"
-       x2="363.87"
-       y2="160.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4414" />
-    <line
-       x1="456.42999"
-       y1="147.53999"
-       x2="455.23999"
-       y2="145.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4416" />
-    <line
-       x1="359.84"
-       y1="261.01001"
-       x2="362.23001"
-       y2="261.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4418" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="388.36,259.46 388.71,259.35 388.63,259.63 "
-       id="polygon4420" />
-    <line
-       x1="350.76999"
-       y1="374.45999"
-       x2="346.87"
-       y2="374.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4422" />
-    <line
-       x1="297.23999"
-       y1="348.17999"
-       x2="294.75"
-       y2="345.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4424" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="383.38,294.55 390.02,289.84 389.94,290.27 "
-       id="polygon4426" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="382.55,292.52 388.7,288.05 389.12,288.23 "
-       id="polygon4428" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="406.55,269.93 415.05,262.54 414.94,262.77 "
-       id="polygon4430" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="378.49,259.58 374.63,268.29 374.88,268.06 "
-       id="polygon4432" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="382.93,292.82 389.12,288.23 389.49,288.54 "
-       id="polygon4434" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="383.4,293.66 389.78,288.93 389.96,289.38 "
-       id="polygon4436" />
-    <line
-       x1="429.54999"
-       y1="233.02"
-       x2="432.48999"
-       y2="231.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4438" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="378.75,259.36 374.88,268.06 375.25,267.93 "
-       id="polygon4440" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="381.16,260.09 377.3,268.79 377.46,269.15 "
-       id="polygon4442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.94,267.5 413.04,260.33 413.34,260.34 "
-       id="polygon4444" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="343.29,260.21 345.63,269.03 345.72,268.68 "
-       id="polygon4446" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="406.65,269.7 415.04,262.21 415.05,262.54 "
-       id="polygon4448" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="345.78,259.04 348.13,267.85 348.46,268.05 "
-       id="polygon4450" />
-    <line
-       x1="218.60001"
-       y1="197.33"
-       x2="219.02"
-       y2="195.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4452" />
-    <line
-       x1="354.63"
-       y1="374.32001"
-       x2="350.76999"
-       y2="374.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.11,259.23 375.25,267.93 375.68,267.91 "
-       id="polygon4456" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="380.86,259.76 377,268.46 377.3,268.79 "
-       id="polygon4458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="343.38,259.86 345.72,268.68 345.96,268.35 "
-       id="polygon4460" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="345.36,258.93 347.71,267.74 348.13,267.85 "
-       id="polygon4462" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="405.29,267.63 413.34,260.34 413.68,260.46 "
-       id="polygon4464" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="406.65,269.37 414.92,261.83 415.04,262.21 "
-       id="polygon4466" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="379.55,259.2 375.68,267.91 376.15,268 "
-       id="polygon4468" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="380.47,259.48 376.61,268.19 377,268.46 "
-       id="polygon4470" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="380.02,259.29 376.15,268 376.61,268.19 "
-       id="polygon4472" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="343.61,259.53 345.96,268.35 346.31,268.06 "
-       id="polygon4474" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="344.88,258.93 347.23,267.75 347.71,267.74 "
-       id="polygon4476" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="405.65,267.87 413.68,260.46 414.05,260.71 "
-       id="polygon4478" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="406.53,268.99 414.7,261.42 414.92,261.83 "
-       id="polygon4480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="343.96,259.25 346.31,268.06 346.75,267.86 "
-       id="polygon4482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="344.4,259.04 346.75,267.86 347.23,267.75 "
-       id="polygon4484" />
-    <line
-       x1="353.64001"
-       y1="227.02"
-       x2="351.37"
-       y2="227.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4486" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="406,268.2 414.05,260.71 414.4,261.04 "
-       id="polygon4488" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="406.3,268.58 414.4,261.04 414.7,261.42 "
-       id="polygon4490" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="383.23,268.78 388.63,259.63 388.42,259.82 "
-       id="polygon4492" />
-    <line
-       x1="294.75"
-       y1="345.17999"
-       x2="292.45999"
-       y2="342.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4494" />
-    <line
-       x1="457.51999"
-       y1="150.25"
-       x2="456.42999"
-       y2="147.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4496" />
-    <line
-       x1="364.89001"
-       y1="156.13"
-       x2="364.31"
-       y2="158.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4498" />
-    <line
-       x1="358.39999"
-       y1="373.89001"
-       x2="354.63"
-       y2="374.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.84,262.66 370.05,252.96 370.25,252.73 "
-       id="polygon4502" />
-    <line
-       x1="362.23001"
-       y1="261.88"
-       x2="364.67999"
-       y2="263.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4504" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="370.59,263.24 372.75,253.02 372.99,253.31 "
-       id="polygon4506" />
-    <line
-       x1="432.48999"
-       y1="231.92999"
-       x2="435.35001"
-       y2="230.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.16,262.49 370.25,252.73 370.57,252.55 "
-       id="polygon4510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="381.27,266.69 386.13,257.84 386.46,257.73 "
-       id="polygon4512" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="383.46,267.98 388.45,258.68 388.65,259.02 "
-       id="polygon4514" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="370.34,262.95 372.39,252.77 372.75,253.02 "
-       id="polygon4516" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.58,262.41 370.57,252.55 370.99,252.47 "
-       id="polygon4518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="381.67,266.7 386.46,257.73 386.86,257.74 "
-       id="polygon4520" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="369.98,262.7 371.94,252.58 372.39,252.77 "
-       id="polygon4522" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.04,260.33 404.64,267.49 404.94,267.5 "
-       id="polygon4524" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="383.27,267.63 388.14,258.34 388.45,258.68 "
-       id="polygon4526" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="369.05,262.42 370.99,252.47 371.46,252.48 "
-       id="polygon4528" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="369.54,262.52 371.46,252.48 371.94,252.58 "
-       id="polygon4530" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="382.12,266.81 386.86,257.74 387.31,257.86 "
-       id="polygon4532" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="382.96,267.3 387.75,258.06 388.14,258.34 "
-       id="polygon4534" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="382.56,267.02 387.31,257.86 387.75,258.06 "
-       id="polygon4536" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="413.34,260.34 404.94,267.5 405.29,267.63 "
-       id="polygon4538" />
-    <line
-       x1="219.02"
-       y1="195.14"
-       x2="219.67999"
-       y2="193.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4540" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="414.92,261.83 406.53,268.99 406.65,269.37 "
-       id="polygon4542" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="413.68,260.46 405.29,267.63 405.65,267.87 "
-       id="polygon4544" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="389.94,290.27 383.38,294.55 383.18,294.9 "
-       id="polygon4546" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="388.29,288.02 381.72,292.3 382.14,292.34 "
-       id="polygon4548" />
-    <line
-       x1="292.45999"
-       y1="342.12"
-       x2="290.41"
-       y2="339.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4550" />
-    <line
-       x1="362.09"
-       y1="373.17001"
-       x2="358.39999"
-       y2="373.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4552" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="414.7,261.42 406.3,268.58 406.53,268.99 "
-       id="polygon4554" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="414.05,260.71 405.65,267.87 406,268.2 "
-       id="polygon4556" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="414.4,261.04 406,268.2 406.3,268.58 "
-       id="polygon4558" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="390.02,289.84 383.45,294.13 383.38,294.55 "
-       id="polygon4560" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="388.7,288.05 382.14,292.34 382.55,292.52 "
-       id="polygon4562" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="389.96,289.38 383.4,293.66 383.45,294.13 "
-       id="polygon4564" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="389.12,288.23 382.55,292.52 382.93,292.82 "
-       id="polygon4566" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="389.78,288.93 383.21,293.21 383.4,293.66 "
-       id="polygon4568" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="389.49,288.54 382.93,292.82 383.21,293.21 "
-       id="polygon4570" />
-    <line
-       x1="458.51999"
-       y1="153.16"
-       x2="457.51999"
-       y2="150.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4572" />
-    <line
-       x1="435.35001"
-       y1="230.57001"
-       x2="438.10001"
-       y2="228.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4574" />
-    <line
-       x1="355.98001"
-       y1="227.25999"
-       x2="353.64001"
-       y2="227.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4576" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.92,258.04 380.73,266.99 380.94,266.79 "
-       id="polygon4578" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.05,252.96 367.64,262.9 367.84,262.66 "
-       id="polygon4580" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="372.99,253.31 370.59,263.24 370.69,263.55 "
-       id="polygon4582" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="388.65,259.02 383.46,267.98 383.52,268.3 "
-       id="polygon4584" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.25,252.73 367.84,262.66 368.16,262.49 "
-       id="polygon4586" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.13,257.84 380.94,266.79 381.27,266.69 "
-       id="polygon4588" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="372.75,253.02 370.34,262.95 370.59,263.24 "
-       id="polygon4590" />
-    <line
-       x1="365.67001"
-       y1="372.17001"
-       x2="362.09"
-       y2="373.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4592" />
-    <line
-       x1="365.60999"
-       y1="154.34"
-       x2="364.89001"
-       y2="156.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4594" />
-    <line
-       x1="364.67999"
-       y1="263.01999"
-       x2="367.16"
-       y2="264.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4596" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.57,252.55 368.16,262.49 368.58,262.41 "
-       id="polygon4598" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="372.39,252.77 369.98,262.7 370.34,262.95 "
-       id="polygon4600" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="388.45,258.68 383.27,267.63 383.46,267.98 "
-       id="polygon4602" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.46,257.73 381.27,266.69 381.67,266.7 "
-       id="polygon4604" />
-    <line
-       x1="290.41"
-       y1="339.04001"
-       x2="288.59"
-       y2="335.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4606" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.99,252.47 368.58,262.41 369.05,262.42 "
-       id="polygon4608" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="371.94,252.58 369.54,262.52 369.98,262.7 "
-       id="polygon4610" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="371.46,252.48 369.05,262.42 369.54,262.52 "
-       id="polygon4612" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="388.14,258.34 382.96,267.3 383.27,267.63 "
-       id="polygon4614" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="386.86,257.74 381.67,266.7 382.12,266.81 "
-       id="polygon4616" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="387.75,258.06 382.56,267.02 382.96,267.3 "
-       id="polygon4618" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="387.31,257.86 382.12,266.81 382.56,267.02 "
-       id="polygon4620" />
-    <line
-       x1="219.67999"
-       y1="193.06"
-       x2="220.59"
-       y2="191.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4622" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="351.02,277.13 348.46,268.05 348.66,268.34 "
-       id="polygon4624" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="373.62,278.2 377.46,269.14 377.49,269.49 "
-       id="polygon4626" />
-    <line
-       x1="438.10001"
-       y1="228.94"
-       x2="440.75"
-       y2="227.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4628" />
-    <line
-       x1="459.39999"
-       y1="156.25999"
-       x2="458.51999"
-       y2="153.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4630" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="350.82,276.85 348.13,267.84 348.46,268.05 "
-       id="polygon4632" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="373.6,277.86 377.3,268.79 377.46,269.14 "
-       id="polygon4634" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.38,276.64 374.88,268.05 375.25,267.93 "
-       id="polygon4636" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="373.43,277.5 377,268.46 377.3,268.79 "
-       id="polygon4638" />
-    <polygon
-       style="opacity:1;fill:#0000e0"
-       points="381.5,292.68 381.34,292.4 381.72,292.3 "
-       id="polygon4640" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="350.49,276.64 347.7,267.74 348.13,267.84 "
-       id="polygon4642" />
-    <line
-       x1="369.13"
-       y1="370.89001"
-       x2="365.67001"
-       y2="372.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4644" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.81,276.62 375.25,267.93 375.69,267.91 "
-       id="polygon4646" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="348.31,277.14 345.72,268.68 345.95,268.34 "
-       id="polygon4648" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="373.13,277.17 376.61,268.18 377,268.46 "
-       id="polygon4650" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="350.06,276.54 347.23,267.74 347.7,267.74 "
-       id="polygon4652" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="372.28,276.7 375.69,267.91 376.16,267.99 "
-       id="polygon4654" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="372.74,276.9 376.16,267.99 376.61,268.18 "
-       id="polygon4656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="348.66,276.86 345.95,268.34 346.31,268.05 "
-       id="polygon4658" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="349.59,276.54 346.75,267.85 347.23,267.74 "
-       id="polygon4660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="349.11,276.64 346.31,268.05 346.75,267.85 "
-       id="polygon4662" />
-    <polygon
-       style="opacity:1;fill:#0000e0"
-       points="382.13,292.62 382.14,292.34 382.55,292.52 "
-       id="polygon4664" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="398.13,277.1 406.65,269.7 406.55,269.93 "
-       id="polygon4666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.52,274.66 404.64,267.49 404.94,267.49 "
-       id="polygon4668" />
-    <line
-       x1="288.59"
-       y1="335.95001"
-       x2="287"
-       y2="332.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4670" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="398.24,276.87 406.65,269.37 406.65,269.7 "
-       id="polygon4672" />
-    <line
-       x1="358.37"
-       y1="227.8"
-       x2="355.98001"
-       y2="227.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4674" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="396.87,274.79 404.94,267.49 405.29,267.63 "
-       id="polygon4676" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="398.23,276.54 406.53,268.99 406.65,269.37 "
-       id="polygon4678" />
-    <line
-       x1="440.75"
-       y1="227.03999"
-       x2="443.26999"
-       y2="224.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4680" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="397.23,275.04 405.29,267.63 405.66,267.87 "
-       id="polygon4682" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="398.11,276.16 406.31,268.58 406.53,268.99 "
-       id="polygon4684" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="397.59,275.37 405.66,267.87 406.01,268.2 "
-       id="polygon4686" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="397.89,275.75 406.01,268.2 406.31,268.58 "
-       id="polygon4688" />
-    <line
-       x1="366.45001"
-       y1="152.8"
-       x2="365.60999"
-       y2="154.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4690" />
-    <line
-       x1="372.42999"
-       y1="369.34"
-       x2="369.13"
-       y2="370.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4692" />
-    <line
-       x1="460.16"
-       y1="159.53"
-       x2="459.39999"
-       y2="156.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4694" />
-    <line
-       x1="220.59"
-       y1="191.10001"
-       x2="221.75"
-       y2="189.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4696" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="348.46,268.05 350.82,276.85 351.02,277.13 "
-       id="polygon4698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="374.63,268.28 370.75,276.99 371.01,276.77 "
-       id="polygon4700" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="345.63,269.03 347.98,277.83 348.07,277.48 "
-       id="polygon4702" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="348.13,267.84 350.49,276.64 350.82,276.85 "
-       id="polygon4704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="374.88,268.05 371.01,276.77 371.38,276.64 "
-       id="polygon4706" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="377.3,268.79 373.43,277.5 373.6,277.86 "
-       id="polygon4708" />
-    <line
-       x1="443.26999"
-       y1="224.89999"
-       x2="445.67001"
-       y2="222.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="345.72,268.68 348.07,277.48 348.31,277.14 "
-       id="polygon4712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.25,267.93 371.38,276.64 371.81,276.62 "
-       id="polygon4714" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="377,268.46 373.13,277.17 373.43,277.5 "
-       id="polygon4716" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="347.7,267.74 350.06,276.54 350.49,276.64 "
-       id="polygon4718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.64,267.49 396.23,274.66 396.52,274.66 "
-       id="polygon4720" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="375.69,267.91 371.81,276.62 372.28,276.7 "
-       id="polygon4722" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="376.61,268.18 372.74,276.9 373.13,277.17 "
-       id="polygon4724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="345.95,268.34 348.31,277.14 348.66,276.86 "
-       id="polygon4726" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="376.16,267.99 372.28,276.7 372.74,276.9 "
-       id="polygon4728" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="347.23,267.74 349.59,276.54 350.06,276.54 "
-       id="polygon4730" />
-    <line
-       x1="287"
-       y1="332.87"
-       x2="285.66"
-       y2="329.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4732" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="346.31,268.05 348.66,276.86 349.11,276.64 "
-       id="polygon4734" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="346.75,267.85 349.11,276.64 349.59,276.54 "
-       id="polygon4736" />
-    <line
-       x1="375.59"
-       y1="367.51001"
-       x2="372.42999"
-       y2="369.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4738" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="406.65,269.37 398.23,276.54 398.24,276.87 "
-       id="polygon4740" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.74,275.76 380.73,266.99 380.94,266.79 "
-       id="polygon4742" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="404.94,267.49 396.52,274.66 396.87,274.79 "
-       id="polygon4744" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="378.33,277.27 383.46,267.98 383.52,268.3 "
-       id="polygon4746" />
-    <line
-       x1="370.20999"
-       y1="266.57999"
-       x2="370.20999"
-       y2="266.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4748" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="368.18,273.19 370.34,262.95 370.59,263.24 "
-       id="polygon4750" />
-    <line
-       x1="460.78"
-       y1="162.94"
-       x2="460.16"
-       y2="159.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4752" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="406.53,268.99 398.11,276.16 398.23,276.54 "
-       id="polygon4754" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="405.29,267.63 396.87,274.79 397.23,275.04 "
-       id="polygon4756" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.76,272.43 367.84,262.66 368.16,262.49 "
-       id="polygon4758" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.07,275.66 380.94,266.79 381.27,266.69 "
-       id="polygon4760" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="378.27,276.95 383.27,267.63 383.46,267.98 "
-       id="polygon4762" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="367.94,272.89 369.98,262.7 370.34,262.95 "
-       id="polygon4764" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="406.31,268.58 397.89,275.75 398.11,276.16 "
-       id="polygon4766" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="405.66,267.87 397.23,275.04 397.59,275.37 "
-       id="polygon4768" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="406.01,268.2 397.59,275.37 397.89,275.75 "
-       id="polygon4770" />
-    <line
-       x1="372.17001"
-       y1="268.13"
-       x2="370.20999"
-       y2="266.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4772" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="366.18,272.35 368.16,262.49 368.58,262.41 "
-       id="polygon4774" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="376.85,298.4 383.4,293.66 383.45,294.13 "
-       id="polygon4776" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.47,275.66 381.27,266.69 381.67,266.7 "
-       id="polygon4778" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="367.58,272.64 369.54,262.52 369.98,262.7 "
-       id="polygon4780" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="378.07,276.6 382.96,267.3 383.27,267.63 "
-       id="polygon4782" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="376.32,297.09 382.55,292.51 382.93,292.82 "
-       id="polygon4784" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="376.8,297.94 383.21,293.21 383.4,293.66 "
-       id="polygon4786" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="366.65,272.36 368.58,262.41 369.05,262.41 "
-       id="polygon4788" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="367.13,272.46 369.05,262.41 369.54,262.52 "
-       id="polygon4790" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="376.61,297.48 382.93,292.82 383.21,293.21 "
-       id="polygon4792" />
-    <line
-       x1="360.79001"
-       y1="228.64"
-       x2="358.37"
-       y2="227.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4794" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="376.92,275.78 381.67,266.7 382.12,266.81 "
-       id="polygon4796" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="377.76,276.27 382.56,267.02 382.96,267.3 "
-       id="polygon4798" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="377.36,275.98 382.12,266.81 382.56,267.02 "
-       id="polygon4800" />
-    <line
-       x1="445.67001"
-       y1="222.52"
-       x2="447.92001"
-       y2="219.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4802" />
-    <line
-       x1="221.75"
-       y1="189.27"
-       x2="223.13"
-       y2="187.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4804" />
-    <line
-       x1="367.39999"
-       y1="151.52"
-       x2="366.45001"
-       y2="152.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4806" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="373.22,278.35 373.62,278.2 373.5,278.5 "
-       id="polygon4808" />
-    <line
-       x1="378.56"
-       y1="365.42999"
-       x2="375.59"
-       y2="367.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4810" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="370.64,263.83 368.24,273.77 368.04,274.01 "
-       id="polygon4812" />
-    <line
-       x1="461.26001"
-       y1="166.48"
-       x2="460.78"
-       y2="162.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4814" />
-    <line
-       x1="285.66"
-       y1="329.82999"
-       x2="284.57001"
-       y2="326.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4816" />
-    <line
-       x1="447.92001"
-       y1="219.91"
-       x2="450.01999"
-       y2="217.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4818" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="370.59,263.24 368.18,273.19 368.29,273.49 "
-       id="polygon4820" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="383.46,267.98 378.27,276.95 378.33,277.27 "
-       id="polygon4822" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.84,262.66 365.43,272.61 365.76,272.43 "
-       id="polygon4824" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="380.94,266.79 375.74,275.76 376.07,275.66 "
-       id="polygon4826" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="370.34,262.95 367.94,272.89 368.18,273.19 "
-       id="polygon4828" />
-    <line
-       x1="372.17001"
-       y1="268.13"
-       x2="374.64999"
-       y2="270.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.16,262.49 365.76,272.43 366.18,272.35 "
-       id="polygon4832" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="369.98,262.7 367.58,272.64 367.94,272.89 "
-       id="polygon4834" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="383.27,267.63 378.07,276.6 378.27,276.95 "
-       id="polygon4836" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="381.27,266.69 376.07,275.66 376.47,275.66 "
-       id="polygon4838" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.58,262.41 366.18,272.35 366.65,272.36 "
-       id="polygon4840" />
-    <line
-       x1="381.35001"
-       y1="363.07999"
-       x2="378.56"
-       y2="365.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4842" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="369.54,262.52 367.13,272.46 367.58,272.64 "
-       id="polygon4844" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="369.05,262.41 366.65,272.36 367.13,272.46 "
-       id="polygon4846" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="382.96,267.3 377.76,276.27 378.07,276.6 "
-       id="polygon4848" />
-    <line
-       x1="461.59"
-       y1="170.13"
-       x2="461.26001"
-       y2="166.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4850" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="381.67,266.7 376.47,275.66 376.92,275.78 "
-       id="polygon4852" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="382.56,267.02 377.36,275.98 377.76,276.27 "
-       id="polygon4854" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="382.12,266.81 376.92,275.78 377.36,275.98 "
-       id="polygon4856" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="387.58,281.95 395.91,275.01 396.02,274.78 "
-       id="polygon4858" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="383.38,294.55 376.78,298.83 376.58,299.18 "
-       id="polygon4860" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="381.72,292.3 375.12,296.57 375.54,296.61 "
-       id="polygon4862" />
-    <line
-       x1="450.01999"
-       y1="217.10001"
-       x2="451.95999"
-       y2="214.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4864" />
-    <line
-       x1="363.22"
-       y1="229.78999"
-       x2="360.79001"
-       y2="228.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4866" />
-    <line
-       x1="223.13"
-       y1="187.60001"
-       x2="224.73"
-       y2="186.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4868" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="383.45,294.13 376.85,298.4 376.78,298.83 "
-       id="polygon4870" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="382.14,292.34 375.54,296.61 375.95,296.79 "
-       id="polygon4872" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="383.4,293.66 376.8,297.94 376.85,298.4 "
-       id="polygon4874" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="382.55,292.51 375.95,296.79 376.32,297.09 "
-       id="polygon4876" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="383.21,293.21 376.61,297.48 376.8,297.94 "
-       id="polygon4878" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="382.93,292.82 376.32,297.09 376.61,297.48 "
-       id="polygon4880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="388.08,281.84 396.23,274.66 396.52,274.66 "
-       id="polygon4882" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="350.41,286.95 348.25,278.45 348.04,278.16 "
-       id="polygon4884" />
-    <line
-       x1="461.76001"
-       y1="173.86"
-       x2="461.59"
-       y2="170.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4886" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="388.43,281.97 396.52,274.66 396.87,274.79 "
-       id="polygon4888" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="389.79,283.72 398.11,276.16 398.23,276.54 "
-       id="polygon4890" />
-    <line
-       x1="368.45001"
-       y1="150.5"
-       x2="367.39999"
-       y2="151.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4892" />
-    <line
-       x1="451.95999"
-       y1="214.09"
-       x2="453.75"
-       y2="210.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4894" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="369.74,286.92 373.6,277.86 373.62,278.2 "
-       id="polygon4896" />
-    <line
-       x1="284.57001"
-       y1="326.85999"
-       x2="283.73001"
-       y2="323.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4898" />
-    <line
-       x1="383.92999"
-       y1="360.5"
-       x2="381.35001"
-       y2="363.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4900" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="388.8,282.21 396.87,274.79 397.24,275.04 "
-       id="polygon4902" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="389.67,283.34 397.89,275.75 398.11,276.16 "
-       id="polygon4904" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="353.19,285.62 350.49,276.64 350.82,276.84 "
-       id="polygon4906" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="389.15,282.55 397.24,275.04 397.59,275.37 "
-       id="polygon4908" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="389.45,282.93 397.59,275.37 397.89,275.75 "
-       id="polygon4910" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="369.72,286.57 373.43,277.5 373.6,277.86 "
-       id="polygon4912" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="350.44,286.25 347.98,277.83 348.07,277.47 "
-       id="polygon4914" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.49,285.35 371.01,276.77 371.38,276.63 "
-       id="polygon4916" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="352.86,285.41 350.06,276.53 350.49,276.64 "
-       id="polygon4918" />
-    <line
-       x1="374.64999"
-       y1="270.35999"
-       x2="377.09"
-       y2="272.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4920" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="369.55,286.22 373.13,277.17 373.43,277.5 "
-       id="polygon4922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="350.68,285.91 348.07,277.47 348.31,277.14 "
-       id="polygon4924" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.93,285.33 371.38,276.63 371.82,276.61 "
-       id="polygon4926" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="352.43,285.3 349.59,276.53 350.06,276.53 "
-       id="polygon4928" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="369.25,285.89 372.74,276.89 373.13,277.17 "
-       id="polygon4930" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="368.4,285.42 371.82,276.61 372.29,276.7 "
-       id="polygon4932" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="368.86,285.61 372.29,276.7 372.74,276.89 "
-       id="polygon4934" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="351.03,285.63 348.31,277.14 348.66,276.85 "
-       id="polygon4936" />
-    <line
-       x1="461.76001"
-       y1="177.66"
-       x2="461.76001"
-       y2="173.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="351.95,285.3 349.1,276.64 349.59,276.53 "
-       id="polygon4940" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="351.47,285.42 348.66,276.85 349.1,276.64 "
-       id="polygon4942" />
-    <line
-       x1="453.75"
-       y1="210.89999"
-       x2="455.35999"
-       y2="207.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4944" />
-    <line
-       x1="224.73"
-       y1="186.09"
-       x2="226.53999"
-       y2="184.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4946" />
-    <line
-       x1="461.59"
-       y1="181.5"
-       x2="461.76001"
-       y2="177.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4948" />
-    <line
-       x1="455.35999"
-       y1="207.56"
-       x2="456.79001"
-       y2="204.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4950" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="398.24,276.87 389.8,284.05 389.69,284.28 "
-       id="polygon4952" />
-    <line
-       x1="386.31"
-       y1="357.67999"
-       x2="383.92999"
-       y2="360.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="396.23,274.66 387.79,281.83 388.08,281.84 "
-       id="polygon4956" />
-    <line
-       x1="365.64999"
-       y1="231.23"
-       x2="363.22"
-       y2="229.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4958" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="398.23,276.54 389.79,283.72 389.8,284.05 "
-       id="polygon4960" />
-    <line
-       x1="461.23999"
-       y1="185.35001"
-       x2="461.59"
-       y2="181.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4962" />
-    <line
-       x1="456.79001"
-       y1="204.08"
-       x2="458.04001"
-       y2="200.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4964" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="398.11,276.16 389.67,283.34 389.79,283.72 "
-       id="polygon4966" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="396.87,274.79 388.43,281.97 388.8,282.21 "
-       id="polygon4968" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="372.83,286.73 378.25,277.55 378.03,277.75 "
-       id="polygon4970" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="397.89,275.75 389.45,282.93 389.67,283.34 "
-       id="polygon4972" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="397.24,275.04 388.8,282.21 389.15,282.55 "
-       id="polygon4974" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="397.59,275.37 389.15,282.55 389.45,282.93 "
-       id="polygon4976" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.39,297.6 376.32,297.09 376.61,297.48 "
-       id="polygon4978" />
-    <line
-       x1="377.09"
-       y1="272.84"
-       x2="379.45999"
-       y2="275.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4980" />
-    <line
-       x1="458.04001"
-       y1="200.48"
-       x2="459.12"
-       y2="196.78999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4982" />
-    <line
-       x1="460.70999"
-       y1="189.2"
-       x2="461.23999"
-       y2="185.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4984" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="365.89,283.44 368.18,273.18 368.29,273.49 "
-       id="polygon4986" />
-    <line
-       x1="283.73001"
-       y1="323.95999"
-       x2="283.13"
-       y2="321.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4988" />
-    <line
-       x1="459.12"
-       y1="196.78999"
-       x2="460.01001"
-       y2="193.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4990" />
-    <line
-       x1="460.01001"
-       y1="193.02"
-       x2="460.70999"
-       y2="189.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line4992" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.75,276.99 366.87,285.71 367.13,285.48 "
-       id="polygon4994" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="373.13,286.26 378.27,276.95 378.33,277.27 "
-       id="polygon4996" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="365.79,283.14 367.94,272.89 368.18,273.18 "
-       id="polygon4998" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="350.49,276.64 352.86,285.41 353.19,285.62 "
-       id="polygon5000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.01,276.77 367.13,285.48 367.49,285.35 "
-       id="polygon5002" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="373.43,277.5 369.55,286.22 369.72,286.57 "
-       id="polygon5004" />
-    <line
-       x1="388.45999"
-       y1="354.64999"
-       x2="386.31"
-       y2="357.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5006" />
-    <line
-       x1="369.59"
-       y1="149.75"
-       x2="368.45001"
-       y2="150.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5008" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.35,282.38 365.43,272.61 365.76,272.43 "
-       id="polygon5010" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.86,284.64 375.74,275.76 376.07,275.66 "
-       id="polygon5012" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="373.06,285.93 378.07,276.6 378.27,276.95 "
-       id="polygon5014" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="365.54,282.84 367.58,272.64 367.94,272.89 "
-       id="polygon5016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="348.07,277.47 350.44,286.25 350.68,285.91 "
-       id="polygon5018" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="350.06,276.53 352.43,285.3 352.86,285.41 "
-       id="polygon5020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.38,276.63 367.49,285.35 367.93,285.33 "
-       id="polygon5022" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="373.13,277.17 369.25,285.89 369.55,286.22 "
-       id="polygon5024" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.77,282.3 365.76,272.43 366.18,272.35 "
-       id="polygon5026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.27,284.64 376.07,275.66 376.48,275.66 "
-       id="polygon5028" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="365.18,282.59 367.13,272.46 367.58,272.64 "
-       id="polygon5030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="348.31,277.14 350.68,285.91 351.03,285.63 "
-       id="polygon5032" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="349.59,276.53 351.95,285.3 352.43,285.3 "
-       id="polygon5034" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="371.82,276.61 367.93,285.33 368.4,285.42 "
-       id="polygon5036" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="372.74,276.89 368.86,285.61 369.25,285.89 "
-       id="polygon5038" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="372.87,285.58 377.76,276.27 378.07,276.6 "
-       id="polygon5040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="364.25,282.3 366.18,272.35 366.65,272.36 "
-       id="polygon5042" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="372.29,276.7 368.4,285.42 368.86,285.61 "
-       id="polygon5044" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="364.73,282.41 366.65,272.36 367.13,272.46 "
-       id="polygon5046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="348.66,276.85 351.03,285.63 351.47,285.42 "
-       id="polygon5048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="349.1,276.64 351.47,285.42 351.95,285.3 "
-       id="polygon5050" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="371.71,284.76 376.48,275.66 376.92,275.77 "
-       id="polygon5052" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="372.55,285.25 377.36,275.98 377.76,276.27 "
-       id="polygon5054" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="372.16,284.97 376.92,275.77 377.36,275.98 "
-       id="polygon5056" />
-    <line
-       x1="226.53999"
-       y1="184.75"
-       x2="228.53999"
-       y2="183.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5058" />
-    <line
-       x1="299.70999"
-       y1="325.10999"
-       x2="303.04001"
-       y2="327.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5060" />
-    <line
-       x1="296.53"
-       y1="322.32001"
-       x2="299.70999"
-       y2="325.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5062" />
-    <line
-       x1="293.51999"
-       y1="319.35999"
-       x2="296.53"
-       y2="322.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5064" />
-    <line
-       x1="306.51999"
-       y1="330.07001"
-       x2="310.10999"
-       y2="332.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5066" />
-    <line
-       x1="379.45999"
-       y1="275.56"
-       x2="381.76001"
-       y2="278.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5068" />
-    <line
-       x1="290.67999"
-       y1="316.25"
-       x2="293.51999"
-       y2="319.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5070" />
-    <line
-       x1="368.04001"
-       y1="232.97"
-       x2="365.64999"
-       y2="231.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5072" />
-    <line
-       x1="390.38"
-       y1="351.42001"
-       x2="388.45999"
-       y2="354.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5074" />
-    <line
-       x1="310.10999"
-       y1="332.23001"
-       x2="313.81"
-       y2="334.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5076" />
-    <line
-       x1="288.04999"
-       y1="313.01001"
-       x2="290.67999"
-       y2="316.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5078" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.53,275.96 370.32,284.94 370.54,284.74 "
-       id="polygon5080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.24,272.84 362.83,282.8 363.03,282.55 "
-       id="polygon5082" />
-    <line
-       x1="313.81"
-       y1="334.14001"
-       x2="317.60001"
-       y2="335.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5084" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="368.18,273.18 365.79,283.14 365.89,283.44 "
-       id="polygon5086" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="369.93,303.45 376.77,298.83 376.57,299.18 "
-       id="polygon5088" />
-    <line
-       x1="283.13"
-       y1="321.16"
-       x2="282.79001"
-       y2="318.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5090" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="370.13,303.1 376.85,298.4 376.77,298.83 "
-       id="polygon5092" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="378.27,276.95 373.06,285.93 373.13,286.26 "
-       id="polygon5094" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="375.74,275.76 370.54,284.74 370.86,284.64 "
-       id="polygon5096" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.43,272.61 363.03,282.55 363.35,282.38 "
-       id="polygon5098" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="367.94,272.89 365.54,282.84 365.79,283.14 "
-       id="polygon5100" />
-    <line
-       x1="285.62"
-       y1="309.66"
-       x2="288.04999"
-       y2="313.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5102" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="369.3,301.05 375.54,296.61 375.95,296.79 "
-       id="polygon5104" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="370.2,302.67 376.8,297.94 376.85,298.4 "
-       id="polygon5106" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="350.35,286.61 350.66,286.57 350.73,286.29 "
-       id="polygon5108" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="369.68,301.36 375.95,296.79 376.32,297.09 "
-       id="polygon5110" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="370.15,302.21 376.61,297.48 376.8,297.94 "
-       id="polygon5112" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="369.96,301.75 376.32,297.09 376.61,297.48 "
-       id="polygon5114" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.76,272.43 363.35,282.38 363.77,282.3 "
-       id="polygon5116" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="378.07,276.6 372.87,285.58 373.06,285.93 "
-       id="polygon5118" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="367.58,272.64 365.18,282.59 365.54,282.84 "
-       id="polygon5120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.07,275.66 370.86,284.64 371.27,284.64 "
-       id="polygon5122" />
-    <line
-       x1="392.04999"
-       y1="348"
-       x2="390.38"
-       y2="351.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5124" />
-    <line
-       x1="317.60001"
-       y1="335.79999"
-       x2="321.45999"
-       y2="337.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="366.18,272.35 363.77,282.3 364.25,282.3 "
-       id="polygon5128" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="367.13,272.46 364.73,282.41 365.18,282.59 "
-       id="polygon5130" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="377.76,276.27 372.55,285.25 372.87,285.58 "
-       id="polygon5132" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="366.65,272.36 364.25,282.3 364.73,282.41 "
-       id="polygon5134" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="376.48,275.66 371.27,284.64 371.71,284.76 "
-       id="polygon5136" />
-    <line
-       x1="381.76001"
-       y1="278.5"
-       x2="383.95001"
-       y2="281.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5138" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="377.36,275.98 372.16,284.97 372.55,285.25 "
-       id="polygon5140" />
-    <line
-       x1="228.53999"
-       y1="183.61"
-       x2="230.72"
-       y2="182.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5142" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="376.92,275.77 371.71,284.76 372.16,284.97 "
-       id="polygon5144" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="380.69,289.74 388.8,282.21 389.15,282.55 "
-       id="polygon5146" />
-    <line
-       x1="386.03"
-       y1="285"
-       x2="386.03"
-       y2="285"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.62,289.03 387.79,281.83 388.08,281.84 "
-       id="polygon5150" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="380.99,290.13 389.15,282.55 389.45,282.93 "
-       id="polygon5152" />
-    <line
-       x1="386.32001"
-       y1="285.54001"
-       x2="386.32001"
-       y2="285.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5154" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="381.34,291.25 389.79,283.72 389.8,284.05 "
-       id="polygon5156" />
-    <line
-       x1="370.81"
-       y1="149.28999"
-       x2="369.59"
-       y2="149.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5158" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="379.96,289.16 388.08,281.84 388.43,281.97 "
-       id="polygon5160" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="381.33,290.92 389.67,283.34 389.79,283.72 "
-       id="polygon5162" />
-    <line
-       x1="283.41"
-       y1="306.22"
-       x2="285.62"
-       y2="309.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5164" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="380.34,289.41 388.43,281.97 388.8,282.21 "
-       id="polygon5166" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="381.21,290.54 389.45,282.93 389.67,283.34 "
-       id="polygon5168" />
-    <line
-       x1="321.45999"
-       y1="337.19"
-       x2="325.35999"
-       y2="338.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5170" />
-    <line
-       x1="370.39001"
-       y1="234.99001"
-       x2="368.04001"
-       y2="232.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5172" />
-    <line
-       x1="393.48001"
-       y1="344.42001"
-       x2="392.04999"
-       y2="348"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5174" />
-    <line
-       x1="281.42001"
-       y1="302.70999"
-       x2="283.41"
-       y2="306.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="387.79,281.83 379.32,289.03 379.62,289.03 "
-       id="polygon5178" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="388.08,281.84 379.62,289.03 379.96,289.16 "
-       id="polygon5180" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="388.43,281.97 379.96,289.16 380.34,289.41 "
-       id="polygon5182" />
-    <line
-       x1="383.95001"
-       y1="281.64999"
-       x2="385.78"
-       y2="284.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5184" />
-    <line
-       x1="325.35999"
-       y1="338.29999"
-       x2="329.29999"
-       y2="339.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5186" />
-    <line
-       x1="386.66"
-       y1="286.14001"
-       x2="386.66"
-       y2="286.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5188" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="389.8,284.05 381.34,291.25 381.23,291.48 "
-       id="polygon5190" />
-    <polygon
-       style="opacity:1;fill:#0000bb"
-       points="355.77,294.66 353.19,285.62 353.39,285.91 "
-       id="polygon5192" />
-    <line
-       x1="282.79001"
-       y1="318.48999"
-       x2="282.70001"
-       y2="315.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5194" />
-    <line
-       x1="394.66"
-       y1="340.69"
-       x2="393.48001"
-       y2="344.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5196" />
-    <line
-       x1="230.72"
-       y1="182.66"
-       x2="233.07001"
-       y2="181.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5198" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="355.57,294.37 352.86,285.41 353.19,285.62 "
-       id="polygon5200" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="389.79,283.72 381.33,290.92 381.34,291.25 "
-       id="polygon5202" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="352.82,295 350.35,286.61 350.44,286.25 "
-       id="polygon5204" />
-    <line
-       x1="329.29999"
-       y1="339.12"
-       x2="333.25"
-       y2="339.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5206" />
-    <line
-       x1="279.66"
-       y1="299.16"
-       x2="281.42001"
-       y2="302.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5208" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="355.23,294.16 352.43,285.3 352.86,285.41 "
-       id="polygon5210" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.6,294.07 367.13,285.48 367.49,285.35 "
-       id="polygon5212" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="389.67,283.34 381.21,290.54 381.33,290.92 "
-       id="polygon5214" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="376.85,298.4 370.2,302.67 370.13,303.1 "
-       id="polygon5216" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.05,294.66 350.44,286.25 350.68,285.91 "
-       id="polygon5218" />
-    <line
-       x1="387.95999"
-       y1="288.51999"
-       x2="386.66"
-       y2="286.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5220" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="389.45,282.93 380.99,290.13 381.21,290.54 "
-       id="polygon5222" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="364.04,294.05 367.49,285.35 367.93,285.33 "
-       id="polygon5224" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="354.81,294.05 351.95,285.3 352.43,285.3 "
-       id="polygon5226" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="388.8,282.21 380.34,289.41 380.69,289.74 "
-       id="polygon5228" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="376.8,297.94 370.15,302.21 370.2,302.67 "
-       id="polygon5230" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="375.95,296.79 369.3,301.05 369.68,301.36 "
-       id="polygon5232" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="365.36,294.61 368.86,285.61 369.25,285.89 "
-       id="polygon5234" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="389.15,282.55 380.69,289.74 380.99,290.13 "
-       id="polygon5236" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.41,294.38 350.68,285.91 351.03,285.62 "
-       id="polygon5238" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="376.61,297.48 369.96,301.75 370.15,302.21 "
-       id="polygon5240" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="376.32,297.09 369.68,301.36 369.96,301.75 "
-       id="polygon5242" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="364.51,294.14 367.93,285.33 368.4,285.42 "
-       id="polygon5244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="354.33,294.05 351.47,285.41 351.95,285.3 "
-       id="polygon5246" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="364.97,294.33 368.4,285.42 368.86,285.61 "
-       id="polygon5248" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.85,294.16 351.03,285.62 351.47,285.41 "
-       id="polygon5250" />
-    <line
-       x1="395.59"
-       y1="336.82999"
-       x2="394.66"
-       y2="340.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5252" />
-    <line
-       x1="372.09"
-       y1="149.10001"
-       x2="370.81"
-       y2="149.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5254" />
-    <line
-       x1="372.67001"
-       y1="237.28999"
-       x2="370.39001"
-       y2="234.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5256" />
-    <line
-       x1="333.25"
-       y1="339.64999"
-       x2="337.20001"
-       y2="339.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5258" />
-    <line
-       x1="387.95999"
-       y1="288.51999"
-       x2="389.75"
-       y2="292.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5260" />
-    <line
-       x1="278.14001"
-       y1="295.59"
-       x2="279.66"
-       y2="299.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5262" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="366.87,285.71 362.98,294.43 363.23,294.2 "
-       id="polygon5264" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="363.49,293.39 365.79,283.13 365.89,283.44 "
-       id="polygon5266" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="368.86,285.61 364.97,294.33 365.36,294.61 "
-       id="polygon5268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.32,293.73 370.32,284.94 370.54,284.74 "
-       id="polygon5270" />
-    <line
-       x1="396.26001"
-       y1="332.85999"
-       x2="395.59"
-       y2="336.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5272" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.63,292.51 362.83,282.8 363.03,282.55 "
-       id="polygon5274" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="367.91,295.25 373.06,285.93 373.13,286.26 "
-       id="polygon5276" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="363.39,293.09 365.54,282.84 365.79,283.13 "
-       id="polygon5278" />
-    <line
-       x1="233.07001"
-       y1="181.92"
-       x2="235.57001"
-       y2="181.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.64,293.63 370.54,284.74 370.86,284.64 "
-       id="polygon5282" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.95,292.34 363.03,282.55 363.35,282.38 "
-       id="polygon5284" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="367.85,294.93 372.87,285.58 373.06,285.93 "
-       id="polygon5286" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="363.14,292.79 365.18,282.59 365.54,282.84 "
-       id="polygon5288" />
-    <line
-       x1="337.20001"
-       y1="339.88"
-       x2="341.10999"
-       y2="339.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5290" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.37,292.25 363.35,282.38 363.77,282.29 "
-       id="polygon5292" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="366.05,293.64 370.86,284.64 371.27,284.64 "
-       id="polygon5294" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="362.78,292.54 364.73,282.4 365.18,282.59 "
-       id="polygon5296" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="367.66,294.58 372.56,285.25 372.87,285.58 "
-       id="polygon5298" />
-    <line
-       x1="389.75"
-       y1="292.19"
-       x2="391.35999"
-       y2="296"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5300" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.85,292.25 363.77,282.29 364.25,282.3 "
-       id="polygon5302" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="362.33,292.36 364.25,282.3 364.73,282.4 "
-       id="polygon5304" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="366.5,293.75 371.27,284.64 371.71,284.75 "
-       id="polygon5306" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="367.34,294.25 372.16,284.96 372.56,285.25 "
-       id="polygon5308" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="366.95,293.96 371.71,284.75 372.16,284.96 "
-       id="polygon5310" />
-    <line
-       x1="396.67999"
-       y1="328.81"
-       x2="396.26001"
-       y2="332.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5312" />
-    <line
-       x1="282.70001"
-       y1="315.95999"
-       x2="282.85999"
-       y2="313.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5314" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="350.35,286.61 352.73,295.36 352.82,295 "
-       id="polygon5316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.13,285.48 363.23,294.2 363.6,294.07 "
-       id="polygon5318" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="350.44,286.25 352.82,295 353.05,294.66 "
-       id="polygon5320" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="352.43,285.3 354.81,294.05 355.23,294.16 "
-       id="polygon5322" />
-    <line
-       x1="276.87"
-       y1="292.04001"
-       x2="278.14001"
-       y2="295.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5324" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.49,285.35 363.6,294.07 364.04,294.05 "
-       id="polygon5326" />
-    <line
-       x1="391.35999"
-       y1="296"
-       x2="392.79001"
-       y2="299.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5328" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="350.68,285.91 353.05,294.66 353.41,294.38 "
-       id="polygon5330" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="351.95,285.3 354.33,294.05 354.81,294.05 "
-       id="polygon5332" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="367.93,285.33 364.04,294.05 364.51,294.14 "
-       id="polygon5334" />
-    <line
-       x1="396.84"
-       y1="324.69"
-       x2="396.67999"
-       y2="328.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5336" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="368.4,285.42 364.51,294.14 364.97,294.33 "
-       id="polygon5338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="351.03,285.62 353.41,294.38 353.85,294.16 "
-       id="polygon5340" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="351.47,285.41 353.85,294.16 354.33,294.05 "
-       id="polygon5342" />
-    <line
-       x1="374.87"
-       y1="239.84"
-       x2="372.67001"
-       y2="237.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5344" />
-    <line
-       x1="341.10999"
-       y1="339.79999"
-       x2="344.98001"
-       y2="339.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5346" />
-    <line
-       x1="392.79001"
-       y1="299.92999"
-       x2="394.01999"
-       y2="303.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5348" />
-    <line
-       x1="396.75"
-       y1="320.54001"
-       x2="396.84"
-       y2="324.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5350" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="372.76,298.7 381.34,291.24 381.23,291.48 "
-       id="polygon5352" />
-    <line
-       x1="235.57001"
-       y1="181.39999"
-       x2="238.2"
-       y2="181.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5354" />
-    <line
-       x1="394.01999"
-       y1="303.95001"
-       x2="395.04999"
-       y2="308.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5356" />
-    <line
-       x1="396.42001"
-       y1="316.35999"
-       x2="396.75"
-       y2="320.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5358" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="371.14,296.25 379.32,289.03 379.62,289.03 "
-       id="polygon5360" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="372.86,298.46 381.33,290.92 381.34,291.24 "
-       id="polygon5362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="362.83,282.8 360.43,292.75 360.63,292.51 "
-       id="polygon5364" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="365.79,283.13 363.39,293.09 363.49,293.39 "
-       id="polygon5366" />
-    <line
-       x1="373.42999"
-       y1="149.21001"
-       x2="372.09"
-       y2="149.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5368" />
-    <line
-       x1="395.04999"
-       y1="308.04001"
-       x2="395.85001"
-       y2="312.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5370" />
-    <line
-       x1="395.85001"
-       y1="312.19"
-       x2="396.42001"
-       y2="316.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5372" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="371.49,296.38 379.62,289.03 379.96,289.16 "
-       id="polygon5374" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="373.06,285.93 367.85,294.93 367.91,295.25 "
-       id="polygon5376" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="372.86,298.14 381.21,290.54 381.33,290.92 "
-       id="polygon5378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.54,284.74 365.32,293.73 365.64,293.63 "
-       id="polygon5380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.03,282.55 360.63,292.51 360.95,292.34 "
-       id="polygon5382" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="365.54,282.84 363.14,292.79 363.39,293.09 "
-       id="polygon5384" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="371.86,296.63 379.96,289.16 380.34,289.41 "
-       id="polygon5386" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="372.73,297.75 380.99,290.13 381.21,290.54 "
-       id="polygon5388" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="372.87,285.58 367.66,294.58 367.85,294.93 "
-       id="polygon5390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="370.86,284.64 365.64,293.63 366.05,293.64 "
-       id="polygon5392" />
-    <line
-       x1="344.98001"
-       y1="339.42001"
-       x2="348.79001"
-       y2="338.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5394" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.35,282.38 360.95,292.34 361.37,292.25 "
-       id="polygon5396" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="365.18,282.59 362.78,292.54 363.14,292.79 "
-       id="polygon5398" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="372.21,296.96 380.34,289.41 380.69,289.74 "
-       id="polygon5400" />
-    <line
-       x1="275.84"
-       y1="288.5"
-       x2="276.87"
-       y2="292.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5402" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="372.51,297.35 380.69,289.74 380.99,290.13 "
-       id="polygon5404" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.77,282.29 361.37,292.25 361.85,292.25 "
-       id="polygon5406" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="364.73,282.4 362.33,292.36 362.78,292.54 "
-       id="polygon5408" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="372.56,285.25 367.34,294.25 367.66,294.58 "
-       id="polygon5410" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="371.27,284.64 366.05,293.64 366.5,293.75 "
-       id="polygon5412" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="364.25,282.3 361.85,292.25 362.33,292.36 "
-       id="polygon5414" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="372.16,284.96 366.95,293.96 367.34,294.25 "
-       id="polygon5416" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="371.71,284.75 366.5,293.75 366.95,293.96 "
-       id="polygon5418" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="355.57,294.37 355.31,294.53 355.48,294.76 "
-       id="polygon5420" />
-    <line
-       x1="376.95999"
-       y1="242.64"
-       x2="374.87"
-       y2="239.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5422" />
-    <line
-       x1="282.85999"
-       y1="313.59"
-       x2="283.25"
-       y2="311.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5424" />
-    <line
-       x1="348.79001"
-       y1="338.73001"
-       x2="352.5"
-       y2="337.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5426" />
-    <line
-       x1="238.2"
-       y1="181.11"
-       x2="240.94"
-       y2="181.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="379.32,289.03 370.85,296.24 371.14,296.25 "
-       id="polygon5430" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="381.33,290.92 372.86,298.14 372.86,298.46 "
-       id="polygon5432" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="379.62,289.03 371.14,296.25 371.49,296.38 "
-       id="polygon5434" />
-    <line
-       x1="275.04999"
-       y1="285.01999"
-       x2="275.84"
-       y2="288.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5436" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="363.42,307.37 370.2,302.67 370.13,303.1 "
-       id="polygon5438" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="381.21,290.54 372.73,297.75 372.86,298.14 "
-       id="polygon5440" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="379.96,289.16 371.49,296.38 371.86,296.63 "
-       id="polygon5442" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="363.5,306.94 370.14,302.21 370.2,302.67 "
-       id="polygon5444" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="380.99,290.13 372.51,297.35 372.73,297.75 "
-       id="polygon5446" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="363.44,306.48 369.96,301.75 370.14,302.21 "
-       id="polygon5448" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="380.34,289.41 371.86,296.63 372.21,296.96 "
-       id="polygon5450" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="363.26,306.02 369.67,301.36 369.96,301.75 "
-       id="polygon5452" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="380.69,289.74 372.21,296.96 372.51,297.35 "
-       id="polygon5454" />
-    <line
-       x1="250"
-       y1="280.10999"
-       x2="246.37"
-       y2="280.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5456" />
-    <line
-       x1="253.59"
-       y1="279.42999"
-       x2="250"
-       y2="280.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5458" />
-    <line
-       x1="246.37"
-       y1="280.54999"
-       x2="242.7"
-       y2="280.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5460" />
-    <line
-       x1="242.7"
-       y1="280.75"
-       x2="239.02"
-       y2="280.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5462" />
-    <line
-       x1="352.5"
-       y1="337.73001"
-       x2="356.13"
-       y2="336.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5464" />
-    <line
-       x1="260.51999"
-       y1="277.38"
-       x2="257.10001"
-       y2="278.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5466" />
-    <line
-       x1="374.79999"
-       y1="149.61"
-       x2="373.42999"
-       y2="149.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5468" />
-    <line
-       x1="239.02"
-       y1="280.73001"
-       x2="235.35001"
-       y2="280.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5470" />
-    <line
-       x1="378.92999"
-       y1="245.67999"
-       x2="376.95999"
-       y2="242.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5472" />
-    <line
-       x1="263.84"
-       y1="276"
-       x2="260.51999"
-       y2="277.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5474" />
-    <line
-       x1="240.94"
-       y1="181.03999"
-       x2="243.77"
-       y2="181.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5476" />
-    <line
-       x1="235.35001"
-       y1="280.48001"
-       x2="231.7"
-       y2="280"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5478" />
-    <line
-       x1="267.01999"
-       y1="274.41"
-       x2="263.84"
-       y2="276"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5480" />
-    <line
-       x1="303.57999"
-       y1="220.28"
-       x2="305.67999"
-       y2="223.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5482" />
-    <line
-       x1="305.67999"
-       y1="223.55"
-       x2="307.92001"
-       y2="226.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5484" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="355.2,303.73 352.73,295.36 352.82,295 "
-       id="polygon5486" />
-    <line
-       x1="301.64001"
-       y1="216.92"
-       x2="303.57999"
-       y2="220.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5488" />
-    <line
-       x1="307.92001"
-       y1="226.73"
-       x2="310.29999"
-       y2="229.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5490" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="357.63,302.89 354.81,294.05 355.23,294.16 "
-       id="polygon5492" />
-    <line
-       x1="356.13"
-       y1="336.44"
-       x2="359.62"
-       y2="334.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="355.44,303.39 352.82,295 353.05,294.66 "
-       id="polygon5496" />
-    <line
-       x1="231.7"
-       y1="280"
-       x2="228.11"
-       y2="279.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5498" />
-    <line
-       x1="274.51999"
-       y1="281.62"
-       x2="275.04999"
-       y2="285.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5500" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="357.2,302.78 354.33,294.05 354.81,294.05 "
-       id="polygon5502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.14,302.77 363.6,294.07 364.04,294.04 "
-       id="polygon5504" />
-    <line
-       x1="270.06"
-       y1="272.60001"
-       x2="267.01999"
-       y2="274.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5506" />
-    <line
-       x1="299.85999"
-       y1="213.5"
-       x2="301.64001"
-       y2="216.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="355.79,303.1 353.05,294.66 353.41,294.37 "
-       id="polygon5510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="356.72,302.78 353.85,294.16 354.33,294.05 "
-       id="polygon5512" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="361,303.04 361.18,302.16 361.26,301.94 "
-       id="polygon5514" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="361.18,302.16 360.9,302.92 361,303.04 "
-       id="polygon5516" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="360.61,302.86 364.04,294.04 364.51,294.13 "
-       id="polygon5518" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="361.07,303.05 364.51,294.13 364.97,294.33 "
-       id="polygon5520" />
-    <line
-       x1="283.25"
-       y1="311.41"
-       x2="283.88"
-       y2="309.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5522" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="356.23,302.89 353.41,294.37 353.85,294.16 "
-       id="polygon5524" />
-    <line
-       x1="310.29999"
-       y1="229.78"
-       x2="312.82001"
-       y2="232.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5526" />
-    <line
-       x1="298.23999"
-       y1="210.03999"
-       x2="299.85999"
-       y2="213.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5528" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="362.14,303.61 363.43,302.54 363.38,302.56 "
-       id="polygon5530" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="364.55,301.58 370.53,296.6 370.63,296.36 "
-       id="polygon5532" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="364.49,301.65 370.53,296.6 364.55,301.58 "
-       id="polygon5534" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="364.6,301.52 364.55,301.58 370.63,296.36 "
-       id="polygon5536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="364.56,301.86 370.84,296.25 371.14,296.25 "
-       id="polygon5538" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="364.6,301.77 370.84,296.25 364.56,301.86 "
-       id="polygon5540" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="367.83,295.53 362.61,304.54 362.39,304.74 "
-       id="polygon5542" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="362.69,304.26 367.85,294.92 367.91,295.25 "
-       id="polygon5544" />
-    <line
-       x1="272.94"
-       y1="270.57999"
-       x2="270.06"
-       y2="272.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5546" />
-    <line
-       x1="228.11"
-       y1="279.31"
-       x2="224.59"
-       y2="278.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.42,302.63 361.13,301.34 361.03,301.59 "
-       id="polygon5550" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="364.04,294.04 360.14,302.77 360.61,302.86 "
-       id="polygon5552" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="364.51,294.13 360.61,302.86 361.07,303.05 "
-       id="polygon5554" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.03,301.59 360.42,302.63 360.65,302.64 "
-       id="polygon5556" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="361.18,302.16 363.14,292.79 363.39,293.09 "
-       id="polygon5558" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="361.26,301.94 361.18,302.16 363.39,293.09 "
-       id="polygon5560" />
-    <line
-       x1="312.82001"
-       y1="232.69"
-       x2="315.45001"
-       y2="235.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5562" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="363.14,292.79 360.75,302.75 361.18,302.16 "
-       id="polygon5564" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.13,301.34 365.32,293.73 365.64,293.63 "
-       id="polygon5566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.03,301.59 361.13,301.34 365.64,293.63 "
-       id="polygon5568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.56,302.29 360.63,292.5 360.95,292.33 "
-       id="polygon5570" />
-    <line
-       x1="380.76001"
-       y1="248.92999"
-       x2="378.92999"
-       y2="245.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5572" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="362.63,303.93 367.66,294.57 367.85,294.92 "
-       id="polygon5574" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="360.75,302.75 362.78,292.54 363.14,292.79 "
-       id="polygon5576" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="370.13,303.1 363.42,307.37 363.22,307.72 "
-       id="polygon5578" />
-    <line
-       x1="243.77"
-       y1="181.21001"
-       x2="246.67999"
-       y2="181.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5580" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="361.18,302.16 360.75,302.75 360.9,302.92 "
-       id="polygon5582" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.83,302.64 365.64,293.63 366.05,293.63 "
-       id="polygon5584" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.98,302.2 360.95,292.33 361.38,292.24 "
-       id="polygon5586" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="362.43,303.58 367.34,294.24 367.66,294.57 "
-       id="polygon5588" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="360.39,302.5 362.34,292.35 362.78,292.54 "
-       id="polygon5590" />
-    <line
-       x1="359.62"
-       y1="334.85001"
-       x2="362.98001"
-       y2="332.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5592" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.45,302.21 361.38,292.24 361.85,292.25 "
-       id="polygon5594" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="370.2,302.67 363.5,306.94 363.42,307.37 "
-       id="polygon5596" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="359.94,302.31 361.85,292.25 362.34,292.35 "
-       id="polygon5598" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="361.28,302.75 366.05,293.63 366.5,293.75 "
-       id="polygon5600" />
-    <polygon
-       style="opacity:1;fill:#0000cf"
-       points="367.85,294.92 362.63,303.93 362.69,304.26 "
-       id="polygon5602" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="363.43,302.54 364.49,301.65 364.55,301.58 "
-       id="polygon5604" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="363.38,302.56 363.43,302.54 364.6,301.52 "
-       id="polygon5606" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="364.6,301.52 363.43,302.54 364.55,301.58 "
-       id="polygon5608" />
-    <line
-       x1="275.64001"
-       y1="268.35999"
-       x2="272.94"
-       y2="270.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5610" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="362.12,303.25 366.95,293.96 367.34,294.24 "
-       id="polygon5612" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="361.72,302.96 366.5,293.75 366.95,293.96 "
-       id="polygon5614" />
-    <line
-       x1="296.79001"
-       y1="206.56"
-       x2="298.23999"
-       y2="210.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5616" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="370.14,302.21 363.44,306.48 363.5,306.94 "
-       id="polygon5618" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="369.96,301.75 363.26,306.02 363.44,306.48 "
-       id="polygon5620" />
-    <line
-       x1="224.59"
-       y1="278.41"
-       x2="221.14999"
-       y2="277.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5622" />
-    <line
-       x1="315.45001"
-       y1="235.44"
-       x2="318.20001"
-       y2="238"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5624" />
-    <polygon
-       style="opacity:1;fill:#0000e8"
-       points="355.84,295 358.23,303.73 358.13,304.09 "
-       id="polygon5626" />
-    <line
-       x1="376.19"
-       y1="150.28999"
-       x2="374.79999"
-       y2="149.61"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5628" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="367.66,294.57 362.43,303.58 362.63,303.93 "
-       id="polygon5630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="362.65,303.5 364.6,301.77 364.56,301.86 "
-       id="polygon5632" />
-    <line
-       x1="278.14001"
-       y1="265.95001"
-       x2="275.64001"
-       y2="268.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5634" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="364.38,305.71 372.86,298.14 372.86,298.46 "
-       id="polygon5636" />
-    <line
-       x1="274.23001"
-       y1="278.31"
-       x2="274.51999"
-       y2="281.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5638" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="363,303.63 371.14,296.25 371.48,296.38 "
-       id="polygon5640" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="364.37,305.39 372.73,297.75 372.86,298.14 "
-       id="polygon5642" />
-    <line
-       x1="295.51999"
-       y1="203.09"
-       x2="296.79001"
-       y2="206.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5644" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="352.73,295.36 355.11,304.09 355.2,303.73 "
-       id="polygon5646" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="355.23,294.16 357.63,302.89 357.96,303.1 "
-       id="polygon5648" />
-    <line
-       x1="318.20001"
-       y1="238"
-       x2="321.04001"
-       y2="240.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5650" />
-    <line
-       x1="362.98001"
-       y1="332.98001"
-       x2="366.19"
-       y2="330.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5652" />
-    <line
-       x1="221.14999"
-       y1="277.31"
-       x2="217.82001"
-       y2="276.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5654" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="363.36,303.88 371.48,296.38 371.86,296.63 "
-       id="polygon5656" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="364.25,305.01 372.51,297.35 372.73,297.75 "
-       id="polygon5658" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="363.72,304.21 371.86,296.63 372.21,296.96 "
-       id="polygon5660" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="364.02,304.6 372.21,296.96 372.51,297.35 "
-       id="polygon5662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="352.82,295 355.2,303.73 355.44,303.39 "
-       id="polygon5664" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="354.81,294.05 357.2,302.78 357.63,302.89 "
-       id="polygon5666" />
-    <line
-       x1="382.42999"
-       y1="252.38"
-       x2="380.76001"
-       y2="248.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5668" />
-    <line
-       x1="246.67999"
-       y1="181.61"
-       x2="249.64"
-       y2="182.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5670" />
-    <line
-       x1="280.45001"
-       y1="263.35001"
-       x2="278.14001"
-       y2="265.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.05,294.66 355.44,303.39 355.79,303.1 "
-       id="polygon5674" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.41,294.37 355.79,303.1 356.23,302.89 "
-       id="polygon5676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="353.85,294.16 356.23,302.89 356.72,302.78 "
-       id="polygon5678" />
-    <line
-       x1="283.88"
-       y1="309.41"
-       x2="284.73001"
-       y2="307.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.63,292.5 358.23,302.46 358.56,302.29 "
-       id="polygon5682" />
-    <line
-       x1="321.04001"
-       y1="240.38"
-       x2="323.97"
-       y2="242.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5684" />
-    <line
-       x1="294.42001"
-       y1="199.64999"
-       x2="295.51999"
-       y2="203.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5686" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="365.64,293.63 361.03,301.59 360.83,302.64 "
-       id="polygon5688" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="362.78,292.54 360.39,302.5 360.75,302.75 "
-       id="polygon5690" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.83,302.64 361.03,301.59 360.65,302.64 "
-       id="polygon5692" />
-    <line
-       x1="217.82001"
-       y1="276.01999"
-       x2="214.62"
-       y2="274.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5694" />
-    <line
-       x1="282.53"
-       y1="260.59"
-       x2="280.45001"
-       y2="263.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5696" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="360.95,292.33 358.56,302.29 358.98,302.2 "
-       id="polygon5698" />
-    <line
-       x1="366.19"
-       y1="330.82001"
-       x2="369.23001"
-       y2="328.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5700" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="367.34,294.24 362.12,303.25 362.43,303.58 "
-       id="polygon5702" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="366.05,293.63 360.83,302.64 361.28,302.75 "
-       id="polygon5704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="361.38,292.24 358.98,302.2 359.45,302.21 "
-       id="polygon5706" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="362.34,292.35 359.94,302.31 360.39,302.5 "
-       id="polygon5708" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="361.85,292.25 359.45,302.21 359.94,302.31 "
-       id="polygon5710" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="366.95,293.96 361.72,302.96 362.12,303.25 "
-       id="polygon5712" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="366.5,293.75 361.28,302.75 361.72,302.96 "
-       id="polygon5714" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="372.86,298.46 364.38,305.71 364.27,305.95 "
-       id="polygon5716" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="372.86,298.14 364.37,305.39 364.38,305.71 "
-       id="polygon5718" />
-    <line
-       x1="383.92999"
-       y1="256.01001"
-       x2="382.42999"
-       y2="252.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5720" />
-    <line
-       x1="249.64"
-       y1="182.25999"
-       x2="252.64"
-       y2="183.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5722" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="371.14,296.25 362.65,303.5 363,303.63 "
-       id="polygon5724" />
-    <line
-       x1="284.38"
-       y1="257.67999"
-       x2="282.53"
-       y2="260.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5726" />
-    <line
-       x1="274.19"
-       y1="275.13"
-       x2="274.23001"
-       y2="278.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5728" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="372.73,297.75 364.25,305.01 364.37,305.39 "
-       id="polygon5730" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="371.48,296.38 363,303.63 363.36,303.88 "
-       id="polygon5732" />
-    <line
-       x1="323.97"
-       y1="242.53999"
-       x2="326.97"
-       y2="244.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5734" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="372.51,297.35 364.02,304.6 364.25,305.01 "
-       id="polygon5736" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="371.86,296.63 363.36,303.88 363.72,304.21 "
-       id="polygon5738" />
-    <line
-       x1="214.62"
-       y1="274.54999"
-       x2="211.56"
-       y2="272.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5740" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="372.21,296.96 363.72,304.21 364.02,304.6 "
-       id="polygon5742" />
-    <line
-       x1="369.23001"
-       y1="328.39999"
-       x2="372.07999"
-       y2="325.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5744" />
-    <line
-       x1="293.5"
-       y1="196.25999"
-       x2="294.42001"
-       y2="199.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5746" />
-    <line
-       x1="377.59"
-       y1="151.25999"
-       x2="376.19"
-       y2="150.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5748" />
-    <line
-       x1="286"
-       y1="254.63"
-       x2="284.38"
-       y2="257.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5750" />
-    <line
-       x1="252.64"
-       y1="183.14"
-       x2="255.64999"
-       y2="184.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5752" />
-    <line
-       x1="385.25"
-       y1="259.79001"
-       x2="383.92999"
-       y2="256.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5754" />
-    <line
-       x1="372.07999"
-       y1="325.72"
-       x2="374.73999"
-       y2="322.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5756" />
-    <line
-       x1="326.97"
-       y1="244.46001"
-       x2="330.04001"
-       y2="246.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5758" />
-    <line
-       x1="287.37"
-       y1="251.46001"
-       x2="286"
-       y2="254.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5760" />
-    <line
-       x1="211.56"
-       y1="272.91"
-       x2="208.66"
-       y2="271.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5762" />
-    <line
-       x1="292.75"
-       y1="192.94"
-       x2="293.5"
-       y2="196.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5764" />
-    <line
-       x1="284.73001"
-       y1="307.64001"
-       x2="285.79999"
-       y2="306.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5766" />
-    <line
-       x1="274.39001"
-       y1="272.07999"
-       x2="274.19"
-       y2="275.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5768" />
-    <line
-       x1="288.48999"
-       y1="248.17"
-       x2="287.37"
-       y2="251.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5770" />
-    <line
-       x1="374.73999"
-       y1="322.81"
-       x2="377.20001"
-       y2="319.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5772" />
-    <line
-       x1="386.37"
-       y1="263.70999"
-       x2="385.25"
-       y2="259.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5774" />
-    <line
-       x1="255.64999"
-       y1="184.25"
-       x2="258.64999"
-       y2="185.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5776" />
-    <line
-       x1="330.04001"
-       y1="246.14999"
-       x2="333.16"
-       y2="247.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5778" />
-    <line
-       x1="208.66"
-       y1="271.12"
-       x2="205.92999"
-       y2="269.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5780" />
-    <line
-       x1="289.35001"
-       y1="244.8"
-       x2="288.48999"
-       y2="248.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5782" />
-    <line
-       x1="377.20001"
-       y1="319.67001"
-       x2="379.42999"
-       y2="316.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5784" />
-    <line
-       x1="378.98999"
-       y1="152.50999"
-       x2="377.59"
-       y2="151.25999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5786" />
-    <line
-       x1="292.17999"
-       y1="189.71001"
-       x2="292.75"
-       y2="192.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5788" />
-    <line
-       x1="387.28"
-       y1="267.75"
-       x2="386.37"
-       y2="263.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5790" />
-    <line
-       x1="258.64999"
-       y1="185.59"
-       x2="261.63"
-       y2="187.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5792" />
-    <line
-       x1="289.95001"
-       y1="241.35001"
-       x2="289.35001"
-       y2="244.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5794" />
-    <line
-       x1="379.42999"
-       y1="316.32001"
-       x2="381.42999"
-       y2="312.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5796" />
-    <line
-       x1="364.04999"
-       y1="304.53"
-       x2="363.98001"
-       y2="304.51999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5798" />
-    <line
-       x1="333.16"
-       y1="247.59"
-       x2="336.32001"
-       y2="248.77"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5800" />
-    <line
-       x1="387.95999"
-       y1="271.88"
-       x2="387.28"
-       y2="267.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5802" />
-    <line
-       x1="205.92999"
-       y1="269.17999"
-       x2="203.39999"
-       y2="267.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5804" />
-    <line
-       x1="290.28"
-       y1="237.85001"
-       x2="289.95001"
-       y2="241.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5806" />
-    <line
-       x1="261.63"
-       y1="187.17"
-       x2="264.54999"
-       y2="188.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5808" />
-    <line
-       x1="274.82001"
-       y1="269.20001"
-       x2="274.39001"
-       y2="272.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5810" />
-    <line
-       x1="381.42999"
-       y1="312.79001"
-       x2="383.20001"
-       y2="309.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5812" />
-    <line
-       x1="360.45999"
-       y1="301.92999"
-       x2="360.59"
-       y2="301.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5814" />
-    <line
-       x1="285.79999"
-       y1="306.07999"
-       x2="287.07999"
-       y2="304.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5816" />
-    <line
-       x1="388.42001"
-       y1="276.07001"
-       x2="387.95999"
-       y2="271.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5818" />
-    <line
-       x1="290.35001"
-       y1="234.31"
-       x2="290.28"
-       y2="237.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5820" />
-    <line
-       x1="291.79001"
-       y1="186.60001"
-       x2="292.17999"
-       y2="189.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5822" />
-    <line
-       x1="383.20001"
-       y1="309.07999"
-       x2="384.73001"
-       y2="305.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5824" />
-    <line
-       x1="364.47"
-       y1="313.26001"
-       x2="364.62"
-       y2="313.03"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5826" />
-    <line
-       x1="264.54999"
-       y1="188.96001"
-       x2="267.39999"
-       y2="190.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5828" />
-    <line
-       x1="363.28"
-       y1="314.69"
-       x2="363.17999"
-       y2="314.73999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5830" />
-    <line
-       x1="388.64001"
-       y1="280.29999"
-       x2="388.42001"
-       y2="276.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5832" />
-    <line
-       x1="384.73001"
-       y1="305.23001"
-       x2="386.01001"
-       y2="301.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5834" />
-    <line
-       x1="336.32001"
-       y1="248.77"
-       x2="339.48999"
-       y2="249.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5836" />
-    <line
-       x1="290.16"
-       y1="230.75"
-       x2="290.35001"
-       y2="234.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5838" />
-    <line
-       x1="363.17001"
-       y1="303.45001"
-       x2="363"
-       y2="303.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5840" />
-    <line
-       x1="354.70999"
-       y1="302.34"
-       x2="354.98001"
-       y2="302.22"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5842" />
-    <line
-       x1="357.85999"
-       y1="301.54001"
-       x2="358.03"
-       y2="301.54999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5844" />
-    <line
-       x1="388.60999"
-       y1="284.54999"
-       x2="388.64001"
-       y2="280.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5846" />
-    <line
-       x1="203.39999"
-       y1="267.13"
-       x2="201.07001"
-       y2="264.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5848" />
-    <line
-       x1="386.01001"
-       y1="301.25"
-       x2="387.04001"
-       y2="297.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5850" />
-    <line
-       x1="267.39999"
-       y1="190.96001"
-       x2="270.16"
-       y2="193.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5852" />
-    <line
-       x1="380.37"
-       y1="154.03"
-       x2="378.98999"
-       y2="152.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5854" />
-    <line
-       x1="388.34"
-       y1="288.79999"
-       x2="388.60999"
-       y2="284.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5856" />
-    <line
-       x1="387.04001"
-       y1="297.17001"
-       x2="387.82001"
-       y2="293.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5858" />
-    <line
-       x1="387.82001"
-       y1="293.01001"
-       x2="388.34"
-       y2="288.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5860" />
-    <line
-       x1="289.72"
-       y1="227.19"
-       x2="290.16"
-       y2="230.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5862" />
-    <line
-       x1="365.54999"
-       y1="307.92999"
-       x2="365.53"
-       y2="308.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5864" />
-    <line
-       x1="270.16"
-       y1="193.17999"
-       x2="272.82001"
-       y2="195.58"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5866" />
-    <line
-       x1="359.64001"
-       y1="301.84"
-       x2="359.79999"
-       y2="301.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5868" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="355.33,302.64 355.31,302.52 355.59,302.46 "
-       id="polygon5870" />
-    <line
-       x1="289.01999"
-       y1="223.64999"
-       x2="289.72"
-       y2="227.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5872" />
-    <line
-       x1="365.07999"
-       y1="306.51999"
-       x2="364.98001"
-       y2="306.39001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5874" />
-    <line
-       x1="358.70999"
-       y1="301.73999"
-       x2="358.85999"
-       y2="301.70999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5876" />
-    <line
-       x1="352.54001"
-       y1="304.07999"
-       x2="352.56"
-       y2="304.01999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5878" />
-    <line
-       x1="275.48001"
-       y1="266.5"
-       x2="274.82001"
-       y2="269.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5880" />
-    <line
-       x1="356.38"
-       y1="301.87"
-       x2="356.39001"
-       y2="301.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5882" />
-    <line
-       x1="291.56"
-       y1="183.63"
-       x2="291.79001"
-       y2="186.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5884" />
-    <line
-       x1="272.82001"
-       y1="195.58"
-       x2="275.34"
-       y2="198.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5886" />
-    <line
-       x1="355.37"
-       y1="316.22"
-       x2="355.12"
-       y2="316.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5888" />
-    <line
-       x1="288.07001"
-       y1="220.14999"
-       x2="289.01999"
-       y2="223.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5890" />
-    <line
-       x1="339.48999"
-       y1="249.67"
-       x2="342.67999"
-       y2="250.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5892" />
-    <line
-       x1="361.12"
-       y1="302.54001"
-       x2="360.82999"
-       y2="302.48001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5894" />
-    <line
-       x1="362.35999"
-       y1="303.35001"
-       x2="362.17999"
-       y2="303.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5896" />
-    <line
-       x1="356.14001"
-       y1="316.39999"
-       x2="355.88"
-       y2="316.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5898" />
-    <line
-       x1="286.88"
-       y1="216.7"
-       x2="288.07001"
-       y2="220.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5900" />
-    <line
-       x1="275.34"
-       y1="198.16"
-       x2="277.72"
-       y2="200.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5902" />
-    <line
-       x1="201.07001"
-       y1="264.95999"
-       x2="198.95"
-       y2="262.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5904" />
-    <line
-       x1="363.32999"
-       y1="304.42001"
-       x2="363.17999"
-       y2="304.23001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5906" />
-    <line
-       x1="285.45999"
-       y1="213.33"
-       x2="286.88"
-       y2="216.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5908" />
-    <line
-       x1="360.25"
-       y1="302.39001"
-       x2="359.95001"
-       y2="302.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5910" />
-    <line
-       x1="277.72"
-       y1="200.91"
-       x2="279.94"
-       y2="203.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5912" />
-    <line
-       x1="287.07999"
-       y1="304.76999"
-       x2="288.54001"
-       y2="303.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5914" />
-    <line
-       x1="350.63"
-       y1="309.20999"
-       x2="350.69"
-       y2="309.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5916" />
-    <line
-       x1="362.95001"
-       y1="314.51999"
-       x2="363.09"
-       y2="314.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5918" />
-    <line
-       x1="353.72"
-       y1="315.23999"
-       x2="353.66"
-       y2="315.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5920" />
-    <line
-       x1="283.82001"
-       y1="210.05"
-       x2="285.45999"
-       y2="213.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5922" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="352.45,305.68 352.36,305.6 352.54,305.39 "
-       id="polygon5924" />
-    <line
-       x1="279.94"
-       y1="203.82001"
-       x2="281.98001"
-       y2="206.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5926" />
-    <line
-       x1="353.39001"
-       y1="303.73999"
-       x2="353.16"
-       y2="303.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5928" />
-    <line
-       x1="364.10999"
-       y1="305.70001"
-       x2="363.98999"
-       y2="305.47"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5930" />
-    <line
-       x1="281.98001"
-       y1="206.88"
-       x2="283.82001"
-       y2="210.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5932" />
-    <line
-       x1="364.41"
-       y1="306.39001"
-       x2="364.32001"
-       y2="306.16"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5934" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="360.66,303.55 360.35,303.55 360.41,303.43 "
-       id="polygon5936" />
-    <line
-       x1="354.73001"
-       y1="315.76001"
-       x2="354.82001"
-       y2="315.73999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5938" />
-    <polygon
-       style="opacity:1;fill:#0000fc"
-       points="353.51,304.47 353.61,304.56 353.36,304.67 "
-       id="polygon5940" />
-    <line
-       x1="364.54999"
-       y1="311.82999"
-       x2="364.54999"
-       y2="311.82999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5942" />
-    <line
-       x1="364.70999"
-       y1="307.35001"
-       x2="364.64001"
-       y2="307.10999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5944" />
-    <line
-       x1="359.35001"
-       y1="302.35001"
-       x2="359.04999"
-       y2="302.37"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5946" />
-    <line
-       x1="363.66"
-       y1="313.38"
-       x2="363.66"
-       y2="313.38"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5948" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.15,318.2 358.29,316.22 358.26,316.71 "
-       id="polygon5950" />
-    <line
-       x1="358.32999"
-       y1="316.38"
-       x2="358.32999"
-       y2="316.38"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5952" />
-    <line
-       x1="351.92001"
-       y1="305.60999"
-       x2="352.01999"
-       y2="305.34"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5954" />
-    <line
-       x1="354.10001"
-       y1="303.41"
-       x2="353.85999"
-       y2="303.51001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5956" />
-    <line
-       x1="363.47"
-       y1="305.14001"
-       x2="363.29001"
-       y2="305.04001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5958" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="362.42,305.45 362.64,305.53 362.5,305.69 "
-       id="polygon5960" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="376.71,318.73 367.79,316.98 367.5,317.3 "
-       id="polygon5962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.51,317.3 358.65,315.32 358.42,315.74 "
-       id="polygon5964" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="358.67,315.38 358.75,315.53 358.49,315.5 "
-       id="polygon5966" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="363.45,307.63 363.38,307.38 363.59,307.46 "
-       id="polygon5968" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="351.75,313.32 340.08,317.74 340.23,317.8 "
-       id="polygon5970" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="340.32,317.71 351.85,313.24 351.88,313.01 "
-       id="polygon5972" />
-    <line
-       x1="358.14001"
-       y1="302.48001"
-       x2="357.82999"
-       y2="302.54999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5974" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="369.11,317.09 360.25,315.11 359.98,314.86 "
-       id="polygon5976" />
-    <line
-       x1="357.42999"
-       y1="316.22"
-       x2="357.25"
-       y2="316.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5978" />
-    <line
-       x1="381.70999"
-       y1="155.82001"
-       x2="380.37"
-       y2="154.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5980" />
-    <line
-       x1="342.67999"
-       y1="250.3"
-       x2="345.85999"
-       y2="250.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5982" />
-    <line
-       x1="357.51999"
-       y1="302.63"
-       x2="357.20999"
-       y2="302.72"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5984" />
-    <line
-       x1="361.01999"
-       y1="303.45999"
-       x2="360.97"
-       y2="303.57001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5986" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="340.36,317.48 351.88,313.01 351.85,312.67 "
-       id="polygon5988" />
-    <line
-       x1="359.44"
-       y1="315.82001"
-       x2="359.44"
-       y2="315.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5990" />
-    <line
-       x1="363.51999"
-       y1="306.16"
-       x2="363.63"
-       y2="306.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5992" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="362.34,306.52 362.5,306.35 362.57,306.6 "
-       id="polygon5994" />
-    <line
-       x1="356.37"
-       y1="315.88"
-       x2="356.20001"
-       y2="315.79999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5996" />
-    <line
-       x1="291.5"
-       y1="180.8"
-       x2="291.56"
-       y2="183.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line5998" />
-    <line
-       x1="362.48999"
-       y1="313.92001"
-       x2="362.67001"
-       y2="313.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6000" />
-    <line
-       x1="356.39999"
-       y1="303.07001"
-       x2="356.57999"
-       y2="302.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6002" />
-    <polygon
-       style="opacity:1;fill:#0000f1"
-       points="355.56,304.48 355.41,304.65 355.35,304.46 "
-       id="polygon6004" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="355.57,314.45 355.48,314.55 355.34,314.43 "
-       id="polygon6006" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="340.32,317.14 351.85,312.67 351.75,312.25 "
-       id="polygon6008" />
-    <line
-       x1="362.07001"
-       y1="304.53"
-       x2="361.85001"
-       y2="304.45999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6010" />
-    <line
-       x1="357.62"
-       y1="303.07001"
-       x2="357.35999"
-       y2="303.01999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6012" />
-    <line
-       x1="355.35999"
-       y1="315.35999"
-       x2="355.20999"
-       y2="315.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6014" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="340.23,316.73 351.75,312.25 351.61,311.79 "
-       id="polygon6016" />
-    <line
-       x1="276.35001"
-       y1="264.01001"
-       x2="275.48001"
-       y2="266.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6018" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="340.08,316.26 351.61,311.79 351.42,311.34 "
-       id="polygon6020" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="358.46,304.3 358.52,304.51 358.25,304.42 "
-       id="polygon6022" />
-    <polygon
-       style="opacity:1;fill:#0000ea"
-       points="356.64,304.59 356.42,304.56 356.59,304.39 "
-       id="polygon6024" />
-    <line
-       x1="355.89001"
-       y1="303.48001"
-       x2="356.04999"
-       y2="303.34"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6026" />
-    <line
-       x1="363.42999"
-       y1="312.23001"
-       x2="363.35001"
-       y2="312.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6028" />
-    <line
-       x1="358.39001"
-       y1="303.25"
-       x2="358.13"
-       y2="303.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6030" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="360.44,305.34 360.72,305.48 360.52,305.57 "
-       id="polygon6032" />
-    <line
-       x1="361.39001"
-       y1="304.35001"
-       x2="361.14999"
-       y2="304.29999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6034" />
-    <line
-       x1="357.76999"
-       y1="315.54999"
-       x2="357.85001"
-       y2="315.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6036" />
-    <line
-       x1="359.16"
-       y1="303.5"
-       x2="358.89999"
-       y2="303.41"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6038" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="361.59,312.4 361.48,312.58 361.43,312.42 "
-       id="polygon6040" />
-    <line
-       x1="361.53"
-       y1="314.17001"
-       x2="361.73001"
-       y2="314.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6042" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="359.49,317.83 367.99,319.87 368.34,319.82 "
-       id="polygon6044" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="367.39,319.51 358.54,317.52 358.8,317.77 "
-       id="polygon6046" />
-    <line
-       x1="354.10999"
-       y1="314.35001"
-       x2="354.10999"
-       y2="314.35001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6048" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="342.13,305.82 352.14,308.8 352.44,308.57 "
-       id="polygon6050" />
-    <line
-       x1="351.76001"
-       y1="308.67999"
-       x2="351.76001"
-       y2="308.67999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6052" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="353.56,307.48 353.4,307.69 353.36,307.52 "
-       id="polygon6054" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="377.05,318.54 368.13,316.78 367.79,316.98 "
-       id="polygon6056" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="367.81,316.98 358.95,315 358.65,315.32 "
-       id="polygon6058" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="359.48,305.29 359.56,305.53 359.27,305.41 "
-       id="polygon6060" />
-    <line
-       x1="356.76999"
-       y1="303.54999"
-       x2="356.82001"
-       y2="303.72"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6062" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.21,319.14 358.35,317.16 358.54,317.52 "
-       id="polygon6064" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="359.41,313.51 359.62,313.38 359.67,313.54 "
-       id="polygon6066" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="351.88,313.01 340.32,317.71 340.36,317.48 "
-       id="polygon6068" />
-    <line
-       x1="354.94"
-       y1="304.45001"
-       x2="355.09"
-       y2="304.26999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6070" />
-    <line
-       x1="363.23999"
-       y1="311.28"
-       x2="363.07999"
-       y2="311.41"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6072" />
-    <line
-       x1="361.51001"
-       y1="313.79001"
-       x2="361.38"
-       y2="313.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6074" />
-    <polygon
-       style="opacity:1;fill:#0000c6"
-       points="360.53,306.4 360.59,306.65 360.32,306.52 "
-       id="polygon6076" />
-    <polygon
-       style="opacity:1;fill:#0000d2"
-       points="354.49,312.5 354.72,312.52 354.64,312.68 "
-       id="polygon6078" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.12,318.69 358.26,316.71 358.35,317.16 "
-       id="polygon6080" />
-    <line
-       x1="360.63"
-       y1="314.28"
-       x2="360.88"
-       y2="314.26999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6082" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.28,317.72 358.42,315.74 358.29,316.22 "
-       id="polygon6084" />
-    <polygon
-       style="opacity:1;fill:#0000f7"
-       points="353.66,309.44 353.65,309.63 353.46,309.49 "
-       id="polygon6086" />
-    <line
-       x1="362.32001"
-       y1="312.64001"
-       x2="362.22"
-       y2="312.81"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6088" />
-    <line
-       x1="352.20001"
-       y1="309.47"
-       x2="352.20001"
-       y2="309.47"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6090" />
-    <line
-       x1="360.09"
-       y1="304.45001"
-       x2="359.89001"
-       y2="304.54001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6092" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="351.85,312.67 340.36,317.48 340.32,317.14 "
-       id="polygon6094" />
-    <polygon
-       style="opacity:1;fill:#0000f2"
-       points="355.68,306.47 355.5,306.61 355.46,306.44 "
-       id="polygon6096" />
-    <line
-       x1="357.45999"
-       y1="314.88"
-       x2="357.54001"
-       y2="315.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6098" />
-    <line
-       x1="362.51999"
-       y1="307.29001"
-       x2="362.67999"
-       y2="307.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6100" />
-    <line
-       x1="353.14001"
-       y1="306.56"
-       x2="353.14001"
-       y2="306.56"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6102" />
-    <line
-       x1="361.20001"
-       y1="305.53"
-       x2="361.12"
-       y2="305.29999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6104" />
-    <line
-       x1="353.95001"
-       y1="305.48001"
-       x2="354.09"
-       y2="305.60001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6106" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="372.68,313.46 363.71,311.68 363.99,311.93 "
-       id="polygon6108" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="351.75,312.25 340.32,317.14 340.23,316.73 "
-       id="polygon6110" />
-    <line
-       x1="345.85999"
-       y1="250.64"
-       x2="349.01999"
-       y2="250.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6112" />
-    <line
-       x1="354.29001"
-       y1="305.60001"
-       x2="354.09"
-       y2="305.60001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6114" />
-    <line
-       x1="359.64001"
-       y1="314.28"
-       x2="359.89001"
-       y2="314.29001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6116" />
-    <line
-       x1="354.66"
-       y1="313.79999"
-       x2="354.89001"
-       y2="313.84"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6118" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="351.42,311.34 340.08,316.26 339.89,315.8 "
-       id="polygon6120" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="358.58,312.58 358.4,312.46 358.61,312.33 "
-       id="polygon6122" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="351.61,311.79 340.23,316.73 340.08,316.26 "
-       id="polygon6124" />
-    <polygon
-       style="opacity:1;fill:#0000c5"
-       points="359.71,307.64 359.44,307.51 359.7,307.39 "
-       id="polygon6126" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="356.45,312.52 356.48,312.28 356.65,312.45 "
-       id="polygon6128" />
-    <line
-       x1="359.5"
-       y1="304.73001"
-       x2="359.29999"
-       y2="304.84"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6130" />
-    <line
-       x1="361.41"
-       y1="306.23999"
-       x2="361.34"
-       y2="306"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6132" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="355.43,311.71 355.46,311.45 355.62,311.64 "
-       id="polygon6134" />
-    <line
-       x1="357.03"
-       y1="304.45999"
-       x2="357.09"
-       y2="304.66"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6136" />
-    <line
-       x1="360.88"
-       y1="313.41"
-       x2="360.82999"
-       y2="313.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6138" />
-    <line
-       x1="362.16"
-       y1="311.66"
-       x2="362"
-       y2="311.67999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6140" />
-    <line
-       x1="288.54001"
-       y1="303.70999"
-       x2="290.19"
-       y2="302.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6142" />
-    <polygon
-       style="opacity:1;fill:#0000e6"
-       points="356.57,307.57 356.39,307.46 356.57,307.33 "
-       id="polygon6144" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="358.62,307.63 358.34,307.5 358.61,307.38 "
-       id="polygon6146" />
-    <line
-       x1="356.66"
-       y1="314.34"
-       x2="356.76001"
-       y2="314.22"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6148" />
-    <line
-       x1="358.64001"
-       y1="314.17001"
-       x2="358.89001"
-       y2="314.20999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6150" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="359.35,310.52 359.63,310.4 359.53,310.64 "
-       id="polygon6152" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="358.48,311.7 358.31,311.57 358.52,311.44 "
-       id="polygon6154" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="356.37,311.6 356.4,311.34 356.57,311.52 "
-       id="polygon6156" />
-    <line
-       x1="355.59"
-       y1="313.88"
-       x2="355.82999"
-       y2="313.89001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6158" />
-    <line
-       x1="354.23001"
-       y1="306.35999"
-       x2="354.20001"
-       y2="306.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6160" />
-    <polygon
-       style="opacity:1;fill:#0000e7"
-       points="355.45,309.62 355.46,309.43 355.64,309.54 "
-       id="polygon6162" />
-    <line
-       x1="353.87"
-       y1="312.23001"
-       x2="353.87"
-       y2="312.23001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6164" />
-    <line
-       x1="352.98999"
-       y1="308.5"
-       x2="353.19"
-       y2="308.45001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6166" />
-    <line
-       x1="355.29001"
-       y1="305.64001"
-       x2="355.09"
-       y2="305.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6168" />
-    <polygon
-       style="opacity:1;fill:#0000c6"
-       points="358.64,308.63 358.36,308.5 358.64,308.38 "
-       id="polygon6170" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="356.6,308.57 356.41,308.46 356.59,308.32 "
-       id="polygon6172" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="344.7,312.92 353.76,310.46 353.61,309.99 "
-       id="polygon6174" />
-    <line
-       x1="353.20999"
-       y1="310.29001"
-       x2="353.20999"
-       y2="310.29001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6176" />
-    <line
-       x1="361.51999"
-       y1="307.87"
-       x2="361.51999"
-       y2="307.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6178" />
-    <line
-       x1="361.19"
-       y1="311.75"
-       x2="361.19"
-       y2="311.75"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6180" />
-    <line
-       x1="356.72"
-       y1="313.54001"
-       x2="356.89999"
-       y2="313.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6182" />
-    <line
-       x1="291.60001"
-       y1="178.14999"
-       x2="291.5"
-       y2="180.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6184" />
-    <line
-       x1="356.35001"
-       y1="305.76999"
-       x2="356.13"
-       y2="305.73001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6186" />
-    <line
-       x1="354.41"
-       y1="307.14999"
-       x2="354.37"
-       y2="306.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6188" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="341.82,305.92 351.83,308.9 352.14,308.8 "
-       id="polygon6190" />
-    <line
-       x1="383.01001"
-       y1="157.88"
-       x2="381.70999"
-       y2="155.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6192" />
-    <line
-       x1="358.09"
-       y1="305.54999"
-       x2="357.88"
-       y2="305.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6194" />
-    <line
-       x1="360.75"
-       y1="307.42999"
-       x2="360.75"
-       y2="307.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6196" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="343.02,303.41 353.03,306.4 352.88,306.07 "
-       id="polygon6198" />
-    <line
-       x1="353.79999"
-       y1="308.32001"
-       x2="354.01999"
-       y2="308.26999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6200" />
-    <line
-       x1="360.39001"
-       y1="311.95999"
-       x2="360.39001"
-       y2="311.95999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6202" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="345.73,320.56 354.15,314.12 354.25,313.83 "
-       id="polygon6204" />
-    <line
-       x1="357.13"
-       y1="313.39001"
-       x2="357.14999"
-       y2="313.16"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6206" />
-    <line
-       x1="357.45999"
-       y1="305.97"
-       x2="357.75"
-       y2="306.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6208" />
-    <line
-       x1="358.51999"
-       y1="313.07001"
-       x2="358.73001"
-       y2="312.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6210" />
-    <line
-       x1="357.45999"
-       y1="306.20001"
-       x2="357.45999"
-       y2="305.97"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6212" />
-    <line
-       x1="355.70001"
-       y1="312.57001"
-       x2="355.85999"
-       y2="312.73999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6214" />
-    <line
-       x1="360.87"
-       y1="310.64001"
-       x2="360.87"
-       y2="310.64001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6216" />
-    <line
-       x1="360.66"
-       y1="311.10001"
-       x2="360.66"
-       y2="311.10001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6218" />
-    <line
-       x1="359.42999"
-       y1="306.76001"
-       x2="359.70001"
-       y2="306.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6220" />
-    <line
-       x1="359.73001"
-       y1="312.25"
-       x2="359.73001"
-       y2="312.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6222" />
-    <line
-       x1="358.88"
-       y1="306.51999"
-       x2="359.14999"
-       y2="306.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6224" />
-    <line
-       x1="354.45999"
-       y1="310.89001"
-       x2="354.45999"
-       y2="311.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6226" />
-    <line
-       x1="354.75"
-       y1="311.47"
-       x2="354.91"
-       y2="311.66"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6228" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="343.08,303.83 353.09,306.82 353.03,306.4 "
-       id="polygon6230" />
-    <line
-       x1="356.38"
-       y1="306.73001"
-       x2="356.20999"
-       y2="306.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6232" />
-    <line
-       x1="354.48999"
-       y1="309.98001"
-       x2="354.48001"
-       y2="310.17001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6234" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="345.84,320.26 354.25,313.83 354.24,313.45 "
-       id="polygon6236" />
-    <line
-       x1="359.82001"
-       y1="311.45999"
-       x2="359.82001"
-       y2="311.45999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6238" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="344.79,318.34 353.21,311.91 352.84,311.7 "
-       id="polygon6240" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="345.15,318.65 353.57,312.21 353.21,311.91 "
-       id="polygon6242" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="353.21,311.91 345.15,318.65 344.79,318.34 "
-       id="polygon6244" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="353.31,312.04 353.57,311.78 352.7,312.21 "
-       id="polygon6246" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="344.42,318.13 352.84,311.7 352.48,311.63 "
-       id="polygon6248" />
-    <line
-       x1="354.60001"
-       y1="308.89001"
-       x2="354.57001"
-       y2="309.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6250" />
-    <line
-       x1="355.35999"
-       y1="307.56"
-       x2="355.20001"
-       y2="307.70001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6252" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="342.43,305.58 352.44,308.57 352.71,308.21 "
-       id="polygon6254" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="343.04,304.31 353.05,307.29 353.09,306.82 "
-       id="polygon6256" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="343,311.63 352.05,309.18 351.8,309.44 "
-       id="polygon6258" />
-    <line
-       x1="357.23001"
-       y1="312.45999"
-       x2="357.26001"
-       y2="312.20999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6260" />
-    <line
-       x1="355.20999"
-       y1="308.47"
-       x2="355.04999"
-       y2="308.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6262" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="342.7,305.23 352.71,308.21 352.92,307.77 "
-       id="polygon6264" />
-    <line
-       x1="357.48001"
-       y1="307.14999"
-       x2="357.47"
-       y2="306.91"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6266" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="342.91,304.79 352.92,307.77 353.05,307.29 "
-       id="polygon6268" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="358.95,315 368.16,316.78 367.81,316.98 "
-       id="polygon6270" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="345.82,319.88 354.24,313.45 354.11,313.03 "
-       id="polygon6272" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.3,310.86 359.25,308.74 359.22,309.23 "
-       id="polygon6274" />
-    <line
-       x1="359.48001"
-       y1="309.04999"
-       x2="359.48001"
-       y2="309.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6276" />
-    <line
-       x1="277.44"
-       y1="261.73001"
-       x2="276.35001"
-       y2="264.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6278" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="345.69,319.46 354.11,313.03 353.88,312.6 "
-       id="polygon6280" />
-    <line
-       x1="355.95001"
-       y1="310.51001"
-       x2="356.14001"
-       y2="310.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6282" />
-    <line
-       x1="357.5"
-       y1="308.12"
-       x2="357.48999"
-       y2="307.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6284" />
-    <line
-       x1="358.62"
-       y1="310.63"
-       x2="358.79001"
-       y2="310.75"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6286" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.54,317.52 367.21,319.14 367.39,319.51 "
-       id="polygon6288" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="345.46,319.04 353.88,312.6 353.57,312.21 "
-       id="polygon6290" />
-    <line
-       x1="357.38"
-       y1="311.20999"
-       x2="357.41"
-       y2="310.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6292" />
-    <line
-       x1="358.67001"
-       y1="309.39999"
-       x2="358.94"
-       y2="309.29001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6294" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="358.65,315.32 367.81,316.98 367.51,317.3 "
-       id="polygon6296" />
-    <line
-       x1="356.44"
-       y1="309.22"
-       x2="356.26001"
-       y2="309.10999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6298" />
-    <line
-       x1="356.54001"
-       y1="310.28"
-       x2="356.73999"
-       y2="310.20001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6300" />
-    <line
-       x1="349.01999"
-       y1="250.7"
-       x2="352.14001"
-       y2="250.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6302" />
-    <line
-       x1="357.53"
-       y1="309.10999"
-       x2="357.51999"
-       y2="308.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6304" />
-    <line
-       x1="357.51999"
-       y1="310.14001"
-       x2="357.54999"
-       y2="309.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6306" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="340.22,317.8 328.53,322.19 328.68,322.24 "
-       id="polygon6308" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="328.77,322.16 340.32,317.71 340.36,317.49 "
-       id="polygon6310" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.35,317.16 367.12,318.69 367.21,319.14 "
-       id="polygon6312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.42,315.74 367.51,317.3 367.28,317.72 "
-       id="polygon6314" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.26,316.71 367.15,318.2 367.12,318.69 "
-       id="polygon6316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="358.29,316.22 367.28,317.72 367.15,318.2 "
-       id="polygon6318" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="327.93,319.52 339.48,315.08 339.29,314.88 "
-       id="polygon6320" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="352.48,311.63 344.42,318.13 344.07,318.06 "
-       id="polygon6322" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="352.84,311.7 344.79,318.34 344.42,318.13 "
-       id="polygon6324" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="344.26,314.5 353.57,311.78 352.7,312.21 "
-       id="polygon6326" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="344,311.72 353.06,309.27 352.71,309.09 "
-       id="polygon6328" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="328.81,321.93 340.36,317.49 340.32,317.14 "
-       id="polygon6330" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="363.99,311.93 372.68,313.46 372.95,313.71 "
-       id="polygon6332" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="344.51,314.23 353.57,311.78 353.73,311.41 "
-       id="polygon6334" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="328.14,319.84 339.69,315.4 339.48,315.08 "
-       id="polygon6336" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="344.31,312.03 353.37,309.58 353.06,309.27 "
-       id="polygon6338" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="328.78,321.59 340.32,317.14 340.23,316.72 "
-       id="polygon6340" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="344.68,313.86 353.73,311.41 353.8,310.95 "
-       id="polygon6342" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.71,311.68 372.48,313.09 372.68,313.46 "
-       id="polygon6344" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="344.55,312.44 353.61,309.99 353.37,309.58 "
-       id="polygon6346" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="328.35,320.25 339.89,315.8 339.69,315.4 "
-       id="polygon6348" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="344.75,313.4 353.8,310.95 353.76,310.46 "
-       id="polygon6350" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="328.68,321.17 340.23,316.72 340.08,316.26 "
-       id="polygon6352" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="328.54,320.71 340.08,316.26 339.89,315.8 "
-       id="polygon6354" />
-    <line
-       x1="195.41"
-       y1="257.98001"
-       x2="194"
-       y2="255.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6356" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="363.52,311.31 372.39,312.64 372.48,313.09 "
-       id="polygon6358" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="352.65,305.88 342.87,303.09 342.65,302.89 "
-       id="polygon6360" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="352.88,306.07 343.02,303.41 342.87,303.09 "
-       id="polygon6362" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="368.54,312.17 359.49,310.05 359.76,310.3 "
-       id="polygon6364" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="352.14,308.8 341.82,305.92 342.13,305.82 "
-       id="polygon6366" />
-    <line
-       x1="291.85999"
-       y1="175.69"
-       x2="291.60001"
-       y2="178.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6368" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="368.98,309.64 359.92,307.52 359.62,307.84 "
-       id="polygon6370" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.36,311.8 359.3,309.68 359.49,310.05 "
-       id="polygon6372" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="353.03,306.4 343.08,303.83 343.02,303.41 "
-       id="polygon6374" />
-    <line
-       x1="290.19"
-       y1="302.91"
-       x2="292"
-       y2="302.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6376" />
-    <line
-       x1="384.25"
-       y1="160.17"
-       x2="383.01001"
-       y2="157.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.67,309.96 359.62,307.84 359.39,308.27 "
-       id="polygon6380" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="352.44,308.57 342.13,305.82 342.43,305.58 "
-       id="polygon6382" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="354.25,313.83 345.73,320.56 345.84,320.26 "
-       id="polygon6384" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.27,311.35 359.22,309.23 359.3,309.68 "
-       id="polygon6386" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="339.48,315.08 328.14,319.84 327.93,319.52 "
-       id="polygon6388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.44,310.39 359.39,308.27 359.25,308.74 "
-       id="polygon6390" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="353.09,306.82 343.04,304.31 343.08,303.83 "
-       id="polygon6392" />
-    <line
-       x1="352.14001"
-       y1="250.46001"
-       x2="355.23001"
-       y2="249.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6394" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="340.32,317.14 328.81,321.93 328.78,321.59 "
-       id="polygon6396" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="352.71,308.21 342.43,305.58 342.7,305.23 "
-       id="polygon6398" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="353.05,307.29 342.91,304.79 343.04,304.31 "
-       id="polygon6400" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="352.92,307.77 342.7,305.23 342.91,304.79 "
-       id="polygon6402" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="354.24,313.45 345.84,320.26 345.82,319.88 "
-       id="polygon6404" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="339.69,315.4 328.35,320.25 328.14,319.84 "
-       id="polygon6406" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="340.23,316.72 328.78,321.59 328.68,321.17 "
-       id="polygon6408" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="339.89,315.8 328.54,320.71 328.35,320.25 "
-       id="polygon6410" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="340.08,316.26 328.68,321.17 328.54,320.71 "
-       id="polygon6412" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="354.11,313.03 345.82,319.88 345.69,319.46 "
-       id="polygon6414" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="353.88,312.6 345.69,319.46 345.46,319.04 "
-       id="polygon6416" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="353.57,312.21 345.46,319.04 345.15,318.65 "
-       id="polygon6418" />
-    <line
-       x1="278.72"
-       y1="259.70001"
-       x2="277.44"
-       y2="261.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6420" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="360.95,307.39 370.28,309.76 370.01,309.51 "
-       id="polygon6422" />
-    <line
-       x1="194"
-       y1="255.55"
-       x2="192.84"
-       y2="253.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6424" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="352.71,309.09 344,311.72 343.66,311.54 "
-       id="polygon6426" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="353.57,311.78 344.26,314.5 344.51,314.23 "
-       id="polygon6428" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="353.06,309.27 344.31,312.03 344,311.72 "
-       id="polygon6430" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="353.73,311.41 344.51,314.23 344.68,313.86 "
-       id="polygon6432" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="353.37,309.58 344.55,312.44 344.31,312.03 "
-       id="polygon6434" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="353.8,310.95 344.68,313.86 344.75,313.4 "
-       id="polygon6436" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="353.61,309.99 344.7,312.92 344.55,312.44 "
-       id="polygon6438" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="353.76,310.46 344.75,313.4 344.7,312.92 "
-       id="polygon6440" />
-    <line
-       x1="355.23001"
-       y1="249.94"
-       x2="358.25"
-       y2="249.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6442" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="359.92,307.52 369.32,309.45 368.98,309.64 "
-       id="polygon6444" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="316.18,323.74 327.75,319.32 327.6,319.27 "
-       id="polygon6446" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.49,310.05 368.36,311.8 368.54,312.17 "
-       id="polygon6448" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="328.68,322.25 316.96,326.61 317.11,326.67 "
-       id="polygon6450" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="317.2,326.58 328.77,322.16 328.81,321.93 "
-       id="polygon6452" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="359.62,307.84 368.98,309.64 368.67,309.96 "
-       id="polygon6454" />
-    <line
-       x1="292.26999"
-       y1="173.42999"
-       x2="291.85999"
-       y2="175.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6456" />
-    <line
-       x1="385.41"
-       y1="162.7"
-       x2="384.25"
-       y2="160.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6458" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="316.36,323.94 327.94,319.52 327.75,319.32 "
-       id="polygon6460" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.3,309.68 368.27,311.35 368.36,311.8 "
-       id="polygon6462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.39,308.27 368.67,309.96 368.44,310.39 "
-       id="polygon6464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.22,309.23 368.3,310.86 368.27,311.35 "
-       id="polygon6466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="359.25,308.74 368.44,310.39 368.3,310.86 "
-       id="polygon6468" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="316.57,324.26 328.14,319.84 327.94,319.52 "
-       id="polygon6470" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="317.2,326.01 328.78,321.59 328.68,321.17 "
-       id="polygon6472" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="316.78,324.67 328.35,320.25 328.14,319.84 "
-       id="polygon6474" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="317.11,325.59 328.68,321.17 328.54,320.7 "
-       id="polygon6476" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.14,320.91 367.22,319.14 367.41,319.51 "
-       id="polygon6478" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="316.96,325.13 328.54,320.7 328.35,320.25 "
-       id="polygon6480" />
-    <line
-       x1="292"
-       y1="302.39001"
-       x2="293.97"
-       y2="302.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6482" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="377.05,318.54 376.71,318.73 373.18,317.89 "
-       id="polygon6484" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="385.52,320.77 385.65,320.25 385.36,320.57 "
-       id="polygon6486" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="394.95,321.3 385.97,320.05 385.63,320.25 "
-       id="polygon6488" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="385.65,320.25 376.7,318.73 376.4,319.06 "
-       id="polygon6490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.42,319.06 367.5,317.3 367.27,317.72 "
-       id="polygon6492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.05,320.45 367.13,318.69 367.22,319.14 "
-       id="polygon6494" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="394.58,321.5 402.44,322.18 394.92,321.31 "
-       id="polygon6496" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="394.61,321.5 385.63,320.25 385.34,320.57 "
-       id="polygon6498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.36,320.57 376.4,319.06 376.19,319.48 "
-       id="polygon6500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.2,319.48 367.27,317.72 367.15,318.2 "
-       id="polygon6502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.07,319.96 367.15,318.2 367.13,318.69 "
-       id="polygon6504" />
-    <line
-       x1="192.84"
-       y1="253.10001"
-       x2="191.94"
-       y2="250.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6506" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="327.75,319.32 316.36,323.94 316.18,323.74 "
-       id="polygon6508" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="328.81,321.93 317.2,326.58 317.23,326.36 "
-       id="polygon6510" />
-    <line
-       x1="358.25"
-       y1="249.13"
-       x2="361.19"
-       y2="248.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6512" />
-    <line
-       x1="280.19"
-       y1="257.91"
-       x2="278.72"
-       y2="259.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6514" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="327.94,319.52 316.57,324.26 316.36,323.94 "
-       id="polygon6516" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="328.78,321.59 317.23,326.36 317.2,326.01 "
-       id="polygon6518" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="369.34,309.75 369.68,309.4 369.32,309.45 "
-       id="polygon6520" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="328.14,319.84 316.78,324.67 316.57,324.26 "
-       id="polygon6522" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="331.82,302.93 341.82,305.92 342.13,305.82 "
-       id="polygon6524" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="328.68,321.17 317.2,326.01 317.11,325.59 "
-       id="polygon6526" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="333.02,300.42 343.02,303.41 342.88,303.09 "
-       id="polygon6528" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="328.35,320.25 316.96,325.13 316.78,324.67 "
-       id="polygon6530" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="328.54,320.7 317.11,325.59 316.96,325.13 "
-       id="polygon6532" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="332.13,302.83 342.13,305.82 342.43,305.59 "
-       id="polygon6534" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="333.08,300.84 343.09,303.84 343.02,303.41 "
-       id="polygon6536" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="337.29,327.02 345.73,320.55 345.84,320.26 "
-       id="polygon6538" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="343.46,318.6 335.12,324.75 335.02,325.05 "
-       id="polygon6540" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="335.62,324.51 344.07,318.06 343.77,318.11 "
-       id="polygon6542" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="332.43,302.59 342.43,305.59 342.71,305.23 "
-       id="polygon6544" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="333.05,301.32 343.05,304.31 343.09,303.84 "
-       id="polygon6546" />
-    <line
-       x1="386.48001"
-       y1="165.45"
-       x2="385.41"
-       y2="162.7"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6548" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="332.7,302.23 342.71,305.23 342.92,304.79 "
-       id="polygon6550" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="332.91,301.8 342.92,304.79 343.05,304.31 "
-       id="polygon6552" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="337.39,326.72 345.84,320.26 345.82,319.88 "
-       id="polygon6554" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="335.97,324.59 344.42,318.14 344.07,318.06 "
-       id="polygon6556" />
-    <line
-       x1="292.82001"
-       y1="171.39999"
-       x2="292.26999"
-       y2="173.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6558" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="367.68,319.76 376.33,321.27 376.61,321.52 "
-       id="polygon6560" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="367.79,316.98 376.71,318.73 373.18,317.89 "
-       id="polygon6562" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="304.34,328.18 315.93,323.77 315.9,324 "
-       id="polygon6564" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="337.38,326.34 345.82,319.88 345.69,319.46 "
-       id="polygon6566" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="336.34,324.8 344.79,318.34 344.42,318.14 "
-       id="polygon6568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.41,319.51 376.14,320.91 376.33,321.27 "
-       id="polygon6570" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="367.5,317.3 376.71,318.73 376.42,319.06 "
-       id="polygon6572" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="337.25,325.92 345.69,319.46 345.46,319.04 "
-       id="polygon6574" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="336.7,325.11 345.15,318.65 344.79,318.34 "
-       id="polygon6576" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="337.02,325.5 345.46,319.04 345.15,318.65 "
-       id="polygon6578" />
-    <line
-       x1="361.19"
-       y1="248.03999"
-       x2="364.04999"
-       y2="246.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.22,319.14 376.05,320.45 376.14,320.91 "
-       id="polygon6582" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.27,317.72 376.42,319.06 376.2,319.48 "
-       id="polygon6584" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.13,318.69 376.07,319.96 376.05,320.45 "
-       id="polygon6586" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="367.15,318.2 376.2,319.48 376.07,319.96 "
-       id="polygon6588" />
-    <line
-       x1="191.94"
-       y1="250.64999"
-       x2="191.3"
-       y2="248.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6590" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="373.35,310.73 382.62,311.89 382.26,311.93 "
-       id="polygon6592" />
-    <line
-       x1="293.97"
-       y1="302.14001"
-       x2="296.06"
-       y2="302.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6594" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="305.61,330.99 317.2,326.58 317.23,326.36 "
-       id="polygon6596" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="342.65,302.89 332.88,300.09 332.65,299.89 "
-       id="polygon6598" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="304.77,328.35 316.37,323.94 316.18,323.74 "
-       id="polygon6600" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="378.19,314.61 369.15,312.53 369.5,312.49 "
-       id="polygon6602" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="305.64,330.76 317.23,326.36 317.2,326.01 "
-       id="polygon6604" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="342.88,303.09 333.02,300.42 332.88,300.09 "
-       id="polygon6606" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="304.98,328.67 316.57,324.26 316.37,323.94 "
-       id="polygon6608" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="342.13,305.82 331.82,302.93 332.13,302.83 "
-       id="polygon6610" />
-    <line
-       x1="281.82999"
-       y1="256.38"
-       x2="280.19"
-       y2="257.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6612" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="305.61,330.42 317.2,326.01 317.11,325.59 "
-       id="polygon6614" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="343.02,303.41 333.08,300.84 333.02,300.42 "
-       id="polygon6616" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="378.36,311.52 369.32,309.45 368.97,309.64 "
-       id="polygon6618" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="305.18,329.07 316.78,324.67 316.57,324.26 "
-       id="polygon6620" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="342.43,305.59 332.13,302.83 332.43,302.59 "
-       id="polygon6622" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="335.2,316.97 344.26,314.5 344.52,314.23 "
-       id="polygon6624" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="305.52,330 317.11,325.59 316.96,325.13 "
-       id="polygon6626" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="305.37,329.54 316.96,325.13 316.78,324.67 "
-       id="polygon6628" />
-    <line
-       x1="387.45999"
-       y1="168.39999"
-       x2="386.48001"
-       y2="165.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6630" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="377.59,314.25 368.54,312.17 368.82,312.43 "
-       id="polygon6632" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="343.09,303.84 333.05,301.32 333.08,300.84 "
-       id="polygon6634" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="334.94,314.19 344,311.72 343.66,311.54 "
-       id="polygon6636" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="342.71,305.23 332.43,302.59 332.7,302.23 "
-       id="polygon6638" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="390.74,312.84 381.88,312.13 381.59,312.45 "
-       id="polygon6640" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="378.38,311.82 378.72,311.47 378.36,311.52 "
-       id="polygon6642" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.23,313.59 392.15,313.57 390.43,313.17 "
-       id="polygon6644" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="390.25,313.59 381.39,312.88 381.29,313.35 "
-       id="polygon6646" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="381.39,312.88 390.45,313.17 390.25,313.59 "
-       id="polygon6648" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="387.39,313.5 378.35,311.52 378,311.71 "
-       id="polygon6650" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="378.02,311.71 368.97,309.64 368.66,309.96 "
-       id="polygon6652" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="343.05,304.31 332.91,301.8 333.05,301.32 "
-       id="polygon6654" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="335.45,316.71 344.52,314.23 344.68,313.86 "
-       id="polygon6656" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="342.92,304.79 332.7,302.23 332.91,301.8 "
-       id="polygon6658" />
-    <line
-       x1="364.04999"
-       y1="246.66"
-       x2="366.81"
-       y2="245.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.4,313.88 368.36,311.8 368.54,312.17 "
-       id="polygon6662" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="335.25,314.5 344.31,312.03 344,311.72 "
-       id="polygon6664" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="344.07,318.06 335.97,324.59 335.62,324.51 "
-       id="polygon6666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.71,312.03 368.66,309.96 368.43,310.38 "
-       id="polygon6668" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="335.62,316.33 344.68,313.86 344.75,313.4 "
-       id="polygon6670" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.32,313.43 368.27,311.35 368.36,311.8 "
-       id="polygon6672" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="335.49,314.91 344.55,312.44 344.31,312.03 "
-       id="polygon6674" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.48,312.45 368.43,310.38 368.3,310.86 "
-       id="polygon6676" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="335.68,315.88 344.75,313.4 344.7,312.91 "
-       id="polygon6678" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="345.82,319.88 337.39,326.72 337.38,326.34 "
-       id="polygon6680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.34,312.93 368.3,310.86 368.27,311.35 "
-       id="polygon6682" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="335.64,315.39 344.7,312.91 344.55,312.44 "
-       id="polygon6684" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="316.18,323.74 304.77,328.35 304.59,328.15 "
-       id="polygon6686" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="344.42,318.14 336.34,324.8 335.97,324.59 "
-       id="polygon6688" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="317.23,326.36 305.61,330.99 305.64,330.76 "
-       id="polygon6690" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="345.69,319.46 337.38,326.34 337.25,325.92 "
-       id="polygon6692" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="344.79,318.34 336.7,325.11 336.34,324.8 "
-       id="polygon6694" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="345.46,319.04 337.25,325.92 337.02,325.5 "
-       id="polygon6696" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="345.15,318.65 337.02,325.5 336.7,325.11 "
-       id="polygon6698" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="316.37,323.94 304.98,328.67 304.77,328.35 "
-       id="polygon6700" />
-    <line
-       x1="293.5"
-       y1="169.60001"
-       x2="292.82001"
-       y2="171.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6702" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="317.2,326.01 305.64,330.76 305.61,330.42 "
-       id="polygon6704" />
-    <line
-       x1="191.3"
-       y1="248.21001"
-       x2="190.92"
-       y2="245.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6706" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="316.57,324.26 305.18,329.07 304.98,328.67 "
-       id="polygon6708" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="317.11,325.59 305.61,330.42 305.52,330 "
-       id="polygon6710" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="316.78,324.67 305.37,329.54 305.18,329.07 "
-       id="polygon6712" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="316.96,325.13 305.52,330 305.37,329.54 "
-       id="polygon6714" />
-    <line
-       x1="366.81"
-       y1="245.02"
-       x2="369.45999"
-       y2="243.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6716" />
-    <line
-       x1="388.32001"
-       y1="171.53999"
-       x2="387.45999"
-       y2="168.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6718" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="292.73,332.58 304.34,328.18 304.31,328.4 "
-       id="polygon6720" />
-    <line
-       x1="296.06"
-       y1="302.17001"
-       x2="298.28"
-       y2="302.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6722" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="368.97,309.64 378.36,311.52 378.02,311.71 "
-       id="polygon6724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.54,312.17 377.4,313.88 377.59,314.25 "
-       id="polygon6726" />
-    <line
-       x1="283.63"
-       y1="255.14"
-       x2="281.82999"
-       y2="256.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6728" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="368.66,309.96 378.02,311.71 377.71,312.03 "
-       id="polygon6730" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="343.66,311.54 334.94,314.19 334.59,314.01 "
-       id="polygon6732" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="385.65,320.25 385.99,320.05 380.8,319.43 "
-       id="polygon6734" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="395.3,321.26 386.32,320 385.97,320.05 "
-       id="polygon6736" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="385.99,320.05 377.03,318.54 376.7,318.73 "
-       id="polygon6738" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="344.52,314.23 335.2,316.97 335.45,316.71 "
-       id="polygon6740" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.36,311.8 377.32,313.43 377.4,313.88 "
-       id="polygon6742" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.43,310.38 377.71,312.03 377.48,312.45 "
-       id="polygon6744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.27,311.35 377.34,312.93 377.32,313.43 "
-       id="polygon6746" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="368.3,310.86 377.48,312.45 377.34,312.93 "
-       id="polygon6748" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="385.31,322.8 376.35,321.28 376.63,321.53 "
-       id="polygon6750" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="344,311.72 335.25,314.5 334.94,314.19 "
-       id="polygon6752" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="344.68,313.86 335.45,316.71 335.62,316.33 "
-       id="polygon6754" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="293.99,335.39 305.61,330.99 305.64,330.77 "
-       id="polygon6756" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="344.31,312.03 335.49,314.91 335.25,314.5 "
-       id="polygon6758" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="344.75,313.4 335.62,316.33 335.68,315.88 "
-       id="polygon6760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.11,322.43 376.15,320.91 376.35,321.28 "
-       id="polygon6762" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="293.16,332.75 304.77,328.35 304.59,328.15 "
-       id="polygon6764" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="344.55,312.44 335.64,315.39 335.49,314.91 "
-       id="polygon6766" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="344.7,312.91 335.68,315.88 335.64,315.39 "
-       id="polygon6768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.02,321.97 376.05,320.45 376.15,320.91 "
-       id="polygon6770" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.14,321 376.19,319.48 376.07,319.96 "
-       id="polygon6772" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="294.02,335.16 305.64,330.77 305.61,330.42 "
-       id="polygon6774" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.03,321.48 376.07,319.96 376.05,320.45 "
-       id="polygon6776" />
-    <line
-       x1="190.92"
-       y1="245.81"
-       x2="190.8"
-       y2="243.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6778" />
-    <line
-       x1="369.45999"
-       y1="243.11"
-       x2="372"
-       y2="240.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6780" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="293.36,333.07 304.98,328.66 304.77,328.35 "
-       id="polygon6782" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="293.99,334.82 305.61,330.42 305.52,330 "
-       id="polygon6784" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="293.57,333.48 305.18,329.07 304.98,328.66 "
-       id="polygon6786" />
-    <line
-       x1="294.29999"
-       y1="168.05"
-       x2="293.5"
-       y2="169.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6788" />
-    <line
-       x1="259.91"
-       y1="409.62"
-       x2="256.22"
-       y2="407.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6790" />
-    <line
-       x1="263.69"
-       y1="411.53"
-       x2="259.91"
-       y2="409.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6792" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="293.9,334.4 305.52,330 305.37,329.54 "
-       id="polygon6794" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="293.75,333.93 305.37,329.54 305.18,329.07 "
-       id="polygon6796" />
-    <line
-       x1="389.06"
-       y1="174.85001"
-       x2="388.32001"
-       y2="171.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6798" />
-    <line
-       x1="256.22"
-       y1="407.5"
-       x2="252.64999"
-       y2="405.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6800" />
-    <line
-       x1="267.54999"
-       y1="413.23001"
-       x2="263.69"
-       y2="411.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6802" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="304.44,328.09 292.97,332.55 292.82,332.49 "
-       id="polygon6804" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="321.83,299.93 331.82,302.93 332.13,302.83 "
-       id="polygon6806" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="391.08,312.65 382.21,311.94 381.88,312.13 "
-       id="polygon6808" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="323.04,297.42 333.03,300.42 332.88,300.09 "
-       id="polygon6810" />
-    <line
-       x1="252.64999"
-       y1="405.20001"
-       x2="249.21001"
-       y2="402.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6812" />
-    <line
-       x1="271.48001"
-       y1="414.69"
-       x2="267.54999"
-       y2="413.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6814" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="304.59,328.15 293.16,332.75 292.97,332.55 "
-       id="polygon6816" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="322.14,299.83 332.13,302.83 332.44,302.59 "
-       id="polygon6818" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="305.64,330.77 293.99,335.39 294.02,335.16 "
-       id="polygon6820" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="323.09,297.84 333.09,300.84 333.03,300.42 "
-       id="polygon6822" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="322.44,299.59 332.44,302.59 332.71,302.24 "
-       id="polygon6824" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="323.05,298.32 333.05,301.32 333.09,300.84 "
-       id="polygon6826" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="304.77,328.35 293.36,333.07 293.16,332.75 "
-       id="polygon6828" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="322.71,299.24 332.71,302.24 332.92,301.8 "
-       id="polygon6830" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="322.93,298.8 332.92,301.8 333.05,301.32 "
-       id="polygon6832" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="305.61,330.42 294.02,335.16 293.99,334.82 "
-       id="polygon6834" />
-    <line
-       x1="275.45001"
-       y1="415.91"
-       x2="271.48001"
-       y2="414.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6836" />
-    <line
-       x1="249.21001"
-       y1="402.72"
-       x2="245.92999"
-       y2="400.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6838" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="328.82,333.5 337.29,327.02 337.39,326.72 "
-       id="polygon6840" />
-    <line
-       x1="372"
-       y1="240.95"
-       x2="374.39001"
-       y2="238.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6842" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="304.98,328.66 293.57,333.48 293.36,333.07 "
-       id="polygon6844" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="305.52,330 293.99,334.82 293.9,334.4 "
-       id="polygon6846" />
-    <line
-       x1="298.28"
-       y1="302.5"
-       x2="300.59"
-       y2="303.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6848" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="305.18,329.07 293.75,333.93 293.57,333.48 "
-       id="polygon6850" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="305.37,329.54 293.9,334.4 293.75,333.93 "
-       id="polygon6852" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="328.93,333.2 337.39,326.72 337.38,326.34 "
-       id="polygon6854" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="327.5,331.07 335.97,324.59 335.62,324.51 "
-       id="polygon6856" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="376.7,318.73 385.99,320.05 380.8,319.43 "
-       id="polygon6858" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="376.63,321.53 385.31,322.8 385.59,323.05 "
-       id="polygon6860" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="328.91,332.82 337.38,326.34 337.25,325.92 "
-       id="polygon6862" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="327.88,331.28 336.34,324.8 335.97,324.59 "
-       id="polygon6864" />
-    <line
-       x1="279.45001"
-       y1="416.87"
-       x2="275.45001"
-       y2="415.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6866" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="376.4,319.06 385.65,320.25 385.36,320.57 "
-       id="polygon6868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.35,321.28 385.11,322.43 385.31,322.8 "
-       id="polygon6870" />
-    <line
-       x1="245.92999"
-       y1="400.09"
-       x2="242.8"
-       y2="397.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6872" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="328.78,332.4 337.25,325.92 337.02,325.5 "
-       id="polygon6874" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="328.23,331.59 336.7,325.11 336.34,324.8 "
-       id="polygon6876" />
-    <line
-       x1="389.66"
-       y1="178.31"
-       x2="389.06"
-       y2="174.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6878" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="328.55,331.98 337.02,325.5 336.7,325.11 "
-       id="polygon6880" />
-    <line
-       x1="285.57001"
-       y1="254.17999"
-       x2="283.63"
-       y2="255.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6882" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="335.27,316.47 335.45,316.71 335.62,316.33 "
-       id="polygon6884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.19,319.48 385.36,320.57 385.14,321 "
-       id="polygon6886" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.15,320.91 385.02,321.97 385.11,322.43 "
-       id="polygon6888" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.07,319.96 385.14,321 385.03,321.48 "
-       id="polygon6890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="376.05,320.45 385.03,321.48 385.02,321.97 "
-       id="polygon6892" />
-    <line
-       x1="190.8"
-       y1="243.46001"
-       x2="190.95"
-       y2="241.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6894" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="332.65,299.89 322.88,297.09 322.66,296.89 "
-       id="polygon6896" />
-    <line
-       x1="283.45001"
-       y1="417.57001"
-       x2="279.45001"
-       y2="416.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6898" />
-    <line
-       x1="374.39001"
-       y1="238.55"
-       x2="376.64999"
-       y2="235.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6900" />
-    <line
-       x1="242.8"
-       y1="397.32999"
-       x2="239.86"
-       y2="394.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6902" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="332.88,300.09 323.04,297.42 322.88,297.09 "
-       id="polygon6904" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="332.13,302.83 321.83,299.93 322.14,299.83 "
-       id="polygon6906" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="382.21,311.94 391.44,312.61 391.08,312.65 "
-       id="polygon6908" />
-    <line
-       x1="295.20999"
-       y1="166.75999"
-       x2="294.29999"
-       y2="168.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6910" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="333.03,300.42 323.09,297.84 323.04,297.42 "
-       id="polygon6912" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="332.44,302.59 322.14,299.83 322.44,299.59 "
-       id="polygon6914" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="381.88,312.13 391.08,312.65 390.74,312.84 "
-       id="polygon6916" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="293.89,335.48 282.11,339.82 282.25,339.88 "
-       id="polygon6918" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="282.35,339.79 293.99,335.39 294.02,335.16 "
-       id="polygon6920" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="333.09,300.84 323.05,298.32 323.09,297.84 "
-       id="polygon6922" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="332.71,302.24 322.44,299.59 322.71,299.24 "
-       id="polygon6924" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="333.05,301.32 322.93,298.8 323.05,298.32 "
-       id="polygon6926" />
-    <line
-       x1="390.13"
-       y1="181.89"
-       x2="389.66"
-       y2="178.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6928" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="332.92,301.8 322.71,299.24 322.93,298.8 "
-       id="polygon6930" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="292.7,332.8 281.09,336.97 281.06,337.2 "
-       id="polygon6932" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="281.52,337.14 293.16,332.75 292.97,332.55 "
-       id="polygon6934" />
-    <line
-       x1="287.42999"
-       y1="418"
-       x2="283.45001"
-       y2="417.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6936" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="282.38,339.56 294.02,335.16 293.99,334.82 "
-       id="polygon6938" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="386.63,316.23 377.59,314.25 377.87,314.5 "
-       id="polygon6940" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="337.39,326.72 328.82,333.5 328.93,333.2 "
-       id="polygon6942" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="281.72,337.46 293.36,333.07 293.16,332.75 "
-       id="polygon6944" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="335.62,324.51 327.5,331.07 327.15,330.99 "
-       id="polygon6946" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="387.05,313.69 378,311.71 377.7,312.03 "
-       id="polygon6948" />
-    <line
-       x1="239.86"
-       y1="394.45999"
-       x2="237.11"
-       y2="391.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6950" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="324.85,316.59 333.93,314.1 333.67,314.36 "
-       id="polygon6952" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="282.35,339.22 293.99,334.82 293.9,334.4 "
-       id="polygon6954" />
-    <line
-       x1="376.64999"
-       y1="235.92"
-       x2="378.76001"
-       y2="233.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6956" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.44,315.86 377.4,313.88 377.59,314.25 "
-       id="polygon6958" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="281.93,337.87 293.57,333.48 293.36,333.07 "
-       id="polygon6960" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.74,314.02 377.7,312.03 377.47,312.45 "
-       id="polygon6962" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="282.26,338.8 293.9,334.4 293.75,333.93 "
-       id="polygon6964" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="335.97,324.59 327.88,331.28 327.5,331.07 "
-       id="polygon6966" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="282.11,338.33 293.75,333.93 293.57,333.48 "
-       id="polygon6968" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.36,315.41 377.31,313.42 377.4,313.88 "
-       id="polygon6970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.51,314.44 377.47,312.45 377.34,312.93 "
-       id="polygon6972" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="337.25,325.92 328.91,332.82 328.78,332.4 "
-       id="polygon6974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.38,314.92 377.34,312.93 377.31,313.42 "
-       id="polygon6976" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="336.34,324.8 328.23,331.59 327.88,331.28 "
-       id="polygon6978" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="292.82,332.49 281.33,336.94 281.18,336.88 "
-       id="polygon6980" />
-    <line
-       x1="300.59"
-       y1="303.10999"
-       x2="302.98001"
-       y2="304.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6982" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="337.02,325.5 328.78,332.4 328.55,331.98 "
-       id="polygon6984" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="336.7,325.11 328.55,331.98 328.23,331.59 "
-       id="polygon6986" />
-    <line
-       x1="190.95"
-       y1="241.17999"
-       x2="191.36"
-       y2="238.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6988" />
-    <line
-       x1="291.37"
-       y1="418.14001"
-       x2="287.42999"
-       y2="418"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line6990" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="326.12,319.46 335.2,316.97 335.45,316.71 "
-       id="polygon6992" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="292.97,332.55 281.52,337.14 281.33,336.94 "
-       id="polygon6994" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="325.86,316.68 334.94,314.19 334.59,314.01 "
-       id="polygon6996" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="294.02,335.16 282.35,339.79 282.38,339.56 "
-       id="polygon6998" />
-    <line
-       x1="390.44"
-       y1="185.59"
-       x2="390.13"
-       y2="181.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7000" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="326.38,319.2 335.45,316.71 335.62,316.33 "
-       id="polygon7002" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="326.17,316.99 335.25,314.5 334.94,314.19 "
-       id="polygon7004" />
-    <line
-       x1="287.64001"
-       y1="253.50999"
-       x2="285.57001"
-       y2="254.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7006" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="293.16,332.75 281.72,337.46 281.52,337.14 "
-       id="polygon7008" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="326.54,318.82 335.62,316.33 335.69,315.88 "
-       id="polygon7010" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="293.99,334.82 282.38,339.56 282.35,339.22 "
-       id="polygon7012" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="326.41,317.4 335.49,314.91 335.25,314.5 "
-       id="polygon7014" />
-    <line
-       x1="378.76001"
-       y1="233.07001"
-       x2="380.70999"
-       y2="230.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7016" />
-    <line
-       x1="237.11"
-       y1="391.48999"
-       x2="234.56"
-       y2="388.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7018" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="326.61,318.37 335.69,315.88 335.64,315.39 "
-       id="polygon7020" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="326.56,317.88 335.64,315.39 335.49,314.91 "
-       id="polygon7022" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="293.36,333.07 281.93,337.87 281.72,337.46 "
-       id="polygon7024" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="293.9,334.4 282.35,339.22 282.26,338.8 "
-       id="polygon7026" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="293.57,333.48 282.11,338.33 281.93,337.87 "
-       id="polygon7028" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="293.75,333.93 282.26,338.8 282.11,338.33 "
-       id="polygon7030" />
-    <line
-       x1="295.26001"
-       y1="418"
-       x2="291.37"
-       y2="418.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7032" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="394.92,324.41 385.94,323.15 386.29,323.11 "
-       id="polygon7034" />
-    <line
-       x1="390.60001"
-       y1="189.37"
-       x2="390.44"
-       y2="185.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7036" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="377.87,314.5 386.63,316.23 386.91,316.49 "
-       id="polygon7038" />
-    <line
-       x1="296.23001"
-       y1="165.74001"
-       x2="295.20999"
-       y2="166.75999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7040" />
-    <line
-       x1="380.70999"
-       y1="230.03999"
-       x2="382.48999"
-       y2="226.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7042" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="378,311.71 387.39,313.5 387.05,313.69 "
-       id="polygon7044" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="269.43,341.36 281.09,336.97 281.06,337.2 "
-       id="polygon7046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.59,314.25 386.44,315.86 386.63,316.23 "
-       id="polygon7048" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="377.7,312.03 387.05,313.69 386.74,314.02 "
-       id="polygon7050" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="270.45,344.21 282.11,339.82 282.25,339.88 "
-       id="polygon7052" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.4,313.88 386.36,315.41 386.44,315.86 "
-       id="polygon7054" />
-    <line
-       x1="234.56"
-       y1="388.45999"
-       x2="232.23"
-       y2="385.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7056" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.47,312.45 386.74,314.02 386.51,314.44 "
-       id="polygon7058" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.31,313.42 386.38,314.92 386.36,315.41 "
-       id="polygon7060" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="377.34,312.93 386.51,314.44 386.38,314.92 "
-       id="polygon7062" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.1,323.69 385.12,322.43 385.32,322.8 "
-       id="polygon7064" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.32,321.83 385.34,320.57 385.13,321 "
-       id="polygon7066" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.99,323.23 385.02,321.97 385.12,322.43 "
-       id="polygon7068" />
-    <line
-       x1="390.59"
-       y1="193.21001"
-       x2="390.60001"
-       y2="189.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.09,322.26 401.84,322.74 394.3,321.83 "
-       id="polygon7072" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.11,322.26 385.13,321 385.02,321.48 "
-       id="polygon7074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.99,322.74 401.65,323.17 394.09,322.26 "
-       id="polygon7076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394,322.74 385.02,321.48 385.02,321.97 "
-       id="polygon7078" />
-    <line
-       x1="299.07001"
-       y1="417.57999"
-       x2="295.26001"
-       y2="418"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7080" />
-    <line
-       x1="191.36"
-       y1="238.99001"
-       x2="192.02"
-       y2="236.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7082" />
-    <line
-       x1="382.48999"
-       y1="226.82001"
-       x2="384.10999"
-       y2="223.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7084" />
-    <line
-       x1="302.98001"
-       y1="304.01001"
-       x2="305.42999"
-       y2="305.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7086" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="270.69,344.18 282.35,339.79 282.38,339.56 "
-       id="polygon7088" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="269.86,341.54 281.52,337.14 281.33,336.94 "
-       id="polygon7090" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="334.59,314.01 325.86,316.68 325.52,316.5 "
-       id="polygon7092" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="311.83,296.92 321.83,299.93 322.14,299.83 "
-       id="polygon7094" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="270.72,343.96 282.38,339.56 282.35,339.22 "
-       id="polygon7096" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="313.05,294.41 323.04,297.42 322.89,297.09 "
-       id="polygon7098" />
-    <line
-       x1="390.39999"
-       y1="197.09"
-       x2="390.59"
-       y2="193.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7100" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="334.94,314.19 326.17,316.99 325.86,316.68 "
-       id="polygon7102" />
-    <line
-       x1="384.10999"
-       y1="223.44"
-       x2="385.54999"
-       y2="219.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7104" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="270.06,341.86 281.72,337.46 281.52,337.14 "
-       id="polygon7106" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="335.62,316.33 326.38,319.2 326.54,318.82 "
-       id="polygon7108" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="312.14,296.82 322.14,299.83 322.45,299.59 "
-       id="polygon7110" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="270.69,343.62 282.35,339.22 282.26,338.8 "
-       id="polygon7112" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="313.11,294.83 323.1,297.84 323.04,297.42 "
-       id="polygon7114" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="335.25,314.5 326.41,317.4 326.17,316.99 "
-       id="polygon7116" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="335.69,315.88 326.54,318.82 326.61,318.37 "
-       id="polygon7118" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="270.27,342.27 281.93,337.87 281.72,337.46 "
-       id="polygon7120" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="335.49,314.91 326.56,317.88 326.41,317.4 "
-       id="polygon7122" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="335.64,315.39 326.61,318.37 326.56,317.88 "
-       id="polygon7124" />
-    <line
-       x1="289.81"
-       y1="253.14"
-       x2="287.64001"
-       y2="253.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7126" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="270.59,343.19 282.26,338.8 282.11,338.33 "
-       id="polygon7128" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="312.45,296.59 322.45,299.59 322.72,299.24 "
-       id="polygon7130" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="270.45,342.73 282.11,338.33 281.93,337.87 "
-       id="polygon7132" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="313.07,295.31 323.06,298.32 323.1,297.84 "
-       id="polygon7134" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="387.3,316.29 387.25,316.6 387.61,316.55 "
-       id="polygon7136" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="312.72,296.23 322.72,299.24 322.93,298.8 "
-       id="polygon7138" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="312.94,295.79 322.93,298.8 323.06,298.32 "
-       id="polygon7140" />
-    <line
-       x1="232.23"
-       y1="385.37"
-       x2="230.13"
-       y2="382.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7142" />
-    <line
-       x1="390.04001"
-       y1="200.99001"
-       x2="390.39999"
-       y2="197.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7144" />
-    <line
-       x1="385.54999"
-       y1="219.92"
-       x2="386.81"
-       y2="216.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7146" />
-    <line
-       x1="302.79999"
-       y1="416.87"
-       x2="299.07001"
-       y2="417.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7148" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="387.41,313.8 387.75,313.45 387.39,313.5 "
-       id="polygon7150" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="320.34,340.01 328.82,333.5 328.93,333.2 "
-       id="polygon7152" />
-    <line
-       x1="386.81"
-       y1="216.28999"
-       x2="387.89001"
-       y2="212.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7154" />
-    <line
-       x1="389.51001"
-       y1="204.88"
-       x2="390.04001"
-       y2="200.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7156" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="320.43,339.71 328.93,333.2 328.91,332.82 "
-       id="polygon7158" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="326.55,331.53 318.16,337.74 318.05,338.04 "
-       id="polygon7160" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="319.01,337.58 327.5,331.07 327.15,331 "
-       id="polygon7162" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="385.63,320.25 394.95,321.3 394.61,321.5 "
-       id="polygon7164" />
-    <line
-       x1="387.89001"
-       y1="212.55"
-       x2="388.79001"
-       y2="208.74001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7166" />
-    <line
-       x1="388.79001"
-       y1="208.74001"
-       x2="389.51001"
-       y2="204.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7168" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="385.61,323.05 394.3,324.06 394.58,324.31 "
-       id="polygon7170" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="281.52,337.14 270.06,341.86 269.86,341.54 "
-       id="polygon7172" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="320.42,339.33 328.91,332.82 328.78,332.4 "
-       id="polygon7174" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="319.38,337.78 327.88,331.28 327.5,331.07 "
-       id="polygon7176" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="282.35,339.22 270.72,343.96 270.69,343.62 "
-       id="polygon7178" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="385.34,320.57 394.61,321.5 394.32,321.83 "
-       id="polygon7180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.32,322.8 394.1,323.69 394.3,324.06 "
-       id="polygon7182" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="320.29,338.91 328.78,332.4 328.55,331.98 "
-       id="polygon7184" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="319.74,338.09 328.23,331.59 327.88,331.28 "
-       id="polygon7186" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="320.05,338.48 328.55,331.98 328.23,331.59 "
-       id="polygon7188" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="281.72,337.46 270.27,342.27 270.06,341.86 "
-       id="polygon7190" />
-    <line
-       x1="297.34"
-       y1="165"
-       x2="296.23001"
-       y2="165.74001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7192" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="282.26,338.8 270.69,343.62 270.59,343.19 "
-       id="polygon7194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.13,321 394.32,321.83 394.11,322.26 "
-       id="polygon7196" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.12,322.43 393.99,323.23 394.1,323.69 "
-       id="polygon7198" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="281.93,337.87 270.45,342.73 270.27,342.27 "
-       id="polygon7200" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="282.11,338.33 270.59,343.19 270.45,342.73 "
-       id="polygon7202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.02,321.48 394.11,322.26 394,322.74 "
-       id="polygon7204" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="385.02,321.97 394,322.74 393.99,323.23 "
-       id="polygon7206" />
-    <line
-       x1="192.02"
-       y1="236.89999"
-       x2="192.92999"
-       y2="234.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7208" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="322.66,296.89 312.89,294.08 312.66,293.88 "
-       id="polygon7210" />
-    <line
-       x1="306.41"
-       y1="415.87"
-       x2="302.79999"
-       y2="416.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7212" />
-    <line
-       x1="305.42999"
-       y1="305.20001"
-       x2="307.91"
-       y2="306.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7214" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="322.89,297.09 313.05,294.41 312.89,294.08 "
-       id="polygon7216" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="322.14,299.83 311.83,296.92 312.14,296.82 "
-       id="polygon7218" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="392.15,313.57 399.25,313.48 392.3,313.24 "
-       id="polygon7220" />
-    <line
-       x1="230.13"
-       y1="382.26001"
-       x2="228.25"
-       y2="379.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7222" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="399.25,313.48 392.11,313.66 392.15,313.57 "
-       id="polygon7224" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="325.51,316.8 325.52,316.5 325.16,316.46 "
-       id="polygon7226" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="323.04,297.42 313.11,294.83 313.05,294.41 "
-       id="polygon7228" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="257.75,345.75 269.43,341.36 269.4,341.59 "
-       id="polygon7230" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="398.96,314.38 392.04,314.63 392.03,314.52 "
-       id="polygon7232" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="322.45,299.59 312.14,296.82 312.45,296.59 "
-       id="polygon7234" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="323.1,297.84 313.07,295.31 313.11,294.83 "
-       id="polygon7236" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="322.72,299.24 312.45,296.59 312.72,296.23 "
-       id="polygon7238" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="323.06,298.32 312.94,295.79 313.07,295.31 "
-       id="polygon7240" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="322.93,298.8 312.72,296.23 312.94,295.79 "
-       id="polygon7242" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="328.93,333.2 320.34,340.01 320.43,339.71 "
-       id="polygon7244" />
-    <line
-       x1="292.07001"
-       y1="253.09"
-       x2="289.81"
-       y2="253.14"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7246" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="327.15,331 319.01,337.58 318.66,337.5 "
-       id="polygon7248" />
-    <line
-       x1="309.89001"
-       y1="414.59"
-       x2="306.41"
-       y2="415.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7250" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="259.01,348.58 270.69,344.18 270.72,343.96 "
-       id="polygon7252" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="395.68,318.12 386.64,316.23 386.92,316.49 "
-       id="polygon7254" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="328.91,332.82 320.43,339.71 320.42,339.33 "
-       id="polygon7256" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="327.5,331.07 319.38,337.78 319.01,337.58 "
-       id="polygon7258" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="399.35,315.69 392.4,315.45 399.12,315.32 "
-       id="polygon7260" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="396.08,315.57 387.04,313.69 386.73,314.02 "
-       id="polygon7262" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="269.4,341.59 257.75,345.75 257.72,345.98 "
-       id="polygon7264" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="258.18,345.93 269.86,341.53 269.67,341.33 "
-       id="polygon7266" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="328.78,332.4 320.42,339.33 320.29,338.91 "
-       id="polygon7268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.48,317.75 386.45,315.86 386.64,316.23 "
-       id="polygon7270" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="259.04,348.36 270.72,343.96 270.69,343.62 "
-       id="polygon7272" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="398.99,314.87 392.04,314.63 398.96,314.38 "
-       id="polygon7274" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="388.08,313.56 397.4,315.7 397.12,315.44 "
-       id="polygon7276" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="396.43,315.38 396.08,315.57 391.6,314.51 "
-       id="polygon7278" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="396.45,315.68 396.79,315.33 396.43,315.38 "
-       id="polygon7280" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="397.11,315.44 406.43,317.44 406.16,317.19 "
-       id="polygon7282" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="406.14,317.19 415.48,319.05 415.2,318.79 "
-       id="polygon7284" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="414.49,318.73 405.45,317.12 405.1,317.32 "
-       id="polygon7286" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="405.11,317.32 396.07,315.57 395.77,315.89 "
-       id="polygon7288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.77,315.89 386.73,314.02 386.5,314.44 "
-       id="polygon7290" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="328.55,331.98 320.29,338.91 320.05,338.48 "
-       id="polygon7292" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="328.23,331.59 320.05,338.48 319.74,338.09 "
-       id="polygon7294" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.39,317.29 386.35,315.41 386.45,315.86 "
-       id="polygon7296" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="258.38,346.25 270.06,341.86 269.86,341.53 "
-       id="polygon7298" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.55,316.32 386.5,314.44 386.38,314.92 "
-       id="polygon7300" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.41,316.8 386.38,314.92 386.35,315.41 "
-       id="polygon7302" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="259.01,348.01 270.69,343.62 270.59,343.19 "
-       id="polygon7304" />
-    <line
-       x1="192.92999"
-       y1="234.92999"
-       x2="194.08"
-       y2="233.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7306" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="258.58,346.66 270.27,342.27 270.06,341.86 "
-       id="polygon7308" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="258.91,347.59 270.59,343.19 270.45,342.73 "
-       id="polygon7310" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="258.77,347.12 270.45,342.73 270.27,342.27 "
-       id="polygon7312" />
-    <line
-       x1="228.25"
-       y1="379.14001"
-       x2="226.62"
-       y2="376.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7314" />
-    <line
-       x1="307.91"
-       y1="306.66"
-       x2="310.42001"
-       y2="308.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7316" />
-    <line
-       x1="298.51999"
-       y1="164.53999"
-       x2="297.34"
-       y2="165"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7318" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="269.67,341.33 258.18,345.93 257.99,345.73 "
-       id="polygon7320" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="270.72,343.96 259.01,348.58 259.04,348.36 "
-       id="polygon7322" />
-    <line
-       x1="313.23001"
-       y1="413.01999"
-       x2="309.89001"
-       y2="414.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7324" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="269.86,341.53 258.38,346.25 258.18,345.93 "
-       id="polygon7326" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="270.69,343.62 259.04,348.36 259.01,348.01 "
-       id="polygon7328" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="317.03,321.97 326.12,319.46 326.38,319.2 "
-       id="polygon7330" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="270.06,341.86 258.58,346.66 258.38,346.25 "
-       id="polygon7332" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="316.77,319.18 325.86,316.68 325.52,316.5 "
-       id="polygon7334" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="270.59,343.19 259.01,348.01 258.91,347.59 "
-       id="polygon7336" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="317.29,321.71 326.38,319.2 326.55,318.82 "
-       id="polygon7338" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="270.27,342.27 258.77,347.12 258.58,346.66 "
-       id="polygon7340" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="270.45,342.73 258.91,347.59 258.77,347.12 "
-       id="polygon7342" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="317.08,319.5 326.17,316.99 325.86,316.68 "
-       id="polygon7344" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="394.61,324.31 401.93,324.94 394.32,324.05 "
-       id="polygon7346" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="317.46,321.33 326.55,318.82 326.61,318.36 "
-       id="polygon7348" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="317.32,319.91 326.41,317.4 326.17,316.99 "
-       id="polygon7350" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="317.52,320.88 326.61,318.36 326.57,317.88 "
-       id="polygon7352" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="317.48,320.38 326.57,317.88 326.41,317.4 "
-       id="polygon7354" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="387.04,313.69 396.08,315.57 391.6,314.51 "
-       id="polygon7356" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="394.11,323.68 401.58,324.14 393.99,323.23 "
-       id="polygon7358" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.99,323.23 401.56,323.66 393.99,322.74 "
-       id="polygon7360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.64,316.23 395.48,317.75 395.68,318.12 "
-       id="polygon7362" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="386.73,314.02 396.08,315.57 395.77,315.89 "
-       id="polygon7364" />
-    <line
-       x1="294.41"
-       y1="253.34"
-       x2="292.07001"
-       y2="253.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7366" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.45,315.86 395.39,317.29 395.48,317.75 "
-       id="polygon7368" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.5,314.44 395.77,315.89 395.55,316.32 "
-       id="polygon7370" />
-    <line
-       x1="226.62"
-       y1="376.04999"
-       x2="225.23"
-       y2="372.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7372" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="246.05,350.15 257.75,345.75 257.72,345.98 "
-       id="polygon7374" />
-    <line
-       x1="316.39999"
-       y1="411.19"
-       x2="313.23001"
-       y2="413.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.35,315.41 395.41,316.8 395.39,317.29 "
-       id="polygon7378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="386.38,314.92 395.55,316.32 395.41,316.8 "
-       id="polygon7380" />
-    <line
-       x1="194.08"
-       y1="233.11"
-       x2="195.47"
-       y2="231.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7382" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="301.84,293.91 311.83,296.92 312.14,296.83 "
-       id="polygon7384" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="303.06,291.39 313.05,294.41 312.9,294.08 "
-       id="polygon7386" />
-    <line
-       x1="310.42001"
-       y1="308.41"
-       x2="312.92999"
-       y2="310.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7388" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="302.15,293.81 312.14,296.83 312.45,296.59 "
-       id="polygon7390" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="303.12,291.82 313.11,294.83 313.05,294.41 "
-       id="polygon7392" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="302.46,293.57 312.45,296.59 312.73,296.23 "
-       id="polygon7394" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="303.08,292.29 313.07,295.31 313.11,294.83 "
-       id="polygon7396" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="247.3,352.98 259.01,348.58 259.04,348.36 "
-       id="polygon7398" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="302.73,293.21 312.73,296.23 312.94,295.79 "
-       id="polygon7400" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="302.95,292.77 312.94,295.79 313.07,295.31 "
-       id="polygon7402" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="246.47,350.32 258.18,345.93 257.99,345.73 "
-       id="polygon7404" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="402.18,325.15 394.61,324.31 401.93,324.94 "
-       id="polygon7406" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="247.34,352.75 259.04,348.36 259.01,348.01 "
-       id="polygon7408" />
-    <line
-       x1="299.76999"
-       y1="164.36"
-       x2="298.51999"
-       y2="164.53999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7410" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="325.16,316.46 316.42,319 316.07,318.97 "
-       id="polygon7412" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="246.68,350.64 258.38,346.25 258.18,345.93 "
-       id="polygon7414" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="401.87,322.67 394.3,321.83 402.11,322.39 "
-       id="polygon7416" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.89,324.9 394.32,324.05 401.71,324.59 "
-       id="polygon7418" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="247.3,352.41 259.01,348.01 258.91,347.59 "
-       id="polygon7420" />
-    <line
-       x1="319.39999"
-       y1="409.07999"
-       x2="316.39999"
-       y2="411.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7422" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="246.88,351.06 258.58,346.66 258.38,346.25 "
-       id="polygon7424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.67,323.1 394.09,322.26 401.84,322.74 "
-       id="polygon7426" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.68,324.53 394.11,323.68 401.58,324.14 "
-       id="polygon7428" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="325.52,316.5 316.77,319.18 316.42,319 "
-       id="polygon7430" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="247.21,351.98 258.91,347.59 258.77,347.12 "
-       id="polygon7432" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="247.06,351.52 258.77,347.12 258.58,346.66 "
-       id="polygon7434" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="326.38,319.2 317.03,321.97 317.29,321.71 "
-       id="polygon7436" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.56,323.58 393.99,322.74 401.65,323.17 "
-       id="polygon7438" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="401.56,324.07 393.99,323.23 401.56,323.66 "
-       id="polygon7440" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="393.99,322.74 401.56,323.66 401.56,323.58 "
-       id="polygon7442" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="310.49,344.11 319.01,337.58 318.66,337.5 "
-       id="polygon7444" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="325.86,316.68 317.08,319.5 316.77,319.18 "
-       id="polygon7446" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="326.55,318.82 317.29,321.71 317.46,321.33 "
-       id="polygon7448" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="311.9,345.86 320.42,339.33 320.29,338.91 "
-       id="polygon7450" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="310.86,344.31 319.38,337.78 319.01,337.58 "
-       id="polygon7452" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="326.17,316.99 317.32,319.91 317.08,319.5 "
-       id="polygon7454" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="326.61,318.36 317.46,321.33 317.52,320.88 "
-       id="polygon7456" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="311.77,345.44 320.29,338.91 320.05,338.48 "
-       id="polygon7458" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="311.22,344.63 319.74,338.09 319.38,337.78 "
-       id="polygon7460" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="326.41,317.4 317.48,320.38 317.32,319.91 "
-       id="polygon7462" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="326.57,317.88 317.52,320.88 317.48,320.38 "
-       id="polygon7464" />
-    <line
-       x1="225.23"
-       y1="372.98999"
-       x2="224.09"
-       y2="369.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7466" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="311.54,345.02 320.05,338.48 319.74,338.09 "
-       id="polygon7468" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="257.99,345.73 246.47,350.32 246.29,350.12 "
-       id="polygon7470" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="259.04,348.36 247.3,352.98 247.34,352.75 "
-       id="polygon7472" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="312.67,293.88 302.91,291.06 302.68,290.86 "
-       id="polygon7474" />
-    <line
-       x1="195.47"
-       y1="231.42999"
-       x2="197.08"
-       y2="229.92"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7476" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="408.02,313.47 399.23,313.49 399.04,313.91 "
-       id="polygon7478" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="258.18,345.93 246.68,350.64 246.47,350.32 "
-       id="polygon7480" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="259.01,348.01 247.34,352.75 247.3,352.41 "
-       id="polygon7482" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="407.92,315.3 399.13,315.32 399.37,315.69 "
-       id="polygon7484" />
-    <line
-       x1="296.79999"
-       y1="253.91"
-       x2="294.41"
-       y2="253.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7486" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="312.9,294.08 303.06,291.39 302.91,291.06 "
-       id="polygon7488" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="312.14,296.83 301.84,293.91 302.15,293.81 "
-       id="polygon7490" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="407.75,314.36 398.96,314.38 398.99,314.87 "
-       id="polygon7492" />
-    <line
-       x1="312.92999"
-       y1="310.44"
-       x2="315.41"
-       y2="312.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7494" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="258.38,346.25 246.88,351.06 246.68,350.64 "
-       id="polygon7496" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="258.91,347.59 247.3,352.41 247.21,351.98 "
-       id="polygon7498" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="313.05,294.41 303.12,291.82 303.06,291.39 "
-       id="polygon7500" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="258.58,346.66 247.06,351.52 246.88,351.06 "
-       id="polygon7502" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="258.77,347.12 247.21,351.98 247.06,351.52 "
-       id="polygon7504" />
-    <line
-       x1="322.20999"
-       y1="406.72"
-       x2="319.39999"
-       y2="409.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7506" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="312.45,296.59 302.15,293.81 302.46,293.57 "
-       id="polygon7508" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="313.11,294.83 303.08,292.29 303.12,291.82 "
-       id="polygon7510" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="312.73,296.23 302.46,293.57 302.73,293.21 "
-       id="polygon7512" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="320.13,340.19 311.32,346.78 311.61,346.72 "
-       id="polygon7514" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="313.07,295.31 302.95,292.77 303.08,292.29 "
-       id="polygon7516" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="312.94,295.79 302.73,293.21 302.95,292.77 "
-       id="polygon7518" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="403.56,322.5 401.87,322.67 402.11,322.39 "
-       id="polygon7520" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="234.33,354.54 246.05,350.15 246.02,350.38 "
-       id="polygon7522" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="405.35,320.23 396.3,318.48 396.66,318.44 "
-       id="polygon7524" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="320.43,339.71 311.82,346.54 311.92,346.24 "
-       id="polygon7526" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="405.82,317.08 396.77,315.33 396.41,315.38 "
-       id="polygon7528" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="318.66,337.5 310.49,344.11 310.14,344.03 "
-       id="polygon7530" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="320.42,339.33 311.92,346.24 311.9,345.86 "
-       id="polygon7532" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="319.01,337.58 310.86,344.31 310.49,344.11 "
-       id="polygon7534" />
-    <line
-       x1="301.07001"
-       y1="164.48"
-       x2="299.76999"
-       y2="164.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7536" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="320.29,338.91 311.9,345.86 311.77,345.44 "
-       id="polygon7538" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="403.08,324.68 401.68,324.53 402.96,324.23 "
-       id="polygon7540" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="319.38,337.78 311.22,344.63 310.86,344.31 "
-       id="polygon7542" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="402.96,323.73 401.56,323.58 403.07,323.25 "
-       id="polygon7544" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="404.73,319.87 395.69,318.12 395.97,318.37 "
-       id="polygon7546" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="320.05,338.48 311.77,345.44 311.54,345.02 "
-       id="polygon7548" />
-    <line
-       x1="224.09"
-       y1="369.98999"
-       x2="223.21001"
-       y2="367.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7550" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="319.74,338.09 311.54,345.02 311.22,344.63 "
-       id="polygon7552" />
-    <line
-       x1="324.81"
-       y1="404.12"
-       x2="322.20999"
-       y2="406.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7554" />
-    <line
-       x1="197.08"
-       y1="229.92"
-       x2="198.89999"
-       y2="228.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.53,319.5 395.49,317.75 395.69,318.12 "
-       id="polygon7558" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="235.58,357.38 247.3,352.98 247.34,352.75 "
-       id="polygon7560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.81,317.64 395.77,315.89 395.54,316.32 "
-       id="polygon7562" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.44,319.04 395.39,317.29 395.49,317.75 "
-       id="polygon7564" />
-    <line
-       x1="315.41"
-       y1="312.72"
-       x2="317.85999"
-       y2="315.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.58,318.07 395.54,316.32 395.41,316.8 "
-       id="polygon7568" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="246.02,350.38 234.33,354.54 234.3,354.77 "
-       id="polygon7570" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="234.75,354.72 246.47,350.32 246.29,350.12 "
-       id="polygon7572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.45,318.55 395.41,316.8 395.39,317.29 "
-       id="polygon7574" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="235.61,357.15 247.34,352.75 247.3,352.41 "
-       id="polygon7576" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="399.37,315.69 407.92,315.3 408.16,315.67 "
-       id="polygon7578" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="234.95,355.04 246.68,350.64 246.47,350.32 "
-       id="polygon7580" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="399.04,313.91 408.02,313.47 407.83,313.89 "
-       id="polygon7582" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="235.58,356.81 247.3,352.41 247.21,351.98 "
-       id="polygon7584" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="398.99,314.87 407.75,314.36 407.78,314.85 "
-       id="polygon7586" />
-    <line
-       x1="299.20999"
-       y1="254.78"
-       x2="296.79999"
-       y2="253.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7588" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="235.16,355.46 246.88,351.06 246.68,350.64 "
-       id="polygon7590" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="235.48,356.38 247.21,351.98 247.06,351.52 "
-       id="polygon7592" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="235.34,355.92 247.06,351.52 246.88,351.06 "
-       id="polygon7594" />
-    <line
-       x1="327.20001"
-       y1="401.28"
-       x2="324.81"
-       y2="404.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7596" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="246.29,350.12 234.75,354.72 234.57,354.52 "
-       id="polygon7598" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="247.34,352.75 235.58,357.38 235.61,357.15 "
-       id="polygon7600" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="306.64,321.62 315.75,319.09 315.5,319.36 "
-       id="polygon7602" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="246.47,350.32 234.95,355.04 234.75,354.72 "
-       id="polygon7604" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="247.3,352.41 235.61,357.15 235.58,356.81 "
-       id="polygon7606" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="412.82,323.04 403.87,322.3 403.54,322.5 "
-       id="polygon7608" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="412.55,326.04 403.6,325.3 403.94,325.41 "
-       id="polygon7610" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="246.68,350.64 235.16,355.46 234.95,355.04 "
-       id="polygon7612" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="247.21,351.98 235.58,356.81 235.48,356.38 "
-       id="polygon7614" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="246.88,351.06 235.34,355.92 235.16,355.46 "
-       id="polygon7616" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="247.06,351.52 235.48,356.38 235.34,355.92 "
-       id="polygon7618" />
-    <line
-       x1="317.85999"
-       y1="315.25"
-       x2="320.25"
-       y2="318.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7620" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="395.97,318.37 404.73,319.87 405.01,320.13 "
-       id="polygon7622" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="396.07,315.57 405.46,317.12 405.11,317.32 "
-       id="polygon7624" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="412.26,325.79 403.3,325.05 403.6,325.3 "
-       id="polygon7626" />
-    <line
-       x1="198.89999"
-       y1="228.59"
-       x2="200.91"
-       y2="227.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7628" />
-    <line
-       x1="223.21001"
-       y1="367.07999"
-       x2="222.57001"
-       y2="364.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7630" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="292.91,288.04 302.91,291.06 302.68,290.86 "
-       id="polygon7632" />
-    <polygon
-       style="opacity:1;fill:#001475"
-       points="421.39,323.71 412.46,323.23 412.19,323.56 "
-       id="polygon7634" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="412.21,323.56 403.25,322.83 403.05,323.25 "
-       id="polygon7636" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="307.93,324.5 317.04,321.97 317.29,321.71 "
-       id="polygon7638" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.69,318.12 404.53,319.5 404.73,319.87 "
-       id="polygon7640" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="395.77,315.89 405.11,317.32 404.81,317.64 "
-       id="polygon7642" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="307.66,321.71 316.77,319.18 316.42,319 "
-       id="polygon7644" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="412.01,323.98 403.05,323.25 402.95,323.73 "
-       id="polygon7646" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="411.92,324.96 402.96,324.23 403.09,324.68 "
-       id="polygon7648" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.49,317.75 404.44,319.04 404.53,319.5 "
-       id="polygon7650" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="291.84,290.89 301.84,293.91 302.15,293.81 "
-       id="polygon7652" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.54,316.32 404.81,317.64 404.58,318.07 "
-       id="polygon7654" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="293.07,288.37 303.06,291.39 302.91,291.06 "
-       id="polygon7656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.39,317.29 404.45,318.55 404.44,319.04 "
-       id="polygon7658" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="395.41,316.8 404.58,318.07 404.45,318.55 "
-       id="polygon7660" />
-    <line
-       x1="302.41"
-       y1="164.89"
-       x2="301.07001"
-       y2="164.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7662" />
-    <line
-       x1="329.35999"
-       y1="398.20999"
-       x2="327.20001"
-       y2="401.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7664" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="307.98,322.02 317.08,319.5 316.77,319.18 "
-       id="polygon7666" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="308.35,323.86 317.46,321.33 317.52,320.88 "
-       id="polygon7668" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="292.16,290.79 302.15,293.81 302.46,293.57 "
-       id="polygon7670" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="308.22,322.43 317.32,319.91 317.08,319.5 "
-       id="polygon7672" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="308.42,323.4 317.52,320.88 317.48,320.38 "
-       id="polygon7674" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="293.13,288.79 303.12,291.82 303.06,291.39 "
-       id="polygon7676" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="222.59,358.94 234.33,354.54 234.3,354.77 "
-       id="polygon7678" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="308.37,322.91 317.48,320.38 317.32,319.91 "
-       id="polygon7680" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="292.46,290.55 302.46,293.57 302.74,293.22 "
-       id="polygon7682" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="293.09,289.27 303.09,292.29 303.12,291.82 "
-       id="polygon7684" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="292.74,290.2 302.74,293.22 302.95,292.78 "
-       id="polygon7686" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="292.96,289.75 302.95,292.78 303.09,292.29 "
-       id="polygon7688" />
-    <line
-       x1="230.41"
-       y1="236.35001"
-       x2="232.53"
-       y2="239.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7690" />
-    <line
-       x1="232.53"
-       y1="239.66"
-       x2="234.8"
-       y2="242.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7692" />
-    <line
-       x1="301.64999"
-       y1="255.96001"
-       x2="299.20999"
-       y2="254.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7694" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="408.17,315.66 409.36,315.57 407.93,315.3 "
-       id="polygon7696" />
-    <line
-       x1="228.44"
-       y1="232.95"
-       x2="230.41"
-       y2="236.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7698" />
-    <line
-       x1="234.8"
-       y1="242.88"
-       x2="237.2"
-       y2="245.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7700" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="303.28,353.09 311.82,346.54 311.92,346.24 "
-       id="polygon7702" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="301.59,350.58 310.14,344.03 309.84,344.08 "
-       id="polygon7704" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="408,313.48 409.06,313.79 409.22,313.43 "
-       id="polygon7706" />
-    <line
-       x1="320.25"
-       y1="318.03"
-       x2="322.54999"
-       y2="321.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7708" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="223.84,361.78 235.58,357.38 235.61,357.15 "
-       id="polygon7710" />
-    <line
-       x1="226.63"
-       y1="229.5"
-       x2="228.44"
-       y2="232.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7712" />
-    <line
-       x1="237.2"
-       y1="245.96001"
-       x2="239.73"
-       y2="248.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7714" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="407.74,314.37 408.99,314.74 408.96,314.33 "
-       id="polygon7716" />
-    <line
-       x1="331.29001"
-       y1="394.95001"
-       x2="329.35999"
-       y2="398.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7718" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="223,359.12 234.75,354.72 234.57,354.52 "
-       id="polygon7720" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="303.38,352.8 311.92,346.24 311.9,345.86 "
-       id="polygon7722" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="301.94,350.66 310.49,344.11 310.14,344.03 "
-       id="polygon7724" />
-    <polygon
-       style="opacity:1;fill:#001b9d"
-       points="403.87,322.3 413.18,322.99 412.82,323.04 "
-       id="polygon7726" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="223.87,361.55 235.61,357.15 235.58,356.81 "
-       id="polygon7728" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="303.36,352.42 311.9,345.86 311.77,345.44 "
-       id="polygon7730" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="302.32,350.86 310.86,344.31 310.49,344.11 "
-       id="polygon7732" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="223.21,359.44 234.95,355.04 234.75,354.72 "
-       id="polygon7734" />
-    <line
-       x1="200.91"
-       y1="227.45"
-       x2="203.11"
-       y2="226.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7736" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="303.23,352 311.77,345.44 311.54,345.02 "
-       id="polygon7738" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="302.68,351.18 311.22,344.63 310.86,344.31 "
-       id="polygon7740" />
-    <line
-       x1="224.98"
-       y1="226"
-       x2="226.63"
-       y2="229.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7742" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="403.6,325.3 412.26,325.79 412.55,326.04 "
-       id="polygon7744" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="223.84,361.21 235.58,356.81 235.48,356.38 "
-       id="polygon7746" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="302.99,351.57 311.54,345.02 311.22,344.63 "
-       id="polygon7748" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="223.41,359.86 235.16,355.45 234.95,355.04 "
-       id="polygon7750" />
-    <line
-       x1="239.73"
-       y1="248.91"
-       x2="242.39"
-       y2="251.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7752" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="223.74,360.79 235.48,356.38 235.34,355.92 "
-       id="polygon7754" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="403.25,322.83 412.49,323.23 412.21,323.56 "
-       id="polygon7756" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="223.59,360.32 235.34,355.92 235.16,355.45 "
-       id="polygon7758" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="403.3,325.05 412.04,325.41 412.26,325.79 "
-       id="polygon7760" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="403.05,323.25 412.21,323.56 412.01,323.98 "
-       id="polygon7762" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="302.91,291.06 293.07,288.37 292.91,288.04 "
-       id="polygon7764" />
-    <line
-       x1="222.57001"
-       y1="364.26999"
-       x2="222.2"
-       y2="361.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7766" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="402.96,324.23 411.91,324.47 411.92,324.96 "
-       id="polygon7768" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="302.15,293.81 291.84,290.89 292.16,290.79 "
-       id="polygon7770" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="303.06,291.39 293.13,288.79 293.07,288.37 "
-       id="polygon7772" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="316.42,319 307.66,321.71 307.32,321.52 "
-       id="polygon7774" />
-    <line
-       x1="223.50999"
-       y1="222.49001"
-       x2="224.98"
-       y2="226"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7776" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="317.29,321.71 307.93,324.5 308.18,324.24 "
-       id="polygon7778" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="234.57,354.52 223,359.12 222.82,358.92 "
-       id="polygon7780" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="302.46,293.57 292.16,290.79 292.46,290.55 "
-       id="polygon7782" />
-    <line
-       x1="242.39"
-       y1="251.69"
-       x2="245.14999"
-       y2="254.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7784" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="235.61,357.15 223.84,361.78 223.87,361.55 "
-       id="polygon7786" />
-    <line
-       x1="332.97"
-       y1="391.5"
-       x2="331.29001"
-       y2="394.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7788" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="303.12,291.82 293.09,289.27 293.13,288.79 "
-       id="polygon7790" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="316.77,319.18 307.98,322.02 307.66,321.71 "
-       id="polygon7792" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="302.74,293.22 292.46,290.55 292.74,290.2 "
-       id="polygon7794" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="317.46,321.33 308.18,324.24 308.35,323.86 "
-       id="polygon7796" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="303.09,292.29 292.96,289.75 293.09,289.27 "
-       id="polygon7798" />
-    <line
-       x1="322.54999"
-       y1="321.03"
-       x2="324.75"
-       y2="324.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7800" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="302.95,292.78 292.74,290.2 292.96,289.75 "
-       id="polygon7802" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="234.75,354.72 223.21,359.44 223,359.12 "
-       id="polygon7804" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="317.08,319.5 308.22,322.43 307.98,322.02 "
-       id="polygon7806" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="317.52,320.88 308.35,323.86 308.42,323.4 "
-       id="polygon7808" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="235.58,356.81 223.87,361.55 223.84,361.21 "
-       id="polygon7810" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="317.32,319.91 308.37,322.91 308.22,322.43 "
-       id="polygon7812" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="317.48,320.38 308.42,323.4 308.37,322.91 "
-       id="polygon7814" />
-    <line
-       x1="303.76999"
-       y1="165.59"
-       x2="302.41"
-       y2="164.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7816" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="234.95,355.04 223.41,359.86 223.21,359.44 "
-       id="polygon7818" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="235.48,356.38 223.84,361.21 223.74,360.79 "
-       id="polygon7820" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="235.16,355.45 223.59,360.32 223.41,359.86 "
-       id="polygon7822" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="235.34,355.92 223.74,360.79 223.59,360.32 "
-       id="polygon7824" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="309.84,344.08 301.59,350.58 301.3,350.63 "
-       id="polygon7826" />
-    <line
-       x1="222.2"
-       y1="218.98"
-       x2="223.50999"
-       y2="222.49001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7828" />
-    <line
-       x1="304.07001"
-       y1="257.44"
-       x2="301.64999"
-       y2="255.96001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7830" />
-    <line
-       x1="245.14999"
-       y1="254.28999"
-       x2="248.00999"
-       y2="256.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7832" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="311.92,346.24 303.28,353.09 303.38,352.8 "
-       id="polygon7834" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="310.14,344.03 301.94,350.66 301.59,350.58 "
-       id="polygon7836" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="409.66,315.84 416.93,315.38 409.39,315.63 "
-       id="polygon7838" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="409.06,313.79 416.76,313.19 409.22,313.43 "
-       id="polygon7840" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="311.9,345.86 303.38,352.8 303.36,352.42 "
-       id="polygon7842" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.68,315.02 409.39,315.63 409.36,315.57 "
-       id="polygon7844" />
-    <line
-       x1="334.41"
-       y1="387.88"
-       x2="332.97"
-       y2="391.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7846" />
-    <line
-       x1="203.11"
-       y1="226.50999"
-       x2="205.48"
-       y2="225.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7848" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="409.36,315.57 416.68,315.02 409.14,315.26 "
-       id="polygon7850" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="414.41,321.85 405.36,320.23 405.72,320.19 "
-       id="polygon7852" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="310.49,344.11 302.32,350.86 301.94,350.66 "
-       id="polygon7854" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="408.99,314.74 416.5,314.09 408.96,314.33 "
-       id="polygon7856" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="311.77,345.44 303.36,352.42 303.23,352 "
-       id="polygon7858" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="310.86,344.31 302.68,351.18 302.32,350.86 "
-       id="polygon7860" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="210.83,363.34 222.59,358.94 222.56,359.17 "
-       id="polygon7862" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="311.54,345.02 303.23,352 302.99,351.57 "
-       id="polygon7864" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="311.22,344.63 302.99,351.57 302.68,351.18 "
-       id="polygon7866" />
-    <line
-       x1="324.75"
-       y1="324.23001"
-       x2="326.84"
-       y2="327.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7868" />
-    <line
-       x1="248.00999"
-       y1="256.67999"
-       x2="250.95"
-       y2="258.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7870" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="413.79,321.48 404.74,319.87 405.02,320.13 "
-       id="polygon7872" />
-    <line
-       x1="221.07001"
-       y1="215.50999"
-       x2="222.2"
-       y2="218.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7874" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="414.15,318.92 405.1,317.32 404.8,317.64 "
-       id="polygon7876" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.59,321.11 404.54,319.5 404.74,319.87 "
-       id="polygon7878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="307.61,324.62 307.27,324.29 307.55,324.31 "
-       id="polygon7880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.85,319.25 404.8,317.64 404.57,318.07 "
-       id="polygon7882" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.49,320.65 404.44,319.04 404.54,319.5 "
-       id="polygon7884" />
-    <line
-       x1="222.2"
-       y1="361.57999"
-       x2="222.11"
-       y2="359.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7886" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.63,319.68 404.57,318.07 404.45,318.55 "
-       id="polygon7888" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.5,320.16 404.45,318.55 404.44,319.04 "
-       id="polygon7890" />
-    <line
-       x1="335.59"
-       y1="384.10999"
-       x2="334.41"
-       y2="387.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7892" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="212.07,366.18 223.84,361.78 223.87,361.55 "
-       id="polygon7894" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="211.24,363.52 223.01,359.12 222.82,358.92 "
-       id="polygon7896" />
-    <line
-       x1="222.07001"
-       y1="359.04999"
-       x2="222.07001"
-       y2="359.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7898" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="212.11,365.96 223.87,361.55 223.84,361.21 "
-       id="polygon7900" />
-    <line
-       x1="237.14"
-       y1="352.70999"
-       x2="240.53"
-       y2="355.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7902" />
-    <line
-       x1="233.91"
-       y1="349.89001"
-       x2="237.14"
-       y2="352.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7904" />
-    <line
-       x1="326.84"
-       y1="327.64001"
-       x2="328.79001"
-       y2="331.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7906" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="211.44,363.84 223.21,359.44 223.01,359.12 "
-       id="polygon7908" />
-    <line
-       x1="240.53"
-       y1="355.34"
-       x2="244.05"
-       y2="357.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7910" />
-    <line
-       x1="230.86"
-       y1="346.89001"
-       x2="233.91"
-       y2="349.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7912" />
-    <line
-       x1="250.95"
-       y1="258.87"
-       x2="253.98"
-       y2="260.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7914" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="212.07,365.62 223.84,361.21 223.74,360.79 "
-       id="polygon7916" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="211.64,364.26 223.41,359.86 223.21,359.44 "
-       id="polygon7918" />
-    <line
-       x1="244.05"
-       y1="357.76001"
-       x2="247.7"
-       y2="359.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7920" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="211.98,365.19 223.74,360.79 223.59,360.32 "
-       id="polygon7922" />
-    <line
-       x1="220.12"
-       y1="212.09"
-       x2="221.07001"
-       y2="215.50999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7924" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="211.83,364.72 223.59,360.32 223.41,359.86 "
-       id="polygon7926" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="417.25,315.63 409.71,315.87 416.93,315.38 "
-       id="polygon7928" />
-    <line
-       x1="205.48"
-       y1="225.78"
-       x2="208"
-       y2="225.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7930" />
-    <line
-       x1="227.98"
-       y1="343.73001"
-       x2="230.86"
-       y2="346.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7932" />
-    <line
-       x1="336.51999"
-       y1="380.20001"
-       x2="335.59"
-       y2="384.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7934" />
-    <line
-       x1="306.47"
-       y1="259.22"
-       x2="304.07001"
-       y2="257.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7936" />
-    <line
-       x1="305.14001"
-       y1="166.58"
-       x2="303.76999"
-       y2="165.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7938" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.93,315.38 409.39,315.63 416.68,315.02 "
-       id="polygon7940" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.57,313.61 409.04,313.85 416.76,313.19 "
-       id="polygon7942" />
-    <line
-       x1="247.7"
-       y1="359.95001"
-       x2="251.44"
-       y2="361.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7944" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.54,314.57 408.99,314.81 416.5,314.09 "
-       id="polygon7946" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="222.82,358.92 211.24,363.52 211.06,363.32 "
-       id="polygon7948" />
-    <line
-       x1="225.28999"
-       y1="340.45001"
-       x2="227.98"
-       y2="343.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7950" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="223.87,361.55 212.07,366.18 212.11,365.96 "
-       id="polygon7952" />
-    <line
-       x1="328.79001"
-       y1="331.20999"
-       x2="330.57999"
-       y2="334.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7954" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="282.91,285 292.91,288.04 292.68,287.83 "
-       id="polygon7956" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="223.01,359.12 211.44,363.84 211.24,363.52 "
-       id="polygon7958" />
-    <line
-       x1="251.44"
-       y1="361.89001"
-       x2="255.28"
-       y2="363.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7960" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="223.84,361.21 212.11,365.96 212.07,365.62 "
-       id="polygon7962" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="291.56,290.83 281.32,287.59 281.55,287.8 "
-       id="polygon7964" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="281.84,287.86 291.84,290.89 292.16,290.79 "
-       id="polygon7966" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="405.02,320.13 413.79,321.48 414.07,321.73 "
-       id="polygon7968" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="405.1,317.32 414.49,318.73 414.15,318.92 "
-       id="polygon7970" />
-    <line
-       x1="337.17999"
-       y1="376.19"
-       x2="336.51999"
-       y2="380.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7972" />
-    <line
-       x1="253.98"
-       y1="260.82999"
-       x2="257.06"
-       y2="262.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7974" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="283.07,285.33 293.07,288.37 292.91,288.04 "
-       id="polygon7976" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="223.21,359.44 211.64,364.26 211.44,363.84 "
-       id="polygon7978" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="420.96,325.89 412.04,325.41 412.27,325.79 "
-       id="polygon7980" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="223.74,360.79 212.07,365.62 211.98,365.19 "
-       id="polygon7982" />
-    <line
-       x1="222.82001"
-       y1="337.04999"
-       x2="225.28999"
-       y2="340.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line7984" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="223.41,359.86 211.83,364.72 211.64,364.26 "
-       id="polygon7986" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="282.16,287.76 292.16,290.79 292.47,290.55 "
-       id="polygon7988" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="223.59,360.32 211.98,365.19 211.83,364.72 "
-       id="polygon7990" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.74,319.87 413.59,321.11 413.79,321.48 "
-       id="polygon7992" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="404.8,317.64 414.15,318.92 413.85,319.25 "
-       id="polygon7994" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="283.13,285.76 293.13,288.79 293.07,288.37 "
-       id="polygon7996" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="297.52,324.16 306.64,321.62 306.39,321.88 "
-       id="polygon7998" />
-    <line
-       x1="219.34"
-       y1="208.73"
-       x2="220.12"
-       y2="212.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8000" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="282.46,287.52 292.47,290.55 292.75,290.2 "
-       id="polygon8002" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.54,319.5 413.49,320.65 413.59,321.11 "
-       id="polygon8004" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.57,318.07 413.85,319.25 413.63,319.68 "
-       id="polygon8006" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="283.09,286.24 293.09,289.27 293.13,288.79 "
-       id="polygon8008" />
-    <line
-       x1="255.28"
-       y1="363.57001"
-       x2="259.17999"
-       y2="364.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8010" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.44,319.04 413.5,320.16 413.49,320.65 "
-       id="polygon8012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="404.45,318.55 413.63,319.68 413.5,320.16 "
-       id="polygon8014" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="282.74,287.16 292.75,290.2 292.96,289.75 "
-       id="polygon8016" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="282.96,286.72 292.96,289.75 293.09,289.27 "
-       id="polygon8018" />
-    <line
-       x1="330.57999"
-       y1="334.95001"
-       x2="332.20999"
-       y2="338.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8020" />
-    <line
-       x1="337.60001"
-       y1="372.09"
-       x2="337.17999"
-       y2="376.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8022" />
-    <line
-       x1="222.07001"
-       y1="359.04999"
-       x2="222.19"
-       y2="356.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8024" />
-    <line
-       x1="220.56"
-       y1="333.56"
-       x2="222.82001"
-       y2="337.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8026" />
-    <polygon
-       style="opacity:1;fill:#0039a6"
-       points="417.62,315.73 417.34,315.34 417.63,315.42 "
-       id="polygon8028" />
-    <line
-       x1="208"
-       y1="225.27"
-       x2="210.64999"
-       y2="224.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8030" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="199.05,367.75 210.83,363.34 210.8,363.57 "
-       id="polygon8032" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="298.54,324.25 307.66,321.71 307.32,321.52 "
-       id="polygon8034" />
-    <line
-       x1="259.17999"
-       y1="364.98999"
-       x2="263.14001"
-       y2="366.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8036" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="294.71,359.67 303.28,353.09 303.38,352.8 "
-       id="polygon8038" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="299.06,326.78 308.19,324.23 308.36,323.86 "
-       id="polygon8040" />
-    <line
-       x1="332.20999"
-       y1="338.82001"
-       x2="333.64999"
-       y2="342.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8042" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="298.85,324.56 307.98,322.02 307.66,321.71 "
-       id="polygon8044" />
-    <line
-       x1="337.75"
-       y1="367.92001"
-       x2="337.60001"
-       y2="372.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8046" />
-    <line
-       x1="257.06"
-       y1="262.54001"
-       x2="260.19"
-       y2="264"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8048" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="299.23,326.4 308.36,323.86 308.42,323.4 "
-       id="polygon8050" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="299.1,324.98 308.22,322.43 307.98,322.02 "
-       id="polygon8052" />
-    <polygon
-       style="opacity:1;fill:#001da9"
-       points="413.16,322.99 422.42,323.57 422.07,323.46 "
-       id="polygon8054" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="294.81,359.38 303.38,352.8 303.36,352.42 "
-       id="polygon8056" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="293.38,357.23 301.94,350.66 301.59,350.58 "
-       id="polygon8058" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="299.3,325.95 308.42,323.4 308.37,322.91 "
-       id="polygon8060" />
-    <line
-       x1="308.82001"
-       y1="261.28"
-       x2="306.47"
-       y2="259.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8062" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="299.25,325.45 308.37,322.91 308.22,322.43 "
-       id="polygon8064" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="294.79,359 303.36,352.42 303.23,352 "
-       id="polygon8066" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="293.75,357.44 302.32,350.86 301.94,350.66 "
-       id="polygon8068" />
-    <line
-       x1="333.64999"
-       y1="342.81"
-       x2="334.89001"
-       y2="346.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8070" />
-    <line
-       x1="337.66"
-       y1="363.70999"
-       x2="337.75"
-       y2="367.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8072" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="294.66,358.57 303.23,352 302.99,351.57 "
-       id="polygon8074" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="294.11,357.75 302.68,351.18 302.32,350.86 "
-       id="polygon8076" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="294.43,358.14 302.99,351.57 302.68,351.18 "
-       id="polygon8078" />
-    <line
-       x1="218.53"
-       y1="330.01001"
-       x2="220.56"
-       y2="333.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8080" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="412.91,326.14 421.49,326.52 421.84,326.62 "
-       id="polygon8082" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="200.29,370.59 212.07,366.18 212.11,365.96 "
-       id="polygon8084" />
-    <line
-       x1="306.51001"
-       y1="167.86"
-       x2="305.14001"
-       y2="166.58"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8086" />
-    <line
-       x1="218.73"
-       y1="205.48"
-       x2="219.34"
-       y2="208.73"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8088" />
-    <line
-       x1="263.14001"
-       y1="366.12"
-       x2="267.13"
-       y2="366.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8090" />
-    <polygon
-       style="opacity:1;fill:#00178a"
-       points="412.46,323.23 421.72,323.51 421.39,323.71 "
-       id="polygon8092" />
-    <line
-       x1="334.89001"
-       y1="346.89001"
-       x2="335.92999"
-       y2="351.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8094" />
-    <line
-       x1="337.32001"
-       y1="359.48001"
-       x2="337.66"
-       y2="363.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8096" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="199.46,367.93 211.24,363.52 211.06,363.32 "
-       id="polygon8098" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="292.91,288.04 283.07,285.33 282.91,285 "
-       id="polygon8100" />
-    <line
-       x1="335.92999"
-       y1="351.04001"
-       x2="336.73999"
-       y2="355.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8102" />
-    <line
-       x1="336.73999"
-       y1="355.25"
-       x2="337.32001"
-       y2="359.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8104" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="292.16,290.79 281.84,287.86 282.16,287.76 "
-       id="polygon8106" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="200.32,370.36 212.11,365.96 212.07,365.62 "
-       id="polygon8108" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="199.66,368.25 211.45,363.84 211.24,363.52 "
-       id="polygon8110" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="293.07,288.37 283.13,285.76 283.07,285.33 "
-       id="polygon8112" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="292.47,290.55 282.16,287.76 282.46,287.52 "
-       id="polygon8114" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="200.29,370.02 212.07,365.62 211.98,365.19 "
-       id="polygon8116" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="412.04,325.41 420.84,325.44 420.96,325.89 "
-       id="polygon8118" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="199.86,368.66 211.64,364.26 211.45,363.84 "
-       id="polygon8120" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="293.13,288.79 283.09,286.24 283.13,285.76 "
-       id="polygon8122" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="411.9,324.47 420.91,324.46 420.82,324.95 "
-       id="polygon8124" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="200.19,369.6 211.98,365.19 211.83,364.72 "
-       id="polygon8126" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="292.75,290.2 282.46,287.52 282.74,287.16 "
-       id="polygon8128" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="200.04,369.13 211.83,364.72 211.64,364.26 "
-       id="polygon8130" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="293.09,289.27 282.96,286.72 283.09,286.24 "
-       id="polygon8132" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="292.96,289.75 282.74,287.16 282.96,286.72 "
-       id="polygon8134" />
-    <line
-       x1="260.19"
-       y1="264"
-       x2="263.35001"
-       y2="265.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8136" />
-    <line
-       x1="210.64999"
-       y1="224.99001"
-       x2="213.42"
-       y2="224.95"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8138" />
-    <polygon
-       style="opacity:1;fill:#003aa8"
-       points="424.22,312.28 417.72,312.64 424.49,312.36 "
-       id="polygon8140" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="417.02,312.88 423.77,312.38 417.35,312.69 "
-       id="polygon8142" />
-    <line
-       x1="267.13"
-       y1="366.95999"
-       x2="271.12"
-       y2="367.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8144" />
-    <line
-       x1="216.73"
-       y1="326.41"
-       x2="218.53"
-       y2="330.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8146" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="417.62,315.73 423.85,315.3 417.26,315.63 "
-       id="polygon8148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="413.48,320.65 413.95,320.7 413.5,320.16 "
-       id="polygon8150" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="211.06,363.32 199.46,367.93 199.28,367.72 "
-       id="polygon8152" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="417.26,315.63 423.52,315.08 416.94,315.38 "
-       id="polygon8154" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="212.11,365.96 200.29,370.59 200.32,370.36 "
-       id="polygon8156" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.56,313.61 423.2,312.94 416.75,313.2 "
-       id="polygon8158" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.49,314.09 423.05,313.38 416.56,313.61 "
-       id="polygon8160" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.69,315.01 423.07,314.32 416.53,314.57 "
-       id="polygon8162" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="211.24,363.52 199.66,368.25 199.46,367.93 "
-       id="polygon8164" />
-    <line
-       x1="222.19"
-       y1="356.67001"
-       x2="222.55"
-       y2="354.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8166" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="212.07,365.62 200.32,370.36 200.29,370.02 "
-       id="polygon8168" />
-    <line
-       x1="222.61"
-       y1="325.35999"
-       x2="218.92"
-       y2="325.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8170" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="301.59,350.58 293.38,357.23 293.02,357.15 "
-       id="polygon8172" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="307.32,321.52 298.54,324.25 298.19,324.07 "
-       id="polygon8174" />
-    <line
-       x1="226.24001"
-       y1="324.67001"
-       x2="222.61"
-       y2="325.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8176" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="308.19,324.23 298.8,327.05 299.06,326.78 "
-       id="polygon8178" />
-    <line
-       x1="218.3"
-       y1="202.34"
-       x2="218.73"
-       y2="205.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8180" />
-    <line
-       x1="218.92"
-       y1="325.79999"
-       x2="215.2"
-       y2="326.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8182" />
-    <line
-       x1="311.10999"
-       y1="263.63"
-       x2="308.82001"
-       y2="261.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8184" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="211.45,363.84 199.86,368.66 199.66,368.25 "
-       id="polygon8186" />
-    <line
-       x1="229.8"
-       y1="323.75"
-       x2="226.24001"
-       y2="324.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8188" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="211.98,365.19 200.29,370.02 200.19,369.6 "
-       id="polygon8190" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="303.36,352.42 294.81,359.38 294.79,359 "
-       id="polygon8192" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="307.66,321.71 298.85,324.56 298.54,324.25 "
-       id="polygon8194" />
-    <line
-       x1="215.2"
-       y1="326.01999"
-       x2="211.47"
-       y2="326"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8196" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="301.94,350.66 293.75,357.44 293.38,357.23 "
-       id="polygon8198" />
-    <line
-       x1="271.12"
-       y1="367.5"
-       x2="275.10999"
-       y2="367.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8200" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="211.64,364.26 200.04,369.13 199.86,368.66 "
-       id="polygon8202" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="308.36,323.86 299.06,326.78 299.23,326.4 "
-       id="polygon8204" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="211.83,364.72 200.19,369.6 200.04,369.13 "
-       id="polygon8206" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="303.23,352 294.79,359 294.66,358.57 "
-       id="polygon8208" />
-    <line
-       x1="233.27"
-       y1="322.60001"
-       x2="229.8"
-       y2="323.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8210" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="307.98,322.02 299.1,324.98 298.85,324.56 "
-       id="polygon8212" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="302.32,350.86 294.11,357.75 293.75,357.44 "
-       id="polygon8214" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="308.42,323.4 299.23,326.4 299.3,325.95 "
-       id="polygon8216" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="302.99,351.57 294.66,358.57 294.43,358.14 "
-       id="polygon8218" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="308.22,322.43 299.25,325.45 299.1,324.98 "
-       id="polygon8220" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="308.37,322.91 299.3,325.95 299.25,325.45 "
-       id="polygon8222" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="302.68,351.18 294.43,358.14 294.11,357.75 "
-       id="polygon8224" />
-    <line
-       x1="211.47"
-       y1="326"
-       x2="207.75"
-       y2="325.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8226" />
-    <line
-       x1="215.17"
-       y1="322.79999"
-       x2="216.73"
-       y2="326.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8228" />
-    <line
-       x1="263.35001"
-       y1="265.20001"
-       x2="266.54001"
-       y2="266.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8230" />
-    <polygon
-       style="opacity:1;fill:#001ca2"
-       points="421.49,326.52 421.59,326.22 421.86,326.3 "
-       id="polygon8232" />
-    <line
-       x1="236.63"
-       y1="321.20999"
-       x2="233.27"
-       y2="322.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8234" />
-    <line
-       x1="213.42"
-       y1="224.95"
-       x2="216.28999"
-       y2="225.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8236" />
-    <polygon
-       style="opacity:1;fill:#0021c0"
-       points="415.23,321.88 423.48,323.3 414.89,321.92 "
-       id="polygon8238" />
-    <line
-       x1="207.75"
-       y1="325.75"
-       x2="204.05"
-       y2="325.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8240" />
-    <polygon
-       style="opacity:1;fill:#001da9"
-       points="422.05,323.47 425.52,323.6 422.41,323.58 "
-       id="polygon8242" />
-    <line
-       x1="307.85999"
-       y1="169.41"
-       x2="306.51001"
-       y2="167.86"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8244" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="187.25,372.15 199.05,367.75 199.02,367.97 "
-       id="polygon8246" />
-    <line
-       x1="239.85001"
-       y1="319.60001"
-       x2="236.63"
-       y2="321.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8248" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="424.12,315.38 417.62,315.73 423.85,315.3 "
-       id="polygon8250" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="423.52,312.52 417.02,312.88 423.77,312.38 "
-       id="polygon8252" />
-    <polygon
-       style="opacity:1;fill:#001fb7"
-       points="424.24,320.25 415.64,318.87 424.53,320.5 "
-       id="polygon8254" />
-    <polygon
-       style="opacity:1;fill:#00188d"
-       points="414.61,318.99 423.54,320.18 414.94,318.8 "
-       id="polygon8256" />
-    <line
-       x1="275.10999"
-       y1="367.73999"
-       x2="279.07001"
-       y2="367.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8258" />
-    <polygon
-       style="opacity:1;fill:#0000d3"
-       points="292.66,357.86 292.52,357.39 292.43,357.69 "
-       id="polygon8260" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="423.76,315.27 417.26,315.63 423.52,315.08 "
-       id="polygon8262" />
-    <line
-       x1="204.05"
-       y1="325.26999"
-       x2="200.41"
-       y2="324.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8264" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="432.6,321.48 423.52,320.18 423.18,320.38 "
-       id="polygon8266" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="414.31,319.3 423.19,320.38 414.6,319 "
-       id="polygon8268" />
-    <line
-       x1="242.92999"
-       y1="317.76999"
-       x2="239.85001"
-       y2="319.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8270" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="423.07,313.25 416.56,313.61 423.2,312.94 "
-       id="polygon8272" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="414.25,321.54 422.65,322.57 414.05,321.18 "
-       id="polygon8274" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="432.25,321.67 423.18,320.38 422.88,320.7 "
-       id="polygon8276" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="414.09,319.73 422.89,320.7 414.3,319.32 "
-       id="polygon8278" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="416.56,313.61 423.05,313.38 423.07,313.25 "
-       id="polygon8280" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="423.19,314.66 416.69,315.01 423.07,314.32 "
-       id="polygon8282" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="422.99,313.73 416.49,314.09 423.05,313.38 "
-       id="polygon8284" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="414.05,321.16 422.55,322.11 413.95,320.73 "
-       id="polygon8286" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="421.51,326.51 424.72,326.5 421.2,326.26 "
-       id="polygon8288" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="423.04,314.21 416.53,314.57 423,313.85 "
-       id="polygon8290" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="413.96,320.21 422.68,321.13 414.08,319.75 "
-       id="polygon8292" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="413.95,320.7 422.55,321.61 413.96,320.23 "
-       id="polygon8294" />
-    <line
-       x1="218.03999"
-       y1="199.33"
-       x2="218.3"
-       y2="202.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8296" />
-    <line
-       x1="213.85001"
-       y1="319.20001"
-       x2="215.17"
-       y2="322.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8298" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="188.49,375 200.29,370.59 200.32,370.36 "
-       id="polygon8300" />
-    <line
-       x1="245.84"
-       y1="315.73001"
-       x2="242.92999"
-       y2="317.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8302" />
-    <line
-       x1="200.41"
-       y1="324.57001"
-       x2="196.83"
-       y2="323.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8304" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="187.65,372.33 199.46,367.93 199.28,367.72 "
-       id="polygon8306" />
-    <line
-       x1="266.54001"
-       y1="266.10999"
-       x2="269.73001"
-       y2="266.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8308" />
-    <line
-       x1="313.29999"
-       y1="266.23001"
-       x2="311.10999"
-       y2="263.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8310" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="188.52,374.77 200.32,370.36 200.29,370.02 "
-       id="polygon8312" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="187.85,372.66 199.66,368.25 199.46,367.93 "
-       id="polygon8314" />
-    <line
-       x1="216.28999"
-       y1="225.13"
-       x2="219.22"
-       y2="225.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8316" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="188.48,374.43 200.29,370.02 200.19,369.6 "
-       id="polygon8318" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="188.05,373.07 199.86,368.66 199.66,368.25 "
-       id="polygon8320" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="188.38,374.01 200.19,369.6 200.04,369.13 "
-       id="polygon8322" />
-    <line
-       x1="248.57001"
-       y1="313.48001"
-       x2="245.84"
-       y2="315.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8324" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="188.24,373.54 200.04,369.13 199.86,368.66 "
-       id="polygon8326" />
-    <line
-       x1="222.55"
-       y1="354.48001"
-       x2="223.14"
-       y2="352.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8328" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="272.91,281.96 282.92,285 282.68,284.8 "
-       id="polygon8330" />
-    <line
-       x1="196.83"
-       y1="323.67001"
-       x2="193.34"
-       y2="322.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8332" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="271.83,284.82 281.84,287.86 282.16,287.76 "
-       id="polygon8334" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="424.23,324.55 420.89,324.46 424.3,324.39 "
-       id="polygon8336" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="273.06,282.29 283.07,285.33 282.92,285 "
-       id="polygon8338" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="420.89,324.46 424.17,324.85 424.23,324.55 "
-       id="polygon8340" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="420.84,325.44 424.25,325.81 424.16,325.52 "
-       id="polygon8342" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="424.16,325.52 420.84,325.44 424.15,325.34 "
-       id="polygon8344" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="272.14,284.72 282.16,287.76 282.47,287.52 "
-       id="polygon8346" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="199.28,367.72 187.65,372.33 187.47,372.13 "
-       id="polygon8348" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="273.12,282.72 283.13,285.76 283.07,285.33 "
-       id="polygon8350" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="200.32,370.36 188.49,375 188.52,374.77 "
-       id="polygon8352" />
-    <line
-       x1="251.11"
-       y1="311.04001"
-       x2="248.57001"
-       y2="313.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8354" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="272.46,284.48 282.47,287.52 282.75,287.16 "
-       id="polygon8356" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="273.08,283.2 283.09,286.24 283.13,285.76 "
-       id="polygon8358" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="272.73,284.13 282.75,287.16 282.96,286.72 "
-       id="polygon8360" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="272.95,283.68 282.96,286.72 283.09,286.24 "
-       id="polygon8362" />
-    <line
-       x1="212.78"
-       y1="315.62"
-       x2="213.85001"
-       y2="319.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8364" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="199.46,367.93 187.85,372.66 187.65,372.33 "
-       id="polygon8366" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="423.14,323.2 414.55,321.81 422.86,322.94 "
-       id="polygon8368" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="200.29,370.02 188.52,374.77 188.48,374.43 "
-       id="polygon8370" />
-    <line
-       x1="309.17999"
-       y1="171.23"
-       x2="307.85999"
-       y2="169.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8372" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="283.93,363.99 292.52,357.39 292.43,357.69 "
-       id="polygon8374" />
-    <line
-       x1="193.34"
-       y1="322.56"
-       x2="189.96001"
-       y2="321.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8376" />
-    <line
-       x1="269.73001"
-       y1="266.75"
-       x2="272.92001"
-       y2="267.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8378" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="199.66,368.25 188.05,373.07 187.85,372.66 "
-       id="polygon8380" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="200.19,369.6 188.48,374.43 188.38,374.01 "
-       id="polygon8382" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="422.89,320.7 414.3,319.32 423.19,320.38 "
-       id="polygon8384" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.86,322.94 414.26,321.55 422.65,322.57 "
-       id="polygon8386" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="423.45,312.6 425.74,312.39 423.52,312.52 "
-       id="polygon8388" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="199.86,368.66 188.24,373.54 188.05,373.07 "
-       id="polygon8390" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="200.04,369.13 188.38,374.01 188.24,373.54 "
-       id="polygon8392" />
-    <line
-       x1="217.95"
-       y1="196.48"
-       x2="218.03999"
-       y2="199.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8394" />
-    <line
-       x1="219.22"
-       y1="225.56"
-       x2="222.22"
-       y2="226.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8396" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.68,321.13 414.08,319.75 422.89,320.7 "
-       id="polygon8398" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.65,322.57 414.05,321.18 422.55,322.11 "
-       id="polygon8400" />
-    <line
-       x1="253.44"
-       y1="308.42001"
-       x2="251.11"
-       y2="311.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8402" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.55,321.61 413.96,320.23 422.68,321.13 "
-       id="polygon8404" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.55,322.11 413.95,320.73 422.55,321.61 "
-       id="polygon8406" />
-    <line
-       x1="315.39999"
-       y1="269.09"
-       x2="313.29999"
-       y2="266.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8408" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="286.12,366.27 294.71,359.67 294.81,359.38 "
-       id="polygon8410" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.29,313.13 422.99,313.73 423.05,313.38 "
-       id="polygon8412" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.26,314.09 423.19,314.66 423.07,314.32 "
-       id="polygon8414" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="286.22,365.98 294.81,359.38 294.79,359 "
-       id="polygon8416" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="288.38,326.71 297.52,324.16 297.26,324.42 "
-       id="polygon8418" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="284.78,363.83 293.38,357.23 293.02,357.15 "
-       id="polygon8420" />
-    <line
-       x1="286.82001"
-       y1="366.59"
-       x2="290.57999"
-       y2="365.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8422" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="425.47,312.71 423.25,312.84 425.74,312.39 "
-       id="polygon8424" />
-    <line
-       x1="189.96001"
-       y1="321.26001"
-       x2="186.71001"
-       y2="319.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8426" />
-    <line
-       x1="255.55"
-       y1="305.63"
-       x2="253.44"
-       y2="308.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8428" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="286.2,365.6 294.79,359 294.66,358.57 "
-       id="polygon8430" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="285.15,364.04 293.75,357.44 293.38,357.23 "
-       id="polygon8432" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="286.07,365.17 294.66,358.57 294.43,358.14 "
-       id="polygon8434" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="285.52,364.36 294.11,357.75 293.75,357.44 "
-       id="polygon8436" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="176.44,379.44 188.26,375.02 188.4,375.09 "
-       id="polygon8438" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="285.83,364.75 294.43,358.14 294.11,357.75 "
-       id="polygon8440" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.41,314.53 423.19,314.66 425.26,314.09 "
-       id="polygon8442" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.21,313.6 422.99,313.73 425.29,313.13 "
-       id="polygon8444" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="430.08,326.5 424.84,326.6 424.72,326.5 "
-       id="polygon8446" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="282.92,285 273.06,282.29 272.91,281.96 "
-       id="polygon8448" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="424.72,326.5 430.08,326.5 424.53,326.35 "
-       id="polygon8450" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="289.67,329.61 298.81,327.05 299.07,326.78 "
-       id="polygon8452" />
-    <line
-       x1="211.96001"
-       y1="312.10001"
-       x2="212.78"
-       y2="315.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8454" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="282.16,287.76 271.83,284.82 272.14,284.72 "
-       id="polygon8456" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="289.4,326.8 298.54,324.25 298.19,324.07 "
-       id="polygon8458" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="429.96,324.27 424.23,324.55 424.3,324.39 "
-       id="polygon8460" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="283.07,285.33 273.12,282.72 273.06,282.29 "
-       id="polygon8462" />
-    <line
-       x1="272.92001"
-       y1="267.10999"
-       x2="276.09"
-       y2="267.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8464" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="289.92,329.34 299.07,326.78 299.23,326.4 "
-       id="polygon8466" />
-    <line
-       x1="222.22"
-       y1="226.22"
-       x2="225.25"
-       y2="227.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8468" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="429.69,325.18 424.16,325.52 424.15,325.34 "
-       id="polygon8470" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="282.47,287.52 272.14,284.72 272.46,284.48 "
-       id="polygon8472" />
-    <line
-       x1="257.42001"
-       y1="302.69"
-       x2="255.55"
-       y2="305.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8474" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="289.71,327.12 298.85,324.56 298.54,324.25 "
-       id="polygon8476" />
-    <line
-       x1="223.14"
-       y1="352.48999"
-       x2="223.97"
-       y2="350.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8478" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="290.09,328.96 299.23,326.4 299.3,325.95 "
-       id="polygon8480" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="283.13,285.76 273.08,283.2 273.12,282.72 "
-       id="polygon8482" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="289.96,327.54 299.1,324.98 298.85,324.56 "
-       id="polygon8484" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="282.75,287.16 272.46,284.48 272.73,284.13 "
-       id="polygon8486" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="290.16,328.51 299.3,325.95 299.25,325.45 "
-       id="polygon8488" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="283.09,286.24 272.95,283.68 273.08,283.2 "
-       id="polygon8490" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="290.11,328.02 299.25,325.45 299.1,324.98 "
-       id="polygon8492" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="282.96,286.72 272.73,284.13 272.95,283.68 "
-       id="polygon8494" />
-    <line
-       x1="290.57999"
-       y1="365.59"
-       x2="294.23999"
-       y2="364.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8496" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="175.83,376.75 187.65,372.33 187.47,372.13 "
-       id="polygon8498" />
-    <line
-       x1="186.71001"
-       y1="319.78"
-       x2="183.60001"
-       y2="318.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8500" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="176.69,379.19 188.52,374.77 188.48,374.43 "
-       id="polygon8502" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="176.03,377.07 187.86,372.66 187.65,372.33 "
-       id="polygon8504" />
-    <line
-       x1="317.38"
-       y1="272.17999"
-       x2="315.39999"
-       y2="269.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8506" />
-    <line
-       x1="218.00999"
-       y1="193.81"
-       x2="217.95"
-       y2="196.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8508" />
-    <line
-       x1="310.45001"
-       y1="173.31"
-       x2="309.17999"
-       y2="171.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8510" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="176.66,378.85 188.48,374.43 188.38,374 "
-       id="polygon8512" />
-    <line
-       x1="259.04999"
-       y1="299.60999"
-       x2="257.42001"
-       y2="302.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8514" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="176.23,377.48 188.05,373.07 187.86,372.66 "
-       id="polygon8516" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="176.56,378.42 188.38,374 188.24,373.54 "
-       id="polygon8518" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="176.41,377.95 188.24,373.54 188.05,373.07 "
-       id="polygon8520" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="187.33,372.07 175.65,376.54 175.51,376.48 "
-       id="polygon8522" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="294.81,359.38 286.12,366.27 286.22,365.98 "
-       id="polygon8524" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="293.02,357.15 284.78,363.83 284.43,363.75 "
-       id="polygon8526" />
-    <line
-       x1="225.25"
-       y1="227.13"
-       x2="228.28999"
-       y2="228.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8528" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="429.77,324.7 424.23,324.55 429.96,324.27 "
-       id="polygon8530" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="294.79,359 286.22,365.98 286.2,365.6 "
-       id="polygon8532" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="187.47,372.13 175.83,376.75 175.65,376.54 "
-       id="polygon8534" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="293.38,357.23 285.15,364.04 284.78,363.83 "
-       id="polygon8536" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="429.71,325.67 424.16,325.52 429.69,325.18 "
-       id="polygon8538" />
-    <line
-       x1="294.23999"
-       y1="364.29001"
-       x2="297.76999"
-       y2="362.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8540" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="188.52,374.77 176.66,379.41 176.69,379.19 "
-       id="polygon8542" />
-    <line
-       x1="211.39"
-       y1="308.66"
-       x2="211.96001"
-       y2="312.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8544" />
-    <line
-       x1="260.44"
-       y1="296.39001"
-       x2="259.04999"
-       y2="299.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8546" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="294.66,358.57 286.2,365.6 286.07,365.17 "
-       id="polygon8548" />
-    <line
-       x1="183.60001"
-       y1="318.13"
-       x2="180.64999"
-       y2="316.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8550" />
-    <line
-       x1="276.09"
-       y1="267.17001"
-       x2="279.23001"
-       y2="266.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8552" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="293.75,357.44 285.52,364.36 285.15,364.04 "
-       id="polygon8554" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="294.43,358.14 286.07,365.17 285.83,364.75 "
-       id="polygon8556" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="294.11,357.75 285.83,364.75 285.52,364.36 "
-       id="polygon8558" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="187.65,372.33 176.03,377.07 175.83,376.75 "
-       id="polygon8560" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="188.48,374.43 176.69,379.19 176.66,378.85 "
-       id="polygon8562" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="187.86,372.66 176.23,377.48 176.03,377.07 "
-       id="polygon8564" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="188.38,374 176.66,378.85 176.56,378.42 "
-       id="polygon8566" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="188.05,373.07 176.41,377.95 176.23,377.48 "
-       id="polygon8568" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="188.24,373.54 176.56,378.42 176.41,377.95 "
-       id="polygon8570" />
-    <line
-       x1="261.57001"
-       y1="293.07001"
-       x2="260.44"
-       y2="296.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8572" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="434.42,311.78 425.73,312.4 425.46,312.71 "
-       id="polygon8574" />
-    <polygon
-       style="opacity:1;fill:#003aaa"
-       points="430.48,326.45 430.4,326.74 430.75,326.85 "
-       id="polygon8576" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="298.19,324.07 289.4,326.8 289.05,326.63 "
-       id="polygon8578" />
-    <line
-       x1="319.20999"
-       y1="275.48999"
-       x2="317.38"
-       y2="272.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8580" />
-    <line
-       x1="228.28999"
-       y1="228.27"
-       x2="231.32001"
-       y2="229.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8582" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="434.36,314.28 425.66,314.89 425.99,315.14 "
-       id="polygon8584" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="434.15,312.1 425.46,312.71 425.28,313.13 "
-       id="polygon8586" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="298.54,324.25 289.71,327.12 289.4,326.8 "
-       id="polygon8588" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="299.23,326.4 289.92,329.34 290.09,328.96 "
-       id="polygon8590" />
-    <line
-       x1="297.76999"
-       y1="362.67999"
-       x2="301.16"
-       y2="360.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8592" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="434.11,313.91 425.41,314.53 425.66,314.89 "
-       id="polygon8594" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="433.97,312.51 425.28,313.13 425.21,313.6 "
-       id="polygon8596" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="298.85,324.56 289.96,327.54 289.71,327.12 "
-       id="polygon8598" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="433.95,313.46 425.25,314.09 425.41,314.53 "
-       id="polygon8600" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="433.9,312.98 425.21,313.6 425.25,314.09 "
-       id="polygon8602" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="299.3,325.95 290.09,328.96 290.16,328.51 "
-       id="polygon8604" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="299.1,324.98 290.11,328.02 289.96,327.54 "
-       id="polygon8606" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="299.25,325.45 290.16,328.51 290.11,328.02 "
-       id="polygon8608" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="431.94,324.24 422.86,322.94 423.15,323.2 "
-       id="polygon8610" />
-    <line
-       x1="180.64999"
-       y1="316.32001"
-       x2="177.88"
-       y2="314.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8612" />
-    <line
-       x1="218.23"
-       y1="191.33"
-       x2="218.00999"
-       y2="193.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8614" />
-    <line
-       x1="223.97"
-       y1="350.70999"
-       x2="225.00999"
-       y2="349.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8616" />
-    <line
-       x1="262.42999"
-       y1="289.66"
-       x2="261.57001"
-       y2="293.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8618" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.73,323.86 422.65,322.57 422.86,322.94 "
-       id="polygon8620" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="164.59,383.86 176.44,379.44 176.58,379.5 "
-       id="polygon8622" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="441.32,322.81 432.24,321.67 431.95,322 "
-       id="polygon8624" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.96,322 422.88,320.7 422.67,321.13 "
-       id="polygon8626" />
-    <line
-       x1="311.66"
-       y1="175.64"
-       x2="310.45001"
-       y2="173.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8628" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.62,323.41 422.55,322.11 422.65,322.57 "
-       id="polygon8630" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="441.03,323.14 431.95,322 431.73,322.43 "
-       id="polygon8632" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.74,322.43 422.67,321.13 422.55,321.61 "
-       id="polygon8634" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.62,322.91 422.55,321.61 422.55,322.11 "
-       id="polygon8636" />
-    <line
-       x1="279.23001"
-       y1="266.94"
-       x2="282.31"
-       y2="266.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8638" />
-    <line
-       x1="211.07001"
-       y1="305.31"
-       x2="211.39"
-       y2="308.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8640" />
-    <line
-       x1="231.32001"
-       y1="229.64"
-       x2="234.33"
-       y2="231.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8642" />
-    <line
-       x1="263.04001"
-       y1="286.17999"
-       x2="262.42999"
-       y2="289.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8644" />
-    <line
-       x1="301.16"
-       y1="360.79001"
-       x2="304.39999"
-       y2="358.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8646" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="262.89,278.91 272.91,281.96 272.68,281.76 "
-       id="polygon8648" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="163.98,381.16 175.83,376.75 175.65,376.54 "
-       id="polygon8650" />
-    <line
-       x1="320.88"
-       y1="279"
-       x2="319.20999"
-       y2="275.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8652" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="164.85,383.61 176.69,379.19 176.66,378.85 "
-       id="polygon8654" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="263.04,279.24 273.06,282.29 272.91,281.96 "
-       id="polygon8656" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="262.12,281.68 272.14,284.72 272.46,284.48 "
-       id="polygon8658" />
-    <line
-       x1="177.88"
-       y1="314.38"
-       x2="175.3"
-       y2="312.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8660" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="164.81,383.27 176.66,378.85 176.56,378.42 "
-       id="polygon8662" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="263.1,279.67 273.13,282.72 273.06,282.29 "
-       id="polygon8664" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="176.58,379.5 164.59,383.86 164.73,383.92 "
-       id="polygon8666" />
-    <line
-       x1="263.38"
-       y1="282.63"
-       x2="263.04001"
-       y2="286.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8668" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="164.38,381.91 176.23,377.48 176.03,377.07 "
-       id="polygon8670" />
-    <line
-       x1="234.33"
-       y1="231.25"
-       x2="237.28999"
-       y2="233.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8672" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="164.71,382.84 176.56,378.42 176.41,377.95 "
-       id="polygon8674" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="262.43,281.43 272.46,284.48 272.73,284.13 "
-       id="polygon8676" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="263.06,280.15 273.09,283.2 273.13,282.72 "
-       id="polygon8678" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="262.71,281.08 272.73,284.13 272.95,283.68 "
-       id="polygon8680" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="262.93,280.63 272.95,283.68 273.09,283.2 "
-       id="polygon8682" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="289.67,329.61 289.28,329.42 289.54,329.32 "
-       id="polygon8684" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="175.51,376.48 163.8,380.96 163.67,380.89 "
-       id="polygon8686" />
-    <line
-       x1="304.39999"
-       y1="358.60999"
-       x2="307.47"
-       y2="356.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8688" />
-    <line
-       x1="282.31"
-       y1="266.42001"
-       x2="285.34"
-       y2="265.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8690" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="425.99,315.14 434.36,314.28 434.68,314.52 "
-       id="polygon8692" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="438.91,326.5 430.09,326.49 430.4,326.74 "
-       id="polygon8694" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="175.65,376.54 163.98,381.16 163.8,380.96 "
-       id="polygon8696" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="423.18,320.38 432.6,321.48 432.25,321.67 "
-       id="polygon8698" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="438.77,324.29 429.95,324.28 429.76,324.7 "
-       id="polygon8700" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="423.15,323.2 431.94,324.24 432.23,324.5 "
-       id="polygon8702" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="176.69,379.19 164.82,383.83 164.85,383.61 "
-       id="polygon8704" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.28,313.13 434.15,312.1 433.97,312.51 "
-       id="polygon8706" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.66,314.89 434.11,313.91 434.36,314.28 "
-       id="polygon8708" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.21,313.6 433.97,312.51 433.9,312.98 "
-       id="polygon8710" />
-    <line
-       x1="237.28999"
-       y1="233.08"
-       x2="240.17999"
-       y2="235.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8712" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="425.25,314.09 433.9,312.98 433.95,313.46 "
-       id="polygon8714" />
-    <line
-       x1="218.61"
-       y1="189.06"
-       x2="218.23"
-       y2="191.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8716" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="438.5,325.19 429.68,325.18 429.71,325.67 "
-       id="polygon8718" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="422.88,320.7 432.25,321.67 431.96,322 "
-       id="polygon8720" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.86,322.94 431.73,323.86 431.94,324.24 "
-       id="polygon8722" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="175.83,376.75 164.18,381.49 163.98,381.16 "
-       id="polygon8724" />
-    <line
-       x1="312.79001"
-       y1="178.21001"
-       x2="311.66"
-       y2="175.64"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8726" />
-    <line
-       x1="322.39001"
-       y1="282.69"
-       x2="320.88"
-       y2="279"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8728" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="176.66,378.85 164.85,383.61 164.81,383.27 "
-       id="polygon8730" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="277.5,372.89 286.12,366.27 286.22,365.98 "
-       id="polygon8732" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="275.8,370.37 284.43,363.75 284.13,363.8 "
-       id="polygon8734" />
-    <line
-       x1="211"
-       y1="302.09"
-       x2="211.07001"
-       y2="305.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8736" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.67,321.13 431.96,322 431.74,322.43 "
-       id="polygon8738" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.65,322.57 431.62,323.41 431.73,323.86 "
-       id="polygon8740" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.55,321.61 431.74,322.43 431.62,322.91 "
-       id="polygon8742" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="422.55,322.11 431.62,322.91 431.62,323.41 "
-       id="polygon8744" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="176.03,377.07 164.38,381.91 164.18,381.49 "
-       id="polygon8746" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="176.56,378.42 164.81,383.27 164.71,382.84 "
-       id="polygon8748" />
-    <line
-       x1="263.39999"
-       y1="278.22"
-       x2="263.39999"
-       y2="278.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8750" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="277.6,372.6 286.22,365.98 286.2,365.6 "
-       id="polygon8752" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="276.16,370.45 284.78,363.83 284.43,363.75 "
-       id="polygon8754" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="176.23,377.48 164.57,382.37 164.38,381.91 "
-       id="polygon8756" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="176.41,377.95 164.71,382.84 164.57,382.37 "
-       id="polygon8758" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="271.54,284.76 261.29,281.51 261.52,281.71 "
-       id="polygon8760" />
-    <line
-       x1="175.3"
-       y1="312.31"
-       x2="172.92999"
-       y2="310.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8762" />
-    <line
-       x1="225.00999"
-       y1="349.17001"
-       x2="226.25999"
-       y2="347.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8764" />
-    <line
-       x1="307.47"
-       y1="356.16"
-       x2="310.35999"
-       y2="353.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8766" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="277.58,372.22 286.2,365.6 286.07,365.17 "
-       id="polygon8768" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="276.53,370.66 285.15,364.04 284.78,363.83 "
-       id="polygon8770" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="272.68,281.76 262.89,278.91 262.65,278.7 "
-       id="polygon8772" />
-    <line
-       x1="263.25"
-       y1="275.45001"
-       x2="263.39999"
-       y2="278.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8774" />
-    <line
-       x1="240.17999"
-       y1="235.12"
-       x2="242.97"
-       y2="237.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8776" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="277.45,371.8 286.07,365.17 285.83,364.75 "
-       id="polygon8778" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="276.89,370.98 285.52,364.36 285.15,364.04 "
-       id="polygon8780" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="277.21,371.37 285.83,364.75 285.52,364.36 "
-       id="polygon8782" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="272.91,281.96 263.04,279.24 262.89,278.91 "
-       id="polygon8784" />
-    <line
-       x1="262.79001"
-       y1="271.85001"
-       x2="263.25"
-       y2="275.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8786" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="272.14,284.72 261.8,281.77 262.12,281.68 "
-       id="polygon8788" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="273.06,282.29 263.1,279.67 263.04,279.24 "
-       id="polygon8790" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="272.46,284.48 262.12,281.68 262.43,281.43 "
-       id="polygon8792" />
-    <line
-       x1="285.34"
-       y1="265.60999"
-       x2="288.29001"
-       y2="264.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8794" />
-    <line
-       x1="242.97"
-       y1="237.36"
-       x2="245.66"
-       y2="239.8"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8796" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="273.13,282.72 263.06,280.15 263.1,279.67 "
-       id="polygon8798" />
-    <line
-       x1="323.70999"
-       y1="286.54001"
-       x2="322.39001"
-       y2="282.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8800" />
-    <line
-       x1="262.07999"
-       y1="268.26999"
-       x2="262.79001"
-       y2="271.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8802" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="272.73,284.13 262.43,281.43 262.71,281.08 "
-       id="polygon8804" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="273.09,283.2 262.93,280.63 263.06,280.15 "
-       id="polygon8806" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="272.95,283.68 262.71,281.08 262.93,280.63 "
-       id="polygon8808" />
-    <polygon
-       style="opacity:1;fill:#0055a4"
-       points="435.35,314.29 435.42,314.58 435.75,314.39 "
-       id="polygon8810" />
-    <line
-       x1="310.35999"
-       y1="353.45001"
-       x2="313.04001"
-       y2="350.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8812" />
-    <line
-       x1="245.66"
-       y1="239.8"
-       x2="248.21001"
-       y2="242.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8814" />
-    <line
-       x1="261.10999"
-       y1="264.72"
-       x2="262.07999"
-       y2="268.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8816" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="151.94,385.38 163.8,380.96 163.67,380.89 "
-       id="polygon8818" />
-    <polygon
-       style="opacity:1;fill:#001eaf"
-       points="432.34,324.2 432.24,324.5 432.58,324.61 "
-       id="polygon8820" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="164.73,383.92 152.73,388.29 152.88,388.35 "
-       id="polygon8822" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="152.96,388.26 164.82,383.83 164.85,383.61 "
-       id="polygon8824" />
-    <line
-       x1="259.91"
-       y1="261.23001"
-       x2="261.10999"
-       y2="264.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8826" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="280.5,332.19 289.67,329.61 289.93,329.34 "
-       id="polygon8828" />
-    <line
-       x1="248.21001"
-       y1="242.42999"
-       x2="250.63"
-       y2="245.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8830" />
-    <line
-       x1="172.92999"
-       y1="310.13"
-       x2="170.77"
-       y2="307.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8832" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="430.09,326.49 438.68,326.13 438.91,326.5 "
-       id="polygon8834" />
-    <line
-       x1="313.84"
-       y1="181"
-       x2="312.79001"
-       y2="178.21001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8836" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="280.23,329.38 289.4,326.8 289.05,326.63 "
-       id="polygon8838" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="152.12,385.59 163.98,381.16 163.8,380.96 "
-       id="polygon8840" />
-    <line
-       x1="211.16"
-       y1="299.01999"
-       x2="211"
-       y2="302.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8842" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="280.76,331.92 289.93,329.34 290.09,328.96 "
-       id="polygon8844" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="429.71,325.67 438.5,325.19 438.53,325.68 "
-       id="polygon8846" />
-    <line
-       x1="258.47"
-       y1="257.81"
-       x2="259.91"
-       y2="261.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8848" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="286.22,365.98 277.5,372.89 277.6,372.6 "
-       id="polygon8850" />
-    <line
-       x1="250.63"
-       y1="245.22"
-       x2="252.87"
-       y2="248.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8852" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="152.98,388.04 164.85,383.61 164.81,383.27 "
-       id="polygon8854" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="280.55,329.7 289.71,327.12 289.4,326.8 "
-       id="polygon8856" />
-    <line
-       x1="313.04001"
-       y1="350.48999"
-       x2="315.51999"
-       y2="347.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8858" />
-    <line
-       x1="219.12"
-       y1="187.00999"
-       x2="218.61"
-       y2="189.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8860" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="284.43,363.75 276.16,370.45 275.8,370.37 "
-       id="polygon8862" />
-    <line
-       x1="324.82001"
-       y1="290.51999"
-       x2="323.70999"
-       y2="286.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8864" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="280.93,331.54 290.09,328.96 290.16,328.5 "
-       id="polygon8866" />
-    <line
-       x1="256.81"
-       y1="254.48"
-       x2="258.47"
-       y2="257.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8868" />
-    <line
-       x1="252.87"
-       y1="248.17"
-       x2="254.94"
-       y2="251.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8870" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="152.32,385.91 164.18,381.49 163.98,381.16 "
-       id="polygon8872" />
-    <line
-       x1="254.94"
-       y1="251.27"
-       x2="256.81"
-       y2="254.48"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8874" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="280.79,330.11 289.96,327.54 289.71,327.12 "
-       id="polygon8876" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="281,331.08 290.16,328.5 290.11,328.01 "
-       id="polygon8878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="261.52,281.71 261.45,281.25 261.63,281.41 "
-       id="polygon8880" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="280.95,330.59 290.11,328.01 289.96,327.54 "
-       id="polygon8882" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="286.2,365.6 277.6,372.6 277.58,372.22 "
-       id="polygon8884" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="152.95,387.7 164.81,383.27 164.71,382.84 "
-       id="polygon8886" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="284.78,363.83 276.53,370.66 276.16,370.45 "
-       id="polygon8888" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="152.52,386.33 164.38,381.91 164.18,381.49 "
-       id="polygon8890" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="152.85,387.27 164.71,382.84 164.57,382.37 "
-       id="polygon8892" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="152.7,386.8 164.57,382.37 164.38,381.91 "
-       id="polygon8894" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="286.07,365.17 277.58,372.22 277.45,371.8 "
-       id="polygon8896" />
-    <line
-       x1="288.29001"
-       y1="264.51001"
-       x2="291.16"
-       y2="263.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8898" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="285.15,364.04 276.89,370.98 276.53,370.66 "
-       id="polygon8900" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="285.83,364.75 277.45,371.8 277.21,371.37 "
-       id="polygon8902" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="434.75,311.59 436.41,311.58 436.67,311.43 "
-       id="polygon8904" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="285.52,364.36 277.21,371.37 276.89,370.98 "
-       id="polygon8906" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="436.97,314.47 435.05,314.63 436.89,314.45 "
-       id="polygon8908" />
-    <line
-       x1="315.51999"
-       y1="347.31"
-       x2="317.76999"
-       y2="343.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8910" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="163.8,380.96 152.12,385.59 151.94,385.38 "
-       id="polygon8912" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="164.85,383.61 152.96,388.26 152.98,388.04 "
-       id="polygon8914" />
-    <line
-       x1="325.73001"
-       y1="294.63"
-       x2="324.82001"
-       y2="290.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8916" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="433.96,312.51 435.83,312.72 435.88,312.36 "
-       id="polygon8918" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="433.94,313.46 435.98,313.66 435.86,313.31 "
-       id="polygon8920" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="163.98,381.16 152.32,385.91 152.12,385.59 "
-       id="polygon8922" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="164.81,383.27 152.98,388.04 152.95,387.7 "
-       id="polygon8924" />
-    <line
-       x1="170.77"
-       y1="307.85999"
-       x2="168.84"
-       y2="305.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8926" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="164.18,381.49 152.52,386.33 152.32,385.91 "
-       id="polygon8928" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="164.71,382.84 152.95,387.7 152.85,387.27 "
-       id="polygon8930" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="164.38,381.91 152.7,386.8 152.52,386.33 "
-       id="polygon8932" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="164.57,382.37 152.85,387.27 152.7,386.8 "
-       id="polygon8934" />
-    <line
-       x1="317.76999"
-       y1="343.92001"
-       x2="319.79999"
-       y2="340.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8936" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="275.69,370.69 275.51,370.42 275.31,370.61 "
-       id="polygon8938" />
-    <line
-       x1="314.79999"
-       y1="183.99001"
-       x2="313.84"
-       y2="181"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8940" />
-    <line
-       x1="326.42001"
-       y1="298.82001"
-       x2="325.73001"
-       y2="294.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8942" />
-    <line
-       x1="291.16"
-       y1="263.13"
-       x2="293.92001"
-       y2="261.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8944" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="288.7,326.59 279.88,329.2 279.53,329.16 "
-       id="polygon8946" />
-    <line
-       x1="211.57001"
-       y1="296.10999"
-       x2="211.16"
-       y2="299.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8948" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="441.03,325.38 431.95,324.24 432.24,324.5 "
-       id="polygon8950" />
-    <polygon
-       style="opacity:1;fill:#0000d3"
-       points="277.6,372.6 277.36,372.43 277.34,372.13 "
-       id="polygon8952" />
-    <line
-       x1="319.79999"
-       y1="340.34"
-       x2="321.59"
-       y2="336.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8954" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="289.05,326.63 280.23,329.38 279.88,329.2 "
-       id="polygon8956" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="289.93,329.34 280.5,332.19 280.76,331.92 "
-       id="polygon8958" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.82,325.01 431.73,323.86 431.95,324.24 "
-       id="polygon8960" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="139.84,389.84 151.72,385.41 151.69,385.63 "
-       id="polygon8962" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="289.4,326.8 280.55,329.7 280.23,329.38 "
-       id="polygon8964" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.71,324.05 431.62,322.91 431.62,323.41 "
-       id="polygon8966" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="290.09,328.96 280.76,331.92 280.93,331.54 "
-       id="polygon8968" />
-    <line
-       x1="326.88"
-       y1="303.07001"
-       x2="326.42001"
-       y2="298.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8970" />
-    <line
-       x1="219.75999"
-       y1="185.2"
-       x2="219.12"
-       y2="187.00999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8972" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="252.85,275.85 262.89,278.91 262.65,278.7 "
-       id="polygon8974" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="289.71,327.12 280.79,330.11 280.55,329.7 "
-       id="polygon8976" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="290.16,328.5 280.93,331.54 281,331.08 "
-       id="polygon8978" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="289.96,327.54 280.95,330.59 280.79,330.11 "
-       id="polygon8980" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="290.11,328.01 281,331.08 280.95,330.59 "
-       id="polygon8982" />
-    <line
-       x1="321.59"
-       y1="336.57999"
-       x2="323.13"
-       y2="332.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8984" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="251.77,278.71 261.8,281.77 262.12,281.68 "
-       id="polygon8986" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="253,276.18 263.04,279.24 262.89,278.91 "
-       id="polygon8988" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="438.53,325.68 441.4,325.46 438.49,325.19 "
-       id="polygon8990" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="252.08,278.62 262.12,281.68 262.43,281.44 "
-       id="polygon8992" />
-    <line
-       x1="327.09"
-       y1="307.38"
-       x2="326.88"
-       y2="303.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line8994" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="253.06,276.61 263.1,279.67 263.04,279.24 "
-       id="polygon8996" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="443.41,310.89 436.34,311.63 436.41,311.58 "
-       id="polygon8998" />
-    <line
-       x1="168.84"
-       y1="305.51999"
-       x2="167.16"
-       y2="303.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9000" />
-    <line
-       x1="323.13"
-       y1="332.67999"
-       x2="324.42001"
-       y2="328.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9002" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="141.08,392.7 152.96,388.26 152.98,388.04 "
-       id="polygon9004" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="252.39,278.38 262.43,281.44 262.71,281.08 "
-       id="polygon9006" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="253.02,277.09 263.06,280.15 263.1,279.67 "
-       id="polygon9008" />
-    <polygon
-       style="opacity:1;fill:#004f71"
-       points="436.13,311.87 443.07,311.08 436.34,311.63 "
-       id="polygon9010" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="252.67,278.02 262.71,281.08 262.93,280.63 "
-       id="polygon9012" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="252.89,277.57 262.93,280.63 263.06,280.15 "
-       id="polygon9014" />
-    <polygon
-       style="opacity:1;fill:#004f71"
-       points="443.07,311.08 436.06,311.94 436.13,311.87 "
-       id="polygon9016" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="140.24,390.03 152.12,385.59 151.94,385.38 "
-       id="polygon9018" />
-    <line
-       x1="327.06"
-       y1="311.69"
-       x2="327.09"
-       y2="307.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9020" />
-    <line
-       x1="293.92001"
-       y1="261.47"
-       x2="296.57999"
-       y2="259.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9022" />
-    <line
-       x1="324.42001"
-       y1="328.64001"
-       x2="325.45999"
-       y2="324.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9024" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="438.92,326.5 442.01,326.61 441.8,326.44 "
-       id="polygon9026" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="141.1,392.48 152.98,388.04 152.95,387.7 "
-       id="polygon9028" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.76,313.21 436.28,314.12 436.22,314.04 "
-       id="polygon9030" />
-    <line
-       x1="315.64001"
-       y1="187.17"
-       x2="314.79999"
-       y2="183.99001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9032" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="436.22,314.04 442.76,313.21 436.02,313.75 "
-       id="polygon9034" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="435.83,312.72 442.63,311.82 435.88,312.36 "
-       id="polygon9036" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="140.43,390.36 152.32,385.92 152.12,385.59 "
-       id="polygon9038" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.63,311.82 435.82,312.83 435.83,312.72 "
-       id="polygon9040" />
-    <line
-       x1="326.78"
-       y1="316"
-       x2="327.06"
-       y2="311.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9042" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.6,312.77 436.02,313.75 435.98,313.66 "
-       id="polygon9044" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="435.98,313.66 442.6,312.77 435.86,313.31 "
-       id="polygon9046" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="435.85,313.2 442.55,312.29 435.82,312.83 "
-       id="polygon9048" />
-    <line
-       x1="325.45999"
-       y1="324.5"
-       x2="326.25"
-       y2="320.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9050" />
-    <line
-       x1="326.25"
-       y1="320.28"
-       x2="326.78"
-       y2="316"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9052" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="141.06,392.14 152.95,387.7 152.85,387.27 "
-       id="polygon9054" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="140.64,390.77 152.52,386.33 152.32,385.92 "
-       id="polygon9056" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="140.96,391.71 152.85,387.27 152.7,386.8 "
-       id="polygon9058" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="140.82,391.24 152.7,386.8 152.52,386.33 "
-       id="polygon9060" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="268.86,379.54 277.5,372.89 277.6,372.6 "
-       id="polygon9062" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="432.24,321.67 441.67,322.62 441.32,322.81 "
-       id="polygon9064" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="432.24,324.5 441.03,325.38 441.32,325.64 "
-       id="polygon9066" />
-    <line
-       x1="212.2"
-       y1="293.39001"
-       x2="211.57001"
-       y2="296.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9068" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="268.95,379.24 277.6,372.6 277.58,372.22 "
-       id="polygon9070" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="267.51,377.09 276.16,370.45 275.8,370.37 "
-       id="polygon9072" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="151.94,385.38 140.24,390.03 140.06,389.82 "
-       id="polygon9074" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="152.98,388.04 141.08,392.7 141.1,392.48 "
-       id="polygon9076" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="431.95,322 441.32,322.81 441.03,323.14 "
-       id="polygon9078" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.95,324.24 440.82,325.01 441.03,325.38 "
-       id="polygon9080" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="268.93,378.86 277.58,372.22 277.45,371.8 "
-       id="polygon9082" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="267.88,377.3 276.53,370.66 276.16,370.45 "
-       id="polygon9084" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.73,322.43 441.03,323.14 440.82,323.57 "
-       id="polygon9086" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.73,323.86 440.71,324.55 440.82,325.01 "
-       id="polygon9088" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="152.12,385.59 140.43,390.36 140.24,390.03 "
-       id="polygon9090" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="268.8,378.44 277.45,371.8 277.21,371.37 "
-       id="polygon9092" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="268.25,377.62 276.89,370.98 276.53,370.66 "
-       id="polygon9094" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="152.95,387.7 141.1,392.48 141.06,392.14 "
-       id="polygon9096" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.62,322.91 440.82,323.57 440.71,324.05 "
-       id="polygon9098" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="431.62,323.41 440.71,324.05 440.71,324.55 "
-       id="polygon9100" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="268.56,378.01 277.21,371.37 276.89,370.98 "
-       id="polygon9102" />
-    <line
-       x1="296.57999"
-       y1="259.54001"
-       x2="299.10999"
-       y2="257.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9104" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="262.89,278.91 253,276.18 252.85,275.85 "
-       id="polygon9106" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="152.32,385.92 140.64,390.77 140.43,390.36 "
-       id="polygon9108" />
-    <line
-       x1="167.16"
-       y1="303.10999"
-       x2="165.71001"
-       y2="300.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9110" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="152.85,387.27 141.06,392.14 140.96,391.71 "
-       id="polygon9112" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="152.52,386.33 140.82,391.24 140.64,390.77 "
-       id="polygon9114" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="152.7,386.8 140.96,391.71 140.82,391.24 "
-       id="polygon9116" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="263.04,279.24 253.06,276.61 253,276.18 "
-       id="polygon9118" />
-    <line
-       x1="220.52"
-       y1="183.64999"
-       x2="219.75999"
-       y2="185.2"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9120" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="262.43,281.44 252.08,278.62 252.39,278.38 "
-       id="polygon9122" />
-    <line
-       x1="316.35999"
-       y1="190.52"
-       x2="315.64001"
-       y2="187.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9124" />
-    <polygon
-       style="opacity:1;fill:#004f71"
-       points="442.8,311.4 436.06,311.94 443.07,311.08 "
-       id="polygon9126" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="263.1,279.67 253.02,277.09 253.06,276.61 "
-       id="polygon9128" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="262.71,281.08 252.39,278.38 252.67,278.02 "
-       id="polygon9130" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="263.06,280.15 252.89,277.57 253.02,277.09 "
-       id="polygon9132" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="262.93,280.63 252.67,278.02 252.89,277.57 "
-       id="polygon9134" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.63,311.82 435.88,312.36 442.8,311.4 "
-       id="polygon9136" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="443.02,313.58 436.28,314.12 442.76,313.21 "
-       id="polygon9138" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.55,312.29 435.82,312.83 442.63,311.82 "
-       id="polygon9140" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.76,313.21 436.02,313.75 442.6,312.77 "
-       id="polygon9142" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.6,312.77 435.86,313.31 442.55,312.29 "
-       id="polygon9144" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="447.69,326.32 442.11,326.69 442.01,326.61 "
-       id="polygon9146" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="127.94,394.3 139.84,389.84 139.81,390.07 "
-       id="polygon9148" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="442.01,326.61 447.69,326.32 441.8,326.44 "
-       id="polygon9150" />
-    <line
-       x1="299.10999"
-       y1="257.35999"
-       x2="301.51001"
-       y2="254.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9152" />
-    <polygon
-       style="opacity:1;fill:#001eae"
-       points="441.44,325.34 441.34,325.64 441.68,325.75 "
-       id="polygon9154" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="275.8,370.37 267.51,377.09 267.16,377.01 "
-       id="polygon9156" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="251.59,278.36 251.25,278.45 251.48,278.66 "
-       id="polygon9158" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="270.02,331.88 279.21,329.29 278.95,329.55 "
-       id="polygon9160" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="277.58,372.22 268.95,379.24 268.93,378.86 "
-       id="polygon9162" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="276.16,370.45 267.88,377.3 267.51,377.09 "
-       id="polygon9164" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="129.18,397.16 141.08,392.7 141.11,392.48 "
-       id="polygon9166" />
-    <line
-       x1="213.05"
-       y1="290.87"
-       x2="212.2"
-       y2="293.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9168" />
-    <line
-       x1="316.95001"
-       y1="194.02"
-       x2="316.35999"
-       y2="190.52"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9170" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="277.45,371.8 268.93,378.86 268.8,378.44 "
-       id="polygon9172" />
-    <line
-       x1="165.71001"
-       y1="300.67001"
-       x2="164.53"
-       y2="298.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9174" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="276.53,370.66 268.25,377.62 267.88,377.3 "
-       id="polygon9176" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="128.34,394.48 140.23,390.03 140.06,389.82 "
-       id="polygon9178" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="277.21,371.37 268.8,378.44 268.56,378.01 "
-       id="polygon9180" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="276.89,370.98 268.56,378.01 268.25,377.62 "
-       id="polygon9182" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="129.2,396.93 141.11,392.48 141.06,392.14 "
-       id="polygon9184" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="128.53,394.81 140.43,390.36 140.23,390.03 "
-       id="polygon9186" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="129.16,396.59 141.06,392.14 140.96,391.71 "
-       id="polygon9188" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="128.73,395.23 140.63,390.77 140.43,390.36 "
-       id="polygon9190" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="448,326.57 442.11,326.69 447.69,326.32 "
-       id="polygon9192" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="278.95,329.55 270.02,331.88 269.77,332.14 "
-       id="polygon9194" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="271.05,331.96 280.23,329.38 279.88,329.2 "
-       id="polygon9196" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="129.06,396.16 140.96,391.71 140.82,391.24 "
-       id="polygon9198" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="128.91,395.7 140.82,391.24 140.63,390.77 "
-       id="polygon9200" />
-    <line
-       x1="301.51001"
-       y1="254.94"
-       x2="303.76999"
-       y2="252.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9202" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="271.58,334.51 280.76,331.92 280.93,331.54 "
-       id="polygon9204" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="271.36,332.28 280.55,329.69 280.23,329.38 "
-       id="polygon9206" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="271.75,334.13 280.93,331.54 281,331.08 "
-       id="polygon9208" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="271.61,332.7 280.79,330.11 280.55,329.69 "
-       id="polygon9210" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="271.81,333.67 281,331.08 280.95,330.59 "
-       id="polygon9212" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="271.76,333.18 280.95,330.59 280.79,330.11 "
-       id="polygon9214" />
-    <line
-       x1="221.39999"
-       y1="182.35001"
-       x2="220.52"
-       y2="183.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9216" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="441.04,325.38 445.03,325.66 440.82,325.01 "
-       id="polygon9218" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="140.06,389.82 128.34,394.48 128.16,394.28 "
-       id="polygon9220" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.81,323.57 444.99,323.82 441.02,323.14 "
-       id="polygon9222" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="141.11,392.48 129.18,397.16 129.2,396.93 "
-       id="polygon9224" />
-    <line
-       x1="317.39001"
-       y1="197.64999"
-       x2="316.95001"
-       y2="194.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9226" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.71,324.55 444.79,324.77 440.7,324.05 "
-       id="polygon9228" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="140.23,390.03 128.53,394.81 128.34,394.48 "
-       id="polygon9230" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="141.06,392.14 129.2,396.93 129.16,396.59 "
-       id="polygon9232" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="140.43,390.36 128.73,395.23 128.53,394.81 "
-       id="polygon9234" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="140.96,391.71 129.16,396.59 129.06,396.16 "
-       id="polygon9236" />
-    <line
-       x1="303.76999"
-       y1="252.28"
-       x2="305.89001"
-       y2="249.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9238" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="140.63,390.77 128.91,395.7 128.73,395.23 "
-       id="polygon9240" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="140.82,391.24 129.06,396.16 128.91,395.7 "
-       id="polygon9242" />
-    <line
-       x1="164.53"
-       y1="298.20999"
-       x2="163.60001"
-       y2="295.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9244" />
-    <polygon
-       style="opacity:1;fill:#005880"
-       points="443.34,313.82 448.63,313.21 443.01,313.57 "
-       id="polygon9246" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="445.13,325.83 441.04,325.38 445.03,325.66 "
-       id="polygon9248" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="445.11,323.59 441.02,323.14 445.24,323.44 "
-       id="polygon9250" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="242.79,272.78 252.85,275.85 252.62,275.64 "
-       id="polygon9252" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="441.02,323.14 444.99,323.82 445.11,323.59 "
-       id="polygon9254" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.62,311.82 448.23,311.1 442.8,311.4 "
-       id="polygon9256" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.82,325.01 445.03,325.66 444.91,325.45 "
-       id="polygon9258" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="443.01,313.57 448.35,312.89 442.75,313.21 "
-       id="polygon9260" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="440.7,324.05 444.79,324.77 444.79,324.5 "
-       id="polygon9262" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.6,312.77 448.06,312.01 442.55,312.29 "
-       id="polygon9264" />
-    <line
-       x1="214.12"
-       y1="288.57999"
-       x2="213.05"
-       y2="290.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9266" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="242.95,273.11 253,276.18 252.85,275.85 "
-       id="polygon9268" />
-    <line
-       x1="317.69"
-       y1="201.39"
-       x2="317.39001"
-       y2="197.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9270" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="280.18,332.31 270.65,334.87 271,334.9 "
-       id="polygon9272" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="116.02,398.78 127.94,394.3 127.91,394.52 "
-       id="polygon9274" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="242.02,275.55 252.08,278.62 252.39,278.38 "
-       id="polygon9276" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="243.01,273.54 253.07,276.61 253,276.18 "
-       id="polygon9278" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="242.34,275.31 252.39,278.38 252.68,278.02 "
-       id="polygon9280" />
-    <line
-       x1="305.89001"
-       y1="249.41"
-       x2="307.84"
-       y2="246.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9282" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="242.97,274.02 253.03,277.09 253.07,276.61 "
-       id="polygon9284" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="242.61,274.95 252.68,278.02 252.89,277.57 "
-       id="polygon9286" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="242.83,274.51 252.89,277.57 253.03,277.09 "
-       id="polygon9288" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="279.88,329.2 271.05,331.96 270.7,331.79 "
-       id="polygon9290" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="280.76,331.92 271.32,334.78 271.58,334.51 "
-       id="polygon9292" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="280.23,329.38 271.36,332.28 271.05,331.96 "
-       id="polygon9294" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="280.93,331.54 271.58,334.51 271.75,334.13 "
-       id="polygon9296" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="443.41,310.89 448.79,310.51 448.91,310.44 "
-       id="polygon9298" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="280.55,329.69 271.61,332.7 271.36,332.28 "
-       id="polygon9300" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="281,331.08 271.75,334.13 271.81,333.67 "
-       id="polygon9302" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="449.21,313.48 443.71,313.93 448.97,313.41 "
-       id="polygon9304" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="280.79,330.11 271.76,333.18 271.61,332.7 "
-       id="polygon9306" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="280.95,330.59 271.81,333.67 271.76,333.18 "
-       id="polygon9308" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="117.27,401.64 129.18,397.16 129.2,396.93 "
-       id="polygon9310" />
-    <line
-       x1="317.82999"
-       y1="205.22"
-       x2="317.69"
-       y2="201.39"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9312" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="443.34,313.82 448.97,313.41 448.84,313.38 "
-       id="polygon9314" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="116.41,398.96 128.33,394.48 128.16,394.28 "
-       id="polygon9316" />
-    <polygon
-       style="opacity:1;fill:#005880"
-       points="448.84,313.38 443.34,313.82 448.63,313.21 "
-       id="polygon9318" />
-    <line
-       x1="222.38"
-       y1="181.33"
-       x2="221.39999"
-       y2="182.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9320" />
-    <line
-       x1="307.84"
-       y1="246.34"
-       x2="309.63"
-       y2="243.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9322" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="117.29,401.42 129.2,396.93 129.16,396.59 "
-       id="polygon9324" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="260.19,386.21 268.86,379.54 268.95,379.24 "
-       id="polygon9326" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="258.48,383.68 267.16,377.01 266.87,377.07 "
-       id="polygon9328" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="448.12,311.36 442.62,311.82 448.23,311.1 "
-       id="polygon9330" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="116.61,399.29 128.53,394.81 128.33,394.48 "
-       id="polygon9332" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.62,311.82 448.09,311.54 448.12,311.36 "
-       id="polygon9334" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="117.25,401.07 129.16,396.59 129.06,396.17 "
-       id="polygon9336" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="442.6,312.77 448.15,312.48 448.09,312.32 "
-       id="polygon9338" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="448.09,312.32 442.6,312.77 448.06,312.01 "
-       id="polygon9340" />
-    <line
-       x1="163.60001"
-       y1="295.75"
-       x2="162.94"
-       y2="293.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9342" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="260.29,385.91 268.95,379.24 268.93,378.86 "
-       id="polygon9344" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="251.48,278.66 241.18,275.39 241.42,275.59 "
-       id="polygon9346" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="258.84,383.76 267.51,377.09 267.16,377.01 "
-       id="polygon9348" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="116.81,399.71 128.73,395.23 128.53,394.81 "
-       id="polygon9350" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="117.14,400.65 129.06,396.17 128.91,395.7 "
-       id="polygon9352" />
-    <polygon
-       style="opacity:1;fill:#004687"
-       points="456.82,323.24 448.12,323.59 447.78,323.79 "
-       id="polygon9354" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="450.76,323.61 445.4,323.26 445.55,323.17 "
-       id="polygon9356" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="117,400.18 128.91,395.7 128.73,395.23 "
-       id="polygon9358" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="252.62,275.64 242.79,272.78 242.56,272.57 "
-       id="polygon9360" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="260.26,385.53 268.93,378.86 268.8,378.44 "
-       id="polygon9362" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="259.21,383.96 267.88,377.3 267.51,377.09 "
-       id="polygon9364" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="456.49,323.43 447.78,323.79 447.51,324.11 "
-       id="polygon9366" />
-    <polygon
-       style="opacity:1;fill:#004687"
-       points="447.78,323.79 456.82,323.24 456.49,323.43 "
-       id="polygon9368" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="445.24,323.44 450.42,323.8 445.4,323.26 "
-       id="polygon9370" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="260.13,385.11 268.8,378.44 268.56,378.01 "
-       id="polygon9372" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="450.42,323.8 445.11,323.59 445.24,323.44 "
-       id="polygon9374" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="259.57,384.29 268.25,377.62 267.88,377.3 "
-       id="polygon9376" />
-    <line
-       x1="317.79999"
-       y1="209.11"
-       x2="317.82999"
-       y2="205.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9378" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="259.89,384.68 268.56,378.01 268.25,377.62 "
-       id="polygon9380" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="252.85,275.85 242.95,273.11 242.79,272.78 "
-       id="polygon9382" />
-    <line
-       x1="309.63"
-       y1="243.09"
-       x2="311.25"
-       y2="239.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9384" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="456.4,325.96 447.69,326.31 448.01,326.56 "
-       id="polygon9386" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.82,325.54 444.91,325.45 444.86,325.25 "
-       id="polygon9388" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="128.16,394.28 116.41,398.96 116.24,398.76 "
-       id="polygon9390" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.92,324.56 444.79,324.5 444.84,324.28 "
-       id="polygon9392" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="253,276.18 243.01,273.54 242.95,273.11 "
-       id="polygon9394" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="252.39,278.38 242.02,275.55 242.34,275.31 "
-       id="polygon9396" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="253.07,276.61 242.97,274.02 243.01,273.54 "
-       id="polygon9398" />
-    <line
-       x1="215.38"
-       y1="286.51999"
-       x2="214.12"
-       y2="288.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9400" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="128.33,394.48 116.61,399.29 116.41,398.96 "
-       id="polygon9402" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="252.68,278.02 242.34,275.31 242.61,274.95 "
-       id="polygon9404" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="253.03,277.09 242.83,274.51 242.97,274.02 "
-       id="polygon9406" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="252.89,277.57 242.61,274.95 242.83,274.51 "
-       id="polygon9408" />
-    <line
-       x1="317.60999"
-       y1="213.03999"
-       x2="317.79999"
-       y2="209.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9410" />
-    <line
-       x1="311.25"
-       y1="239.67999"
-       x2="312.70001"
-       y2="236.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9412" />
-    <line
-       x1="116.88"
-       y1="399.34"
-       x2="116.88"
-       y2="399.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9414" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="128.53,394.81 116.81,399.71 116.61,399.29 "
-       id="polygon9416" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="128.73,395.23 117,400.18 116.81,399.71 "
-       id="polygon9418" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="128.91,395.7 117.14,400.65 117,400.18 "
-       id="polygon9420" />
-    <line
-       x1="233.09"
-       y1="345.31"
-       x2="235.17"
-       y2="345.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9422" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="450.42,323.8 445.4,323.26 450.76,323.61 "
-       id="polygon9424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="271.58,334.51 271.19,334.49 271.4,334.28 "
-       id="polygon9426" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="450.45,326.63 445.42,326.08 450.15,326.38 "
-       id="polygon9428" />
-    <line
-       x1="317.23999"
-       y1="216.98"
-       x2="317.60999"
-       y2="213.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9430" />
-    <line
-       x1="312.70001"
-       y1="236.13"
-       x2="313.97"
-       y2="232.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9432" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="266.87,377.07 258.48,383.68 258.19,383.73 "
-       id="polygon9434" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.92,324.56 444.9,324.01 450.13,324.13 "
-       id="polygon9436" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.93,326 444.91,325.45 449.82,325.54 "
-       id="polygon9438" />
-    <polygon
-       style="opacity:1;fill:#007486"
-       points="452.04,310.18 448.57,310.63 448.79,310.51 "
-       id="polygon9440" />
-    <line
-       x1="313.97"
-       y1="232.45"
-       x2="315.06"
-       y2="228.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9442" />
-    <line
-       x1="316.69"
-       y1="220.91"
-       x2="317.23999"
-       y2="216.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9444" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.82,325.54 444.79,325 449.81,325.04 "
-       id="polygon9446" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="268.95,379.24 260.19,386.21 260.29,385.91 "
-       id="polygon9448" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="448.47,310.75 451.7,310.37 448.57,310.63 "
-       id="polygon9450" />
-    <line
-       x1="162.94"
-       y1="293.29999"
-       x2="162.53999"
-       y2="290.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9452" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="267.16,377.01 258.84,383.76 258.48,383.68 "
-       id="polygon9454" />
-    <line
-       x1="315.06"
-       y1="228.67"
-       x2="315.95999"
-       y2="224.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9456" />
-    <line
-       x1="315.95999"
-       y1="224.82001"
-       x2="316.69"
-       y2="220.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9458" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="268.93,378.86 260.29,385.91 260.26,385.53 "
-       id="polygon9460" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="267.51,377.09 259.21,383.96 258.84,383.76 "
-       id="polygon9462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="241.53,275.29 241.42,275.59 241.71,275.65 "
-       id="polygon9464" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="268.8,378.44 260.26,385.53 260.13,385.11 "
-       id="polygon9466" />
-    <line
-       x1="223.45"
-       y1="180.59"
-       x2="222.38"
-       y2="181.33"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9468" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.24,311.11 448.05,311.84 448.09,311.54 "
-       id="polygon9470" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="267.88,377.3 259.57,384.29 259.21,383.96 "
-       id="polygon9472" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.22,312.06 448.25,312.76 448.15,312.48 "
-       id="polygon9474" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="268.56,378.01 260.13,385.11 259.89,384.68 "
-       id="polygon9476" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="268.25,377.62 259.89,384.68 259.57,384.29 "
-       id="polygon9478" />
-    <polygon
-       style="opacity:1;fill:#003cad"
-       points="450.55,326.34 450.46,326.63 450.8,326.74 "
-       id="polygon9480" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="451.42,310.69 448.3,310.95 451.7,310.37 "
-       id="polygon9482" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="260.81,334.48 270.02,331.88 269.77,332.14 "
-       id="polygon9484" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.17,311.58 448.05,311.84 451.24,311.11 "
-       id="polygon9486" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.38,312.5 448.25,312.76 451.22,312.06 "
-       id="polygon9488" />
-    <line
-       x1="216.83"
-       y1="284.73001"
-       x2="215.38"
-       y2="286.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9490" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="262.11,337.38 271.32,334.78 271.58,334.51 "
-       id="polygon9492" />
-    <line
-       x1="235.17"
-       y1="345.38"
-       x2="237.38"
-       y2="345.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9494" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="261.84,334.57 271.05,331.96 270.7,331.79 "
-       id="polygon9496" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="262.37,337.12 271.58,334.51 271.75,334.13 "
-       id="polygon9498" />
-    <line
-       x1="162.53999"
-       y1="290.88"
-       x2="162.41"
-       y2="288.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9500" />
-    <polygon
-       style="opacity:1;fill:#008ca2"
-       points="451.57,312.34 451.37,312.5 451.63,312.87 "
-       id="polygon9502" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="262.15,334.88 271.36,332.28 271.05,331.96 "
-       id="polygon9504" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="262.54,336.74 271.75,334.13 271.81,333.67 "
-       id="polygon9506" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="262.4,335.3 271.61,332.7 271.36,332.28 "
-       id="polygon9508" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="262.6,336.28 271.81,333.67 271.77,333.18 "
-       id="polygon9510" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="262.55,335.78 271.77,333.18 271.61,332.7 "
-       id="polygon9512" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="232.86,270.04 242.95,273.11 242.79,272.78 "
-       id="polygon9514" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="231.94,272.48 242.02,275.55 242.34,275.31 "
-       id="polygon9516" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="232.93,270.46 243.01,273.54 242.95,273.11 "
-       id="polygon9518" />
-    <polygon
-       style="opacity:1;fill:#0056a5"
-       points="456.49,323.43 456.62,323.7 456.4,323.96 "
-       id="polygon9520" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="456.16,325.12 464.6,324.18 456.12,324.64 "
-       id="polygon9522" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="459.54,324.65 450.41,323.8 450.12,324.13 "
-       id="polygon9524" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="232.25,272.24 242.34,275.31 242.62,274.95 "
-       id="polygon9526" />
-    <line
-       x1="119.95"
-       y1="385.07999"
-       x2="116.88"
-       y2="399.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9528" />
-    <line
-       x1="224.60001"
-       y1="180.13"
-       x2="223.45"
-       y2="180.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9530" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="232.89,270.95 242.97,274.02 243.01,273.54 "
-       id="polygon9532" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="232.53,271.88 242.62,274.95 242.83,274.51 "
-       id="polygon9534" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="232.75,271.43 242.83,274.51 242.97,274.02 "
-       id="polygon9536" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.64,324.66 456.16,325.13 464.6,324.18 "
-       id="polygon9538" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="459.25,324.98 450.12,324.13 449.91,324.56 "
-       id="polygon9540" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="459.07,326.85 449.94,326 450.16,326.38 "
-       id="polygon9542" />
-    <line
-       x1="122.75"
-       y1="405.09"
-       x2="116.67"
-       y2="400.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9544" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="458.94,325.89 449.81,325.05 449.82,325.54 "
-       id="polygon9546" />
-    <line
-       x1="218.46001"
-       y1="283.20001"
-       x2="216.83"
-       y2="284.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9548" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="251.49,392.89 260.19,386.21 260.29,385.91 "
-       id="polygon9550" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="249.79,390.36 258.48,383.68 258.19,383.73 "
-       id="polygon9552" />
-    <line
-       x1="162.41"
-       y1="288.51999"
-       x2="162.53999"
-       y2="286.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9554" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="251.59,392.6 260.29,385.91 260.26,385.53 "
-       id="polygon9556" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="250.14,390.44 258.84,383.76 258.48,383.68 "
-       id="polygon9558" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="460.28,309.71 451.7,310.37 451.42,310.69 "
-       id="polygon9560" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="242.56,272.57 232.71,269.7 232.48,269.5 "
-       id="polygon9562" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="460.21,312.22 451.63,312.87 451.95,313.12 "
-       id="polygon9564" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="251.57,392.22 260.26,385.53 260.13,385.11 "
-       id="polygon9566" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="250.51,390.65 259.21,383.96 258.84,383.76 "
-       id="polygon9568" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="460,310.03 451.42,310.69 451.24,311.1 "
-       id="polygon9570" />
-    <line
-       x1="237.38"
-       y1="345.73001"
-       x2="239.67999"
-       y2="346.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9572" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="271.05,331.96 262.15,334.88 261.84,334.57 "
-       id="polygon9574" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="271.75,334.13 262.37,337.12 262.54,336.74 "
-       id="polygon9576" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="459.95,311.85 451.37,312.5 451.63,312.87 "
-       id="polygon9578" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="251.43,391.79 260.13,385.11 259.89,384.68 "
-       id="polygon9580" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="250.88,390.97 259.57,384.29 259.21,383.96 "
-       id="polygon9582" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="459.82,310.45 451.24,311.1 451.16,311.57 "
-       id="polygon9584" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="251.19,391.36 259.89,384.68 259.57,384.29 "
-       id="polygon9586" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="271.36,332.28 262.4,335.3 262.15,334.88 "
-       id="polygon9588" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="459.75,310.92 451.16,311.57 451.21,312.06 "
-       id="polygon9590" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="242.79,272.78 232.86,270.04 232.71,269.7 "
-       id="polygon9592" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="271.81,333.67 262.54,336.74 262.6,336.28 "
-       id="polygon9594" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="271.61,332.7 262.55,335.78 262.4,335.3 "
-       id="polygon9596" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="271.77,333.18 262.6,336.28 262.55,335.78 "
-       id="polygon9598" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="242.02,275.55 231.63,272.57 231.94,272.48 "
-       id="polygon9600" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="242.95,273.11 232.93,270.46 232.86,270.04 "
-       id="polygon9602" />
-    <polygon
-       style="opacity:1;fill:#00369f"
-       points="450.8,326.74 459.59,327.48 459.93,327.59 "
-       id="polygon9604" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="242.34,275.31 231.94,272.48 232.25,272.24 "
-       id="polygon9606" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="243.01,273.54 232.89,270.95 232.93,270.46 "
-       id="polygon9608" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="450.41,323.8 459.88,324.45 459.54,324.65 "
-       id="polygon9610" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="242.62,274.95 232.25,272.24 232.53,271.88 "
-       id="polygon9612" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="242.97,274.02 232.75,271.43 232.89,270.95 "
-       id="polygon9614" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="242.83,274.51 232.53,271.88 232.75,271.43 "
-       id="polygon9616" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="450.12,324.13 459.54,324.65 459.25,324.98 "
-       id="polygon9618" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="450.16,326.38 459.07,326.85 459.29,327.23 "
-       id="polygon9620" />
-    <polygon
-       style="opacity:1;fill:#004f72"
-       points="456.38,323.75 465.13,322.96 456.64,323.43 "
-       id="polygon9622" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.94,326 458.95,326.39 459.07,326.85 "
-       id="polygon9624" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="449.81,325.05 459.04,325.41 458.94,325.89 "
-       id="polygon9626" />
-    <line
-       x1="122.52"
-       y1="383.63"
-       x2="123.18"
-       y2="383.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9628" />
-    <line
-       x1="123.18"
-       y1="383.31"
-       x2="123.85"
-       y2="383.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9630" />
-    <line
-       x1="121.21"
-       y1="384.31"
-       x2="121.86"
-       y2="383.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9632" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="456.2,324.16 464.86,323.28 456.37,323.75 "
-       id="polygon9634" />
-    <line
-       x1="120.57"
-       y1="384.67999"
-       x2="121.21"
-       y2="384.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9636" />
-    <line
-       x1="124.51"
-       y1="382.75"
-       x2="125.18"
-       y2="382.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9638" />
-    <line
-       x1="125.18"
-       y1="382.5"
-       x2="125.83"
-       y2="382.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9640" />
-    <line
-       x1="126.48"
-       y1="382.06"
-       x2="127.13"
-       y2="381.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9642" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="260.29,385.91 251.49,392.89 251.59,392.6 "
-       id="polygon9644" />
-    <line
-       x1="162.53999"
-       y1="286.23001"
-       x2="162.94"
-       y2="284.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9646" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="260.26,385.53 251.59,392.6 251.57,392.22 "
-       id="polygon9648" />
-    <line
-       x1="128.61"
-       y1="341.66"
-       x2="130.08"
-       y2="341.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9650" />
-    <line
-       x1="127.12"
-       y1="341.79001"
-       x2="128.61"
-       y2="341.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9652" />
-    <line
-       x1="130.08"
-       y1="341.57999"
-       x2="131.53999"
-       y2="341.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9654" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="258.84,383.76 250.51,390.65 250.14,390.44 "
-       id="polygon9656" />
-    <line
-       x1="122.59"
-       y1="405.34"
-       x2="122.75"
-       y2="405.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9658" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="231.45,272.21 231.34,272.52 231.63,272.57 "
-       id="polygon9660" />
-    <line
-       x1="125.63"
-       y1="341.98001"
-       x2="127.12"
-       y2="341.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9662" />
-    <line
-       x1="220.24001"
-       y1="281.95001"
-       x2="218.46001"
-       y2="283.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9664" />
-    <line
-       x1="127.75"
-       y1="381.69"
-       x2="128.37"
-       y2="381.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9666" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="260.13,385.11 251.57,392.22 251.43,391.79 "
-       id="polygon9668" />
-    <line
-       x1="131.53999"
-       y1="341.56"
-       x2="132.98"
-       y2="341.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9670" />
-    <polygon
-       style="opacity:1;fill:#00879c"
-       points="452.32,313.23 460.54,312.47 460.91,312.58 "
-       id="polygon9672" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="259.21,383.96 250.88,390.97 250.51,390.65 "
-       id="polygon9674" />
-    <line
-       x1="124.16"
-       y1="342.23001"
-       x2="125.63"
-       y2="341.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9676" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="259.89,384.68 251.43,391.79 251.19,391.36 "
-       id="polygon9678" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="259.57,384.29 251.19,391.36 250.88,390.97 "
-       id="polygon9680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="261.48,334.39 261.76,334.84 261.48,334.7 "
-       id="polygon9682" />
-    <line
-       x1="128.37"
-       y1="381.54001"
-       x2="128.97"
-       y2="381.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9684" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="451.42,310.69 460.28,309.71 460,310.03 "
-       id="polygon9686" />
-    <line
-       x1="132.98"
-       y1="341.59"
-       x2="134.39"
-       y2="341.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9688" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="451.95,313.12 460.21,312.22 460.54,312.47 "
-       id="polygon9690" />
-    <line
-       x1="122.7"
-       y1="342.54999"
-       x2="124.16"
-       y2="342.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9692" />
-    <line
-       x1="239.67999"
-       y1="346.38"
-       x2="242.07001"
-       y2="347.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9694" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.24,311.1 460,310.03 459.82,310.45 "
-       id="polygon9696" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.63,312.87 459.95,311.85 460.21,312.22 "
-       id="polygon9698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="262.32,336.58 262.54,336.74 262.6,336.28 "
-       id="polygon9700" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.16,311.57 459.82,310.45 459.75,310.92 "
-       id="polygon9702" />
-    <line
-       x1="134.39"
-       y1="341.67001"
-       x2="135.75"
-       y2="341.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9704" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.37,312.5 459.79,311.4 459.95,311.85 "
-       id="polygon9706" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="451.21,312.06 459.75,310.92 459.79,311.4 "
-       id="polygon9708" />
-    <line
-       x1="121.26"
-       y1="342.91"
-       x2="122.7"
-       y2="342.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9710" />
-    <line
-       x1="129.55"
-       y1="381.26001"
-       x2="130.11"
-       y2="381.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9712" />
-    <line
-       x1="135.75"
-       y1="341.79999"
-       x2="137.06"
-       y2="341.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9714" />
-    <line
-       x1="119.86"
-       y1="343.34"
-       x2="121.26"
-       y2="342.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9716" />
-    <line
-       x1="130.11"
-       y1="381.14999"
-       x2="130.64"
-       y2="381.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="249.67,390.68 249.49,390.41 249.29,390.59 "
-       id="polygon9720" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.66,323.7 469.54,323.16 464.85,323.28 "
-       id="polygon9722" />
-    <polygon
-       style="opacity:1;fill:#004f72"
-       points="464.86,323.28 456.37,323.75 465.13,322.96 "
-       id="polygon9724" />
-    <line
-       x1="137.06"
-       y1="341.97"
-       x2="138.32001"
-       y2="342.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9726" />
-    <line
-       x1="118.51"
-       y1="343.84"
-       x2="119.86"
-       y2="343.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9728" />
-    <line
-       x1="121.78"
-       y1="406.29999"
-       x2="121.94"
-       y2="406.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9730" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.68,323.7 456.19,324.17 464.86,323.28 "
-       id="polygon9732" />
-    <line
-       x1="131.14999"
-       y1="380.95001"
-       x2="131.63"
-       y2="380.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9734" />
-    <line
-       x1="162.94"
-       y1="284.04001"
-       x2="163.60001"
-       y2="281.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9736" />
-    <line
-       x1="138.32001"
-       y1="342.17999"
-       x2="139.50999"
-       y2="342.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9738" />
-    <line
-       x1="117.2"
-       y1="344.38"
-       x2="118.51"
-       y2="343.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9740" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="251.57,337.09 260.81,334.48 260.55,334.74 "
-       id="polygon9742" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="231.34,272.52 220.99,269.23 221.23,269.43 "
-       id="polygon9744" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="221.52,269.49 231.63,272.57 231.94,272.48 "
-       id="polygon9746" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="222.76,266.95 232.87,270.04 232.71,269.7 "
-       id="polygon9748" />
-    <line
-       x1="139.50999"
-       y1="342.42999"
-       x2="140.63"
-       y2="342.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9750" />
-    <line
-       x1="115.96"
-       y1="344.98999"
-       x2="117.2"
-       y2="344.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9752" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="221.83,269.39 231.94,272.48 232.25,272.24 "
-       id="polygon9754" />
-    <line
-       x1="222.17"
-       y1="280.98999"
-       x2="220.24001"
-       y2="281.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9756" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="222.82,267.38 232.93,270.46 232.87,270.04 "
-       id="polygon9758" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="252.88,340 262.11,337.38 262.37,337.12 "
-       id="polygon9760" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="252.6,337.18 261.84,334.57 261.48,334.39 "
-       id="polygon9762" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="222.14,269.15 232.25,272.24 232.54,271.88 "
-       id="polygon9764" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="222.78,267.86 232.89,270.95 232.93,270.46 "
-       id="polygon9766" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="253.13,339.74 262.37,337.12 262.54,336.74 "
-       id="polygon9768" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="222.43,268.79 232.54,271.88 232.75,271.43 "
-       id="polygon9770" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="222.64,268.35 232.75,271.43 232.89,270.95 "
-       id="polygon9772" />
-    <line
-       x1="242.07001"
-       y1="347.32001"
-       x2="244.50999"
-       y2="348.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9774" />
-    <line
-       x1="132.50999"
-       y1="380.73999"
-       x2="132.89999"
-       y2="380.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9776" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="252.91,337.5 262.15,334.88 261.84,334.57 "
-       id="polygon9778" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="253.3,339.36 262.54,336.74 262.6,336.28 "
-       id="polygon9780" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="253.16,337.92 262.4,335.3 262.15,334.88 "
-       id="polygon9782" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="253.36,338.89 262.6,336.28 262.55,335.78 "
-       id="polygon9784" />
-    <line
-       x1="140.63"
-       y1="342.70999"
-       x2="141.67999"
-       y2="343.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9786" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="253.32,338.4 262.55,335.78 262.4,335.3 "
-       id="polygon9788" />
-    <line
-       x1="114.77"
-       y1="345.64999"
-       x2="115.96"
-       y2="344.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9790" />
-    <polygon
-       style="opacity:1;fill:#002b7f"
-       points="468.45,327.95 459.29,327.23 459.59,327.48 "
-       id="polygon9792" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.39,325.7 459.24,324.98 459.04,325.41 "
-       id="polygon9794" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.22,327.57 459.07,326.85 459.29,327.23 "
-       id="polygon9796" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.19,326.13 459.04,325.41 458.93,325.89 "
-       id="polygon9798" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.1,327.12 458.95,326.39 459.07,326.85 "
-       id="polygon9800" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.09,326.62 458.93,325.89 458.95,326.39 "
-       id="polygon9802" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="242.77,399.6 251.49,392.89 251.59,392.6 "
-       id="polygon9804" />
-    <line
-       x1="113.66"
-       y1="346.37"
-       x2="114.77"
-       y2="345.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9806" />
-    <line
-       x1="163.60001"
-       y1="281.94"
-       x2="164.5"
-       y2="279.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9808" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="242.86,399.31 251.59,392.6 251.57,392.22 "
-       id="polygon9810" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="241.41,397.15 250.14,390.44 249.79,390.36 "
-       id="polygon9812" />
-    <line
-       x1="143.16"
-       y1="412.95001"
-       x2="143.21001"
-       y2="412.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9814" />
-    <line
-       x1="143.05"
-       y1="413.88"
-       x2="143.16"
-       y2="412.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9816" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="232.48,269.5 222.6,266.61 222.37,266.41 "
-       id="polygon9818" />
-    <line
-       x1="143.21001"
-       y1="412.01999"
-       x2="143.21001"
-       y2="411.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9820" />
-    <line
-       x1="142.89"
-       y1="414.79001"
-       x2="143.05"
-       y2="413.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9822" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="242.84,398.93 251.57,392.22 251.43,391.79 "
-       id="polygon9824" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="241.79,397.36 250.51,390.65 250.14,390.44 "
-       id="polygon9826" />
-    <line
-       x1="143.21001"
-       y1="411.10001"
-       x2="143.14"
-       y2="410.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9828" />
-    <line
-       x1="120.78"
-       y1="406.67999"
-       x2="120.87"
-       y2="406.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9830" />
-    <line
-       x1="142.67999"
-       y1="415.70001"
-       x2="142.89"
-       y2="414.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9832" />
-    <line
-       x1="143.14"
-       y1="410.19"
-       x2="143.02"
-       y2="409.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9834" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="242.7,398.5 251.43,391.79 251.19,391.36 "
-       id="polygon9836" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="242.15,397.68 250.88,390.97 250.51,390.65 "
-       id="polygon9838" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="242.46,398.07 251.19,391.36 250.88,390.97 "
-       id="polygon9840" />
-    <line
-       x1="142.41"
-       y1="416.60001"
-       x2="142.67999"
-       y2="415.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9842" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="232.71,269.7 222.76,266.95 222.6,266.61 "
-       id="polygon9844" />
-    <line
-       x1="112.63"
-       y1="347.14001"
-       x2="113.66"
-       y2="346.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9846" />
-    <line
-       x1="224.53999"
-       y1="181.34"
-       x2="224.53"
-       y2="180.89"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9848" />
-    <line
-       x1="142.10001"
-       y1="417.47"
-       x2="142.41"
-       y2="416.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9850" />
-    <line
-       x1="142.64"
-       y1="343.37"
-       x2="143.50999"
-       y2="343.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9852" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="232.87,270.04 222.82,267.38 222.76,266.95 "
-       id="polygon9854" />
-    <line
-       x1="141.75"
-       y1="418.32001"
-       x2="142.10001"
-       y2="417.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9856" />
-    <line
-       x1="133.88"
-       y1="380.54999"
-       x2="134.13"
-       y2="380.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9858" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="232.25,272.24 221.83,269.39 222.14,269.15 "
-       id="polygon9860" />
-    <line
-       x1="142.60001"
-       y1="407.57001"
-       x2="142.3"
-       y2="406.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9862" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="232.93,270.46 222.78,267.86 222.82,267.38 "
-       id="polygon9864" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="232.54,271.88 222.14,269.15 222.43,268.79 "
-       id="polygon9866" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="232.89,270.95 222.64,268.35 222.78,267.86 "
-       id="polygon9868" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="232.75,271.43 222.43,268.79 222.64,268.35 "
-       id="polygon9870" />
-    <line
-       x1="142.3"
-       y1="406.73999"
-       x2="141.95"
-       y2="405.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9872" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="261.48,334.39 252.6,337.18 252.25,337 "
-       id="polygon9874" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="262.37,337.12 252.88,340 253.13,339.74 "
-       id="polygon9876" />
-    <polygon
-       style="opacity:1;fill:#008781"
-       points="460.7,309.68 469.17,308.99 461.03,309.5 "
-       id="polygon9878" />
-    <line
-       x1="244.50999"
-       y1="348.54999"
-       x2="247"
-       y2="350.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9880" />
-    <line
-       x1="224.23"
-       y1="280.32999"
-       x2="222.17"
-       y2="280.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9882" />
-    <line
-       x1="140.91"
-       y1="419.92999"
-       x2="141.35001"
-       y2="419.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9884" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="261.84,334.57 252.91,337.5 252.6,337.18 "
-       id="polygon9886" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.64,324.66 469.39,324.08 464.59,324.18 "
-       id="polygon9888" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="262.54,336.74 253.13,339.74 253.3,339.36 "
-       id="polygon9890" />
-    <polygon
-       style="opacity:1;fill:#009c95"
-       points="461.27,312.55 469.06,311.95 460.92,312.45 "
-       id="polygon9892" />
-    <polygon
-       style="opacity:1;fill:#00726c"
-       points="460.41,309.99 468.82,309.18 460.68,309.69 "
-       id="polygon9894" />
-    <line
-       x1="143.50999"
-       y1="343.73001"
-       x2="144.28999"
-       y2="344.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9896" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="262.15,334.88 253.16,337.92 252.91,337.5 "
-       id="polygon9898" />
-    <polygon
-       style="opacity:1;fill:#00726c"
-       points="468.82,309.18 460.4,310 460.41,309.99 "
-       id="polygon9900" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="262.6,336.28 253.3,339.36 253.36,338.89 "
-       id="polygon9902" />
-    <line
-       x1="141.53999"
-       y1="405.20001"
-       x2="141.07001"
-       y2="404.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9904" />
-    <line
-       x1="140.44"
-       y1="420.67001"
-       x2="140.91"
-       y2="419.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9906" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="262.4,335.3 253.32,338.4 253.16,337.92 "
-       id="polygon9908" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="262.55,335.78 253.36,338.89 253.32,338.4 "
-       id="polygon9910" />
-    <polygon
-       style="opacity:1;fill:#0074a8"
-       points="470.61,322.41 465.83,322.73 470.81,322.47 "
-       id="polygon9912" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="459.24,324.98 468.68,325.38 468.39,325.7 "
-       id="polygon9914" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="249.49,390.41 241.06,397.06 240.77,397.12 "
-       id="polygon9916" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="460.57,312.18 468.48,311.32 460.33,311.82 "
-       id="polygon9918" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="460.14,310.87 468.36,309.91 460.21,310.42 "
-       id="polygon9920" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="459.29,327.23 468.22,327.57 468.45,327.95 "
-       id="polygon9922" />
-    <line
-       x1="141.07001"
-       y1="404.48001"
-       x2="140.55"
-       y2="403.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9924" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="460.32,311.8 468.32,310.88 460.18,311.38 "
-       id="polygon9926" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="460.18,311.36 468.28,310.39 460.14,310.89 "
-       id="polygon9928" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="459.04,325.41 468.39,325.7 468.19,326.13 "
-       id="polygon9930" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="459.07,326.85 468.1,327.12 468.22,327.57 "
-       id="polygon9932" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="458.93,325.89 468.19,326.13 468.09,326.62 "
-       id="polygon9934" />
-    <line
-       x1="110.83"
-       y1="348.82001"
-       x2="111.69"
-       y2="347.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9936" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="458.95,326.39 468.09,326.62 468.1,327.12 "
-       id="polygon9938" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="249.79,390.36 241.41,397.15 241.06,397.06 "
-       id="polygon9940" />
-    <line
-       x1="164.5"
-       y1="279.97"
-       x2="165.66"
-       y2="278.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9942" />
-    <line
-       x1="140.55"
-       y1="403.82001"
-       x2="139.98"
-       y2="403.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9944" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="251.57,392.22 242.86,399.31 242.84,398.93 "
-       id="polygon9946" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="250.14,390.44 241.79,397.36 241.41,397.15 "
-       id="polygon9948" />
-    <line
-       x1="139.41"
-       y1="422.04001"
-       x2="139.94"
-       y2="421.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9950" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="251.43,391.79 242.84,398.93 242.7,398.5 "
-       id="polygon9952" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="250.51,390.65 242.15,397.68 241.79,397.36 "
-       id="polygon9954" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="251.19,391.36 242.7,398.5 242.46,398.07 "
-       id="polygon9956" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="250.88,390.97 242.46,398.07 242.15,397.68 "
-       id="polygon9958" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="469.44,323.39 464.66,323.7 469.54,323.16 "
-       id="polygon9960" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.66,323.7 469.41,323.6 469.44,323.39 "
-       id="polygon9962" />
-    <line
-       x1="138.86"
-       y1="422.64999"
-       x2="139.41"
-       y2="422.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9964" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="464.64,324.66 469.48,324.55 469.41,324.35 "
-       id="polygon9966" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="469.41,324.35 464.64,324.66 469.39,324.08 "
-       id="polygon9968" />
-    <line
-       x1="139.37"
-       y1="402.63"
-       x2="138.71001"
-       y2="402.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9970" />
-    <line
-       x1="110.07"
-       y1="349.73999"
-       x2="110.83"
-       y2="348.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9972" />
-    <line
-       x1="120.64"
-       y1="405.79999"
-       x2="120.59"
-       y2="405.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9974" />
-    <line
-       x1="247"
-       y1="350.06"
-       x2="247.60001"
-       y2="351.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9976" />
-    <line
-       x1="138.71001"
-       y1="402.12"
-       x2="138.00999"
-       y2="401.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9978" />
-    <line
-       x1="138.28999"
-       y1="423.20999"
-       x2="138.86"
-       y2="422.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9980" />
-    <line
-       x1="144.97"
-       y1="344.5"
-       x2="145.55"
-       y2="344.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9982" />
-    <line
-       x1="134.77"
-       y1="380.32001"
-       x2="134.83"
-       y2="380.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9984" />
-    <line
-       x1="224.55"
-       y1="182.53"
-       x2="224.53999"
-       y2="181.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9986" />
-    <line
-       x1="137.7"
-       y1="423.72"
-       x2="138.28999"
-       y2="423.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9988" />
-    <line
-       x1="109.4"
-       y1="350.69"
-       x2="110.07"
-       y2="349.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9990" />
-    <polygon
-       style="opacity:1;fill:#008781"
-       points="468.82,309.18 460.68,309.69 469.17,308.99 "
-       id="polygon9992" />
-    <line
-       x1="137.27"
-       y1="401.26999"
-       x2="136.5"
-       y2="400.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9994" />
-    <line
-       x1="226.39"
-       y1="279.98001"
-       x2="224.23"
-       y2="280.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line9996" />
-    <polygon
-       style="opacity:1;fill:#00726c"
-       points="468.54,309.5 460.4,310 468.82,309.18 "
-       id="polygon9998" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.73,311.69 460.59,312.19 468.48,311.32 "
-       id="polygon10000" />
-    <line
-       x1="165.66"
-       y1="278.14001"
-       x2="167.05"
-       y2="276.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10002" />
-    <line
-       x1="136.5"
-       y1="400.92999"
-       x2="135.69"
-       y2="400.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10004" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.28,310.39 460.14,310.89 468.36,309.91 "
-       id="polygon10006" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.48,311.32 460.33,311.82 468.32,310.88 "
-       id="polygon10008" />
-    <line
-       x1="145.55"
-       y1="344.89001"
-       x2="146.03"
-       y2="345.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10010" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.32,310.88 460.18,311.38 468.28,310.39 "
-       id="polygon10012" />
-    <line
-       x1="247.60001"
-       y1="351.12"
-       x2="248.2"
-       y2="352.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10014" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.23,327.57 468.9,327.59 468.1,327.12 "
-       id="polygon10016" />
-    <line
-       x1="108.84"
-       y1="351.67999"
-       x2="109.4"
-       y2="350.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10018" />
-    <polygon
-       style="opacity:1;fill:#007587"
-       points="470.09,322.54 474.05,322.21 470.24,322.46 "
-       id="polygon10020" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="468.09,326.62 468.78,326.63 468.18,326.13 "
-       id="polygon10022" />
-    <line
-       x1="135.69"
-       y1="400.66"
-       x2="134.86"
-       y2="400.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10024" />
-    <line
-       x1="121.32"
-       y1="404.59"
-       x2="121.16"
-       y2="404.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10026" />
-    <line
-       x1="136.50999"
-       y1="424.54999"
-       x2="137.11"
-       y2="424.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10028" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="211.38,266.4 221.52,269.49 221.83,269.39 "
-       id="polygon10030" />
-    <polygon
-       style="opacity:1;fill:#006272"
-       points="469.78,322.79 473.71,322.4 469.9,322.65 "
-       id="polygon10032" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="212.62,263.85 222.76,266.95 222.6,266.61 "
-       id="polygon10034" />
-    <line
-       x1="224.55"
-       y1="183.27"
-       x2="224.55"
-       y2="182.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10036" />
-    <line
-       x1="134.86"
-       y1="400.45001"
-       x2="134.00999"
-       y2="400.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10038" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="211.69,266.3 221.83,269.39 222.14,269.15 "
-       id="polygon10040" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="212.68,264.28 222.82,267.38 222.76,266.95 "
-       id="polygon10042" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="469.41,323.6 473.26,323.14 469.44,323.39 "
-       id="polygon10044" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="212,266.06 222.14,269.15 222.43,268.79 "
-       id="polygon10046" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.26,323.14 469.37,323.86 469.41,323.6 "
-       id="polygon10048" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="212.64,264.76 222.78,267.86 222.82,267.38 "
-       id="polygon10050" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.23,324.1 469.57,324.8 469.48,324.55 "
-       id="polygon10052" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="469.48,324.55 473.23,324.1 469.41,324.35 "
-       id="polygon10054" />
-    <line
-       x1="134.00999"
-       y1="400.29999"
-       x2="133.14"
-       y2="400.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10056" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="212.29,265.7 222.43,268.79 222.64,268.35 "
-       id="polygon10058" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="212.5,265.25 222.64,268.35 222.78,267.86 "
-       id="polygon10060" />
-    <line
-       x1="108.38"
-       y1="352.70001"
-       x2="108.84"
-       y2="351.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10062" />
-    <line
-       x1="122.19"
-       y1="403.66"
-       x2="121.95"
-       y2="403.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10064" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="231.81,404.02 240.56,397.3 240.47,397.59 "
-       id="polygon10066" />
-    <line
-       x1="133.14"
-       y1="400.22"
-       x2="132.25"
-       y2="400.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10068" />
-    <line
-       x1="248.2"
-       y1="352.28"
-       x2="248.78999"
-       y2="353.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10070" />
-    <polygon
-       style="opacity:1;fill:#007587"
-       points="473.71,322.4 469.9,322.65 474.05,322.21 "
-       id="polygon10072" />
-    <line
-       x1="135.31"
-       y1="425.14001"
-       x2="135.91"
-       y2="424.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10074" />
-    <polygon
-       style="opacity:1;fill:#006272"
-       points="473.44,322.72 469.63,322.97 473.71,322.4 "
-       id="polygon10076" />
-    <line
-       x1="226.86"
-       y1="280.14999"
-       x2="226.39"
-       y2="279.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10078" />
-    <polygon
-       style="opacity:1;fill:#00b78e"
-       points="459.58,299.38 465.01,306.1 459.77,299.39 "
-       id="polygon10080" />
-    <polygon
-       style="opacity:1;fill:#00824f"
-       points="460.09,297.07 461.02,297.65 460.72,297.8 "
-       id="polygon10082" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="458.96,298.12 459.77,298.59 459.59,298.85 "
-       id="polygon10084" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="234.02,406.33 242.77,399.6 242.86,399.31 "
-       id="polygon10086" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="232.3,403.79 241.06,397.06 240.77,397.12 "
-       id="polygon10088" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="243.61,342.63 252.88,340 253.13,339.74 "
-       id="polygon10090" />
-    <line
-       x1="131.36"
-       y1="400.25"
-       x2="130.46001"
-       y2="400.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10092" />
-    <line
-       x1="123.36"
-       y1="402.75"
-       x2="123.04"
-       y2="402.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10094" />
-    <line
-       x1="108.03"
-       y1="353.75"
-       x2="108.38"
-       y2="352.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10096" />
-    <line
-       x1="224.55"
-       y1="184.11"
-       x2="224.55"
-       y2="183.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10098" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.19,323.61 469.37,323.86 473.26,323.14 "
-       id="polygon10100" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.39,324.55 469.57,324.8 473.23,324.1 "
-       id="polygon10102" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="243.33,339.81 252.6,337.18 252.25,337 "
-       id="polygon10104" />
-    <line
-       x1="167.05"
-       y1="276.45999"
-       x2="168.67"
-       y2="274.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10106" />
-    <line
-       x1="146.39"
-       y1="345.69"
-       x2="146.64999"
-       y2="346.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10108" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="234.11,406.04 242.86,399.31 242.84,398.93 "
-       id="polygon10110" />
-    <line
-       x1="134.73"
-       y1="425.35001"
-       x2="135.31"
-       y2="425.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10112" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="232.66,403.88 241.41,397.15 241.06,397.06 "
-       id="polygon10114" />
-    <line
-       x1="130.46001"
-       y1="400.35999"
-       x2="129.56"
-       y2="400.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10116" />
-    <polygon
-       style="opacity:1;fill:#0058aa"
-       points="478.55,325.75 470.06,325.18 478.91,325.86 "
-       id="polygon10118" />
-    <polygon
-       style="opacity:1;fill:#00488a"
-       points="469.38,325.41 478.19,325.79 469.7,325.22 "
-       id="polygon10120" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="243.65,340.13 252.91,337.5 252.6,337.18 "
-       id="polygon10122" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="469.77,328.36 477.94,328.82 469.44,328.25 "
-       id="polygon10124" />
-    <polygon
-       style="opacity:1;fill:#00488a"
-       points="478.19,325.79 469.36,325.42 469.38,325.41 "
-       id="polygon10126" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="244.04,341.98 253.3,339.36 253.36,338.89 "
-       id="polygon10128" />
-    <line
-       x1="124.42"
-       y1="402.13"
-       x2="124.05"
-       y2="402.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10130" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="222.37,266.41 212.46,263.52 212.23,263.31 "
-       id="polygon10132" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="243.89,340.55 253.16,337.92 252.91,337.5 "
-       id="polygon10134" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="234.09,405.66 242.84,398.93 242.7,398.5 "
-       id="polygon10136" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="233.03,404.09 241.79,397.36 241.41,397.15 "
-       id="polygon10138" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="244.1,341.52 253.36,338.89 253.32,338.4 "
-       id="polygon10140" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="244.05,341.03 253.32,338.4 253.16,337.92 "
-       id="polygon10142" />
-    <line
-       x1="129.56"
-       y1="400.53"
-       x2="128.66"
-       y2="400.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10144" />
-    <polygon
-       style="opacity:1;fill:#003d75"
-       points="469.09,325.73 477.85,325.99 469.36,325.42 "
-       id="polygon10146" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="469.42,328.23 477.63,328.57 469.14,328 "
-       id="polygon10148" />
-    <polygon
-       style="opacity:1;fill:#009877"
-       points="461.29,297.58 466.73,304.29 461.04,297.65 "
-       id="polygon10150" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="233.95,405.23 242.7,398.5 242.46,398.07 "
-       id="polygon10152" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="233.4,404.41 242.15,397.68 241.79,397.36 "
-       id="polygon10154" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="233.71,404.8 242.46,398.07 242.15,397.68 "
-       id="polygon10156" />
-    <line
-       x1="125.6"
-       y1="401.60999"
-       x2="125.2"
-       y2="401.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10158" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="222.6,266.61 212.62,263.85 212.46,263.52 "
-       id="polygon10160" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="459.57,298.87 465,305.59 459.48,299.09 "
-       id="polygon10162" />
-    <line
-       x1="128.66"
-       y1="400.76001"
-       x2="127.78"
-       y2="401.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10164" />
-    <line
-       x1="134.89"
-       y1="312.41"
-       x2="136.38"
-       y2="312.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10166" />
-    <line
-       x1="126.45"
-       y1="401.34"
-       x2="126.02"
-       y2="401.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10168" />
-    <line
-       x1="133.39999"
-       y1="312.54001"
-       x2="134.89"
-       y2="312.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10170" />
-    <line
-       x1="248.78999"
-       y1="353.53"
-       x2="249.37"
-       y2="354.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10172" />
-    <polygon
-       style="opacity:1;fill:#008265"
-       points="461.02,297.65 466.45,304.37 460.72,297.8 "
-       id="polygon10174" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="221.83,269.39 211.38,266.4 211.69,266.3 "
-       id="polygon10176" />
-    <line
-       x1="136.38"
-       y1="312.32999"
-       x2="137.84"
-       y2="312.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10178" />
-    <line
-       x1="127.78"
-       y1="401.04999"
-       x2="127.33"
-       y2="401.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10180" />
-    <line
-       x1="131.91"
-       y1="312.73001"
-       x2="133.39999"
-       y2="312.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10182" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="468.78,326.63 477.36,326.75 468.87,326.18 "
-       id="polygon10184" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="468.9,327.59 477.28,327.73 468.79,327.16 "
-       id="polygon10186" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="459.77,298.59 465.2,305.31 459.59,298.85 "
-       id="polygon10188" />
-    <line
-       x1="107.79"
-       y1="354.82999"
-       x2="108.03"
-       y2="353.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10190" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="222.76,266.95 212.68,264.28 212.62,263.85 "
-       id="polygon10192" />
-    <line
-       x1="137.84"
-       y1="312.29999"
-       x2="139.28"
-       y2="312.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10194" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="460.7,297.81 466.13,304.53 460.38,298.02 "
-       id="polygon10196" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="465.2,305.31 459.79,298.57 459.77,298.59 "
-       id="polygon10198" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="460.04,298.3 465.47,305.02 459.79,298.57 "
-       id="polygon10200" />
-    <line
-       x1="130.42999"
-       y1="312.98001"
-       x2="131.91"
-       y2="312.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10202" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="222.14,269.15 211.69,266.3 212,266.06 "
-       id="polygon10204" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="460.36,298.04 465.79,304.75 460.06,298.29 "
-       id="polygon10206" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="222.82,267.38 212.64,264.76 212.68,264.28 "
-       id="polygon10208" />
-    <line
-       x1="139.28"
-       y1="312.34"
-       x2="140.69"
-       y2="312.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10210" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="222.43,268.79 212,266.06 212.29,265.7 "
-       id="polygon10212" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="222.78,267.86 212.5,265.25 212.64,264.76 "
-       id="polygon10214" />
-    <polygon
-       style="opacity:1;fill:#00aa85"
-       points="466.88,304.3 461.31,297.58 466.73,304.29 "
-       id="polygon10216" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="222.64,268.35 212.29,265.7 212.5,265.25 "
-       id="polygon10218" />
-    <line
-       x1="128.97"
-       y1="313.29001"
-       x2="130.42999"
-       y2="312.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10220" />
-    <line
-       x1="227.36"
-       y1="280.42999"
-       x2="226.86"
-       y2="280.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10222" />
-    <line
-       x1="140.69"
-       y1="312.41"
-       x2="142.05"
-       y2="312.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10224" />
-    <line
-       x1="224.53"
-       y1="185.03999"
-       x2="224.55"
-       y2="184.11"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10226" />
-    <line
-       x1="133.60001"
-       y1="425.56"
-       x2="134.14999"
-       y2="425.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10228" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="464.98,305.64 459.48,299.09 464.9,305.82 "
-       id="polygon10230" />
-    <line
-       x1="127.53"
-       y1="313.66"
-       x2="128.97"
-       y2="313.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10232" />
-    <line
-       x1="134.23"
-       y1="379.60999"
-       x2="134"
-       y2="379.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10234" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="465.16,305.37 459.59,298.85 465,305.59 "
-       id="polygon10236" />
-    <polygon
-       style="opacity:1;fill:#008265"
-       points="466.38,304.41 460.72,297.8 466.13,304.53 "
-       id="polygon10238" />
-    <line
-       x1="107.66"
-       y1="355.92999"
-       x2="107.79"
-       y2="354.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10240" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="466.05,304.58 460.38,298.02 465.79,304.75 "
-       id="polygon10242" />
-    <line
-       x1="142.05"
-       y1="312.54001"
-       x2="143.38"
-       y2="312.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10244" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.31,310.87 472.44,310.44 468.27,310.38 "
-       id="polygon10246" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="460.06,298.29 465.79,304.75 465.72,304.82 "
-       id="polygon10248" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="465.72,304.82 460.06,298.29 465.47,305.02 "
-       id="polygon10250" />
-    <line
-       x1="126.13"
-       y1="314.09"
-       x2="127.53"
-       y2="313.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10252" />
-    <line
-       x1="249.37"
-       y1="354.87"
-       x2="249.92999"
-       y2="356.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10254" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="242.86,399.31 234.02,406.33 234.11,406.04 "
-       id="polygon10256" />
-    <line
-       x1="168.67"
-       y1="274.95999"
-       x2="170.5"
-       y2="273.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10258" />
-    <line
-       x1="143.38"
-       y1="312.70999"
-       x2="144.63"
-       y2="312.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10260" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="241.06,397.06 232.66,403.88 232.3,403.79 "
-       id="polygon10262" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="251.89,336.97 242.98,339.63 242.63,339.59 "
-       id="polygon10264" />
-    <line
-       x1="124.77"
-       y1="314.57001"
-       x2="126.13"
-       y2="314.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10266" />
-    <line
-       x1="146.8"
-       y1="346.45999"
-       x2="146.84"
-       y2="346.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10268" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="242.84,398.93 234.11,406.04 234.09,405.66 "
-       id="polygon10270" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="241.41,397.15 233.03,404.09 232.66,403.88 "
-       id="polygon10272" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="252.25,337 243.33,339.81 242.98,339.63 "
-       id="polygon10274" />
-    <line
-       x1="107.64"
-       y1="357.04001"
-       x2="107.66"
-       y2="355.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10276" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="253.13,339.74 243.61,342.63 243.87,342.37 "
-       id="polygon10278" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="466.66,308 464.98,305.64 464.9,305.82 "
-       id="polygon10280" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="242.7,398.5 234.09,405.66 233.95,405.23 "
-       id="polygon10282" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="477.94,328.82 469.44,328.25 477.63,328.57 "
-       id="polygon10284" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="241.79,397.36 233.4,404.41 233.03,404.09 "
-       id="polygon10286" />
-    <polygon
-       style="opacity:1;fill:#00827c"
-       points="466.45,304.37 468.21,306.54 466.38,304.41 "
-       id="polygon10288" />
-    <line
-       x1="132.56"
-       y1="425.51001"
-       x2="133.07001"
-       y2="425.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10290" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="242.46,398.07 233.95,405.23 233.71,404.8 "
-       id="polygon10292" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="252.6,337.18 243.65,340.13 243.33,339.81 "
-       id="polygon10294" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="242.15,397.68 233.71,404.8 233.4,404.41 "
-       id="polygon10296" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="253.3,339.36 243.87,342.37 244.04,341.98 "
-       id="polygon10298" />
-    <line
-       x1="224.49001"
-       y1="186.06"
-       x2="224.53"
-       y2="185.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10300" />
-    <line
-       x1="144.63"
-       y1="312.92001"
-       x2="145.83"
-       y2="313.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10302" />
-    <polygon
-       style="opacity:1;fill:#009891"
-       points="468.48,306.46 466.66,304.31 468.21,306.54 "
-       id="polygon10304" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="477.63,328.57 469.14,328 477.41,328.19 "
-       id="polygon10306" />
-    <polygon
-       style="opacity:1;fill:#00aba3"
-       points="471.94,310.29 472.62,311.09 471.96,310.36 "
-       id="polygon10308" />
-    <polygon
-       style="opacity:1;fill:#009991"
-       points="472.08,310.69 472.41,311.08 472.08,310.72 "
-       id="polygon10310" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="468.55,309.49 472.59,309.51 472.69,309.29 "
-       id="polygon10312" />
-    <line
-       x1="123.46"
-       y1="315.12"
-       x2="124.77"
-       y2="314.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10314" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="252.91,337.5 243.89,340.55 243.65,340.13 "
-       id="polygon10316" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="253.36,338.89 244.04,341.98 244.1,341.52 "
-       id="polygon10318" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="466.76,307.76 464.98,305.64 466.66,308 "
-       id="polygon10320" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="466.96,307.48 465.41,305.09 465.2,305.31 "
-       id="polygon10322" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="477.36,326.75 468.87,326.18 477.57,326.32 "
-       id="polygon10324" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.55,306.93 466.05,304.58 465.79,304.75 "
-       id="polygon10326" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="253.16,337.92 244.05,341.03 243.89,340.55 "
-       id="polygon10328" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="253.32,338.4 244.1,341.52 244.05,341.03 "
-       id="polygon10330" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="477.28,327.73 468.79,327.16 477.27,327.23 "
-       id="polygon10332" />
-    <line
-       x1="249.92999"
-       y1="356.29001"
-       x2="250.47"
-       y2="357.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10334" />
-    <line
-       x1="133.45"
-       y1="379.13"
-       x2="133.13"
-       y2="378.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10336" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.89,306.7 466.05,304.58 467.55,306.93 "
-       id="polygon10338" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.23,307.2 465.41,305.09 466.96,307.48 "
-       id="polygon10340" />
-    <polygon
-       style="opacity:1;fill:#006272"
-       points="482.25,321.8 473.71,322.4 473.44,322.72 "
-       id="polygon10342" />
-    <line
-       x1="107.74"
-       y1="358.17001"
-       x2="107.64"
-       y2="357.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10344" />
-    <polygon
-       style="opacity:1;fill:#00aba3"
-       points="468.68,306.45 471.94,310.29 468.48,306.43 "
-       id="polygon10346" />
-    <polygon
-       style="opacity:1;fill:#00aba3"
-       points="468.48,306.43 471.94,310.29 471.96,310.36 "
-       id="polygon10348" />
-    <line
-       x1="145.83"
-       y1="313.16"
-       x2="146.96001"
-       y2="313.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10350" />
-    <line
-       x1="122.21"
-       y1="315.72"
-       x2="123.46"
-       y2="315.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10352" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="481.98,322.12 473.44,322.72 473.25,323.14 "
-       id="polygon10354" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="481.93,323.95 473.38,324.54 473.64,324.91 "
-       id="polygon10356" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="481.8,322.54 473.25,323.14 473.18,323.61 "
-       id="polygon10358" />
-    <polygon
-       style="opacity:1;fill:#009991"
-       points="468.48,306.43 472.08,310.69 468.2,306.51 "
-       id="polygon10360" />
-    <polygon
-       style="opacity:1;fill:#009991"
-       points="468.2,306.51 472.08,310.69 472.08,310.72 "
-       id="polygon10362" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="481.77,323.5 473.23,324.1 473.38,324.54 "
-       id="polygon10364" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="481.73,323.01 473.18,323.61 473.23,324.1 "
-       id="polygon10366" />
-    <line
-       x1="131.64"
-       y1="425.20999"
-       x2="132.08"
-       y2="425.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10368" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="466.95,307.48 470.89,312.13 466.76,307.76 "
-       id="polygon10370" />
-    <line
-       x1="146.96001"
-       y1="313.44"
-       x2="148"
-       y2="313.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10372" />
-    <line
-       x1="121.03"
-       y1="316.38"
-       x2="122.21"
-       y2="315.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10374" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.88,306.67 471.82,311.32 467.54,306.9 "
-       id="polygon10376" />
-    <line
-       x1="224.42999"
-       y1="187.17"
-       x2="224.49001"
-       y2="186.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10378" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.54,306.9 471.48,311.55 467.22,307.18 "
-       id="polygon10380" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="466.66,308.2 470.59,312.66 470.59,312.77 "
-       id="polygon10382" />
-    <line
-       x1="107.94"
-       y1="359.29999"
-       x2="107.74"
-       y2="358.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10384" />
-    <line
-       x1="250.47"
-       y1="357.79999"
-       x2="250.99001"
-       y2="359.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10386" />
-    <line
-       x1="170.5"
-       y1="273.63"
-       x2="172.53"
-       y2="272.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10388" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="470.63,312.56 466.66,308.01 470.59,312.66 "
-       id="polygon10390" />
-    <line
-       x1="228.39999"
-       y1="281.32001"
-       x2="227.87"
-       y2="280.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10392" />
-    <polygon
-       style="opacity:1;fill:#00837c"
-       points="467.88,306.67 472.14,311.16 471.95,311.25 "
-       id="polygon10394" />
-    <line
-       x1="132.41"
-       y1="378.48999"
-       x2="132.00999"
-       y2="378.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10396" />
-    <polygon
-       style="opacity:1;fill:#00837c"
-       points="471.95,311.25 467.88,306.67 471.82,311.32 "
-       id="polygon10398" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="471,312 466.95,307.48 470.89,312.13 "
-       id="polygon10400" />
-    <line
-       x1="119.92"
-       y1="317.10001"
-       x2="121.03"
-       y2="316.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10402" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="471.61,311.46 467.54,306.9 471.48,311.55 "
-       id="polygon10404" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="467.22,307.18 471.48,311.55 471.29,311.71 "
-       id="polygon10406" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="471.29,311.71 467.22,307.18 471.16,311.83 "
-       id="polygon10408" />
-    <line
-       x1="148"
-       y1="313.75"
-       x2="148.97"
-       y2="314.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10410" />
-    <polygon
-       style="opacity:1;fill:#0000f1"
-       points="243.48,342.34 243.29,342.76 243.61,342.63 "
-       id="polygon10412" />
-    <line
-       x1="108.25"
-       y1="360.44"
-       x2="107.94"
-       y2="359.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10414" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="201.2,263.29 211.38,266.4 211.69,266.3 "
-       id="polygon10416" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="202.45,260.74 212.62,263.85 212.46,263.52 "
-       id="polygon10418" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="473.04,311.62 477.59,311.26 472.86,311.49 "
-       id="polygon10420" />
-    <polygon
-       style="opacity:1;fill:#00a7c1"
-       points="478.54,318.07 472.73,311.27 472.72,311.2 "
-       id="polygon10422" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="201.52,263.2 211.69,266.3 212,266.06 "
-       id="polygon10424" />
-    <line
-       x1="250.99001"
-       y1="359.39001"
-       x2="251.47"
-       y2="361.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10426" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="202.5,261.17 212.68,264.28 212.62,263.85 "
-       id="polygon10428" />
-    <line
-       x1="224.34"
-       y1="188.36"
-       x2="224.42999"
-       y2="187.17"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10430" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="201.83,262.96 212,266.06 212.29,265.7 "
-       id="polygon10432" />
-    <line
-       x1="155.14999"
-       y1="421.60001"
-       x2="155.2"
-       y2="420.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10434" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="202.46,261.66 212.64,264.76 212.68,264.28 "
-       id="polygon10436" />
-    <line
-       x1="155.03999"
-       y1="422.51999"
-       x2="155.14999"
-       y2="421.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10438" />
-    <line
-       x1="118.89"
-       y1="317.85999"
-       x2="119.92"
-       y2="317.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10440" />
-    <line
-       x1="131.59"
-       y1="377.97"
-       x2="131.14999"
-       y2="377.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10442" />
-    <line
-       x1="155.2"
-       y1="420.67001"
-       x2="155.2"
-       y2="419.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10444" />
-    <line
-       x1="154.88"
-       y1="423.45001"
-       x2="155.03999"
-       y2="422.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10446" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="202.11,262.59 212.29,265.7 212.5,265.25 "
-       id="polygon10448" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="202.33,262.14 212.5,265.25 212.64,264.76 "
-       id="polygon10450" />
-    <line
-       x1="155.2"
-       y1="419.75"
-       x2="155.13"
-       y2="418.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10452" />
-    <line
-       x1="154.67"
-       y1="424.35999"
-       x2="154.88"
-       y2="423.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10454" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.42,309.05 472.5,309.71 472.59,309.51 "
-       id="polygon10456" />
-    <line
-       x1="155.13"
-       y1="418.82999"
-       x2="155.00999"
-       y2="417.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10458" />
-    <line
-       x1="108.67"
-       y1="361.57001"
-       x2="108.25"
-       y2="360.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10460" />
-    <polygon
-       style="opacity:1;fill:#006272"
-       points="473.44,322.72 482.25,321.8 481.98,322.12 "
-       id="polygon10462" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="483.73,323.82 482.18,323.93 484.1,324.09 "
-       id="polygon10464" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.43,324.28 484.1,324.09 482.18,323.93 "
-       id="polygon10466" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="483.65,323.73 482.18,323.93 482.17,323.91 "
-       id="polygon10468" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="483.66,323.74 482.18,323.93 483.65,323.73 "
-       id="polygon10470" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="484.16,324.17 482.43,324.29 484.07,324.1 "
-       id="polygon10472" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="483.02,323.03 484.98,325.14 482.82,322.73 "
-       id="polygon10474" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="485.13,325.16 482.82,322.73 484.98,325.14 "
-       id="polygon10476" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.76,322.47 482.05,322.52 482.94,322.86 "
-       id="polygon10478" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="481.98,322.98 482.94,322.86 482.05,322.52 "
-       id="polygon10480" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.97,322.92 481.98,322.99 483.24,323.31 "
-       id="polygon10482" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.02,323.46 483.24,323.31 481.98,322.99 "
-       id="polygon10484" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.97,322.92 481.98,322.99 482.94,322.87 "
-       id="polygon10486" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="478.23,317.88 484.98,325.14 477.95,317.95 "
-       id="polygon10488" />
-    <polygon
-       style="opacity:1;fill:#0094ab"
-       points="478.23,317.95 472.5,311.08 472.41,311.08 "
-       id="polygon10490" />
-    <line
-       x1="154.39999"
-       y1="425.25"
-       x2="154.67"
-       y2="424.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10492" />
-    <polygon
-       style="opacity:1;fill:#008499"
-       points="472.41,311.08 478.23,317.95 472.25,311.13 "
-       id="polygon10494" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="472.54,310.91 477.18,310.43 472.46,310.67 "
-       id="polygon10496" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.15,309.95 472.46,310.67 472.44,310.44 "
-       id="polygon10498" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="473.97,325.16 482.18,324.31 482.51,324.56 "
-       id="polygon10500" />
-    <line
-       x1="130.55"
-       y1="424.32999"
-       x2="130.88"
-       y2="424.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10502" />
-    <polygon
-       style="opacity:1;fill:#008499"
-       points="477.95,318.03 472.25,311.13 472.14,311.16 "
-       id="polygon10504" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="472.14,311.16 477.95,318.03 471.95,311.25 "
-       id="polygon10506" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="470.69,312.41 476.51,319.29 470.63,312.56 "
-       id="polygon10508" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.64,324.91 481.93,323.95 482.18,324.31 "
-       id="polygon10510" />
-    <line
-       x1="153.73"
-       y1="426.98001"
-       x2="154.09"
-       y2="426.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10512" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="476.51,319.29 470.77,312.3 470.69,312.41 "
-       id="polygon10514" />
-    <line
-       x1="154.59"
-       y1="416.20001"
-       x2="154.28999"
-       y2="415.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10516" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.18,323.61 481.8,322.54 481.73,323.01 "
-       id="polygon10518" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="473.23,324.1 481.73,323.01 481.77,323.5 "
-       id="polygon10520" />
-    <line
-       x1="117.94"
-       y1="318.67999"
-       x2="118.89"
-       y2="317.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10522" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="471.82,311.32 477.63,318.2 471.61,311.46 "
-       id="polygon10524" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="470.89,312.13 476.7,319 470.77,312.3 "
-       id="polygon10526" />
-    <line
-       x1="251.47"
-       y1="361.04999"
-       x2="251.91"
-       y2="362.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10528" />
-    <line
-       x1="172.53"
-       y1="272.5"
-       x2="174.75"
-       y2="271.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10530" />
-    <line
-       x1="153.34"
-       y1="427.79999"
-       x2="153.73"
-       y2="426.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10532" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="471.48,311.55 477.29,318.43 471.29,311.71 "
-       id="polygon10534" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="471.16,311.83 476.97,318.7 471,312 "
-       id="polygon10536" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="476.97,318.7 471.29,311.71 471.16,311.83 "
-       id="polygon10538" />
-    <line
-       x1="109.19"
-       y1="362.70001"
-       x2="108.67"
-       y2="361.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10540" />
-    <line
-       x1="154.28999"
-       y1="415.38"
-       x2="153.94"
-       y2="414.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10542" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="225.24,413.08 234.02,406.33 234.11,406.04 "
-       id="polygon10544" />
-    <line
-       x1="130.7"
-       y1="377.37"
-       x2="129.45"
-       y2="377.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10546" />
-    <line
-       x1="149.85001"
-       y1="314.44"
-       x2="150.63"
-       y2="314.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10548" />
-    <line
-       x1="152.89999"
-       y1="428.59"
-       x2="153.34"
-       y2="427.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10550" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="476.41,319.54 470.59,312.77 476.41,319.72 "
-       id="polygon10552" />
-    <line
-       x1="153.94"
-       y1="414.57999"
-       x2="153.52"
-       y2="413.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10554" />
-    <line
-       x1="224.23"
-       y1="189.63"
-       x2="224.34"
-       y2="188.36"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10556" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="225.34,412.79 234.11,406.04 234.09,405.66 "
-       id="polygon10558" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="223.88,410.62 232.66,403.88 232.3,403.79 "
-       id="polygon10560" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="212.23,263.31 202.29,260.41 202.06,260.2 "
-       id="polygon10562" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="225.31,412.41 234.09,405.66 233.95,405.23 "
-       id="polygon10564" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="224.25,410.83 233.03,404.09 232.66,403.88 "
-       id="polygon10566" />
-    <line
-       x1="153.52"
-       y1="413.82001"
-       x2="153.06"
-       y2="413.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10568" />
-    <line
-       x1="152.42999"
-       y1="429.34"
-       x2="152.89999"
-       y2="428.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10570" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="478.3,311.31 478.29,311.62 478.67,311.59 "
-       id="polygon10572" />
-    <polygon
-       style="opacity:1;fill:#00d4a6"
-       points="478.67,311.59 486.27,311.22 486.22,311.25 "
-       id="polygon10574" />
-    <polygon
-       style="opacity:1;fill:#009c7a"
-       points="478.29,311.62 485.52,311.19 477.91,311.51 "
-       id="polygon10576" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="477.92,311.51 473.2,311.74 477.59,311.26 "
-       id="polygon10578" />
-    <line
-       x1="109.8"
-       y1="363.81"
-       x2="109.19"
-       y2="362.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10580" />
-    <line
-       x1="146.28999"
-       y1="347.79001"
-       x2="145.89"
-       y2="348.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10582" />
-    <line
-       x1="117.08"
-       y1="319.54001"
-       x2="117.94"
-       y2="318.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10584" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="477.95,318.03 471.95,311.25 477.63,318.2 "
-       id="polygon10586" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="225.18,411.98 233.95,405.23 233.71,404.8 "
-       id="polygon10588" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="224.62,411.15 233.4,404.41 233.03,404.09 "
-       id="polygon10590" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="224.93,411.55 233.71,404.8 233.4,404.41 "
-       id="polygon10592" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="476.7,319 470.77,312.3 476.51,319.29 "
-       id="polygon10594" />
-    <line
-       x1="129.45"
-       y1="377.07001"
-       x2="128.17"
-       y2="376.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10596" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.23,309.47 472.5,309.71 477.42,309.05 "
-       id="polygon10598" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="212.46,263.52 202.45,260.74 202.29,260.41 "
-       id="polygon10600" />
-    <line
-       x1="130.06"
-       y1="423.48001"
-       x2="130.28999"
-       y2="423.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10602" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="477.63,318.2 471.61,311.46 477.29,318.43 "
-       id="polygon10604" />
-    <line
-       x1="251.91"
-       y1="362.78"
-       x2="252.31"
-       y2="364.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10606" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="476.97,318.71 471,312 476.7,319 "
-       id="polygon10608" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="477.29,318.43 471.29,311.71 476.97,318.7 "
-       id="polygon10610" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="211.69,266.3 201.2,263.29 201.52,263.2 "
-       id="polygon10612" />
-    <polygon
-       style="opacity:1;fill:#0063bf"
-       points="488.35,328.57 485.31,325.43 485.31,325.29 "
-       id="polygon10614" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="485.09,329.07 486.21,330.33 485.48,329.36 "
-       id="polygon10616" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="486.2,330.12 485.48,329.36 486.21,330.33 "
-       id="polygon10618" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="477.27,327.23 486.47,327.77 486.33,327.28 "
-       id="polygon10620" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="487.42,328.66 486.15,327.13 486.09,327.23 "
-       id="polygon10622" />
-    <polygon
-       style="opacity:1;fill:#003d75"
-       points="487.05,326.52 477.84,325.99 477.56,326.32 "
-       id="polygon10624" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.18,310.43 472.46,310.67 477.15,309.95 "
-       id="polygon10626" />
-    <line
-       x1="150.63"
-       y1="314.82001"
-       x2="151.31"
-       y2="315.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10628" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="212.62,263.85 202.5,261.17 202.45,260.74 "
-       id="polygon10630" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.77,326.85 477.56,326.32 477.36,326.75 "
-       id="polygon10632" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="212,266.06 201.52,263.2 201.83,262.96 "
-       id="polygon10634" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="483.48,327.25 483.16,326.91 483.5,327.29 "
-       id="polygon10636" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.62,328.73 477.41,328.19 477.64,328.57 "
-       id="polygon10638" />
-    <line
-       x1="152.53999"
-       y1="412.44"
-       x2="151.97"
-       y2="411.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10640" />
-    <line
-       x1="110.52"
-       y1="364.91"
-       x2="109.8"
-       y2="363.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10642" />
-    <line
-       x1="229.48"
-       y1="282.64001"
-       x2="228.94"
-       y2="281.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10644" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="212.68,264.28 202.46,261.66 202.5,261.17 "
-       id="polygon10646" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="234.31,345.28 243.61,342.63 243.87,342.37 "
-       id="polygon10648" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="212.29,265.7 201.83,262.96 202.11,262.59 "
-       id="polygon10650" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.47,327.77 477.27,327.23 477.28,327.73 "
-       id="polygon10652" />
-    <line
-       x1="151.39"
-       y1="430.72"
-       x2="151.92999"
-       y2="430.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10654" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="212.64,264.76 202.33,262.14 202.46,261.66 "
-       id="polygon10656" />
-    <line
-       x1="128.17"
-       y1="376.70999"
-       x2="126.86"
-       y2="376.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10658" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="234.03,342.45 243.33,339.81 242.98,339.63 "
-       id="polygon10660" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="212.5,265.25 202.11,262.59 202.33,262.14 "
-       id="polygon10662" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="234.57,345.01 243.87,342.37 244.04,341.98 "
-       id="polygon10664" />
-    <line
-       x1="224.08"
-       y1="190.97"
-       x2="224.23"
-       y2="189.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10666" />
-    <line
-       x1="116.31"
-       y1="320.45001"
-       x2="117.08"
-       y2="319.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10668" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="234.35,342.76 243.65,340.13 243.33,339.81 "
-       id="polygon10670" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="234.74,344.63 244.04,341.98 244.1,341.52 "
-       id="polygon10672" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="234.6,343.18 243.89,340.55 243.65,340.13 "
-       id="polygon10674" />
-    <line
-       x1="111.32"
-       y1="365.98001"
-       x2="110.52"
-       y2="364.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10676" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="234.8,344.16 244.1,341.52 244.05,341.03 "
-       id="polygon10678" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="234.75,343.67 244.05,341.03 243.89,340.55 "
-       id="polygon10680" />
-    <line
-       x1="252.31"
-       y1="364.57001"
-       x2="252.66"
-       y2="366.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10682" />
-    <line
-       x1="151.36"
-       y1="411.25"
-       x2="150.7"
-       y2="410.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10684" />
-    <line
-       x1="126.86"
-       y1="376.29999"
-       x2="125.54"
-       y2="375.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10686" />
-    <line
-       x1="174.75"
-       y1="271.57001"
-       x2="177.13"
-       y2="270.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10688" />
-    <line
-       x1="129.78"
-       y1="422.45001"
-       x2="129.89"
-       y2="422.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10690" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="232.02,403.84 223.52,410.54 223.23,410.59 "
-       id="polygon10692" />
-    <line
-       x1="112.21"
-       y1="367.03"
-       x2="111.32"
-       y2="365.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10694" />
-    <line
-       x1="150.7"
-       y1="410.73999"
-       x2="150"
-       y2="410.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10696" />
-    <line
-       x1="150.27"
-       y1="431.89001"
-       x2="150.84"
-       y2="431.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10698" />
-    <line
-       x1="115.65"
-       y1="321.39999"
-       x2="116.31"
-       y2="320.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10700" />
-    <line
-       x1="125.54"
-       y1="375.82001"
-       x2="124.2"
-       y2="375.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10702" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="232.3,403.79 223.88,410.62 223.52,410.54 "
-       id="polygon10704" />
-    <line
-       x1="150"
-       y1="410.29001"
-       x2="149.25"
-       y2="409.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10706" />
-    <line
-       x1="113.17"
-       y1="368.04999"
-       x2="112.21"
-       y2="367.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10708" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="234.09,405.66 225.34,412.79 225.31,412.41 "
-       id="polygon10710" />
-    <line
-       x1="252.66"
-       y1="366.42999"
-       x2="252.95"
-       y2="368.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10712" />
-    <line
-       x1="223.89"
-       y1="192.38"
-       x2="224.08"
-       y2="190.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10714" />
-    <polygon
-       style="opacity:1;fill:#003d75"
-       points="477.56,326.32 487.05,326.52 486.77,326.85 "
-       id="polygon10716" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="476.5,319.3 483.25,326.57 476.4,319.58 "
-       id="polygon10718" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="232.66,403.88 224.25,410.83 223.88,410.62 "
-       id="polygon10720" />
-    <line
-       x1="149.69"
-       y1="432.39999"
-       x2="150.27"
-       y2="431.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10722" />
-    <line
-       x1="124.2"
-       y1="375.29001"
-       x2="122.86"
-       y2="374.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10724" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="233.95,405.23 225.31,412.41 225.18,411.98 "
-       id="polygon10726" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="233.03,404.09 224.62,411.15 224.25,410.83 "
-       id="polygon10728" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.17,323.91 490.27,322.91 482.02,323.48 "
-       id="polygon10730" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.43,323.36 482.18,323.93 490.27,322.91 "
-       id="polygon10732" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="477.62,318.12 484.38,325.39 477.28,318.37 "
-       id="polygon10734" />
-    <line
-       x1="114.21"
-       y1="369.04001"
-       x2="113.17"
-       y2="368.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10736" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="233.71,404.8 225.18,411.98 224.93,411.55 "
-       id="polygon10738" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="233.4,404.41 224.93,411.55 224.62,411.15 "
-       id="polygon10740" />
-    <line
-       x1="145.39"
-       y1="348.26999"
-       x2="144.78999"
-       y2="348.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10742" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="476.96,318.66 483.71,325.93 476.69,318.99 "
-       id="polygon10744" />
-    <line
-       x1="151.89999"
-       y1="315.59"
-       x2="152.38"
-       y2="315.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10746" />
-    <line
-       x1="122.86"
-       y1="374.69"
-       x2="121.54"
-       y2="374.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10748" />
-    <line
-       x1="129.72"
-       y1="421.26001"
-       x2="129.73"
-       y2="421.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10750" />
-    <line
-       x1="115.31"
-       y1="369.98001"
-       x2="114.21"
-       y2="369.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10752" />
-    <line
-       x1="121.54"
-       y1="374.04001"
-       x2="120.22"
-       y2="373.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10754" />
-    <line
-       x1="148.48"
-       y1="409.54999"
-       x2="147.67999"
-       y2="409.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10756" />
-    <line
-       x1="116.47"
-       y1="370.89001"
-       x2="115.31"
-       y2="369.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10758" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="482.82,322.73 478.23,317.88 483.02,323.03 "
-       id="polygon10760" />
-    <line
-       x1="120.22"
-       y1="373.32001"
-       x2="118.94"
-       y2="372.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10762" />
-    <line
-       x1="252.95"
-       y1="368.34"
-       x2="253.19"
-       y2="370.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10764" />
-    <line
-       x1="117.68"
-       y1="371.75"
-       x2="116.47"
-       y2="370.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10766" />
-    <line
-       x1="118.94"
-       y1="372.56"
-       x2="117.68"
-       y2="371.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10768" />
-    <line
-       x1="129.78"
-       y1="420.63"
-       x2="129.72"
-       y2="421.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10770" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="242.63,339.59 233.68,342.26 233.33,342.23 "
-       id="polygon10772" />
-    <line
-       x1="147.67999"
-       y1="409.28"
-       x2="146.84"
-       y2="409.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10774" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="477.41,328.19 486.49,328.27 486.62,328.73 "
-       id="polygon10776" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.57,327.28 486.47,327.77 486.33,327.28 "
-       id="polygon10778" />
-    <line
-       x1="148.5"
-       y1="433.23999"
-       x2="149.09"
-       y2="432.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10780" />
-    <line
-       x1="223.67"
-       y1="193.85001"
-       x2="223.89"
-       y2="192.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10782" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="242.98,339.63 234.03,342.45 233.68,342.26 "
-       id="polygon10784" />
-    <line
-       x1="177.13"
-       y1="270.85001"
-       x2="179.67"
-       y2="270.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10786" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="243.87,342.37 234.31,345.28 234.57,345.01 "
-       id="polygon10788" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="483.39,326.36 476.5,319.3 483.25,326.57 "
-       id="polygon10790" />
-    <line
-       x1="146.84"
-       y1="409.07001"
-       x2="145.99001"
-       y2="408.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10792" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="243.33,339.81 234.35,342.76 234.03,342.45 "
-       id="polygon10794" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="483.94,325.73 476.96,318.66 483.71,325.93 "
-       id="polygon10796" />
-    <line
-       x1="114.63"
-       y1="323.41"
-       x2="115.09"
-       y2="322.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10798" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="244.04,341.98 234.57,345.01 234.74,344.63 "
-       id="polygon10800" />
-    <line
-       x1="253.19"
-       y1="370.29999"
-       x2="253.36"
-       y2="372.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10802" />
-    <polygon
-       style="opacity:1;fill:#00886a"
-       points="477.71,308.74 485.56,308.24 478.06,308.55 "
-       id="polygon10804" />
-    <line
-       x1="230.53999"
-       y1="284.39001"
-       x2="230.02"
-       y2="283.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10806" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="243.65,340.13 234.6,343.18 234.35,342.76 "
-       id="polygon10808" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="244.1,341.52 234.74,344.63 234.8,344.16 "
-       id="polygon10810" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="243.89,340.55 234.75,343.67 234.6,343.18 "
-       id="polygon10812" />
-    <line
-       x1="147.89"
-       y1="433.57001"
-       x2="148.5"
-       y2="433.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10814" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="244.05,341.03 234.8,344.16 234.75,343.67 "
-       id="polygon10816" />
-    <line
-       x1="145.99001"
-       y1="408.92999"
-       x2="145.11"
-       y2="408.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10818" />
-    <polygon
-       style="opacity:1;fill:#007259"
-       points="477.42,309.05 485.21,308.45 477.71,308.74 "
-       id="polygon10820" />
-    <line
-       x1="130.07001"
-       y1="419.28"
-       x2="129.89999"
-       y2="419.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10822" />
-    <polygon
-       style="opacity:1;fill:#008780"
-       points="482.52,321.77 491.11,321.02 482.86,321.59 "
-       id="polygon10824" />
-    <line
-       x1="145.11"
-       y1="408.84"
-       x2="144.23"
-       y2="408.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10826" />
-    <polygon
-       style="opacity:1;fill:#00726c"
-       points="482.24,322.09 490.76,321.21 482.51,321.78 "
-       id="polygon10828" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.14,309.95 484.76,309.2 477.22,309.47 "
-       id="polygon10830" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="477.33,310.88 484.75,310.16 477.18,310.43 "
-       id="polygon10832" />
-    <line
-       x1="253.36"
-       y1="372.29001"
-       x2="253.46001"
-       y2="374.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10834" />
-    <line
-       x1="223.41"
-       y1="195.38"
-       x2="223.67"
-       y2="193.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10836" />
-    <line
-       x1="130.31"
-       y1="418.57999"
-       x2="130.07001"
-       y2="419.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10838" />
-    <line
-       x1="114.28"
-       y1="324.45999"
-       x2="114.63"
-       y2="323.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10840" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="192.08,257.29 202.29,260.41 202.06,260.2 "
-       id="polygon10842" />
-    <line
-       x1="144.23"
-       y1="408.82999"
-       x2="143.33"
-       y2="408.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10844" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="484.1,324.09 490.43,323.36 483.73,323.82 "
-       id="polygon10846" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="482.94,322.86 490.3,321.95 482.76,322.47 "
-       id="polygon10848" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.27,322.91 483.66,323.74 483.65,323.73 "
-       id="polygon10850" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="483.24,323.31 490.23,322.42 482.97,322.92 "
-       id="polygon10852" />
-    <line
-       x1="144.10001"
-       y1="348.59"
-       x2="143.31"
-       y2="348.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10854" />
-    <line
-       x1="152.75"
-       y1="316.38"
-       x2="153"
-       y2="316.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10856" />
-    <line
-       x1="130.60001"
-       y1="417.87"
-       x2="130.31"
-       y2="418.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10858" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="200.91,263.24 190.47,259.92 190.7,260.13 "
-       id="polygon10860" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="190.99,260.18 201.2,263.29 201.52,263.2 "
-       id="polygon10862" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="192.23,257.63 202.45,260.74 202.29,260.41 "
-       id="polygon10864" />
-    <line
-       x1="143.33"
-       y1="408.88"
-       x2="142.42999"
-       y2="408.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10866" />
-    <polygon
-       style="opacity:1;fill:#0055a3"
-       points="487.44,326.64 487.76,326.28 487.39,326.33 "
-       id="polygon10868" />
-    <line
-       x1="253.46001"
-       y1="374.32999"
-       x2="253.5"
-       y2="376.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10870" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="191.3,260.08 201.52,263.2 201.83,262.96 "
-       id="polygon10872" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="192.29,258.05 202.5,261.17 202.45,260.74 "
-       id="polygon10874" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="486.15,327.13 484.6,325.27 484.38,325.39 "
-       id="polygon10876" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="486.09,327.23 486.15,327.13 484.38,325.39 "
-       id="polygon10878" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.3,329.85 483.39,326.36 483.25,326.57 "
-       id="polygon10880" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="485.48,329.36 483.48,327.25 485.09,329.07 "
-       id="polygon10882" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="485.09,329.07 483.48,327.25 483.5,327.29 "
-       id="polygon10884" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="483.45,326.26 486.49,329.54 483.39,326.36 "
-       id="polygon10886" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="191.62,259.84 201.83,262.96 202.11,262.59 "
-       id="polygon10888" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="192.25,258.54 202.46,261.66 202.5,261.17 "
-       id="polygon10890" />
-    <line
-       x1="141.21001"
-       y1="283"
-       x2="142.7"
-       y2="282.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10892" />
-    <line
-       x1="139.72"
-       y1="283.13"
-       x2="141.21001"
-       y2="283"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10894" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.76,329.21 483.94,325.73 483.71,325.93 "
-       id="polygon10896" />
-    <line
-       x1="179.67"
-       y1="270.35999"
-       x2="182.35001"
-       y2="270.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10898" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="191.9,259.48 202.11,262.59 202.33,262.14 "
-       id="polygon10900" />
-    <line
-       x1="142.7"
-       y1="282.92001"
-       x2="144.17"
-       y2="282.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10902" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="192.12,259.03 202.33,262.14 202.46,261.66 "
-       id="polygon10904" />
-    <line
-       x1="138.23"
-       y1="283.32001"
-       x2="139.72"
-       y2="283.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10906" />
-    <line
-       x1="131.36"
-       y1="416.45001"
-       x2="130.95"
-       y2="417.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10908" />
-    <line
-       x1="141.53"
-       y1="409.16"
-       x2="140.63"
-       y2="409.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10910" />
-    <line
-       x1="223.10001"
-       y1="196.97"
-       x2="223.41"
-       y2="195.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10912" />
-    <line
-       x1="114.04"
-       y1="325.53"
-       x2="114.28"
-       y2="324.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10914" />
-    <line
-       x1="144.17"
-       y1="282.89001"
-       x2="145.61"
-       y2="282.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10916" />
-    <line
-       x1="253.5"
-       y1="376.39001"
-       x2="253.46001"
-       y2="378.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10918" />
-    <line
-       x1="136.74001"
-       y1="283.57001"
-       x2="138.23"
-       y2="283.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10920" />
-    <line
-       x1="140.63"
-       y1="409.39001"
-       x2="139.75"
-       y2="409.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10922" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="214.22,417.54 223.03,410.77 222.93,411.07 "
-       id="polygon10924" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.49,329.54 483.39,326.36 486.3,329.85 "
-       id="polygon10926" />
-    <line
-       x1="145.61"
-       y1="282.92001"
-       x2="147.03"
-       y2="283"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10928" />
-    <line
-       x1="146.14"
-       y1="434.17999"
-       x2="146.71001"
-       y2="434.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10930" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="233.33,342.23 233.68,342.57 233.39,342.55 "
-       id="polygon10932" />
-    <line
-       x1="143.31"
-       y1="348.67999"
-       x2="142.44"
-       y2="348.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10934" />
-    <polygon
-       style="opacity:1;fill:#0070d8"
-       points="489.81,329.53 491.63,329.49 491.42,329.61 "
-       id="polygon10936" />
-    <polygon
-       style="opacity:1;fill:#0070d8"
-       points="489.56,329.45 491.63,329.49 489.81,329.53 "
-       id="polygon10938" />
-    <polygon
-       style="opacity:1;fill:#0061bb"
-       points="493.25,333.14 488.35,328.48 493.24,333.02 "
-       id="polygon10940" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="489.53,329.71 492.89,332.82 489.53,329.68 "
-       id="polygon10942" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="493,332.84 489.53,329.68 492.89,332.82 "
-       id="polygon10944" />
-    <polygon
-       style="opacity:1;fill:#0070d8"
-       points="487.87,329.43 489.56,329.45 489.81,329.53 "
-       id="polygon10946" />
-    <polygon
-       style="opacity:1;fill:#005099"
-       points="487.71,328.36 489.11,329.57 489,329.52 "
-       id="polygon10948" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="488.04,329.13 487.38,328.54 487.98,329.1 "
-       id="polygon10950" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="489,329.46 487.16,329.36 488.85,329.4 "
-       id="polygon10952" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="487.38,328.54 488.84,329.9 487.27,328.63 "
-       id="polygon10954" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="489.53,329.68 488,328.29 489.53,329.71 "
-       id="polygon10956" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="487.38,328.54 492.6,332.9 492.43,332.99 "
-       id="polygon10958" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.62,328.73 490.12,328.74 486.49,328.27 "
-       id="polygon10960" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="487.08,328.91 483.94,325.73 486.76,329.21 "
-       id="polygon10962" />
-    <line
-       x1="135.27"
-       y1="283.88"
-       x2="136.74001"
-       y2="283.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10964" />
-    <line
-       x1="139.75"
-       y1="409.67999"
-       x2="138.88"
-       y2="410.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10966" />
-    <line
-       x1="132.34"
-       y1="415.04001"
-       x2="131.82001"
-       y2="415.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10968" />
-    <line
-       x1="138.88"
-       y1="410.01999"
-       x2="138.02"
-       y2="410.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10970" />
-    <line
-       x1="147.03"
-       y1="283"
-       x2="148.39999"
-       y2="283.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10972" />
-    <line
-       x1="132.89999"
-       y1="414.35999"
-       x2="132.34"
-       y2="415.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10974" />
-    <line
-       x1="253.46001"
-       y1="378.48001"
-       x2="253.34"
-       y2="380.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10976" />
-    <polygon
-       style="opacity:1;fill:#00488a"
-       points="487.05,326.52 490.73,326.63 487.39,326.33 "
-       id="polygon10978" />
-    <line
-       x1="138.02"
-       y1="410.41"
-       x2="137.19"
-       y2="410.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10980" />
-    <line
-       x1="133.84"
-       y1="284.25"
-       x2="135.27"
-       y2="283.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10982" />
-    <line
-       x1="133.52"
-       y1="413.70001"
-       x2="132.89999"
-       y2="414.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10984" />
-    <polygon
-       style="opacity:1;fill:#00886a"
-       points="485.26,308.4 477.71,308.74 485.56,308.24 "
-       id="polygon10986" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="225.04,413.27 215.94,420.09 216.23,420.04 "
-       id="polygon10988" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="216.43,419.85 225.24,413.08 225.34,412.79 "
-       id="polygon10990" />
-    <line
-       x1="136.39"
-       y1="411.35001"
-       x2="135.61"
-       y2="411.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10992" />
-    <polygon
-       style="opacity:1;fill:#007259"
-       points="477.71,308.74 485.21,308.45 485.26,308.4 "
-       id="polygon10994" />
-    <line
-       x1="134.88"
-       y1="412.45999"
-       x2="134.17"
-       y2="413.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10996" />
-    <line
-       x1="135.61"
-       y1="411.89001"
-       x2="134.88"
-       y2="412.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line10998" />
-    <line
-       x1="113.91"
-       y1="326.63"
-       x2="114.04"
-       y2="325.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11000" />
-    <line
-       x1="219.25"
-       y1="421.32999"
-       x2="217.14"
-       y2="421.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11002" />
-    <line
-       x1="217.14"
-       y1="421.66"
-       x2="215.02"
-       y2="421.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11004" />
-    <line
-       x1="221.34"
-       y1="420.89001"
-       x2="219.25"
-       y2="421.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11006" />
-    <line
-       x1="222.74001"
-       y1="198.60001"
-       x2="223.10001"
-       y2="196.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11008" />
-    <line
-       x1="145.59"
-       y1="434.26001"
-       x2="146.14"
-       y2="434.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11010" />
-    <line
-       x1="148.39999"
-       y1="283.12"
-       x2="149.72"
-       y2="283.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11012" />
-    <line
-       x1="223.39999"
-       y1="420.35001"
-       x2="221.34"
-       y2="420.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11014" />
-    <line
-       x1="253.34"
-       y1="380.57999"
-       x2="253.14"
-       y2="382.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11016" />
-    <line
-       x1="225.42"
-       y1="419.70999"
-       x2="223.39999"
-       y2="420.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11018" />
-    <line
-       x1="132.42999"
-       y1="284.67001"
-       x2="133.84"
-       y2="284.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11020" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="216.53,419.56 225.34,412.79 225.31,412.41 "
-       id="polygon11022" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="215.07,417.39 223.88,410.62 223.52,410.54 "
-       id="polygon11024" />
-    <line
-       x1="227.39999"
-       y1="418.95999"
-       x2="225.42"
-       y2="419.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11026" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.47,327.77 490.05,327.77 486.57,327.29 "
-       id="polygon11028" />
-    <polygon
-       style="opacity:1;fill:#008780"
-       points="490.76,321.21 482.51,321.78 491.11,321.02 "
-       id="polygon11030" />
-    <line
-       x1="231.55"
-       y1="286.54001"
-       x2="231.06"
-       y2="285.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11032" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="486.19,330.17 491.08,334.7 486.21,330.41 "
-       id="polygon11034" />
-    <line
-       x1="229.34"
-       y1="418.13"
-       x2="227.39999"
-       y2="418.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11036" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="484.88,310.55 477.33,310.88 484.75,310.16 "
-       id="polygon11038" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="484.69,309.61 477.14,309.95 484.76,309.2 "
-       id="polygon11040" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="216.51,419.18 225.31,412.41 225.18,411.98 "
-       id="polygon11042" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="215.45,417.6 224.25,410.83 223.88,410.62 "
-       id="polygon11044" />
-    <line
-       x1="142.44"
-       y1="348.70999"
-       x2="141.48"
-       y2="348.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11046" />
-    <line
-       x1="231.22"
-       y1="417.17999"
-       x2="229.34"
-       y2="418.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11048" />
-    <polygon
-       style="opacity:1;fill:#00726c"
-       points="490.48,321.53 482.23,322.1 490.76,321.21 "
-       id="polygon11050" />
-    <line
-       x1="253.14"
-       y1="382.69"
-       x2="252.87"
-       y2="384.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11052" />
-    <line
-       x1="149.72"
-       y1="283.29001"
-       x2="150.98"
-       y2="283.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11054" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="216.37,418.75 225.18,411.98 224.93,411.55 "
-       id="polygon11056" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="215.81,417.92 224.62,411.15 224.25,410.83 "
-       id="polygon11058" />
-    <polygon
-       style="opacity:1;fill:#00488a"
-       points="487.39,326.33 490.73,326.63 490.94,326.51 "
-       id="polygon11060" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="216.13,418.32 224.93,411.55 224.62,411.15 "
-       id="polygon11062" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="202.29,260.41 192.23,257.63 192.08,257.29 "
-       id="polygon11064" />
-    <line
-       x1="131.07001"
-       y1="285.16"
-       x2="132.42999"
-       y2="284.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11066" />
-    <line
-       x1="233.05"
-       y1="416.14001"
-       x2="231.22"
-       y2="417.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11068" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="488.84,329.9 492.27,333.07 487.03,328.81 "
-       id="polygon11070" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="487.27,328.63 488.84,329.9 487.03,328.81 "
-       id="polygon11072" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.68,323.73 484.16,324.17 490.43,323.36 "
-       id="polygon11074" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.43,323.36 484.16,324.17 484.07,324.1 "
-       id="polygon11076" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="201.52,263.2 190.99,260.18 191.3,260.08 "
-       id="polygon11078" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.45,329.5 491.34,334.03 486.27,329.85 "
-       id="polygon11080" />
-    <line
-       x1="182.35001"
-       y1="270.09"
-       x2="185.14"
-       y2="270.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11082" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="490.7,329.55 489,329.46 490.59,329.45 "
-       id="polygon11084" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="490.59,329.45 489,329.46 488.85,329.4 "
-       id="polygon11086" />
-    <line
-       x1="234.82001"
-       y1="415"
-       x2="233.05"
-       y2="416.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11088" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="487.03,328.81 491.92,333.34 486.71,329.14 "
-       id="polygon11090" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.23,322.42 482.97,322.92 490.3,321.95 "
-       id="polygon11092" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.3,321.95 482.97,322.92 482.94,322.87 "
-       id="polygon11094" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.71,329.14 491.61,333.67 486.45,329.5 "
-       id="polygon11096" />
-    <line
-       x1="113.89"
-       y1="327.73001"
-       x2="113.91"
-       y2="326.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11098" />
-    <line
-       x1="252.87"
-       y1="384.79999"
-       x2="252.5"
-       y2="386.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11100" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="202.45,260.74 192.29,258.05 192.23,257.63 "
-       id="polygon11102" />
-    <line
-       x1="222.33"
-       y1="200.27"
-       x2="222.74001"
-       y2="198.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11104" />
-    <line
-       x1="236.53"
-       y1="413.78"
-       x2="234.82001"
-       y2="415"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11106" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="201.83,262.96 191.3,260.08 191.62,259.84 "
-       id="polygon11108" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="491.09,334.82 486.21,330.41 491.11,334.95 "
-       id="polygon11110" />
-    <line
-       x1="150.98"
-       y1="283.5"
-       x2="152.17999"
-       y2="283.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11112" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="202.5,261.17 192.25,258.54 192.29,258.05 "
-       id="polygon11114" />
-    <line
-       x1="238.17"
-       y1="412.45999"
-       x2="236.53"
-       y2="413.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11116" />
-    <line
-       x1="252.5"
-       y1="386.91"
-       x2="252.05"
-       y2="389.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11118" />
-    <polygon
-       style="opacity:1;fill:#005099"
-       points="489.11,329.57 492.89,332.82 492.74,332.86 "
-       id="polygon11120" />
-    <polygon
-       style="opacity:1;fill:#005099"
-       points="489,329.52 489.11,329.57 492.74,332.86 "
-       id="polygon11122" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="202.11,262.59 191.62,259.84 191.9,259.48 "
-       id="polygon11124" />
-    <line
-       x1="129.75999"
-       y1="285.70001"
-       x2="131.07001"
-       y2="285.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11126" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.57,327.29 490.05,327.77 490.11,327.47 "
-       id="polygon11128" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="202.46,261.66 192.12,259.03 192.25,258.54 "
-       id="polygon11130" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="202.33,262.14 191.9,259.48 192.12,259.03 "
-       id="polygon11132" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.49,328.27 490.12,328.74 490.04,328.45 "
-       id="polygon11134" />
-    <line
-       x1="239.73"
-       y1="411.04999"
-       x2="238.17"
-       y2="412.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11136" />
-    <line
-       x1="144.55"
-       y1="434.20999"
-       x2="145.05"
-       y2="434.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11138" />
-    <line
-       x1="252.05"
-       y1="389.01001"
-       x2="251.50999"
-       y2="391.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11140" />
-    <line
-       x1="241.22"
-       y1="409.56"
-       x2="239.73"
-       y2="411.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11142" />
-    <line
-       x1="141.48"
-       y1="348.70001"
-       x2="140.46001"
-       y2="348.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11144" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="492.43,332.99 488.04,329.13 492.27,333.07 "
-       id="polygon11146" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="492.27,333.07 488.04,329.13 487.98,329.1 "
-       id="polygon11148" />
-    <line
-       x1="242.64"
-       y1="407.98999"
-       x2="241.22"
-       y2="409.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11150" />
-    <line
-       x1="251.50999"
-       y1="391.09"
-       x2="250.88"
-       y2="393.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11152" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.27,329.85 491.34,334.03 491.25,334.21 "
-       id="polygon11154" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="487.03,328.81 492.27,333.07 492.09,333.21 "
-       id="polygon11156" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="223.67,345 233,342.35 232.75,342.62 "
-       id="polygon11158" />
-    <line
-       x1="243.97"
-       y1="406.34"
-       x2="242.64"
-       y2="407.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11160" />
-    <line
-       x1="113.99"
-       y1="328.85999"
-       x2="113.89"
-       y2="327.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11162" />
-    <line
-       x1="232.02"
-       y1="287.76999"
-       x2="231.55"
-       y2="286.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11164" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="486.71,329.14 491.92,333.34 491.76,333.51 "
-       id="polygon11166" />
-    <line
-       x1="250.88"
-       y1="393.14999"
-       x2="250.16"
-       y2="395.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11168" />
-    <line
-       x1="152.17999"
-       y1="283.73999"
-       x2="153.32001"
-       y2="284.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11170" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="491.76,333.51 486.71,329.14 491.61,333.67 "
-       id="polygon11172" />
-    <line
-       x1="245.22"
-       y1="404.63"
-       x2="243.97"
-       y2="406.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11174" />
-    <line
-       x1="128.50999"
-       y1="286.29999"
-       x2="129.75999"
-       y2="285.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11176" />
-    <line
-       x1="221.87"
-       y1="201.98"
-       x2="222.33"
-       y2="200.27"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11178" />
-    <line
-       x1="250.16"
-       y1="395.17999"
-       x2="249.35001"
-       y2="397.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11180" />
-    <line
-       x1="246.38"
-       y1="402.85001"
-       x2="245.22"
-       y2="404.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11182" />
-    <line
-       x1="153.2"
-       y1="317.5"
-       x2="153.13"
-       y2="317.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11184" />
-    <line
-       x1="249.35001"
-       y1="397.16"
-       x2="248.45"
-       y2="399.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11186" />
-    <line
-       x1="247.46001"
-       y1="401.01001"
-       x2="246.38"
-       y2="402.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11188" />
-    <line
-       x1="248.45"
-       y1="399.10999"
-       x2="247.46001"
-       y2="401.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11190" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="233.99,345.4 224.3,348.02 224.66,348.05 "
-       id="polygon11192" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="224.98,347.93 234.31,345.28 234.57,345.01 "
-       id="polygon11194" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="223.52,410.54 215.07,417.39 214.72,417.3 "
-       id="polygon11196" />
-    <line
-       x1="140.46001"
-       y1="348.64001"
-       x2="139.37"
-       y2="348.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11198" />
-    <line
-       x1="153.32001"
-       y1="284.01999"
-       x2="154.37"
-       y2="284.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11200" />
-    <line
-       x1="127.32"
-       y1="286.95999"
-       x2="128.50999"
-       y2="286.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11202" />
-    <line
-       x1="185.14"
-       y1="270.06"
-       x2="188.03999"
-       y2="270.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11204" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="225.31,412.41 216.53,419.56 216.51,419.18 "
-       id="polygon11206" />
-    <line
-       x1="114.2"
-       y1="329.98999"
-       x2="113.99"
-       y2="328.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11208" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="225.24,347.66 234.57,345.01 234.74,344.63 "
-       id="polygon11210" />
-    <polygon
-       style="opacity:1;fill:#0076aa"
-       points="497.34,326.87 491.3,326.46 491.43,326.51 "
-       id="polygon11212" />
-    <line
-       x1="221.36"
-       y1="203.71001"
-       x2="221.87"
-       y2="201.98"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11214" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="223.88,410.62 215.45,417.6 215.07,417.39 "
-       id="polygon11216" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="225.02,345.41 234.35,342.76 234.03,342.45 "
-       id="polygon11218" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="225.41,347.28 234.74,344.63 234.8,344.16 "
-       id="polygon11220" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="225.18,411.98 216.51,419.18 216.37,418.75 "
-       id="polygon11222" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="225.27,345.83 234.6,343.18 234.35,342.76 "
-       id="polygon11224" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="224.25,410.83 215.81,417.92 215.45,417.6 "
-       id="polygon11226" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="225.47,346.81 234.8,344.16 234.75,343.67 "
-       id="polygon11228" />
-    <polygon
-       style="opacity:1;fill:#003599"
-       points="492.89,332.82 497.83,337.4 492.74,332.86 "
-       id="polygon11230" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="225.42,346.32 234.75,343.67 234.6,343.18 "
-       id="polygon11232" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="224.93,411.55 216.37,418.75 216.13,418.32 "
-       id="polygon11234" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="224.62,411.15 216.13,418.32 215.81,417.92 "
-       id="polygon11236" />
-    <polygon
-       style="opacity:1;fill:#007245"
-       points="486.54,308.34 484.97,308.71 485.21,308.45 "
-       id="polygon11238" />
-    <polygon
-       style="opacity:1;fill:#003599"
-       points="497.54,337.47 492.74,332.86 492.6,332.9 "
-       id="polygon11240" />
-    <line
-       x1="232.46001"
-       y1="289.07999"
-       x2="232.02"
-       y2="287.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11242" />
-    <line
-       x1="126.21"
-       y1="287.67001"
-       x2="127.32"
-       y2="286.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11244" />
-    <line
-       x1="154.37"
-       y1="284.32001"
-       x2="155.34"
-       y2="284.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11246" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="491.16,334.39 496.1,338.96 491.12,334.54 "
-       id="polygon11248" />
-    <line
-       x1="139.37"
-       y1="348.51999"
-       x2="138.21001"
-       y2="348.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11250" />
-    <line
-       x1="220.78"
-       y1="205.46001"
-       x2="221.36"
-       y2="203.71001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11252" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.1,338.96 491.25,334.21 491.16,334.39 "
-       id="polygon11254" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="492.27,333.07 497.2,337.65 492.09,333.21 "
-       id="polygon11256" />
-    <line
-       x1="114.51"
-       y1="331.13"
-       x2="114.2"
-       y2="329.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11258" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="496.09,329.59 490.7,329.55 490.59,329.45 "
-       id="polygon11260" />
-    <line
-       x1="143.23"
-       y1="433.67999"
-       x2="143.63"
-       y2="433.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11262" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="490.59,329.45 496.09,329.59 490.4,329.29 "
-       id="polygon11264" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="491.61,333.67 496.54,338.25 491.47,333.85 "
-       id="polygon11266" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.54,338.25 491.76,333.51 491.61,333.67 "
-       id="polygon11268" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="485.97,309.55 484.69,309.61 486.05,309.07 "
-       id="polygon11270" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="486.16,310.49 484.88,310.55 486.01,310.04 "
-       id="polygon11272" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="486.67,308.61 486.54,308.34 486.25,308.66 "
-       id="polygon11274" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="490.05,327.77 495.81,327.77 490.11,327.47 "
-       id="polygon11276" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="490.12,328.74 495.73,328.75 490.04,328.45 "
-       id="polygon11278" />
-    <polygon
-       style="opacity:1;fill:#003599"
-       points="497.83,337.4 492.74,332.86 497.54,337.47 "
-       id="polygon11280" />
-    <line
-       x1="125.17"
-       y1="288.42999"
-       x2="126.21"
-       y2="287.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11282" />
-    <line
-       x1="220.14999"
-       y1="207.23"
-       x2="220.78"
-       y2="205.46001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11284" />
-    <line
-       x1="155.34"
-       y1="284.64999"
-       x2="156.21001"
-       y2="285"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11286" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.1,338.96 491.12,334.54 496.02,339.28 "
-       id="polygon11288" />
-    <line
-       x1="142.86"
-       y1="433.39001"
-       x2="143.23"
-       y2="433.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11290" />
-    <line
-       x1="138.21001"
-       y1="348.32999"
-       x2="137.00999"
-       y2="348.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11292" />
-    <line
-       x1="188.03999"
-       y1="270.26999"
-       x2="191"
-       y2="270.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11294" />
-    <line
-       x1="167.21001"
-       y1="430.29001"
-       x2="167.25999"
-       y2="429.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11296" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="497.2,337.65 492.09,333.21 496.86,337.92 "
-       id="polygon11298" />
-    <line
-       x1="167.25999"
-       y1="429.35999"
-       x2="167.25"
-       y2="428.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11300" />
-    <line
-       x1="166.94"
-       y1="432.14999"
-       x2="167.10001"
-       y2="431.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11302" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="181.31,253.9 191.56,257.03 191.25,257.13 "
-       id="polygon11304" />
-    <line
-       x1="167.25"
-       y1="428.44"
-       x2="167.19"
-       y2="427.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11306" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.54,338.25 491.47,333.85 496.28,338.61 "
-       id="polygon11308" />
-    <line
-       x1="166.73"
-       y1="433.06"
-       x2="166.94"
-       y2="432.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11310" />
-    <line
-       x1="232.87"
-       y1="290.48001"
-       x2="232.46001"
-       y2="289.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11312" />
-    <line
-       x1="189.81"
-       y1="237.3"
-       x2="191.63"
-       y2="236.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11314" />
-    <line
-       x1="166.46001"
-       y1="433.95999"
-       x2="166.73"
-       y2="433.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11316" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.3,321.94 494.5,321.49 490.48,321.52 "
-       id="polygon11318" />
-    <line
-       x1="219.46001"
-       y1="209"
-       x2="220.14999"
-       y2="207.23"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11320" />
-    <line
-       x1="167.07001"
-       y1="426.62"
-       x2="166.89"
-       y2="425.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11322" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.67,323.73 494.66,323.3 490.42,323.36 "
-       id="polygon11324" />
-    <line
-       x1="124.22"
-       y1="289.25"
-       x2="125.17"
-       y2="288.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11326" />
-    <line
-       x1="166.14999"
-       y1="434.84"
-       x2="166.46001"
-       y2="433.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11328" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.26,322.91 494.35,322.42 490.22,322.42 "
-       id="polygon11330" />
-    <polygon
-       style="opacity:1;fill:#0000d3"
-       points="216.27,419.08 216.53,419.56 216.51,419.18 "
-       id="polygon11332" />
-    <line
-       x1="166.89"
-       y1="425.73999"
-       x2="166.64999"
-       y2="424.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11334" />
-    <line
-       x1="115.45"
-       y1="333.38"
-       x2="114.93"
-       y2="332.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11336" />
-    <line
-       x1="191.63"
-       y1="236.85001"
-       x2="193.42"
-       y2="236.28999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11338" />
-    <line
-       x1="165.78999"
-       y1="435.70001"
-       x2="166.14999"
-       y2="434.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11340" />
-    <line
-       x1="137.00999"
-       y1="348.09"
-       x2="135.77"
-       y2="347.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11342" />
-    <line
-       x1="156.21001"
-       y1="285"
-       x2="157"
-       y2="285.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11344" />
-    <line
-       x1="166.64999"
-       y1="424.88"
-       x2="166.35001"
-       y2="424.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11346" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="233.68,342.26 224.7,345.09 224.35,344.91 "
-       id="polygon11348" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="234.57,345.01 224.98,347.93 225.24,347.66 "
-       id="polygon11350" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="496.09,329.59 490.4,329.29 495.86,329.21 "
-       id="polygon11352" />
-    <line
-       x1="218.71001"
-       y1="210.78"
-       x2="219.46001"
-       y2="209"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11354" />
-    <line
-       x1="165.39"
-       y1="436.51999"
-       x2="165.78999"
-       y2="435.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11356" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="495.81,327.77 490.11,327.47 496.01,327.34 "
-       id="polygon11358" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="180.74,257.06 190.99,260.18 191.3,260.08 "
-       id="polygon11360" />
-    <line
-       x1="193.42"
-       y1="236.28999"
-       x2="195.17999"
-       y2="235.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11362" />
-    <line
-       x1="166.35001"
-       y1="424.04999"
-       x2="165.99001"
-       y2="423.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11364" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="234.03,342.45 225.02,345.41 224.7,345.09 "
-       id="polygon11366" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="181.98,254.5 192.23,257.63 192.08,257.29 "
-       id="polygon11368" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="234.74,344.63 225.24,347.66 225.41,347.28 "
-       id="polygon11370" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="495.73,328.75 490.04,328.45 495.71,328.25 "
-       id="polygon11372" />
-    <line
-       x1="142.28"
-       y1="432.64001"
-       x2="142.55"
-       y2="433.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11374" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="234.35,342.76 225.27,345.83 225.02,345.41 "
-       id="polygon11376" />
-    <polygon
-       style="opacity:1;fill:#0041be"
-       points="496.22,339.8 502.71,344.66 496.46,339.87 "
-       id="polygon11378" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="234.8,344.16 225.41,347.28 225.47,346.81 "
-       id="polygon11380" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="181.05,256.96 191.3,260.08 191.62,259.84 "
-       id="polygon11382" />
-    <line
-       x1="116.07"
-       y1="334.48999"
-       x2="115.45"
-       y2="333.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11384" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="234.6,343.18 225.42,346.32 225.27,345.83 "
-       id="polygon11386" />
-    <line
-       x1="191"
-       y1="270.70999"
-       x2="192.05"
-       y2="271.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11388" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="234.75,343.67 225.47,346.81 225.42,346.32 "
-       id="polygon11390" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="182.04,254.93 192.29,258.05 192.23,257.63 "
-       id="polygon11392" />
-    <line
-       x1="123.36"
-       y1="290.10999"
-       x2="124.22"
-       y2="289.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11394" />
-    <line
-       x1="195.17999"
-       y1="235.63"
-       x2="196.91"
-       y2="234.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11396" />
-    <line
-       x1="217.89"
-       y1="212.55"
-       x2="218.71001"
-       y2="210.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11398" />
-    <line
-       x1="135.77"
-       y1="347.79001"
-       x2="134.48"
-       y2="347.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11400" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="181.36,256.72 191.62,259.84 191.9,259.48 "
-       id="polygon11402" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="182,255.41 192.25,258.54 192.29,258.05 "
-       id="polygon11404" />
-    <line
-       x1="233.23"
-       y1="291.97"
-       x2="232.87"
-       y2="290.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11406" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="181.64,256.35 191.9,259.48 192.12,259.03 "
-       id="polygon11408" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="181.86,255.9 192.12,259.03 192.25,258.54 "
-       id="polygon11410" />
-    <line
-       x1="165.58"
-       y1="422.5"
-       x2="165.12"
-       y2="421.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11412" />
-    <line
-       x1="164.48"
-       y1="438.07001"
-       x2="164.95"
-       y2="437.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11414" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="490.48,321.52 494.5,321.49 494.59,321.27 "
-       id="polygon11416" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="490.67,323.73 494.95,323.61 494.79,323.48 "
-       id="polygon11418" />
-    <line
-       x1="196.91"
-       y1="234.87"
-       x2="198.60001"
-       y2="234.02"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11420" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="494.79,323.48 490.67,323.73 494.66,323.3 "
-       id="polygon11422" />
-    <line
-       x1="217.02"
-       y1="214.3"
-       x2="217.89"
-       y2="212.55"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11424" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="496.01,339.33 502.5,344.18 496.06,339.62 "
-       id="polygon11426" />
-    <line
-       x1="116.78"
-       y1="335.59"
-       x2="116.07"
-       y2="334.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11428" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="205.39,424.32 214.22,417.54 214.13,417.83 "
-       id="polygon11430" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="497.45,337.31 503.95,342.16 497.11,337.5 "
-       id="polygon11432" />
-    <line
-       x1="198.60001"
-       y1="234.02"
-       x2="200.25"
-       y2="233.08"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11434" />
-    <line
-       x1="134.48"
-       y1="347.42999"
-       x2="133.17"
-       y2="347.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11436" />
-    <polygon
-       style="opacity:1;fill:#0040ba"
-       points="504.69,342.53 498.16,337.49 504.66,342.34 "
-       id="polygon11438" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.06,338.96 502.56,343.82 496.01,339.33 "
-       id="polygon11440" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="497.11,337.5 503.61,342.35 496.77,337.79 "
-       id="polygon11442" />
-    <line
-       x1="216.08"
-       y1="216.03999"
-       x2="217.02"
-       y2="214.3"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11444" />
-    <line
-       x1="122.6"
-       y1="291.01001"
-       x2="123.36"
-       y2="290.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11446" />
-    <line
-       x1="200.25"
-       y1="233.08"
-       x2="201.86"
-       y2="232.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11448" />
-    <line
-       x1="164.60001"
-       y1="421.12"
-       x2="164.03"
-       y2="420.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11450" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.22,338.56 502.71,343.41 496.06,338.96 "
-       id="polygon11452" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.77,337.79 503.27,342.64 496.46,338.16 "
-       id="polygon11454" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.46,338.16 502.96,343.01 496.22,338.56 "
-       id="polygon11456" />
-    <line
-       x1="192.05"
-       y1="271.32999"
-       x2="193.12"
-       y2="272.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11458" />
-    <line
-       x1="163.45"
-       y1="439.45001"
-       x2="163.98"
-       y2="438.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11460" />
-    <line
-       x1="117.59"
-       y1="336.66"
-       x2="116.78"
-       y2="335.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11462" />
-    <polygon
-       style="opacity:1;fill:#007245"
-       points="495.34,307.97 486.54,308.34 486.25,308.66 "
-       id="polygon11464" />
-    <line
-       x1="201.86"
-       y1="232.03999"
-       x2="203.42"
-       y2="230.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11466" />
-    <line
-       x1="215.09"
-       y1="217.75"
-       x2="216.08"
-       y2="216.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11468" />
-    <line
-       x1="152.25"
-       y1="318.67999"
-       x2="151.75"
-       y2="318.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11470" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="207.6,426.64 216.43,419.85 216.53,419.56 "
-       id="polygon11472" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="205.88,424.09 214.72,417.3 214.43,417.36 "
-       id="polygon11474" />
-    <line
-       x1="164.03"
-       y1="420.5"
-       x2="163.41"
-       y2="419.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11476" />
-    <line
-       x1="133.17"
-       y1="347.01001"
-       x2="131.84"
-       y2="346.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11478" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="495.05,308.29 486.25,308.66 486.05,309.07 "
-       id="polygon11480" />
-    <line
-       x1="203.42"
-       y1="230.92999"
-       x2="204.94"
-       y2="229.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11482" />
-    <line
-       x1="214.02"
-       y1="219.42"
-       x2="215.09"
-       y2="217.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11484" />
-    <line
-       x1="157.69"
-       y1="285.75"
-       x2="158.28"
-       y2="286.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11486" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="494.96,310.12 486.15,310.49 486.41,310.86 "
-       id="polygon11488" />
-    <line
-       x1="233.53999"
-       y1="293.54001"
-       x2="233.23"
-       y2="291.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11490" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="207.7,426.35 216.53,419.56 216.51,419.18 "
-       id="polygon11492" />
-    <line
-       x1="204.94"
-       y1="229.72"
-       x2="206.39999"
-       y2="228.45"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11494" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="206.23,424.18 215.07,417.39 214.72,417.3 "
-       id="polygon11496" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="494.77,309.18 485.96,309.55 486,310.04 "
-       id="polygon11498" />
-    <line
-       x1="212.89999"
-       y1="221.06"
-       x2="214.02"
-       y2="219.42"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11500" />
-    <line
-       x1="118.48"
-       y1="337.70999"
-       x2="117.59"
-       y2="336.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11502" />
-    <line
-       x1="206.39999"
-       y1="228.45"
-       x2="207.82001"
-       y2="227.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11504" />
-    <line
-       x1="211.72"
-       y1="222.64999"
-       x2="212.89999"
-       y2="221.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11506" />
-    <line
-       x1="207.82001"
-       y1="227.09"
-       x2="209.17"
-       y2="225.67"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11508" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="207.67,425.96 216.51,419.18 216.37,418.75 "
-       id="polygon11510" />
-    <polygon
-       style="opacity:1;fill:#003498"
-       points="504.15,342.12 497.45,337.31 503.95,342.16 "
-       id="polygon11512" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="206.61,424.39 215.45,417.6 215.07,417.39 "
-       id="polygon11514" />
-    <line
-       x1="210.47"
-       y1="224.19"
-       x2="211.72"
-       y2="222.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11516" />
-    <line
-       x1="141.78"
-       y1="431.14999"
-       x2="141.89"
-       y2="431.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11518" />
-    <line
-       x1="209.17"
-       y1="225.67"
-       x2="210.47"
-       y2="224.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11520" />
-    <line
-       x1="121.93"
-       y1="291.95999"
-       x2="122.6"
-       y2="291.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11522" />
-    <line
-       x1="131.84"
-       y1="346.53"
-       x2="130.5"
-       y2="345.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11524" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="496.06,339.62 502.5,344.18 502.52,344.28 "
-       id="polygon11526" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="207.54,425.54 216.37,418.75 216.13,418.32 "
-       id="polygon11528" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="206.98,424.71 215.81,417.92 215.45,417.6 "
-       id="polygon11530" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="497.11,337.5 503.95,342.16 503.84,342.22 "
-       id="polygon11532" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="207.29,425.11 216.13,418.32 215.81,417.92 "
-       id="polygon11534" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="192.08,257.29 181.98,254.5 181.83,254.16 "
-       id="polygon11536" />
-    <line
-       x1="162.33"
-       y1="440.63"
-       x2="162.89999"
-       y2="440.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11538" />
-    <line
-       x1="162.75"
-       y1="419.41"
-       x2="162.05"
-       y2="418.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11540" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="503.84,342.22 497.11,337.5 503.61,342.35 "
-       id="polygon11542" />
-    <line
-       x1="119.45"
-       y1="338.73001"
-       x2="118.48"
-       y2="337.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11544" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.01,339.33 502.56,343.82 502.54,343.94 "
-       id="polygon11546" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="191.3,260.08 180.74,257.06 181.05,256.96 "
-       id="polygon11548" />
-    <line
-       x1="193.12"
-       y1="272.03"
-       x2="194.19"
-       y2="272.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11550" />
-    <line
-       x1="130.5"
-       y1="345.98001"
-       x2="129.16"
-       y2="345.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11552" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="502.66,343.55 496.06,338.96 502.56,343.82 "
-       id="polygon11554" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="503.49,342.45 496.77,337.79 503.27,342.64 "
-       id="polygon11556" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="192.23,257.63 182.04,254.93 181.98,254.5 "
-       id="polygon11558" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.46,338.16 503.27,342.64 503.16,342.77 "
-       id="polygon11560" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="502.88,343.14 496.22,338.56 502.71,343.41 "
-       id="polygon11562" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="503.16,342.77 496.46,338.16 502.96,343.01 "
-       id="polygon11564" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="496.22,338.56 502.96,343.01 502.88,343.14 "
-       id="polygon11566" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="191.62,259.84 181.05,256.96 181.36,256.72 "
-       id="polygon11568" />
-    <line
-       x1="141.72"
-       y1="430.57001"
-       x2="141.78"
-       y2="431.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11570" />
-    <line
-       x1="120.49"
-       y1="339.72"
-       x2="119.45"
-       y2="338.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11572" />
-    <line
-       x1="151.75"
-       y1="318.89999"
-       x2="151.16"
-       y2="319.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11574" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="192.29,258.05 182,255.41 182.04,254.93 "
-       id="polygon11576" />
-    <line
-       x1="129.16"
-       y1="345.39001"
-       x2="127.83"
-       y2="344.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11578" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="191.9,259.48 181.36,256.72 181.64,256.35 "
-       id="polygon11580" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="192.25,258.54 181.86,255.9 182,255.41 "
-       id="polygon11582" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="192.12,259.03 181.64,256.35 181.86,255.9 "
-       id="polygon11584" />
-    <line
-       x1="121.59"
-       y1="340.67001"
-       x2="120.49"
-       y2="339.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11586" />
-    <line
-       x1="121.37"
-       y1="292.94"
-       x2="121.93"
-       y2="291.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11588" />
-    <line
-       x1="233.8"
-       y1="295.17001"
-       x2="233.53999"
-       y2="293.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11590" />
-    <line
-       x1="127.83"
-       y1="344.73001"
-       x2="126.52"
-       y2="344.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11592" />
-    <line
-       x1="161.3"
-       y1="418.56"
-       x2="160.53"
-       y2="418.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11594" />
-    <line
-       x1="122.76"
-       y1="341.57001"
-       x2="121.59"
-       y2="340.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11596" />
-    <line
-       x1="126.52"
-       y1="344.01999"
-       x2="125.23"
-       y2="343.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11598" />
-    <line
-       x1="123.97"
-       y1="342.44"
-       x2="122.76"
-       y2="341.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11600" />
-    <line
-       x1="125.23"
-       y1="343.25"
-       x2="123.97"
-       y2="342.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11602" />
-    <polygon
-       style="opacity:1;fill:#007f63"
-       points="499.15,323.21 495.11,323.73 494.95,323.61 "
-       id="polygon11604" />
-    <polygon
-       style="opacity:1;fill:#007f63"
-       points="494.95,323.61 499.15,323.21 494.79,323.48 "
-       id="polygon11606" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.96,321.01 494.41,321.69 494.5,321.49 "
-       id="polygon11608" />
-    <line
-       x1="161.14999"
-       y1="441.59"
-       x2="161.74001"
-       y2="441.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11610" />
-    <line
-       x1="194.19"
-       y1="272.81"
-       x2="195.27"
-       y2="273.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11612" />
-    <line
-       x1="160.53"
-       y1="418.22"
-       x2="159.72"
-       y2="417.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11614" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="494.45,322.89 498.74,322.39 494.37,322.66 "
-       id="polygon11616" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.7,321.9 494.37,322.66 494.35,322.42 "
-       id="polygon11618" />
-    <line
-       x1="141.78"
-       y1="429.32001"
-       x2="141.72"
-       y2="429.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11620" />
-    <polygon
-       style="opacity:1;fill:#00a983"
-       points="499.96,320.46 495.6,320.72 500.34,320.57 "
-       id="polygon11622" />
-    <line
-       x1="159.72"
-       y1="417.95001"
-       x2="158.89"
-       y2="417.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11624" />
-    <line
-       x1="158.75999"
-       y1="286.51999"
-       x2="159.13"
-       y2="286.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11626" />
-    <line
-       x1="120.91"
-       y1="293.95001"
-       x2="121.37"
-       y2="292.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11628" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="216.53,419.56 207.6,426.64 207.7,426.35 "
-       id="polygon11630" />
-    <polygon
-       style="opacity:1;fill:#0021bf"
-       points="507.58,344.79 507.47,344.43 507.74,344.51 "
-       id="polygon11632" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="516.95,349.85 506.8,344.68 507.14,344.49 "
-       id="polygon11634" />
-    <polygon
-       style="opacity:1;fill:#001a98"
-       points="507.28,344.65 504.15,342.12 503.95,342.16 "
-       id="polygon11636" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="505.28,327.8 496.01,327.34 495.81,327.77 "
-       id="polygon11638" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="214.72,417.3 206.23,424.18 205.88,424.09 "
-       id="polygon11640" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="505.14,329.68 495.87,329.21 496.09,329.59 "
-       id="polygon11642" />
-    <line
-       x1="234.00999"
-       y1="296.88"
-       x2="233.8"
-       y2="295.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11644" />
-    <line
-       x1="158.89"
-       y1="417.73999"
-       x2="158.03999"
-       y2="417.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11646" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="216.51,419.18 207.7,426.35 207.67,425.96 "
-       id="polygon11648" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="504.99,328.72 495.71,328.25 495.73,328.75 "
-       id="polygon11650" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="506.94,344.84 503.84,342.22 503.61,342.35 "
-       id="polygon11652" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="215.07,417.39 206.61,424.39 206.23,424.18 "
-       id="polygon11654" />
-    <line
-       x1="195.27"
-       y1="273.67001"
-       x2="196.33"
-       y2="274.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11656" />
-    <polygon
-       style="opacity:1;fill:#009c7a"
-       points="499.85,323.57 495.48,323.84 499.48,323.46 "
-       id="polygon11658" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="505.89,346.3 502.66,343.55 502.56,343.82 "
-       id="polygon11660" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="216.37,418.75 207.67,425.96 207.54,425.54 "
-       id="polygon11662" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="506.6,345.13 503.49,342.45 503.27,342.64 "
-       id="polygon11664" />
-    <polygon
-       style="opacity:1;fill:#007245"
-       points="486.25,308.66 495.34,307.97 495.05,308.29 "
-       id="polygon11666" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="215.45,417.6 206.98,424.71 206.61,424.39 "
-       id="polygon11668" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="502.71,343.41 506.05,345.9 502.66,343.55 "
-       id="polygon11670" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="216.13,418.32 207.54,425.54 207.29,425.11 "
-       id="polygon11672" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="502.96,343.01 506.29,345.5 502.88,343.14 "
-       id="polygon11674" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="214.3,347.65 223.67,345 223.41,345.27 "
-       id="polygon11676" />
-    <line
-       x1="159.95"
-       y1="442.31"
-       x2="160.55"
-       y2="441.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11678" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="215.81,417.92 207.29,425.11 206.98,424.71 "
-       id="polygon11680" />
-    <polygon
-       style="opacity:1;fill:#007f63"
-       points="499.48,323.46 495.11,323.73 499.15,323.21 "
-       id="polygon11682" />
-    <line
-       x1="142.08"
-       y1="427.98001"
-       x2="141.89999"
-       y2="428.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11684" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="486.05,309.07 495.05,308.29 494.86,308.7 "
-       id="polygon11686" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="486.41,310.86 494.96,310.12 495.21,310.5 "
-       id="polygon11688" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="505.84,346.67 502.52,344.28 505.89,346.96 "
-       id="polygon11690" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="485.96,309.55 494.86,308.7 494.77,309.18 "
-       id="polygon11692" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.77,321.43 494.41,321.69 498.96,321.01 "
-       id="polygon11694" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="507.28,344.65 503.84,342.22 506.94,344.84 "
-       id="polygon11696" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="486,310.04 494.77,309.18 494.81,309.67 "
-       id="polygon11698" />
-    <line
-       x1="120.56"
-       y1="295"
-       x2="120.91"
-       y2="293.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11700" />
-    <line
-       x1="157.16"
-       y1="417.51999"
-       x2="156.27"
-       y2="417.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11702" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.7,321.9 494.33,322.17 498.77,321.43 "
-       id="polygon11704" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.89,322.84 494.53,323.11 498.74,322.39 "
-       id="polygon11706" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="505.89,346.3 502.54,343.94 505.84,346.67 "
-       id="polygon11708" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.74,322.39 494.37,322.66 498.7,321.9 "
-       id="polygon11710" />
-    <line
-       x1="150.46001"
-       y1="319.20001"
-       x2="149.67"
-       y2="319.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11712" />
-    <line
-       x1="142.32001"
-       y1="427.28"
-       x2="142.08"
-       y2="427.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11714" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="506.6,345.13 503.16,342.77 506.29,345.5 "
-       id="polygon11716" />
-    <line
-       x1="159.35001"
-       y1="442.57999"
-       x2="159.95"
-       y2="442.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11718" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="506.29,345.5 502.88,343.14 506.05,345.9 "
-       id="polygon11720" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="224.66,348.05 214.94,350.68 215.29,350.71 "
-       id="polygon11722" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="215.61,350.59 224.98,347.93 225.24,347.66 "
-       id="polygon11724" />
-    <line
-       x1="156.27"
-       y1="417.5"
-       x2="155.38"
-       y2="417.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11726" />
-    <line
-       x1="196.33"
-       y1="274.60999"
-       x2="197.39"
-       y2="275.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11728" />
-    <line
-       x1="234.16"
-       y1="298.64001"
-       x2="234.00999"
-       y2="296.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11730" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="215.33,347.75 224.7,345.09 224.35,344.91 "
-       id="polygon11732" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="215.87,350.32 225.24,347.66 225.41,347.28 "
-       id="polygon11734" />
-    <line
-       x1="142.61"
-       y1="426.57001"
-       x2="142.32001"
-       y2="427.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11736" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="215.65,348.07 225.02,345.41 224.7,345.09 "
-       id="polygon11738" />
-    <line
-       x1="155.38"
-       y1="417.54999"
-       x2="154.47"
-       y2="417.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11740" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="216.04,349.94 225.41,347.28 225.47,346.81 "
-       id="polygon11742" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="215.9,348.49 225.27,345.83 225.02,345.41 "
-       id="polygon11744" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="216.1,349.47 225.47,346.81 225.42,346.32 "
-       id="polygon11746" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="216.05,348.97 225.42,346.32 225.27,345.83 "
-       id="polygon11748" />
-    <line
-       x1="120.32"
-       y1="296.07001"
-       x2="120.56"
-       y2="295"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11750" />
-    <line
-       x1="154.47"
-       y1="417.66"
-       x2="153.57001"
-       y2="417.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11752" />
-    <line
-       x1="143.37"
-       y1="425.14001"
-       x2="142.96001"
-       y2="425.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11754" />
-    <line
-       x1="153.57001"
-       y1="417.82999"
-       x2="152.67"
-       y2="418.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11756" />
-    <line
-       x1="197.39"
-       y1="275.64001"
-       x2="198.42999"
-       y2="276.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11758" />
-    <line
-       x1="149.67"
-       y1="319.29001"
-       x2="148.8"
-       y2="319.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="207.38,426.41 207.6,426.64 207.7,426.35 "
-       id="polygon11762" />
-    <line
-       x1="234.24001"
-       y1="300.47"
-       x2="234.16"
-       y2="298.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11764" />
-    <line
-       x1="152.67"
-       y1="418.06"
-       x2="151.78"
-       y2="418.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11766" />
-    <line
-       x1="143.84"
-       y1="424.42999"
-       x2="143.37"
-       y2="425.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11768" />
-    <polygon
-       style="opacity:1;fill:#001eb3"
-       points="517.74,350.1 507.74,344.51 507.94,344.73 "
-       id="polygon11770" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="496.01,327.34 505.57,327.47 505.28,327.8 "
-       id="polygon11772" />
-    <line
-       x1="158.2"
-       y1="442.92999"
-       x2="158.77"
-       y2="442.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11774" />
-    <polygon
-       style="opacity:1;fill:#0025d9"
-       points="516.21,352.73 506.73,347.3 506.41,347.36 "
-       id="polygon11776" />
-    <line
-       x1="151.78"
-       y1="418.35001"
-       x2="150.91"
-       y2="418.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11778" />
-    <line
-       x1="144.35001"
-       y1="423.73999"
-       x2="143.84"
-       y2="424.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11780" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="171.54,251.02 181.83,254.16 181.6,253.96 "
-       id="polygon11782" />
-    <line
-       x1="120.2"
-       y1="297.16"
-       x2="120.32"
-       y2="296.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11784" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="495.87,329.21 505.01,329.22 505.14,329.68 "
-       id="polygon11786" />
-    <line
-       x1="150.91"
-       y1="418.70001"
-       x2="150.05"
-       y2="419.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11788" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="495.71,328.25 505.09,328.23 504.99,328.72 "
-       id="polygon11790" />
-    <line
-       x1="145.53999"
-       y1="422.39001"
-       x2="144.92"
-       y2="423.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11792" />
-    <line
-       x1="198.42999"
-       y1="276.73999"
-       x2="199.45"
-       y2="277.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11794" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="171.69,251.36 181.98,254.5 181.83,254.16 "
-       id="polygon11796" />
-    <line
-       x1="149.22"
-       y1="419.54001"
-       x2="148.41"
-       y2="420.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11798" />
-    <line
-       x1="146.89"
-       y1="421.14001"
-       x2="146.2"
-       y2="421.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11800" />
-    <line
-       x1="147.64"
-       y1="420.57001"
-       x2="146.89"
-       y2="421.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11802" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="170.75,253.82 181.05,256.96 181.36,256.71 "
-       id="polygon11804" />
-    <line
-       x1="148.8"
-       y1="319.32001"
-       x2="147.84"
-       y2="319.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11806" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="171.74,251.79 182.04,254.93 181.98,254.5 "
-       id="polygon11808" />
-    <line
-       x1="234.25"
-       y1="302.34"
-       x2="234.24001"
-       y2="300.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11810" />
-    <polygon
-       style="opacity:1;fill:#009f61"
-       points="495.54,310.75 495.37,310.25 495.64,310.46 "
-       id="polygon11812" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="171.07,253.58 181.36,256.71 181.64,256.35 "
-       id="polygon11814" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="171.7,252.27 182,255.41 182.04,254.93 "
-       id="polygon11816" />
-    <line
-       x1="159.55"
-       y1="287.64999"
-       x2="159.59"
-       y2="288"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11818" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="171.34,253.22 181.64,256.35 181.86,255.9 "
-       id="polygon11820" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="171.56,252.77 181.86,255.9 182,255.41 "
-       id="polygon11822" />
-    <line
-       x1="120.18"
-       y1="298.26999"
-       x2="120.2"
-       y2="297.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11824" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="516.61,350.05 506.47,345 506.8,344.68 "
-       id="polygon11826" />
-    <line
-       x1="199.45"
-       y1="277.92001"
-       x2="200.42999"
-       y2="279.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11828" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.66,351.67 505.84,346.72 505.86,346.3 "
-       id="polygon11830" />
-    <line
-       x1="157.11"
-       y1="443.01999"
-       x2="157.64"
-       y2="443"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11832" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="516.27,350.36 506.18,345.4 506.47,345 "
-       id="polygon11834" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.78,351.22 505.86,346.3 505.97,345.85 "
-       id="polygon11836" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.99,350.77 505.97,345.85 506.18,345.4 "
-       id="polygon11838" />
-    <polygon
-       style="opacity:1;fill:#00d4a6"
-       points="500.57,323.35 508.47,323.16 500.22,323.54 "
-       id="polygon11840" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="224.35,344.91 215.33,347.75 214.98,347.56 "
-       id="polygon11842" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="224.7,345.09 215.65,348.07 215.33,347.75 "
-       id="polygon11844" />
-    <line
-       x1="147.84"
-       y1="319.29999"
-       x2="146.82001"
-       y2="319.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11846" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="225.41,347.28 215.87,350.32 216.04,349.94 "
-       id="polygon11848" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="494.86,308.7 496.94,308.52 495.05,308.29 "
-       id="polygon11850" />
-    <line
-       x1="234.19"
-       y1="304.26001"
-       x2="234.25"
-       y2="302.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11852" />
-    <polygon
-       style="opacity:1;fill:#00876a"
-       points="499.25,320.68 507.83,320.12 499.6,320.49 "
-       id="polygon11854" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="225.02,345.41 215.9,348.49 215.65,348.07 "
-       id="polygon11856" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="225.47,346.81 216.04,349.94 216.1,349.47 "
-       id="polygon11858" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="225.27,345.83 216.05,348.97 215.9,348.49 "
-       id="polygon11860" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="494.8,309.67 496.84,309.47 494.77,309.18 "
-       id="polygon11862" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="225.42,346.32 216.1,349.47 216.05,348.97 "
-       id="polygon11864" />
-    <line
-       x1="120.28"
-       y1="299.39001"
-       x2="120.18"
-       y2="298.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11866" />
-    <line
-       x1="200.42999"
-       y1="279.17001"
-       x2="201.39"
-       y2="280.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11868" />
-    <line
-       x1="215.02"
-       y1="421.89999"
-       x2="195.36"
-       y2="435.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11870" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="207.4,426.82 198.25,433.68 198.54,433.63 "
-       id="polygon11872" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="198.74,433.45 207.6,426.64 207.7,426.35 "
-       id="polygon11874" />
-    <polygon
-       style="opacity:1;fill:#007259"
-       points="498.96,321 507.48,320.31 499.25,320.68 "
-       id="polygon11876" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="198.84,433.16 207.7,426.35 207.67,425.96 "
-       id="polygon11878" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="197.37,430.98 206.23,424.18 205.88,424.09 "
-       id="polygon11880" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="181.6,253.96 171.54,251.02 171.3,250.82 "
-       id="polygon11882" />
-    <polygon
-       style="opacity:1;fill:#007e4c"
-       points="495.21,310.49 497.5,310.61 497.25,310.41 "
-       id="polygon11884" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.69,321.9 507.01,321.06 498.77,321.42 "
-       id="polygon11886" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="198.81,432.78 207.67,425.96 207.54,425.54 "
-       id="polygon11888" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="197.75,431.2 206.61,424.39 206.23,424.18 "
-       id="polygon11890" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.88,322.84 506.98,322.02 498.73,322.39 "
-       id="polygon11892" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="198.67,432.35 207.54,425.54 207.29,425.11 "
-       id="polygon11894" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="198.11,431.52 206.98,424.71 206.61,424.39 "
-       id="polygon11896" />
-    <line
-       x1="201.39"
-       y1="280.48999"
-       x2="202.3"
-       y2="281.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11898" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="181.83,254.16 171.69,251.36 171.54,251.02 "
-       id="polygon11900" />
-    <line
-       x1="146.82001"
-       y1="319.23001"
-       x2="145.72"
-       y2="319.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11902" />
-    <line
-       x1="234.06"
-       y1="306.20999"
-       x2="234.19"
-       y2="304.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11904" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="198.43,431.91 207.29,425.11 206.98,424.71 "
-       id="polygon11906" />
-    <line
-       x1="156.13"
-       y1="442.85001"
-       x2="156.60001"
-       y2="442.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11908" />
-    <polygon
-       style="opacity:1;fill:#00157d"
-       points="516.43,349.94 516.77,349.74 517.06,350.14 "
-       id="polygon11910" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="507.14,344.49 516.95,349.85 517.27,349.79 "
-       id="polygon11912" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="181.05,256.96 170.44,253.92 170.75,253.82 "
-       id="polygon11914" />
-    <line
-       x1="120.48"
-       y1="300.51999"
-       x2="120.28"
-       y2="299.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11916" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="181.98,254.5 171.74,251.79 171.69,251.36 "
-       id="polygon11918" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="505.94,347.05 515.74,352.42 515.65,352.09 "
-       id="polygon11920" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="181.36,256.71 170.75,253.82 171.07,253.58 "
-       id="polygon11922" />
-    <polygon
-       style="opacity:1;fill:#0076aa"
-       points="506.27,327.23 512.17,327.59 506.62,327.34 "
-       id="polygon11924" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="182.04,254.93 171.7,252.27 171.74,251.79 "
-       id="polygon11926" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="181.64,256.35 171.07,253.58 171.34,253.22 "
-       id="polygon11928" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="182,255.41 171.56,252.77 171.7,252.27 "
-       id="polygon11930" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="181.86,255.9 171.34,253.22 171.56,252.77 "
-       id="polygon11932" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="506.47,345 516.27,350.36 516.61,350.05 "
-       id="polygon11934" />
-    <line
-       x1="202.3"
-       y1="281.88"
-       x2="203.16"
-       y2="283.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11936" />
-    <line
-       x1="155.67999"
-       y1="442.67001"
-       x2="156.13"
-       y2="442.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11938" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="505.86,346.3 515.66,351.67 515.78,351.22 "
-       id="polygon11940" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="506.18,345.4 515.99,350.77 516.27,350.36 "
-       id="polygon11942" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="505.97,345.85 515.78,351.22 515.99,350.77 "
-       id="polygon11944" />
-    <line
-       x1="233.85001"
-       y1="308.19"
-       x2="234.06"
-       y2="306.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11946" />
-    <line
-       x1="145.72"
-       y1="319.09"
-       x2="144.57001"
-       y2="318.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11948" />
-    <line
-       x1="120.8"
-       y1="301.64999"
-       x2="120.48"
-       y2="300.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11950" />
-    <polygon
-       style="opacity:1;fill:#006e9e"
-       points="506.02,330.43 511.5,330.66 505.68,330.32 "
-       id="polygon11952" />
-    <polygon
-       style="opacity:1;fill:#005f8a"
-       points="505.57,327.47 511.46,327.64 505.91,327.27 "
-       id="polygon11954" />
-    <line
-       x1="203.16"
-       y1="283.34"
-       x2="203.98"
-       y2="284.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11956" />
-    <polygon
-       style="opacity:1;fill:#0000f1"
-       points="215.48,350.29 215.29,350.71 215.61,350.59 "
-       id="polygon11958" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="205.59,424.14 197.02,430.89 196.73,430.95 "
-       id="polygon11960" />
-    <line
-       x1="233.55"
-       y1="310.20001"
-       x2="233.85001"
-       y2="308.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11962" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="505.14,329.68 510.75,329.7 505.01,329.22 "
-       id="polygon11964" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="504.99,328.72 510.73,328.72 505.09,328.23 "
-       id="polygon11966" />
-    <line
-       x1="121.22"
-       y1="302.78"
-       x2="120.8"
-       y2="301.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11968" />
-    <line
-       x1="144.57001"
-       y1="318.91"
-       x2="143.36"
-       y2="318.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11970" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="205.88,424.09 197.37,430.98 197.02,430.89 "
-       id="polygon11972" />
-    <line
-       x1="203.98"
-       y1="284.85001"
-       x2="204.73"
-       y2="286.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11974" />
-    <polygon
-       style="opacity:1;fill:#009c7a"
-       points="508.08,323.21 499.84,323.58 507.72,323.1 "
-       id="polygon11976" />
-    <polygon
-       style="opacity:1;fill:#00876a"
-       points="507.49,320.3 499.25,320.68 507.83,320.12 "
-       id="polygon11978" />
-    <line
-       x1="159.34"
-       y1="288.64001"
-       x2="159.05"
-       y2="288.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11980" />
-    <polygon
-       style="opacity:1;fill:#00d45b"
-       points="498.62,310.61 505.11,310.48 498.34,310.75 "
-       id="polygon11982" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="207.67,425.96 198.84,433.16 198.81,432.78 "
-       id="polygon11984" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="206.23,424.18 197.75,431.2 197.37,430.98 "
-       id="polygon11986" />
-    <polygon
-       style="opacity:1;fill:#0076aa"
-       points="511.95,327.52 506.27,327.23 512.17,327.59 "
-       id="polygon11988" />
-    <line
-       x1="179.82001"
-       y1="445.95001"
-       x2="195.36"
-       y2="435.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line11990" />
-    <polygon
-       style="opacity:1;fill:#007259"
-       points="507.21,320.63 498.96,321 507.48,320.31 "
-       id="polygon11992" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="207.54,425.54 198.81,432.78 198.67,432.35 "
-       id="polygon11994" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="206.61,424.39 198.11,431.52 197.75,431.2 "
-       id="polygon11996" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="207.29,425.11 198.67,432.35 198.43,431.91 "
-       id="polygon11998" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="206.98,424.71 198.43,431.91 198.11,431.52 "
-       id="polygon12000" />
-    <line
-       x1="233.17999"
-       y1="312.20999"
-       x2="233.55"
-       y2="310.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12002" />
-    <line
-       x1="204.73"
-       y1="286.41"
-       x2="205.42999"
-       y2="288.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12004" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="498.88,322.84 507.13,322.48 507.13,322.46 "
-       id="polygon12006" />
-    <line
-       x1="121.74"
-       y1="303.89999"
-       x2="121.22"
-       y2="302.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12008" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="507.13,322.46 498.88,322.84 506.98,322.02 "
-       id="polygon12010" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="506.93,321.52 498.69,321.9 507.01,321.06 "
-       id="polygon12012" />
-    <polygon
-       style="opacity:1;fill:#009c43"
-       points="497.87,310.76 504.35,310.4 497.58,310.67 "
-       id="polygon12014" />
-    <polygon
-       style="opacity:1;fill:#006e9e"
-       points="511.71,330.73 506.02,330.43 511.5,330.66 "
-       id="polygon12016" />
-    <polygon
-       style="opacity:1;fill:#005f8a"
-       points="505.91,327.27 511.46,327.64 511.59,327.57 "
-       id="polygon12018" />
-    <line
-       x1="143.36"
-       y1="318.66"
-       x2="142.11"
-       y2="318.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12020" />
-    <polygon
-       style="opacity:1;fill:#007e36"
-       points="504.02,310.14 497.58,310.67 497.5,310.61 "
-       id="polygon12022" />
-    <polygon
-       style="opacity:1;fill:#007e36"
-       points="497.5,310.61 504.02,310.14 497.25,310.41 "
-       id="polygon12024" />
-    <polygon
-       style="opacity:1;fill:#005f8a"
-       points="511.25,327.77 505.57,327.47 511.46,327.64 "
-       id="polygon12026" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.86,307.93 496.89,308.62 496.94,308.52 "
-       id="polygon12028" />
-    <line
-       x1="154.61"
-       y1="441.79001"
-       x2="154.92"
-       y2="442.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12030" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="511.36,330.61 505.68,330.32 511.17,330.46 "
-       id="polygon12032" />
-    <line
-       x1="205.42999"
-       y1="288.04001"
-       x2="206.06"
-       y2="289.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12034" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="496.83,308.98 503.66,308.35 496.89,308.62 "
-       id="polygon12036" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="496.96,309.93 503.61,309.31 496.84,309.59 "
-       id="polygon12038" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.57,308.82 496.84,309.59 496.84,309.47 "
-       id="polygon12040" />
-    <line
-       x1="232.71001"
-       y1="314.23999"
-       x2="233.17999"
-       y2="312.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12042" />
-    <line
-       x1="122.36"
-       y1="305.01999"
-       x2="121.74"
-       y2="303.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12044" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="510.77,328.53 505.09,328.23 510.89,328.27 "
-       id="polygon12046" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="505.09,328.23 510.73,328.72 510.77,328.53 "
-       id="polygon12048" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="505.01,329.22 510.75,329.7 510.7,329.52 "
-       id="polygon12050" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="510.7,329.52 505.01,329.22 510.68,329.21 "
-       id="polygon12052" />
-    <line
-       x1="142.11"
-       y1="318.35999"
-       x2="140.83"
-       y2="317.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12054" />
-    <line
-       x1="206.06"
-       y1="289.70001"
-       x2="206.63"
-       y2="291.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12056" />
-    <line
-       x1="189.81"
-       y1="237.3"
-       x2="158.91"
-       y2="244.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12058" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="204.9,350.31 214.3,347.65 214.05,347.92 "
-       id="polygon12060" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="198.36,433.36 198.54,433.63 198.74,433.45 "
-       id="polygon12062" />
-    <line
-       x1="232.17"
-       y1="316.26999"
-       x2="232.71001"
-       y2="314.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12064" />
-    <line
-       x1="206.63"
-       y1="291.41"
-       x2="207.11"
-       y2="293.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12066" />
-    <line
-       x1="123.08"
-       y1="306.10999"
-       x2="122.36"
-       y2="305.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12068" />
-    <line
-       x1="140.83"
-       y1="317.98999"
-       x2="139.52"
-       y2="317.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12070" />
-    <polygon
-       style="opacity:1;fill:#00aa49"
-       points="504.89,307.39 498.13,307.66 505.27,307.5 "
-       id="polygon12072" />
-    <line
-       x1="207.11"
-       y1="293.16"
-       x2="207.52"
-       y2="294.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12074" />
-    <line
-       x1="231.53"
-       y1="318.29001"
-       x2="232.17"
-       y2="316.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12076" />
-    <line
-       x1="123.89"
-       y1="307.17999"
-       x2="123.08"
-       y2="306.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12078" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="205.93,350.41 215.33,347.75 214.98,347.56 "
-       id="polygon12080" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="206.46,352.99 215.87,350.32 216.04,349.94 "
-       id="polygon12082" />
-    <line
-       x1="207.52"
-       y1="294.92999"
-       x2="207.85001"
-       y2="296.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12084" />
-    <line
-       x1="139.52"
-       y1="317.56"
-       x2="138.17999"
-       y2="317.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12086" />
-    <polygon
-       style="opacity:1;fill:#00157d"
-       points="526.53,353.08 516.77,349.74 517.06,350.14 "
-       id="polygon12088" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="525.59,355.84 516.07,352.73 515.83,352.49 "
-       id="polygon12090" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="206.24,350.73 215.65,348.07 215.33,347.75 "
-       id="polygon12092" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="206.63,352.6 216.04,349.94 216.1,349.47 "
-       id="polygon12094" />
-    <polygon
-       style="opacity:1;fill:#00883a"
-       points="504.15,307.61 497.38,307.89 504.5,307.43 "
-       id="polygon12096" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="160.09,250.78 170.44,253.92 170.75,253.82 "
-       id="polygon12098" />
-    <polygon
-       style="opacity:1;fill:#009c43"
-       points="504.73,310.52 497.96,310.79 504.35,310.4 "
-       id="polygon12100" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="206.49,351.15 215.9,348.49 215.65,348.07 "
-       id="polygon12102" />
-    <line
-       x1="153.95"
-       y1="440.44"
-       x2="154.12"
-       y2="440.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12104" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="161.34,248.21 171.68,251.36 171.54,251.02 "
-       id="polygon12106" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="206.7,352.14 216.1,349.47 216.05,348.97 "
-       id="polygon12108" />
-    <line
-       x1="230.81"
-       y1="320.29001"
-       x2="231.53"
-       y2="318.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12110" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="206.65,351.64 216.05,348.97 215.9,348.49 "
-       id="polygon12112" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.88,353.62 526.19,353.29 525.05,353.34 "
-       id="polygon12114" />
-    <polygon
-       style="opacity:1;fill:#001dab"
-       points="527.03,353.1 536.73,354.54 537.01,354.79 "
-       id="polygon12116" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="536.05,354.48 526.01,353.25 526.35,353.04 "
-       id="polygon12118" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="526.19,353.29 516.11,350.27 516.43,349.94 "
-       id="polygon12120" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="525.44,355.47 515.83,352.49 515.68,352.12 "
-       id="polygon12122" />
-    <line
-       x1="124.79"
-       y1="308.23001"
-       x2="123.89"
-       y2="307.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12124" />
-    <line
-       x1="207.85001"
-       y1="296.73999"
-       x2="208.10001"
-       y2="298.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12126" />
-    <polygon
-       style="opacity:1;fill:#007e36"
-       points="504.35,310.4 497.58,310.67 504.02,310.14 "
-       id="polygon12128" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="160.41,250.68 170.75,253.82 171.07,253.58 "
-       id="polygon12130" />
-    <polygon
-       style="opacity:1;fill:#007245"
-       points="507.43,320.61 507.21,320.63 507.71,320.29 "
-       id="polygon12132" />
-    <line
-       x1="138.17999"
-       y1="317.07001"
-       x2="136.84"
-       y2="316.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12134" />
-    <polygon
-       style="opacity:1;fill:#00157d"
-       points="526.53,353.08 526.19,353.29 525.66,352.81 "
-       id="polygon12136" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.63,354.05 525.88,353.62 524.74,353.74 "
-       id="polygon12138" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.43,355.02 535.72,354.68 534.67,354.91 "
-       id="polygon12140" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="536.36,354.75 536.4,354.43 536.73,354.54 "
-       id="polygon12142" />
-    <polygon
-       style="opacity:1;fill:#001373"
-       points="545.54,354.28 535.58,354.7 535.9,354.5 "
-       id="polygon12144" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.72,354.68 525.73,353.58 526.01,353.25 "
-       id="polygon12146" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.88,353.62 515.86,350.7 516.11,350.27 "
-       id="polygon12148" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.39,355.02 515.68,352.12 515.64,351.67 "
-       id="polygon12150" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="161.4,248.64 171.74,251.79 171.68,251.36 "
-       id="polygon12152" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.46,354.53 525.63,354.05 524.42,354.17 "
-       id="polygon12154" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.43,355.02 525.52,354.02 525.73,353.58 "
-       id="polygon12156" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.63,354.05 515.7,351.18 515.86,350.7 "
-       id="polygon12158" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.22,355.46 525.4,354.52 525.52,354.02 "
-       id="polygon12160" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.46,354.53 515.64,351.67 515.7,351.18 "
-       id="polygon12162" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.66,308.35 496.89,308.62 503.86,307.93 "
-       id="polygon12164" />
-    <line
-       x1="208.10001"
-       y1="298.57001"
-       x2="208.25"
-       y2="300.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12166" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="160.72,250.44 171.07,253.58 171.34,253.21 "
-       id="polygon12168" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="161.36,249.13 171.7,252.27 171.74,251.79 "
-       id="polygon12170" />
-    <polygon
-       style="opacity:1;fill:#00a665"
-       points="507.35,322.46 507.55,322.29 507.75,322.59 "
-       id="polygon12172" />
-    <line
-       x1="230"
-       y1="322.28"
-       x2="230.81"
-       y2="320.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12174" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.57,308.82 496.81,309.1 503.66,308.35 "
-       id="polygon12176" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.76,309.77 497,310.04 503.61,309.31 "
-       id="polygon12178" />
-    <line
-       x1="125.76"
-       y1="309.25"
-       x2="124.79"
-       y2="308.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12180" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="161,250.07 171.34,253.21 171.56,252.77 "
-       id="polygon12182" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="161.22,249.62 171.56,252.77 171.7,252.27 "
-       id="polygon12184" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.61,309.31 496.84,309.59 503.57,308.82 "
-       id="polygon12186" />
-    <line
-       x1="208.25"
-       y1="300.41"
-       x2="208.32001"
-       y2="302.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12188" />
-    <line
-       x1="136.84"
-       y1="316.53"
-       x2="135.5"
-       y2="315.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12190" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="514.68,330.55 511.36,330.61 511.17,330.46 "
-       id="polygon12192" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="511.17,330.46 514.68,330.55 511.05,330.36 "
-       id="polygon12194" />
-    <line
-       x1="126.8"
-       y1="310.23999"
-       x2="125.76"
-       y2="309.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12196" />
-    <line
-       x1="158.14999"
-       y1="289.37"
-       x2="157.55"
-       y2="289.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12198" />
-    <line
-       x1="208.32001"
-       y1="302.26999"
-       x2="208.3"
-       y2="304.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12200" />
-    <line
-       x1="229.09"
-       y1="324.23999"
-       x2="230"
-       y2="322.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12202" />
-    <line
-       x1="135.5"
-       y1="315.92999"
-       x2="134.17"
-       y2="315.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12204" />
-    <line
-       x1="208.3"
-       y1="304.13"
-       x2="208.19"
-       y2="305.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12206" />
-    <line
-       x1="127.91"
-       y1="311.19"
-       x2="126.8"
-       y2="310.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12208" />
-    <line
-       x1="153.78999"
-       y1="439.32999"
-       x2="153.84"
-       y2="439.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12210" />
-    <line
-       x1="134.17"
-       y1="315.26999"
-       x2="132.85001"
-       y2="314.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12212" />
-    <line
-       x1="228.10001"
-       y1="326.16"
-       x2="229.09"
-       y2="324.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12214" />
-    <line
-       x1="208.19"
-       y1="305.98999"
-       x2="207.99001"
-       y2="307.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12216" />
-    <line
-       x1="129.08"
-       y1="312.10001"
-       x2="127.91"
-       y2="311.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12218" />
-    <line
-       x1="132.85001"
-       y1="314.54999"
-       x2="131.55"
-       y2="313.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12220" />
-    <line
-       x1="130.3"
-       y1="312.95999"
-       x2="129.08"
-       y2="312.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12222" />
-    <line
-       x1="131.55"
-       y1="313.78"
-       x2="130.3"
-       y2="312.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12224" />
-    <line
-       x1="207.99001"
-       y1="307.84"
-       x2="207.69"
-       y2="309.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12226" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="188.13,437.72 197.02,430.89 196.73,430.95 "
-       id="polygon12228" />
-    <line
-       x1="227.03"
-       y1="328.04001"
-       x2="228.10001"
-       y2="326.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12230" />
-    <line
-       x1="207.69"
-       y1="309.69"
-       x2="207.28999"
-       y2="311.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12232" />
-    <line
-       x1="207.28999"
-       y1="311.51999"
-       x2="206.81"
-       y2="313.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12234" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="215.29,350.71 205.53,353.34 205.89,353.38 "
-       id="polygon12236" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="189.95,439.98 198.84,433.16 198.81,432.78 "
-       id="polygon12238" />
-    <line
-       x1="225.86"
-       y1="329.87"
-       x2="227.03"
-       y2="328.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12240" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="188.48,437.8 197.37,430.98 197.02,430.89 "
-       id="polygon12242" />
-    <line
-       x1="206.81"
-       y1="313.32001"
-       x2="206.23"
-       y2="315.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12244" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="514.68,330.55 511.05,330.36 514.45,330.17 "
-       id="polygon12246" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="516.07,352.73 525.83,356.09 525.59,355.84 "
-       id="polygon12248" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="514.4,328.72 510.77,328.53 514.59,328.29 "
-       id="polygon12250" />
-    <line
-       x1="206.23"
-       y1="315.10001"
-       x2="205.55"
-       y2="316.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12252" />
-    <line
-       x1="157.55"
-       y1="289.54001"
-       x2="156.86"
-       y2="289.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12254" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="189.92,439.61 198.81,432.78 198.67,432.35 "
-       id="polygon12256" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="188.86,438.02 197.75,431.2 197.37,430.98 "
-       id="polygon12258" />
-    <line
-       x1="224.61"
-       y1="331.64999"
-       x2="225.86"
-       y2="329.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12260" />
-    <polygon
-       style="opacity:1;fill:#00a748"
-       points="504.5,307.43 504.57,307.73 504.28,307.88 "
-       id="polygon12262" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="514.32,329.71 510.7,329.52 514.3,329.21 "
-       id="polygon12264" />
-    <polygon
-       style="opacity:1;fill:#00157d"
-       points="516.43,349.94 526.19,353.29 525.66,352.81 "
-       id="polygon12266" />
-    <line
-       x1="205.55"
-       y1="316.85001"
-       x2="204.78999"
-       y2="318.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12268" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="189.79,439.18 198.67,432.35 198.43,431.91 "
-       id="polygon12270" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="189.22,438.34 198.11,431.52 197.75,431.2 "
-       id="polygon12272" />
-    <line
-       x1="204.78999"
-       y1="318.56"
-       x2="203.94"
-       y2="320.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12274" />
-    <line
-       x1="153.85001"
-       y1="438.07999"
-       x2="153.78999"
-       y2="438.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12276" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="189.54,438.74 198.43,431.91 198.11,431.52 "
-       id="polygon12278" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="214.98,347.56 205.93,350.41 205.57,350.22 "
-       id="polygon12280" />
-    <line
-       x1="223.28"
-       y1="333.35999"
-       x2="224.61"
-       y2="331.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12282" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="215.87,350.32 206.21,353.25 206.46,352.99 "
-       id="polygon12284" />
-    <line
-       x1="203.94"
-       y1="320.23001"
-       x2="203"
-       y2="321.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12286" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="516.11,350.27 526.19,353.29 525.05,353.34 "
-       id="polygon12288" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.79,355.25 535.07,355.96 535.14,355.47 "
-       id="polygon12290" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.11,355.95 525.39,355.02 525.4,354.52 "
-       id="polygon12292" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.39,355.02 535.1,356.46 535.11,355.95 "
-       id="polygon12294" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.68,352.12 525.44,355.47 525.39,355.02 "
-       id="polygon12296" />
-    <line
-       x1="221.87"
-       y1="335.01001"
-       x2="223.28"
-       y2="333.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12298" />
-    <line
-       x1="203"
-       y1="321.85001"
-       x2="201.98"
-       y2="323.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12300" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="171.68,251.36 161.4,248.64 161.34,248.21 "
-       id="polygon12302" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="215.33,347.75 206.24,350.73 205.93,350.41 "
-       id="polygon12304" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="216.04,349.94 206.46,352.99 206.63,352.6 "
-       id="polygon12306" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.86,350.7 525.88,353.62 524.74,353.74 "
-       id="polygon12308" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.64,351.67 525.39,355.02 525.46,354.53 "
-       id="polygon12310" />
-    <line
-       x1="220.38"
-       y1="336.59"
-       x2="221.87"
-       y2="335.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12312" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="171.07,253.58 160.41,250.68 160.72,250.44 "
-       id="polygon12314" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="515.7,351.18 525.63,354.05 524.42,354.17 "
-       id="polygon12316" />
-    <line
-       x1="201.98"
-       y1="323.42001"
-       x2="200.87"
-       y2="324.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12318" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="215.65,348.07 206.49,351.15 206.24,350.73 "
-       id="polygon12320" />
-    <line
-       x1="218.82001"
-       y1="338.09"
-       x2="220.38"
-       y2="336.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12322" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="216.1,349.47 206.63,352.6 206.7,352.14 "
-       id="polygon12324" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="171.74,251.79 161.36,249.13 161.4,248.64 "
-       id="polygon12326" />
-    <line
-       x1="217.17999"
-       y1="339.5"
-       x2="218.82001"
-       y2="338.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12328" />
-    <line
-       x1="200.87"
-       y1="324.94"
-       x2="199.67999"
-       y2="326.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12330" />
-    <line
-       x1="153.97"
-       y1="437.41"
-       x2="153.85001"
-       y2="438.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12332" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="171.34,253.21 160.72,250.44 161,250.07 "
-       id="polygon12334" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="215.9,348.49 206.65,351.64 206.49,351.15 "
-       id="polygon12336" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="216.05,348.97 206.7,352.14 206.65,351.64 "
-       id="polygon12338" />
-    <line
-       x1="215.47"
-       y1="340.82999"
-       x2="217.17999"
-       y2="339.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12340" />
-    <line
-       x1="201.97"
-       y1="347.39001"
-       x2="204.03"
-       y2="346.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12342" />
-    <line
-       x1="204.03"
-       y1="346.76001"
-       x2="206.06"
-       y2="346.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12344" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="171.7,252.27 161.22,249.62 161.36,249.13 "
-       id="polygon12346" />
-    <line
-       x1="206.06"
-       y1="346.03"
-       x2="208.03999"
-       y2="345.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12348" />
-    <line
-       x1="213.7"
-       y1="342.07001"
-       x2="215.47"
-       y2="340.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12350" />
-    <line
-       x1="208.03999"
-       y1="345.20001"
-       x2="209.98"
-       y2="344.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12352" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="171.56,252.77 161,250.07 161.22,249.62 "
-       id="polygon12354" />
-    <line
-       x1="211.87"
-       y1="343.20999"
-       x2="213.7"
-       y2="342.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12356" />
-    <line
-       x1="209.98"
-       y1="344.25"
-       x2="211.87"
-       y2="343.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12358" />
-    <line
-       x1="199.67999"
-       y1="326.39001"
-       x2="198.42999"
-       y2="327.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12360" />
-    <polygon
-       style="opacity:1;fill:#007346"
-       points="516.19,320.09 507.72,320.29 507.43,320.61 "
-       id="polygon12362" />
-    <line
-       x1="198.42999"
-       y1="327.79001"
-       x2="197.09"
-       y2="329.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12364" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.9,320.41 507.43,320.61 507.24,321.03 "
-       id="polygon12366" />
-    <line
-       x1="156.86"
-       y1="289.66"
-       x2="156.07001"
-       y2="289.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12368" />
-    <line
-       x1="197.09"
-       y1="329.10999"
-       x2="195.7"
-       y2="330.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12370" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.8,322.27 507.33,322.46 507.59,322.83 "
-       id="polygon12372" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="198.54,433.63 189.36,440.51 189.65,440.46 "
-       id="polygon12374" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.61,321.32 507.15,321.51 507.18,322 "
-       id="polygon12376" />
-    <line
-       x1="195.7"
-       y1="330.37"
-       x2="194.24001"
-       y2="331.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12378" />
-    <line
-       x1="154.39"
-       y1="436.03"
-       x2="154.14999"
-       y2="436.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12380" />
-    <line
-       x1="194.24001"
-       y1="331.56"
-       x2="192.72"
-       y2="332.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12382" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="196.73,430.95 188.13,437.72 187.84,437.77 "
-       id="polygon12384" />
-    <line
-       x1="173.72"
-       y1="432.29001"
-       x2="173.53"
-       y2="431.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12386" />
-    <line
-       x1="173.31"
-       y1="431.45999"
-       x2="173.08"
-       y2="431.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12388" />
-    <line
-       x1="192.72"
-       y1="332.67001"
-       x2="191.14999"
-       y2="333.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12390" />
-    <polygon
-       style="opacity:1;fill:#00883a"
-       points="504.15,307.61 509.64,307.29 504.5,307.43 "
-       id="polygon12392" />
-    <line
-       x1="174.17999"
-       y1="433.60001"
-       x2="174.05"
-       y2="433.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12394" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="198.84,433.16 189.86,440.28 189.95,439.98 "
-       id="polygon12396" />
-    <line
-       x1="172.55"
-       y1="430.31"
-       x2="172.25"
-       y2="429.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12398" />
-    <polygon
-       style="opacity:1;fill:#005981"
-       points="536.47,341.35 536.7,341.55 536.42,341.49 "
-       id="polygon12400" />
-    <line
-       x1="154.67999"
-       y1="435.32001"
-       x2="154.39"
-       y2="436.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12402" />
-    <line
-       x1="174.39"
-       y1="434.5"
-       x2="174.3"
-       y2="434.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12404" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="197.02,430.89 188.48,437.8 188.13,437.72 "
-       id="polygon12406" />
-    <line
-       x1="171.62"
-       y1="429.29999"
-       x2="171.27"
-       y2="428.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12408" />
-    <line
-       x1="191.14999"
-       y1="333.70001"
-       x2="189.53"
-       y2="334.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12410" />
-    <line
-       x1="174.52"
-       y1="435.41"
-       x2="174.46001"
-       y2="434.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12412" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="198.81,432.78 189.95,439.98 189.92,439.61 "
-       id="polygon12414" />
-    <line
-       x1="156.07001"
-       y1="289.73001"
-       x2="155.19"
-       y2="289.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12416" />
-    <line
-       x1="170.53999"
-       y1="428.45001"
-       x2="170.14999"
-       y2="428.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12418" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="197.37,430.98 188.86,438.02 188.48,437.8 "
-       id="polygon12420" />
-    <polygon
-       style="opacity:1;fill:#001a9a"
-       points="525.77,355.59 525.59,355.84 525.44,355.47 "
-       id="polygon12422" />
-    <line
-       x1="174.57001"
-       y1="436.31"
-       x2="174.55"
-       y2="435.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12424" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="198.67,432.35 189.92,439.61 189.79,439.18 "
-       id="polygon12426" />
-    <line
-       x1="189.53"
-       y1="334.64999"
-       x2="187.87"
-       y2="335.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12428" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="197.75,431.2 189.22,438.34 188.86,438.02 "
-       id="polygon12430" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.57,308.82 508.9,308.32 503.66,308.35 "
-       id="polygon12432" />
-    <line
-       x1="169.33"
-       y1="427.76999"
-       x2="168.91"
-       y2="427.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12434" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="503.76,309.77 508.95,309.28 503.61,309.31 "
-       id="polygon12436" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="198.43,431.91 189.79,439.18 189.54,438.74 "
-       id="polygon12438" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="198.11,431.52 189.54,438.74 189.22,438.34 "
-       id="polygon12440" />
-    <line
-       x1="155.45"
-       y1="433.89001"
-       x2="155.03999"
-       y2="434.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12442" />
-    <line
-       x1="168.47"
-       y1="427.44"
-       x2="168.03"
-       y2="427.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12444" />
-    <line
-       x1="174.53999"
-       y1="437.20001"
-       x2="174.56"
-       y2="436.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12446" />
-    <line
-       x1="167.58"
-       y1="427.19"
-       x2="167.13"
-       y2="427.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12448" />
-    <polygon
-       style="opacity:1;fill:#0000f1"
-       points="205.57,350.22 205.57,350.54 205.29,350.51 "
-       id="polygon12450" />
-    <line
-       x1="187.87"
-       y1="335.53"
-       x2="186.17"
-       y2="336.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12452" />
-    <line
-       x1="166.66"
-       y1="427.03"
-       x2="166.2"
-       y2="426.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12454" />
-    <line
-       x1="165.74001"
-       y1="426.95999"
-       x2="165.27"
-       y2="426.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12456" />
-    <line
-       x1="164.8"
-       y1="426.98001"
-       x2="164.34"
-       y2="427.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12458" />
-    <line
-       x1="174.45"
-       y1="438.04999"
-       x2="174.50999"
-       y2="437.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12460" />
-    <line
-       x1="163.88"
-       y1="427.07999"
-       x2="163.00999"
-       y2="427.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12462" />
-    <line
-       x1="156.42999"
-       y1="432.48001"
-       x2="155.91"
-       y2="433.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12464" />
-    <line
-       x1="186.17"
-       y1="336.32001"
-       x2="184.44"
-       y2="337.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12466" />
-    <line
-       x1="163.00999"
-       y1="427.42999"
-       x2="162.14999"
-       y2="427.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12468" />
-    <polygon
-       style="opacity:1;fill:#0095d7"
-       points="537.22,341.43 537.94,338.04 537.42,341.27 "
-       id="polygon12470" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="523.95,328.84 514.6,328.29 514.4,328.72 "
-       id="polygon12472" />
-    <line
-       x1="157.62"
-       y1="431.13"
-       x2="157"
-       y2="431.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12474" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="523.8,330.73 514.45,330.17 514.68,330.55 "
-       id="polygon12476" />
-    <polygon
-       style="opacity:1;fill:#005f89"
-       points="536.17,341.37 536.89,337.98 536.42,341.49 "
-       id="polygon12478" />
-    <line
-       x1="161.32001"
-       y1="428.26999"
-       x2="160.50999"
-       y2="428.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12480" />
-    <line
-       x1="158.28"
-       y1="430.48999"
-       x2="157.62"
-       y2="431.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12482" />
-    <line
-       x1="160.50999"
-       y1="428.76999"
-       x2="159.73"
-       y2="429.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12484" />
-    <line
-       x1="159.73"
-       y1="429.29999"
-       x2="158.98"
-       y2="429.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12486" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="523.65,329.77 514.3,329.21 514.32,329.71 "
-       id="polygon12488" />
-    <polygon
-       style="opacity:1;fill:#007346"
-       points="507.43,320.61 516.19,320.09 515.9,320.41 "
-       id="polygon12490" />
-    <line
-       x1="145.25999"
-       y1="262.51999"
-       x2="145.86"
-       y2="262.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12492" />
-    <polygon
-       style="opacity:1;fill:#00883a"
-       points="509.43,307.4 504.15,307.61 509.64,307.29 "
-       id="polygon12494" />
-    <polygon
-       style="opacity:1;fill:#007231"
-       points="504.15,307.61 509.31,307.52 509.43,307.4 "
-       id="polygon12496" />
-    <line
-       x1="174.10001"
-       y1="439.64999"
-       x2="174.21001"
-       y2="439.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12498" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="507.59,322.83 515.8,322.27 516.05,322.64 "
-       id="polygon12500" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="507.24,321.03 515.9,320.41 515.7,320.84 "
-       id="polygon12502" />
-    <polygon
-       style="opacity:1;fill:#0025d9"
-       points="536.01,357.66 526.66,356.17 526.3,356.22 "
-       id="polygon12504" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="507.18,322 515.61,321.32 515.65,321.81 "
-       id="polygon12506" />
-    <line
-       x1="144.13"
-       y1="263.45001"
-       x2="144.67999"
-       y2="262.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12508" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="509.04,309.55 503.76,309.77 508.95,309.28 "
-       id="polygon12510" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="508.85,308.61 503.57,308.82 508.9,308.32 "
-       id="polygon12512" />
-    <line
-       x1="154.24001"
-       y1="289.73001"
-       x2="153.21001"
-       y2="289.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12514" />
-    <line
-       x1="173.86"
-       y1="440.37"
-       x2="173.98"
-       y2="440.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12516" />
-    <line
-       x1="143.08"
-       y1="264.45999"
-       x2="143.59"
-       y2="263.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12518" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="535.4,357.3 525.97,356.12 525.7,355.86 "
-       id="polygon12520" />
-    <polygon
-       style="opacity:1;fill:#004e70"
-       points="535.84,340.96 536.52,337.34 536.55,337.51 "
-       id="polygon12522" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="535.97,341.19 536.57,337.58 536.66,337.74 "
-       id="polygon12524" />
-    <polygon
-       style="opacity:1;fill:#0083bd"
-       points="537.22,341.43 537.69,338.14 537.87,338.07 "
-       id="polygon12526" />
-    <line
-       x1="537.41998"
-       y1="337.39001"
-       x2="536.70001"
-       y2="340.76999"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12528" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="535.2,356.92 525.7,355.86 525.5,355.48 "
-       id="polygon12530" />
-    <polygon
-       style="opacity:1;fill:#0079ae"
-       points="536.97,341.52 537.41,338.16 537.61,338.14 "
-       id="polygon12532" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="195.45,352.98 204.9,350.31 204.64,350.58 "
-       id="polygon12534" />
-    <line
-       x1="142.14"
-       y1="265.54001"
-       x2="142.60001"
-       y2="264.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12536" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.1,356.46 525.5,355.48 525.39,355.02 "
-       id="polygon12538" />
-    <line
-       x1="173.42"
-       y1="441.32001"
-       x2="173.57001"
-       y2="441.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12540" />
-    <line
-       x1="153.21001"
-       y1="289.64999"
-       x2="152.11"
-       y2="289.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12542" />
-    <line
-       x1="141.34"
-       y1="266.69"
-       x2="141.72"
-       y2="266.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12544" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="196.77,355.93 206.21,353.25 206.46,352.99 "
-       id="polygon12546" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="204.64,350.58 195.45,352.98 195.2,353.25 "
-       id="polygon12548" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="196.48,353.08 205.93,350.41 205.57,350.22 "
-       id="polygon12550" />
-    <polygon
-       style="opacity:1;fill:#006675"
-       points="514.6,328.29 524.23,328.51 523.95,328.84 "
-       id="polygon12552" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="159.9,248.5 149.51,245.34 149.33,245.7 "
-       id="polygon12554" />
-    <line
-       x1="149.84"
-       y1="246.03999"
-       x2="158.91"
-       y2="244.05"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12556" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="197.02,355.66 206.46,352.99 206.63,352.6 "
-       id="polygon12558" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="196.8,353.4 206.24,350.73 205.93,350.41 "
-       id="polygon12560" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="197.19,355.28 206.63,352.6 206.7,352.14 "
-       id="polygon12562" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="514.45,330.17 523.67,330.27 523.8,330.73 "
-       id="polygon12564" />
-    <line
-       x1="140.66"
-       y1="267.89999"
-       x2="140.98"
-       y2="267.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12566" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="197.05,353.82 206.49,351.15 206.24,350.73 "
-       id="polygon12568" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="514.3,329.21 523.75,329.27 523.65,329.77 "
-       id="polygon12570" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="197.25,354.81 206.7,352.14 206.65,351.64 "
-       id="polygon12572" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="197.2,354.31 206.65,351.64 206.49,351.15 "
-       id="polygon12574" />
-    <line
-       x1="152.11"
-       y1="289.51999"
-       x2="150.96001"
-       y2="289.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12576" />
-    <line
-       x1="140.38"
-       y1="268.53"
-       x2="140.66"
-       y2="267.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12578" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="180.94,447.13 189.86,440.28 189.95,439.98 "
-       id="polygon12580" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="179.21,444.56 188.13,437.72 187.84,437.77 "
-       id="polygon12582" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="181.03,446.83 189.95,439.98 189.92,439.61 "
-       id="polygon12584" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="179.56,444.65 188.48,437.8 188.13,437.72 "
-       id="polygon12586" />
-    <line
-       x1="145.86"
-       y1="262.07999"
-       x2="149.84"
-       y2="246.03999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12588" />
-    <polygon
-       style="opacity:1;fill:#00721d"
-       points="509.31,307.52 512.97,307.25 509.43,307.4 "
-       id="polygon12590" />
-    <polygon
-       style="opacity:1;fill:#00721d"
-       points="512.97,307.25 509.14,307.71 509.31,307.52 "
-       id="polygon12592" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="526.01,353.25 535.72,354.68 536.05,354.48 "
-       id="polygon12594" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="525.97,356.12 535.68,357.55 535.4,357.3 "
-       id="polygon12596" />
-    <line
-       x1="139.92"
-       y1="269.81"
-       x2="140.13"
-       y2="269.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12598" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="181,446.45 189.92,439.61 189.79,439.18 "
-       id="polygon12600" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="179.94,444.87 188.86,438.02 188.48,437.8 "
-       id="polygon12602" />
-    <line
-       x1="150.96001"
-       y1="289.32001"
-       x2="149.75"
-       y2="289.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12604" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="180.87,446.02 189.79,439.18 189.54,438.74 "
-       id="polygon12606" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="180.3,445.19 189.22,438.34 188.86,438.02 "
-       id="polygon12608" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="180.63,445.59 189.54,438.74 189.22,438.34 "
-       id="polygon12610" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.73,353.58 535.72,354.68 534.67,354.91 "
-       id="polygon12612" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="525.7,355.86 535.4,357.3 535.2,356.92 "
-       id="polygon12614" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="509.14,309.7 512.58,309.41 509.04,309.55 "
-       id="polygon12616" />
-    <line
-       x1="139.75"
-       y1="270.47"
-       x2="139.92"
-       y2="269.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12618" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.52,354.02 535.22,355.46 535.43,355.02 "
-       id="polygon12620" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.5,355.48 535.2,356.92 535.1,356.46 "
-       id="polygon12622" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="525.4,354.52 535.11,355.95 535.22,355.46 "
-       id="polygon12624" />
-    <line
-       x1="139.62"
-       y1="271.13"
-       x2="139.75"
-       y2="270.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12626" />
-    <polygon
-       style="opacity:1;fill:#00bbd7"
-       points="537.94,338.04 538.7,334.46 538.08,337.93 "
-       id="polygon12628" />
-    <polygon
-       style="opacity:1;fill:#0096ad"
-       points="524.63,328.62 524.58,328.31 524.24,328.51 "
-       id="polygon12630" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="538.18,334.58 537.34,338.14 537.41,338.16 "
-       id="polygon12632" />
-    <line
-       x1="538.17999"
-       y1="333.79999"
-       x2="537.41998"
-       y2="337.39001"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12634" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="537.14,338.11 537.9,334.53 537.34,338.14 "
-       id="polygon12636" />
-    <line
-       x1="149.28"
-       y1="288.73001"
-       x2="148.78999"
-       y2="288.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12638" />
-    <polygon
-       style="opacity:1;fill:#00721d"
-       points="512.68,307.57 509.14,307.71 512.97,307.25 "
-       id="polygon12640" />
-    <line
-       x1="139.46001"
-       y1="272.48001"
-       x2="139.52"
-       y2="271.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12642" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.71,320.83 520.85,320.61 515.91,320.41 "
-       id="polygon12644" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="516.03,322.64 520.9,322.46 515.79,322.27 "
-       id="polygon12646" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.84,309.79 509.29,309.93 512.58,309.41 "
-       id="polygon12648" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="205.57,350.22 196.48,353.08 196.13,352.89 "
-       id="polygon12650" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.64,321.8 520.64,321.55 515.61,321.31 "
-       id="polygon12652" />
-    <line
-       x1="139.45"
-       y1="273.16"
-       x2="139.46001"
-       y2="272.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12654" />
-    <line
-       x1="148.78999"
-       y1="288.35999"
-       x2="148.28999"
-       y2="287.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12656" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.39,308.47 508.85,308.61 512.48,307.99 "
-       id="polygon12658" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.58,309.41 509.04,309.55 512.43,308.96 "
-       id="polygon12660" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="205.93,350.41 196.8,353.4 196.48,353.08 "
-       id="polygon12662" />
-    <line
-       x1="179.82001"
-       y1="445.95001"
-       x2="173.42"
-       y2="441.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12664" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="206.63,352.6 197.02,355.66 197.19,355.28 "
-       id="polygon12666" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="187.84,437.77 179.21,444.56 178.92,444.61 "
-       id="polygon12668" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="150.23,244.77 150.57,244.51 150.29,244.45 "
-       id="polygon12670" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="206.24,350.73 197.05,353.82 196.8,353.4 "
-       id="polygon12672" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="206.7,352.14 197.19,355.28 197.25,354.81 "
-       id="polygon12674" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="206.49,351.15 197.2,354.31 197.05,353.82 "
-       id="polygon12676" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="206.65,351.64 197.25,354.81 197.2,354.31 "
-       id="polygon12678" />
-    <polygon
-       style="opacity:1;fill:#0000d1"
-       points="189.95,439.98 180.94,447.13 181.03,446.83 "
-       id="polygon12680" />
-    <line
-       x1="139.53"
-       y1="274.54001"
-       x2="139.47"
-       y2="273.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12682" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="188.13,437.72 179.56,444.65 179.21,444.56 "
-       id="polygon12684" />
-    <line
-       x1="147.78999"
-       y1="287.57001"
-       x2="147.28"
-       y2="287.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12686" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="189.92,439.61 181.03,446.83 181,446.45 "
-       id="polygon12688" />
-    <line
-       x1="139.63"
-       y1="275.22"
-       x2="139.53"
-       y2="274.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12690" />
-    <polygon
-       style="opacity:1;fill:#00c8e7"
-       points="538.96,334.21 538.23,337.73 539.03,334.09 "
-       id="polygon12692" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="188.48,437.8 179.94,444.87 179.56,444.65 "
-       id="polygon12694" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="189.79,439.18 181,446.45 180.87,446.02 "
-       id="polygon12696" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="188.86,438.02 180.3,445.19 179.94,444.87 "
-       id="polygon12698" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="189.54,438.74 180.87,446.02 180.63,445.59 "
-       id="polygon12700" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="189.22,438.34 180.63,445.59 180.3,445.19 "
-       id="polygon12702" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="537.54,334.3 536.83,337.93 537.65,334.4 "
-       id="polygon12704" />
-    <polygon
-       style="opacity:1;fill:#00a72b"
-       points="512.39,308.47 512.64,308.49 512.67,308.89 "
-       id="polygon12706" />
-    <polygon
-       style="opacity:1;fill:#007689"
-       points="537.07,338.07 537.65,334.4 537.76,334.45 "
-       id="polygon12708" />
-    <line
-       x1="146.77"
-       y1="286.69"
-       x2="146.25"
-       y2="286.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12710" />
-    <line
-       x1="139.92999"
-       y1="276.59"
-       x2="139.75999"
-       y2="275.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12712" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.91,320.41 520.85,320.61 520.93,320.44 "
-       id="polygon12714" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="521.05,322.68 516.03,322.64 520.9,322.46 "
-       id="polygon12716" />
-    <polygon
-       style="opacity:1;fill:#0093aa"
-       points="524.95,328.26 534.22,329.01 525.29,328.38 "
-       id="polygon12718" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="515.61,321.31 520.64,321.55 520.63,321.35 "
-       id="polygon12720" />
-    <line
-       x1="140.38"
-       y1="277.95001"
-       x2="140.14"
-       y2="277.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12722" />
-    <line
-       x1="145.74001"
-       y1="285.73999"
-       x2="145.23"
-       y2="285.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12724" />
-    <line
-       x1="140.64999"
-       y1="278.62"
-       x2="140.38"
-       y2="277.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12726" />
-    <line
-       x1="144.73"
-       y1="284.70999"
-       x2="144.24001"
-       y2="284.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12728" />
-    <line
-       x1="141.28"
-       y1="279.94"
-       x2="140.95"
-       y2="279.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12730" />
-    <polygon
-       style="opacity:1;fill:#00788a"
-       points="524.24,328.51 533.51,328.96 524.58,328.31 "
-       id="polygon12732" />
-    <polygon
-       style="opacity:1;fill:#00899f"
-       points="524.67,331.48 533.28,332.02 524.32,331.37 "
-       id="polygon12734" />
-    <line
-       x1="141.64"
-       y1="280.57999"
-       x2="141.28"
-       y2="279.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12736" />
-    <line
-       x1="143.75999"
-       y1="283.60999"
-       x2="143.3"
-       y2="283.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12738" />
-    <line
-       x1="142.42999"
-       y1="281.82999"
-       x2="142.02"
-       y2="281.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12740" />
-    <line
-       x1="142.85001"
-       y1="282.44"
-       x2="142.42999"
-       y2="281.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12742" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="524.32,331.37 532.98,331.77 524.02,331.11 "
-       id="polygon12744" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="523.66,329.77 532.69,329.94 523.75,329.27 "
-       id="polygon12746" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="523.79,330.73 532.62,330.93 523.67,330.27 "
-       id="polygon12748" />
-    <polygon
-       style="opacity:1;fill:#0027e5"
-       points="546.15,357.38 536.83,357.39 536.51,357.59 "
-       id="polygon12750" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="545.14,357.07 535.81,357.54 535.5,357.29 "
-       id="polygon12752" />
-    <polygon
-       style="opacity:1;fill:#00721d"
-       points="512.68,307.57 521.46,306.91 512.97,307.25 "
-       id="polygon12754" />
-    <polygon
-       style="opacity:1;fill:#007e20"
-       points="513.17,310.05 521.35,309.45 512.84,309.79 "
-       id="polygon12756" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.76,356.24 535.26,356.91 535.11,356.46 "
-       id="polygon12758" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.48,307.99 521.17,307.23 512.68,307.57 "
-       id="polygon12760" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.84,309.79 521.09,309.07 512.58,309.41 "
-       id="polygon12762" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="520.85,320.61 524.39,320.47 520.93,320.44 "
-       id="polygon12764" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="512.43,308.96 520.9,308.13 512.39,308.47 "
-       id="polygon12766" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.27,322.33 521.05,322.68 520.9,322.46 "
-       id="polygon12768" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="520.64,321.55 524.1,321.38 520.63,321.35 "
-       id="polygon12770" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.1,321.38 520.66,321.84 520.64,321.55 "
-       id="polygon12772" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="533.26,332.02 524.32,331.37 532.98,331.77 "
-       id="polygon12774" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="532.96,331.76 524.02,331.11 532.75,331.39 "
-       id="polygon12776" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="532.7,329.92 523.75,329.27 532.89,329.5 "
-       id="polygon12778" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="532.61,330.91 523.67,330.27 532.6,330.43 "
-       id="polygon12780" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.52,322.71 521.05,322.68 524.27,322.33 "
-       id="polygon12782" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="187.28,358.61 196.76,355.93 197.02,355.66 "
-       id="polygon12784" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.13,321.87 520.66,321.84 524.1,321.38 "
-       id="polygon12786" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="187,355.75 196.48,353.08 196.13,352.89 "
-       id="polygon12788" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="187.54,358.34 197.02,355.66 197.19,355.28 "
-       id="polygon12790" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="187.31,356.07 196.8,353.4 196.48,353.08 "
-       id="polygon12792" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="543.12,332.91 541.86,332.79 541.81,332.8 "
-       id="polygon12794" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="538.11,330.44 537.38,334.09 538.21,330.63 "
-       id="polygon12796" />
-    <polygon
-       style="opacity:1;fill:#0020be"
-       points="536.16,357.64 545.8,357.43 545.45,357.32 "
-       id="polygon12798" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="187.7,357.96 197.19,355.28 197.25,354.81 "
-       id="polygon12800" />
-    <polygon
-       style="opacity:1;fill:#001373"
-       points="535.58,354.7 545.22,354.48 545.54,354.28 "
-       id="polygon12802" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="534.26,332.18 533.69,332.05 534.04,332.16 "
-       id="polygon12804" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="533.89,332.07 533.69,332.05 534.26,332.18 "
-       id="polygon12806" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="534.26,332.18 534.26,332.18 534.04,332.16 "
-       id="polygon12808" />
-    <polygon
-       style="opacity:1;fill:#00aea6"
-       points="538.98,330.99 538.29,334.57 539.22,330.97 "
-       id="polygon12810" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="187.56,356.5 197.05,353.82 196.8,353.4 "
-       id="polygon12812" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="187.77,357.49 197.25,354.81 197.2,354.31 "
-       id="polygon12814" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="187.71,356.99 197.2,354.31 197.05,353.82 "
-       id="polygon12816" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="535.81,357.54 545.45,357.32 545.14,357.07 "
-       id="polygon12818" />
-    <polygon
-       style="opacity:1;fill:#00a647"
-       points="524.68,322.46 524.27,322.33 524.52,322.71 "
-       id="polygon12820" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.26,356.91 544.9,356.7 544.76,356.24 "
-       id="polygon12822" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="535.07,355.96 544.71,355.75 544.79,355.25 "
-       id="polygon12824" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="520.98,307.64 512.48,307.99 521.17,307.23 "
-       id="polygon12826" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="521.34,309.44 512.84,309.79 521.09,309.07 "
-       id="polygon12828" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="520.93,308.61 512.43,308.96 520.9,308.13 "
-       id="polygon12830" />
-    <polygon
-       style="opacity:1;fill:#00aea5"
-       points="533.36,329.51 533.75,329.45 533.52,329.72 "
-       id="polygon12832" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="195.78,352.86 186.64,355.57 186.29,355.53 "
-       id="polygon12834" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="196.13,352.89 187,355.75 186.64,355.57 "
-       id="polygon12836" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="197.02,355.66 187.28,358.61 187.54,358.34 "
-       id="polygon12838" />
-    <polygon
-       style="opacity:1;fill:#001ca3"
-       points="545.54,354.28 545.35,354.75 545.61,354.59 "
-       id="polygon12840" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="196.48,353.08 187.31,356.07 187,355.75 "
-       id="polygon12842" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="197.19,355.28 187.54,358.34 187.7,357.96 "
-       id="polygon12844" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="196.8,353.4 187.56,356.5 187.31,356.07 "
-       id="polygon12846" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="197.25,354.81 187.7,357.96 187.77,357.49 "
-       id="polygon12848" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="197.05,353.82 187.71,356.99 187.56,356.5 "
-       id="polygon12850" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="197.2,354.31 187.77,357.49 187.71,356.99 "
-       id="polygon12852" />
-    <polygon
-       style="opacity:1;fill:#007432"
-       points="533.24,320.52 524.71,320.14 524.41,320.46 "
-       id="polygon12854" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.94,320.85 524.41,320.46 524.2,320.89 "
-       id="polygon12856" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.78,322.72 524.25,322.33 524.5,322.71 "
-       id="polygon12858" />
-    <polygon
-       style="opacity:1;fill:#008265"
-       points="538.33,328.6 538.52,328.61 538.55,328.41 "
-       id="polygon12860" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.63,321.76 524.1,321.37 524.12,321.87 "
-       id="polygon12862" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="539.29,329.49 539.32,329.25 539.35,329.25 "
-       id="polygon12864" />
-    <polygon
-       style="opacity:1;fill:#009d96"
-       points="543.77,329.79 534.35,328.93 533.98,328.98 "
-       id="polygon12866" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="544.96,356.68 547.48,356.29 545.22,357.04 "
-       id="polygon12868" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.71,355.76 547.23,355.37 544.78,356.24 "
-       id="polygon12870" />
-    <polygon
-       style="opacity:1;fill:#007e0a"
-       points="521.7,309.42 521.67,309.7 521.35,309.45 "
-       id="polygon12872" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="543.41,329.83 533.98,328.98 533.64,329.18 "
-       id="polygon12874" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="541.86,332.79 533.89,332.07 534.26,332.18 "
-       id="polygon12876" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="541.81,332.8 541.86,332.79 534.26,332.18 "
-       id="polygon12878" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="534.26,332.18 541.86,332.79 534.26,332.18 "
-       id="polygon12880" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.89,354.86 547.66,354.14 547.48,354.38 "
-       id="polygon12882" />
-    <polygon
-       style="opacity:1;fill:#00a70e"
-       points="521.57,307.74 521.54,307.2 521.34,307.62 "
-       id="polygon12884" />
-    <polygon
-       style="opacity:1;fill:#007670"
-       points="543.07,330.03 533.64,329.18 533.36,329.51 "
-       id="polygon12886" />
-    <line
-       x1="188.17999"
-       y1="353.41"
-       x2="175.61"
-       y2="358.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12888" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="545.22,357.04 547.48,356.29 547.68,356.56 "
-       id="polygon12890" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.6,332.27 533.18,331.41 533.39,331.79 "
-       id="polygon12892" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.71,355.76 547.27,354.89 547.24,355.24 "
-       id="polygon12894" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="544.96,356.68 547.31,355.85 547.44,356.18 "
-       id="polygon12896" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.57,330.8 533.15,329.95 533.04,330.44 "
-       id="polygon12898" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.48,331.8 533.05,330.95 533.18,331.41 "
-       id="polygon12900" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.47,331.29 533.04,330.44 533.05,330.95 "
-       id="polygon12902" />
-    <polygon
-       style="opacity:1;fill:#00daaa"
-       points="540.05,329.19 540.4,327.48 540.57,327.34 "
-       id="polygon12904" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="539.32,329.25 539.55,327.55 539.79,327.6 "
-       id="polygon12906" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="539.35,329.25 539.32,329.25 539.79,327.6 "
-       id="polygon12908" />
-    <line
-       x1="184.44"
-       y1="337.01999"
-       x2="168.73"
-       y2="360.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line12910" />
-    <polygon
-       style="opacity:1;fill:#007432"
-       points="524.41,320.46 533.24,320.52 532.94,320.85 "
-       id="polygon12912" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.25,322.33 532.64,322.26 532.78,322.72 "
-       id="polygon12914" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="524.1,321.37 532.73,321.27 532.63,321.76 "
-       id="polygon12916" />
-    <polygon
-       style="opacity:1;fill:#00d412"
-       points="531.73,309.37 522.8,309.76 523.16,309.57 "
-       id="polygon12918" />
-    <polygon
-       style="opacity:1;fill:#0040bc"
-       points="555.48,355.9 548.34,356.96 548.43,356.99 "
-       id="polygon12920" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="533.64,329.18 543.41,329.83 543.07,330.03 "
-       id="polygon12922" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="533.69,332.05 542.82,332.64 543.12,332.91 "
-       id="polygon12924" />
-    <polygon
-       style="opacity:1;fill:#00aa0e"
-       points="522.57,306.66 531.88,306.38 531.5,306.26 "
-       id="polygon12926" />
-    <polygon
-       style="opacity:1;fill:#00880b"
-       points="531.11,306.3 522.19,306.7 521.83,306.88 "
-       id="polygon12928" />
-    <polygon
-       style="opacity:1;fill:#00369c"
-       points="555.13,355.8 547.99,356.83 548.07,356.89 "
-       id="polygon12930" />
-    <polygon
-       style="opacity:1;fill:#0039a6"
-       points="554.47,353.38 554.54,353.91 554.66,353.57 "
-       id="polygon12932" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.66,353.09 560.57,351.68 554.43,353.41 "
-       id="polygon12934" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="547.42,354.47 554.47,353.38 547.31,354.78 "
-       id="polygon12936" />
-    <polygon
-       style="opacity:1;fill:#009c0d"
-       points="530.96,309.29 522.04,309.68 522.41,309.8 "
-       id="polygon12938" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="533.39,331.79 542.6,332.27 542.82,332.64 "
-       id="polygon12940" />
-    <polygon
-       style="opacity:1;fill:#00369c"
-       points="547.75,356.65 554.8,355.56 547.99,356.83 "
-       id="polygon12942" />
-    <polygon
-       style="opacity:1;fill:#007209"
-       points="530.75,306.48 521.83,306.88 521.54,307.2 "
-       id="polygon12944" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="554.8,355.56 547.68,356.56 547.75,356.65 "
-       id="polygon12946" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="533.15,329.95 542.78,330.36 542.57,330.8 "
-       id="polygon12948" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.32,353.8 547.31,354.78 547.27,354.89 "
-       id="polygon12950" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="533.18,331.41 542.48,331.8 542.6,332.27 "
-       id="polygon12952" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.43,353.41 560.34,352 554.3,353.82 "
-       id="polygon12954" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="547.27,354.89 554.32,353.8 547.24,355.24 "
-       id="polygon12956" />
-    <polygon
-       style="opacity:1;fill:#007e0a"
-       points="530.63,309.03 521.7,309.42 522.04,309.68 "
-       id="polygon12958" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="533.04,330.44 542.57,330.8 542.47,331.29 "
-       id="polygon12960" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.54,355.2 547.44,356.18 547.48,356.29 "
-       id="polygon12962" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="533.05,330.95 542.47,331.29 542.48,331.8 "
-       id="polygon12964" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.3,353.82 560.21,352.42 554.28,354.29 "
-       id="polygon12966" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="547.23,355.37 554.29,354.28 547.29,355.72 "
-       id="polygon12968" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="547.31,355.85 554.36,354.76 547.44,356.18 "
-       id="polygon12970" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.46,306.8 521.54,307.2 521.34,307.62 "
-       id="polygon12972" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.36,354.76 547.29,355.72 547.31,355.85 "
-       id="polygon12974" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.27,307.23 521.34,307.62 521.26,308.1 "
-       id="polygon12976" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.22,308.2 521.29,308.59 521.45,309.05 "
-       id="polygon12978" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.18,307.71 521.26,308.1 521.29,308.59 "
-       id="polygon12980" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="177.75,361.29 187.28,358.61 187.54,358.34 "
-       id="polygon12982" />
-    <polygon
-       style="opacity:1;fill:#00c075"
-       points="540.13,327.59 541.12,324.26 540.35,327.5 "
-       id="polygon12984" />
-    <polygon
-       style="opacity:1;fill:#00b06b"
-       points="539.84,327.61 540.82,324.28 540.08,327.59 "
-       id="polygon12986" />
-    <polygon
-       style="opacity:1;fill:#008b54"
-       points="539.28,327.42 540.26,324.09 539.5,327.53 "
-       id="polygon12988" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="177.46,358.43 187,355.75 186.64,355.57 "
-       id="polygon12990" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="178,361.03 187.54,358.34 187.7,357.96 "
-       id="polygon12992" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="177.78,358.75 187.31,356.07 187,355.75 "
-       id="polygon12994" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="178.17,360.64 187.7,357.96 187.77,357.49 "
-       id="polygon12996" />
-    <polygon
-       style="opacity:1;fill:#00a647"
-       points="533.68,320.64 533.63,320.32 533.27,320.52 "
-       id="polygon12998" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="178.03,359.18 187.56,356.5 187.31,356.07 "
-       id="polygon13000" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="178.23,360.17 187.77,357.49 187.71,356.99 "
-       id="polygon13002" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="178.18,359.67 187.71,356.99 187.56,356.5 "
-       id="polygon13004" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="555.02,352.84 547.74,354.09 554.71,353.05 "
-       id="polygon13006" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.71,353.05 547.48,354.38 554.47,353.38 "
-       id="polygon13008" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="554.54,355.2 547.68,356.56 554.8,355.56 "
-       id="polygon13010" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.32,353.8 547.25,355.24 554.29,354.28 "
-       id="polygon13012" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.36,354.76 547.44,356.18 554.54,355.2 "
-       id="polygon13014" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.29,354.28 547.29,355.72 554.36,354.76 "
-       id="polygon13016" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="539.05,327.18 539.91,323.65 539.98,323.78 "
-       id="polygon13018" />
-    <line
-       x1="540.81"
-       y1="323.44"
-       x2="539.83002"
-       y2="326.76999"
-       style="stroke:#00ff9b;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13020" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="539.79,327.6 540.53,324.22 540.68,324.25 "
-       id="polygon13022" />
-    <polygon
-       style="opacity:1;fill:#009e44"
-       points="533.68,323.49 537.84,323.83 533.32,323.37 "
-       id="polygon13024" />
-    <polygon
-       style="opacity:1;fill:#008b3c"
-       points="533.27,320.52 537.8,320.81 533.63,320.32 "
-       id="polygon13026" />
-    <polygon
-       style="opacity:1;fill:#00880b"
-       points="521.83,306.88 531.11,306.3 530.75,306.48 "
-       id="polygon13028" />
-    <polygon
-       style="opacity:1;fill:#009c0d"
-       points="522.41,309.8 530.96,309.29 531.34,309.41 "
-       id="polygon13030" />
-    <polygon
-       style="opacity:1;fill:#007d36"
-       points="533.32,323.37 537.5,323.64 533,323.11 "
-       id="polygon13032" />
-    <polygon
-       style="opacity:1;fill:#007e0a"
-       points="522.04,309.68 530.63,309.03 530.96,309.29 "
-       id="polygon13034" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.77,322.73 537.05,322.88 532.64,322.26 "
-       id="polygon13036" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.63,321.76 537.04,321.9 532.74,321.27 "
-       id="polygon13038" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="521.34,307.62 530.46,306.8 530.27,307.23 "
-       id="polygon13040" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="521.26,308.1 530.27,307.23 530.18,307.71 "
-       id="polygon13042" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="521.45,309.05 530.22,308.2 530.37,308.65 "
-       id="polygon13044" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="521.29,308.59 530.18,307.71 530.22,308.2 "
-       id="polygon13046" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="186.64,355.57 177.46,358.43 177.11,358.25 "
-       id="polygon13048" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="187.54,358.34 177.75,361.29 178,361.03 "
-       id="polygon13050" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="187,355.75 177.78,358.75 177.46,358.43 "
-       id="polygon13052" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="187.7,357.96 178,361.03 178.17,360.64 "
-       id="polygon13054" />
-    <polygon
-       style="opacity:1;fill:#008b3c"
-       points="533.63,320.32 537.8,320.81 537.98,320.71 "
-       id="polygon13056" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="187.31,356.07 178.03,359.18 177.78,358.75 "
-       id="polygon13058" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="187.77,357.49 178.17,360.64 178.23,360.17 "
-       id="polygon13060" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="187.56,356.5 178.18,359.67 178.03,359.18 "
-       id="polygon13062" />
-    <polygon
-       style="opacity:1;fill:#0000b9"
-       points="187.71,356.99 178.23,360.17 178.18,359.67 "
-       id="polygon13064" />
-    <polygon
-       style="opacity:1;fill:#007d36"
-       points="533,323.11 537.5,323.64 537.35,323.5 "
-       id="polygon13066" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="537.09,321.66 532.74,321.27 537.2,321.45 "
-       id="polygon13068" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.74,321.27 537.04,321.9 537.09,321.66 "
-       id="polygon13070" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="532.64,322.26 537.05,322.88 536.99,322.66 "
-       id="polygon13072" />
-    <polygon
-       style="opacity:1;fill:#008b85"
-       points="552.9,330.92 543.43,329.83 543.09,330.03 "
-       id="polygon13074" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="536.99,322.66 532.64,322.26 536.98,322.4 "
-       id="polygon13076" />
-    <polygon
-       style="opacity:1;fill:#007771"
-       points="552.55,331.12 543.09,330.03 542.8,330.36 "
-       id="polygon13078" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.06,333.36 542.59,332.27 542.8,332.64 "
-       id="polygon13080" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.26,331.45 542.8,330.36 542.59,330.8 "
-       id="polygon13082" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="551.94,332.89 542.48,331.8 542.59,332.27 "
-       id="polygon13084" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.05,331.89 542.59,330.8 542.48,331.29 "
-       id="polygon13086" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="551.94,332.38 542.48,331.29 542.48,331.8 "
-       id="polygon13088" />
-    <polygon
-       style="opacity:1;fill:#0040ba"
-       points="555.18,355.77 561.09,354.36 555.54,355.86 "
-       id="polygon13090" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="554.84,355.54 560.75,354.13 555.18,355.77 "
-       id="polygon13092" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="554.57,355.19 560.47,353.79 554.84,355.54 "
-       id="polygon13094" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.28,354.29 560.19,352.88 554.37,354.76 "
-       id="polygon13096" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.37,354.76 560.28,353.36 554.57,355.19 "
-       id="polygon13098" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="177.64,358.97 177.78,358.75 177.46,358.43 "
-       id="polygon13100" />
-    <polygon
-       style="opacity:1;fill:#009e96"
-       points="543.43,329.83 553.26,330.87 552.9,330.92 "
-       id="polygon13102" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="537.2,321.45 541.55,321.62 537.31,321.23 "
-       id="polygon13104" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.36,323.51 537.35,323.5 537.23,323.31 "
-       id="polygon13106" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.55,321.62 537.09,321.66 537.2,321.45 "
-       id="polygon13108" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="560.88,354.22 555.18,355.77 561.09,354.36 "
-       id="polygon13110" />
-    <polygon
-       style="opacity:1;fill:#008b85"
-       points="543.09,330.03 552.9,330.92 552.55,331.12 "
-       id="polygon13112" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="555.18,355.77 560.75,354.13 560.88,354.22 "
-       id="polygon13114" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.22,322.54 536.99,322.66 536.98,322.4 "
-       id="polygon13116" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="543.1,332.91 552.27,333.74 552.57,334 "
-       id="polygon13118" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="536.98,322.4 541.22,322.54 536.98,322.15 "
-       id="polygon13120" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="560.29,352.16 554.3,353.82 560.21,352.42 "
-       id="polygon13122" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.18,307.71 533.05,307.42 530.27,307.23 "
-       id="polygon13124" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="530.38,308.66 533.16,308.38 530.22,308.2 "
-       id="polygon13126" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="554.84,355.54 560.47,353.79 560.58,353.92 "
-       id="polygon13128" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="560.2,352.59 554.28,354.29 560.19,352.88 "
-       id="polygon13130" />
-    <polygon
-       style="opacity:1;fill:#007771"
-       points="542.8,330.36 552.55,331.12 552.26,331.45 "
-       id="polygon13132" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="554.37,354.76 560.19,352.88 560.22,353.06 "
-       id="polygon13134" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="560.22,353.06 554.37,354.76 560.28,353.36 "
-       id="polygon13136" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.8,332.64 552.06,333.36 552.27,333.74 "
-       id="polygon13138" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.59,330.8 552.26,331.45 552.05,331.89 "
-       id="polygon13140" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.59,332.27 551.94,332.89 552.06,333.36 "
-       id="polygon13142" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.48,331.29 552.05,331.89 551.94,332.38 "
-       id="polygon13144" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="542.48,331.8 551.94,332.38 551.94,332.89 "
-       id="polygon13146" />
-    <polygon
-       style="opacity:1;fill:#007209"
-       points="530.75,306.49 533.39,306.57 533.59,306.35 "
-       id="polygon13148" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="533.21,308.52 530.38,308.66 533.16,308.38 "
-       id="polygon13150" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="533.02,307.57 530.18,307.71 533.05,307.42 "
-       id="polygon13152" />
-    <polygon
-       style="opacity:1;fill:#00751e"
-       points="541.55,321.62 537.31,321.23 541.86,321.29 "
-       id="polygon13154" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="166.86,361.02 176.44,358.34 176.18,358.6 "
-       id="polygon13156" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="176.36,358.84 166.79,361.53 166.65,361.84 "
-       id="polygon13158" />
-    <line
-       x1="167.42999"
-       y1="362.45999"
-       x2="168.73"
-       y2="360.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13160" />
-    <line
-       x1="167.42999"
-       y1="362.45999"
-       x2="175.61"
-       y2="358.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13162" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="167.89,361.11 177.46,358.43 177.11,358.25 "
-       id="polygon13164" />
-    <line
-       x1="201.97"
-       y1="347.39001"
-       x2="188.17999"
-       y2="353.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13166" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="168.2,361.44 177.78,358.75 177.46,358.43 "
-       id="polygon13168" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="168.59,363.33 178.17,360.64 178.23,360.17 "
-       id="polygon13170" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="168.45,361.87 178.03,359.18 177.78,358.75 "
-       id="polygon13172" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="168.66,362.86 178.23,360.17 178.18,359.67 "
-       id="polygon13174" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="168.61,362.36 178.18,359.67 178.03,359.18 "
-       id="polygon13176" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="560.57,351.68 564.18,350.82 560.48,351.8 "
-       id="polygon13178" />
-    <polygon
-       style="opacity:1;fill:#00b02d"
-       points="542.79,318.6 541.87,320.94 542.1,320.92 "
-       id="polygon13180" />
-    <polygon
-       style="opacity:1;fill:#008b24"
-       points="542.2,318.57 541.3,320.78 541.51,320.89 "
-       id="polygon13182" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="564.17,350.83 570.78,349.09 563.95,351.15 "
-       id="polygon13184" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="560.34,352 563.96,351.14 560.29,352.16 "
-       id="polygon13186" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="560.75,354.13 564.37,353.27 560.88,354.22 "
-       id="polygon13188" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="560.21,352.42 563.82,351.55 560.2,352.59 "
-       id="polygon13190" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.8,352.02 560.2,352.59 560.19,352.88 "
-       id="polygon13192" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="564.09,352.93 560.35,353.52 560.47,353.79 "
-       id="polygon13194" />
-    <polygon
-       style="opacity:1;fill:#00da38"
-       points="543.05,318.5 542.41,320.78 543.26,318.32 "
-       id="polygon13196" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.58,318 540.93,320.36 541.71,318.23 "
-       id="polygon13198" />
-    <polygon
-       style="opacity:1;fill:#097200"
-       points="533.39,306.57 539.76,306.05 533.59,306.35 "
-       id="polygon13200" />
-    <polygon
-       style="opacity:1;fill:#097200"
-       points="539.76,306.05 533.3,306.67 533.39,306.57 "
-       id="polygon13202" />
-    <line
-       x1="542.47998"
-       y1="317.79001"
-       x2="541.79999"
-       y2="320.10999"
-       style="stroke:#00ff42;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line13204" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="564.37,353.27 560.88,354.22 564.7,353.5 "
-       id="polygon13206" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.96,351.14 560.29,352.16 563.82,351.55 "
-       id="polygon13208" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="533.16,306.96 539.47,306.37 533.3,306.67 "
-       id="polygon13210" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.38,308.22 533.47,308.89 533.39,308.78 "
-       id="polygon13212" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="564.09,352.93 560.58,353.92 564.37,353.27 "
-       id="polygon13214" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="533.39,308.78 539.38,308.22 533.21,308.52 "
-       id="polygon13216" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.27,306.79 533.02,307.57 533.05,307.42 "
-       id="polygon13218" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.8,352.02 560.22,353.06 563.89,352.49 "
-       id="polygon13220" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="533.05,307.91 539.19,307.27 533.02,307.57 "
-       id="polygon13222" />
-    <polygon
-       style="opacity:1;fill:#008522"
-       points="541.66,317.49 541.42,317.72 541.46,317.42 "
-       id="polygon13224" />
-    <polygon
-       style="opacity:1;fill:#009f29"
-       points="551.33,322.29 542.64,321.05 542.26,321.09 "
-       id="polygon13226" />
-    <polygon
-       style="opacity:1;fill:#009e97"
-       points="552.93,330.91 562.49,332.23 553.29,330.87 "
-       id="polygon13228" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="177.11,358.25 167.89,361.11 167.54,360.93 "
-       id="polygon13230" />
-    <polygon
-       style="opacity:1;fill:#00d938"
-       points="542.49,318.63 542.72,318.44 542.49,318.46 "
-       id="polygon13232" />
-    <polygon
-       style="opacity:1;fill:#008c24"
-       points="550.94,322.33 542.26,321.09 541.9,321.29 "
-       id="polygon13234" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="177.46,358.43 168.2,361.44 167.89,361.11 "
-       id="polygon13236" />
-    <polygon
-       style="opacity:1;fill:#008c86"
-       points="552.58,331.12 562.13,332.28 552.93,330.91 "
-       id="polygon13238" />
-    <polygon
-       style="opacity:1;fill:#007c20"
-       points="541.88,324.16 550.25,325.14 550.55,325.41 "
-       id="polygon13240" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.8,326.53 550.01,324.76 550.22,325.14 "
-       id="polygon13242" />
-    <polygon
-       style="opacity:1;fill:#007c20"
-       points="550.25,325.14 541.57,323.89 541.88,324.16 "
-       id="polygon13244" />
-    <polygon
-       style="opacity:1;fill:#00771e"
-       points="550.58,322.53 541.9,321.29 541.59,321.61 "
-       id="polygon13246" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="177.78,358.75 168.45,361.87 168.2,361.44 "
-       id="polygon13248" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="178.03,359.18 168.61,362.36 168.45,361.87 "
-       id="polygon13250" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="178.18,359.67 168.66,362.86 168.61,362.36 "
-       id="polygon13252" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="552.28,331.45 561.79,332.48 552.58,331.12 "
-       id="polygon13254" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="550.27,322.86 541.59,321.61 541.36,322.04 "
-       id="polygon13256" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="549.91,324.29 541.23,323.04 541.34,323.51 "
-       id="polygon13258" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="550.04,323.29 541.36,322.04 541.23,322.54 "
-       id="polygon13260" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.25,333.74 561.27,334.73 552.05,333.36 "
-       id="polygon13262" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="549.91,323.78 541.23,322.54 541.23,323.04 "
-       id="polygon13264" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.06,331.89 561.49,332.82 552.28,331.45 "
-       id="polygon13266" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="552.05,333.36 561.16,334.26 551.94,332.89 "
-       id="polygon13268" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="551.95,332.38 561.27,333.26 552.06,331.89 "
-       id="polygon13270" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="551.94,332.89 561.16,333.75 551.95,332.38 "
-       id="polygon13272" />
-    <polygon
-       style="opacity:1;fill:#097200"
-       points="539.47,306.37 533.3,306.67 539.76,306.05 "
-       id="polygon13274" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.27,306.79 533.11,307.09 539.47,306.37 "
-       id="polygon13276" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.64,308.6 533.47,308.89 539.38,308.22 "
-       id="polygon13278" />
-    <polygon
-       style="opacity:1;fill:#0076e3"
-       points="565.42,353.53 572.04,351.79 565.72,353.33 "
-       id="polygon13280" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.38,308.22 533.21,308.52 539.23,307.77 "
-       id="polygon13282" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.23,307.77 533.06,308.06 539.19,307.27 "
-       id="polygon13284" />
-    <polygon
-       style="opacity:1;fill:#0060b9"
-       points="564.71,353.49 571.32,351.75 565.07,353.58 "
-       id="polygon13286" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.95,351.15 570.55,349.41 563.82,351.56 "
-       id="polygon13288" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="564.38,353.26 570.98,351.52 564.71,353.49 "
-       id="polygon13290" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.82,351.56 570.43,349.82 563.8,352.02 "
-       id="polygon13292" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="564.09,352.92 570.7,351.18 564.38,353.26 "
-       id="polygon13294" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.8,352.02 570.41,350.28 563.89,352.49 "
-       id="polygon13296" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.89,352.49 570.51,350.75 564.09,352.92 "
-       id="polygon13298" />
-    <polygon
-       style="opacity:1;fill:#008c86"
-       points="561.79,332.47 552.58,331.12 562.13,332.28 "
-       id="polygon13300" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="561.75,335.36 552.54,334 561.48,335.11 "
-       id="polygon13302" />
-    <polygon
-       style="opacity:1;fill:#008c24"
-       points="541.9,321.29 550.94,322.33 550.58,322.53 "
-       id="polygon13304" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="561.5,332.8 552.28,331.45 561.79,332.48 "
-       id="polygon13306" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="561.46,335.1 552.25,333.74 561.27,334.73 "
-       id="polygon13308" />
-    <polygon
-       style="opacity:1;fill:#00771e"
-       points="541.59,321.61 550.58,322.53 550.27,322.86 "
-       id="polygon13310" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.57,323.89 550.02,324.75 550.25,325.14 "
-       id="polygon13312" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="561.28,333.24 552.06,331.89 561.49,332.82 "
-       id="polygon13314" />
-    <polygon
-       style="opacity:1;fill:#00c511"
-       points="543.34,317.79 544.97,314.66 543.6,317.68 "
-       id="polygon13316" />
-    <polygon
-       style="opacity:1;fill:#0ea700"
-       points="539.47,306.37 539.66,306.58 539.5,306.91 "
-       id="polygon13318" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="561.26,334.71 552.05,333.36 561.16,334.26 "
-       id="polygon13320" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.36,322.04 550.27,322.86 550.04,323.29 "
-       id="polygon13322" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.34,323.51 549.91,324.29 550.02,324.75 "
-       id="polygon13324" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="561.16,333.74 551.95,332.38 561.27,333.26 "
-       id="polygon13326" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="561.15,334.25 551.94,332.89 561.16,333.75 "
-       id="polygon13328" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="551.95,332.38 561.16,333.75 561.16,333.74 "
-       id="polygon13330" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.23,322.54 550.04,323.29 549.91,323.78 "
-       id="polygon13332" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="541.23,323.04 549.91,323.78 549.91,324.29 "
-       id="polygon13334" />
-    <polygon
-       style="opacity:1;fill:#00a40e"
-       points="542.69,317.74 544.32,314.62 542.98,317.8 "
-       id="polygon13336" />
-    <polygon
-       style="opacity:1;fill:#008f0c"
-       points="542.39,317.59 544.02,314.46 542.65,317.73 "
-       id="polygon13338" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.95,351.15 570.78,349.09 570.71,349.18 "
-       id="polygon13340" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.82,351.56 570.55,349.41 570.52,349.53 "
-       id="polygon13342" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="570.52,349.53 563.82,351.56 570.43,349.82 "
-       id="polygon13344" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="570.79,351.28 564.38,353.26 570.98,351.52 "
-       id="polygon13346" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="563.8,352.02 570.43,349.82 570.42,349.96 "
-       id="polygon13348" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="570.42,349.96 563.8,352.02 570.41,350.28 "
-       id="polygon13350" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="570.57,350.88 564.09,352.92 570.7,351.18 "
-       id="polygon13352" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="564.09,352.92 570.51,350.75 570.57,350.88 "
-       id="polygon13354" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="570.44,350.42 563.89,352.49 570.51,350.75 "
-       id="polygon13356" />
-    <polygon
-       style="opacity:1;fill:#00740a"
-       points="542.13,316.18 543.96,312.87 543.84,312.97 "
-       id="polygon13358" />
-    <polygon
-       style="opacity:1;fill:#00ab2c"
-       points="551.61,322.71 551.73,322.41 551.37,322.29 "
-       id="polygon13360" />
-    <polygon
-       style="opacity:1;fill:#00a17d"
-       points="562.72,335.15 562.39,335.52 562.75,335.47 "
-       id="polygon13362" />
-    <polygon
-       style="opacity:1;fill:#00b50f"
-       points="544.81,314.68 543.3,317.79 544.97,314.66 "
-       id="polygon13364" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="542.13,317.32 543.61,313.95 543.7,314.09 "
-       id="polygon13366" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="543.7,314.09 542.13,317.32 543.77,314.23 "
-       id="polygon13368" />
-    <polygon
-       style="opacity:1;fill:#00b18a"
-       points="562.46,332.31 562.78,332.59 562.49,332.63 "
-       id="polygon13370" />
-    <polygon
-       style="opacity:1;fill:#0a7e00"
-       points="539.98,308.86 545.86,308.36 539.65,308.6 "
-       id="polygon13372" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.28,306.79 545.51,306.18 539.47,306.38 "
-       id="polygon13374" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.65,308.6 545.58,308.02 539.39,308.23 "
-       id="polygon13376" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.23,307.77 545.31,307.11 539.2,307.28 "
-       id="polygon13378" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.45,333.78 561.16,333.74 561.57,333.29 "
-       id="polygon13380" />
-    <polygon
-       style="opacity:1;fill:#0ea900"
-       points="546.59,305.49 540.49,305.82 546.85,305.57 "
-       id="polygon13382" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.3,349.06 570.52,349.53 570.43,349.82 "
-       id="polygon13384" />
-    <polygon
-       style="opacity:1;fill:#00b78f"
-       points="572.99,334.42 563.45,332.64 563.17,332.38 "
-       id="polygon13386" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.38,350 570.44,350.42 570.51,350.75 "
-       id="polygon13388" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="570.51,350.75 573.38,350 570.57,350.88 "
-       id="polygon13390" />
-    <polygon
-       style="opacity:1;fill:#0a7e00"
-       points="546.09,308.53 539.98,308.86 545.86,308.36 "
-       id="polygon13392" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="545.75,308.27 539.65,308.6 545.58,308.02 "
-       id="polygon13394" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="545.38,306.46 539.28,306.79 545.51,306.18 "
-       id="polygon13396" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.65,348.33 570.71,349.18 573.42,348.65 "
-       id="polygon13398" />
-    <polygon
-       style="opacity:1;fill:#0080b9"
-       points="574.19,351 571.43,351.78 574.55,351.09 "
-       id="polygon13400" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="539.23,307.77 545.39,307.59 545.34,307.44 "
-       id="polygon13402" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="545.34,307.44 539.23,307.77 545.31,307.11 "
-       id="polygon13404" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="573.86,350.77 571.09,351.59 574.19,351 "
-       id="polygon13406" />
-    <polygon
-       style="opacity:1;fill:#008d6e"
-       points="572.01,334.09 562.46,332.31 562.12,332.52 "
-       id="polygon13408" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.3,349.06 570.42,349.96 573.28,349.53 "
-       id="polygon13410" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="573.57,350.42 570.79,351.28 573.86,350.77 "
-       id="polygon13412" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.38,350 570.57,350.88 573.57,350.42 "
-       id="polygon13414" />
-    <polygon
-       style="opacity:1;fill:#008d24"
-       points="559.79,324.1 550.99,322.33 550.62,322.52 "
-       id="polygon13416" />
-    <polygon
-       style="opacity:1;fill:#007d62"
-       points="562.02,335.4 571.28,336.93 571.56,337.19 "
-       id="polygon13418" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.65,338.79 571.07,336.54 571.25,336.93 "
-       id="polygon13420" />
-    <polygon
-       style="opacity:1;fill:#007d62"
-       points="571.28,336.93 561.73,335.14 562.02,335.4 "
-       id="polygon13422" />
-    <polygon
-       style="opacity:1;fill:#00795e"
-       points="571.66,334.3 562.12,332.52 561.82,332.85 "
-       id="polygon13424" />
-    <polygon
-       style="opacity:1;fill:#007c20"
-       points="559.01,326.92 550.22,325.14 550.52,325.41 "
-       id="polygon13426" />
-    <polygon
-       style="opacity:1;fill:#00781f"
-       points="559.42,324.29 550.62,322.52 550.3,322.86 "
-       id="polygon13428" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.08,336.54 561.54,334.76 561.73,335.14 "
-       id="polygon13430" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.36,334.63 561.82,332.85 561.59,333.29 "
-       id="polygon13432" />
-    <polygon
-       style="opacity:1;fill:#0fb500"
-       points="546.61,311.53 544.81,314.68 544.97,314.66 "
-       id="polygon13434" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="570.99,336.07 561.44,334.29 561.54,334.76 "
-       id="polygon13436" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="559.1,324.63 550.3,322.86 550.06,323.29 "
-       id="polygon13438" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.13,335.07 561.59,333.29 561.46,333.78 "
-       id="polygon13440" />
-    <polygon
-       style="opacity:1;fill:#0ea400"
-       points="544.32,314.62 545.95,311.49 544.49,314.66 "
-       id="polygon13442" />
-    <polygon
-       style="opacity:1;fill:#0a7600"
-       points="545.65,311.33 543.9,314.35 544.02,314.46 "
-       id="polygon13444" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571,335.57 561.46,333.78 561.44,334.29 "
-       id="polygon13446" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.7,326.06 549.91,324.29 550.01,324.76 "
-       id="polygon13448" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.86,325.06 550.06,323.29 549.93,323.78 "
-       id="polygon13450" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.72,325.55 549.93,323.78 549.91,324.29 "
-       id="polygon13452" />
-    <polygon
-       style="opacity:1;fill:#238700"
-       points="549.22,305.37 545.86,305.72 546.1,305.59 "
-       id="polygon13454" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="545.27,310.85 543.7,314.09 545.41,311.09 "
-       id="polygon13456" />
-    <polygon
-       style="opacity:1;fill:#0a7600"
-       points="545.44,311.13 543.9,314.35 545.65,311.33 "
-       id="polygon13458" />
-    <polygon
-       style="opacity:1;fill:#0ea400"
-       points="544.49,314.66 545.95,311.49 546,311.5 "
-       id="polygon13460" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.67,348.31 580.86,346.67 573.43,348.64 "
-       id="polygon13462" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="545.36,306.63 548.39,306.3 545.38,306.46 "
-       id="polygon13464" />
-    <polygon
-       style="opacity:1;fill:#008d6e"
-       points="562.12,332.52 572.01,334.09 571.66,334.3 "
-       id="polygon13466" />
-    <polygon
-       style="opacity:1;fill:#0081ba"
-       points="574.16,351.01 581.35,349.37 574.52,351.11 "
-       id="polygon13468" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.35,307.28 545.5,307.9 545.39,307.59 "
-       id="polygon13470" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="545.39,307.59 548.35,307.28 545.34,307.44 "
-       id="polygon13472" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.43,348.64 580.62,346.99 573.3,349.05 "
-       id="polygon13474" />
-    <polygon
-       style="opacity:1;fill:#007c20"
-       points="550.52,325.41 559.01,326.92 559.31,327.18 "
-       id="polygon13476" />
-    <polygon
-       style="opacity:1;fill:#008d24"
-       points="550.62,322.52 559.79,324.1 559.42,324.29 "
-       id="polygon13478" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.73,335.14 571.08,336.54 571.28,336.93 "
-       id="polygon13480" />
-    <polygon
-       style="opacity:1;fill:#00795e"
-       points="561.82,332.85 571.66,334.3 571.36,334.63 "
-       id="polygon13482" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="573.82,350.78 581.01,349.14 574.16,351.01 "
-       id="polygon13484" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.3,349.05 580.48,347.41 573.27,349.52 "
-       id="polygon13486" />
-    <polygon
-       style="opacity:1;fill:#005a83"
-       points="573.55,350.43 580.73,348.79 573.82,350.78 "
-       id="polygon13488" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.54,334.76 570.99,336.07 571.08,336.54 "
-       id="polygon13490" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.59,333.29 571.36,334.63 571.13,335.07 "
-       id="polygon13492" />
-    <polygon
-       style="opacity:1;fill:#238700"
-       points="548.87,305.56 545.86,305.72 549.22,305.37 "
-       id="polygon13494" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="550.22,325.14 558.8,326.53 559.01,326.92 "
-       id="polygon13496" />
-    <polygon
-       style="opacity:1;fill:#00781f"
-       points="550.3,322.86 559.42,324.29 559.1,324.63 "
-       id="polygon13498" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.27,349.52 580.46,347.88 573.36,349.99 "
-       id="polygon13500" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.36,349.99 580.54,348.35 573.55,350.43 "
-       id="polygon13502" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.44,334.29 571,335.57 570.99,336.07 "
-       id="polygon13504" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="561.46,333.78 571.13,335.07 571,335.57 "
-       id="polygon13506" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="550.01,324.76 558.7,326.06 558.8,326.53 "
-       id="polygon13508" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="550.06,323.29 559.1,324.63 558.86,325.06 "
-       id="polygon13510" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="549.91,324.29 558.72,325.55 558.7,326.06 "
-       id="polygon13512" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="549.93,323.78 558.86,325.06 558.72,325.55 "
-       id="polygon13514" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.31,306.79 545.3,306.95 548.39,306.3 "
-       id="polygon13516" />
-    <polygon
-       style="opacity:1;fill:#2eb500"
-       points="547.22,310.35 546.33,311.55 546.61,311.53 "
-       id="polygon13518" />
-    <polygon
-       style="opacity:1;fill:#0081ba"
-       points="581.44,349.39 574.52,351.11 581.71,349.46 "
-       id="polygon13520" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="581.09,349.19 574.16,351.01 581.35,349.37 "
-       id="polygon13522" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="580.59,347.09 573.3,349.05 580.48,347.41 "
-       id="polygon13524" />
-    <polygon
-       style="opacity:1;fill:#005a83"
-       points="580.8,348.87 573.82,350.78 581.01,349.14 "
-       id="polygon13526" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="580.48,347.52 573.27,349.52 580.46,347.88 "
-       id="polygon13528" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="580.59,348.45 573.55,350.43 580.73,348.79 "
-       id="polygon13530" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="573.36,349.99 580.46,347.88 580.48,347.99 "
-       id="polygon13532" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="580.48,347.99 573.36,349.99 580.54,348.35 "
-       id="polygon13534" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="545.86,309.63 545.27,310.85 546.02,309.92 "
-       id="polygon13536" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="571.52,334.84 571.66,334.3 571.36,334.63 "
-       id="polygon13538" />
-    <polygon
-       style="opacity:1;fill:#238900"
-       points="546.33,310.14 546.54,310.53 546.2,310.33 "
-       id="polygon13540" />
-    <polygon
-       style="opacity:1;fill:#00b62f"
-       points="569.78,326.82 560.84,324.45 560.56,324.18 "
-       id="polygon13542" />
-    <polygon
-       style="opacity:1;fill:#00a17d"
-       points="582,336.3 572.41,334.05 572.05,334.1 "
-       id="polygon13544" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="557.47,305.38 548.58,305.88 548.39,306.31 "
-       id="polygon13546" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="583.12,346.15 581.09,346.52 580.86,346.67 "
-       id="polygon13548" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="557.39,307.24 548.51,307.74 548.77,308.12 "
-       id="polygon13550" />
-    <polygon
-       style="opacity:1;fill:#008f6f"
-       points="581.64,336.35 572.05,334.1 571.7,334.3 "
-       id="polygon13552" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="557.2,306.29 548.31,306.79 548.36,307.29 "
-       id="polygon13554" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="581.11,339.44 580.84,339.18 575.28,338.07 "
-       id="polygon13556" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="581.79,339.19 581.44,339.55 581.8,339.5 "
-       id="polygon13558" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.25,341.6 580.63,338.79 580.8,339.17 "
-       id="polygon13560" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="580.84,339.18 571.25,336.93 571.52,337.18 "
-       id="polygon13562" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="581.29,336.55 571.7,334.3 571.39,334.64 "
-       id="polygon13564" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="580.48,347.41 582.75,346.89 580.48,347.52 "
-       id="polygon13566" />
-    <polygon
-       style="opacity:1;fill:#00b62f"
-       points="560.56,324.18 569.78,326.82 569.5,326.55 "
-       id="polygon13568" />
-    <polygon
-       style="opacity:1;fill:#008f25"
-       points="568.77,326.47 559.84,324.11 559.47,324.3 "
-       id="polygon13570" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.72,347.36 580.48,347.52 580.46,347.88 "
-       id="polygon13572" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.98,336.88 571.39,334.64 571.16,335.07 "
-       id="polygon13574" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="583,348.27 580.59,348.45 580.73,348.79 "
-       id="polygon13576" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.57,338.32 570.98,336.07 571.07,336.54 "
-       id="polygon13578" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.74,337.32 571.16,335.07 571.02,335.57 "
-       id="polygon13580" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.6,337.82 571.02,335.57 570.98,336.07 "
-       id="polygon13582" />
-    <polygon
-       style="opacity:1;fill:#007a1f"
-       points="568.41,326.67 559.47,324.3 559.14,324.63 "
-       id="polygon13584" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="583.12,346.15 580.8,346.75 582.88,346.48 "
-       id="polygon13586" />
-    <polygon
-       style="opacity:1;fill:#30bc00"
-       points="549.17,308.89 547.29,310.59 549.29,308.89 "
-       id="polygon13588" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="568.08,327 559.14,324.63 558.89,325.06 "
-       id="polygon13590" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.64,328.43 558.71,326.06 558.79,326.53 "
-       id="polygon13592" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="545.66,309.3 547.7,307.22 547.68,307.47 "
-       id="polygon13594" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.83,327.43 558.89,325.06 558.75,325.56 "
-       id="polygon13596" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.68,327.93 558.75,325.56 558.71,326.06 "
-       id="polygon13598" />
-    <polygon
-       style="opacity:1;fill:#269400"
-       points="546.54,310.53 548.2,308.63 548.43,308.76 "
-       id="polygon13600" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="583,348.27 580.8,348.87 583.28,348.62 "
-       id="polygon13602" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="545.92,310.04 547.74,307.98 547.86,308.22 "
-       id="polygon13604" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="547.86,308.22 545.92,310.04 547.92,308.33 "
-       id="polygon13606" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.72,347.36 580.48,347.99 582.81,347.83 "
-       id="polygon13608" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="571.52,337.18 580.84,339.18 575.28,338.07 "
-       id="polygon13610" />
-    <polygon
-       style="opacity:1;fill:#1d7200"
-       points="548.58,305.88 557.75,305.06 557.47,305.38 "
-       id="polygon13612" />
-    <polygon
-       style="opacity:1;fill:#008f6f"
-       points="571.7,334.3 581.64,336.35 581.29,336.55 "
-       id="polygon13614" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.39,306.31 557.47,305.38 557.28,305.81 "
-       id="polygon13616" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.77,308.12 557.39,307.24 557.65,307.62 "
-       id="polygon13618" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.25,336.93 580.65,338.79 580.84,339.18 "
-       id="polygon13620" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="571.39,334.64 581.29,336.55 580.98,336.88 "
-       id="polygon13622" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.31,306.79 557.28,305.81 557.2,306.29 "
-       id="polygon13624" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.51,307.74 557.24,306.79 557.39,307.24 "
-       id="polygon13626" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="548.36,307.29 557.2,306.29 557.24,306.79 "
-       id="polygon13628" />
-    <polygon
-       style="opacity:1;fill:#007b1f"
-       points="559.27,327.18 567.92,329.29 568.2,329.55 "
-       id="polygon13630" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.07,336.54 580.57,338.32 580.65,338.79 "
-       id="polygon13632" />
-    <polygon
-       style="opacity:1;fill:#008f25"
-       points="559.47,324.3 568.77,326.47 568.41,326.67 "
-       id="polygon13634" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.16,335.07 580.98,336.88 580.74,337.32 "
-       id="polygon13636" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="570.98,336.07 580.6,337.82 580.57,338.32 "
-       id="polygon13638" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="571.02,335.57 580.74,337.32 580.6,337.82 "
-       id="polygon13640" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.98,326.92 567.73,328.9 567.92,329.29 "
-       id="polygon13642" />
-    <polygon
-       style="opacity:1;fill:#007a1f"
-       points="559.14,324.63 568.41,326.67 568.08,327 "
-       id="polygon13644" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.79,326.53 567.64,328.43 567.73,328.9 "
-       id="polygon13646" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.89,325.06 568.08,327 567.83,327.43 "
-       id="polygon13648" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.71,326.06 567.68,327.93 567.64,328.43 "
-       id="polygon13650" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="558.75,325.56 567.83,327.43 567.68,327.93 "
-       id="polygon13652" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="547.86,306.89 551.07,304.15 547.75,307.11 "
-       id="polygon13654" />
-    <polygon
-       style="opacity:1;fill:#00a2bb"
-       points="583.54,348.89 592.9,347.63 583.91,348.99 "
-       id="polygon13656" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="583.17,346.11 592.53,344.85 582.92,346.44 "
-       id="polygon13658" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="550.92,304.48 547.75,307.11 547.7,307.22 "
-       id="polygon13660" />
-    <polygon
-       style="opacity:1;fill:#51bc00"
-       points="548.92,308.91 552.14,306.18 549.17,308.89 "
-       id="polygon13662" />
-    <polygon
-       style="opacity:1;fill:#00879c"
-       points="583.21,348.64 592.57,347.38 583.54,348.89 "
-       id="polygon13664" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.92,346.44 592.27,345.18 582.76,346.86 "
-       id="polygon13666" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="547.74,307.98 550.95,305.24 547.86,308.22 "
-       id="polygon13668" />
-    <polygon
-       style="opacity:1;fill:#3f9400"
-       points="548.2,308.63 551.42,305.89 548.43,308.76 "
-       id="polygon13670" />
-    <polygon
-       style="opacity:1;fill:#347a00"
-       points="551.42,305.89 548.11,308.53 548.2,308.63 "
-       id="polygon13672" />
-    <polygon
-       style="opacity:1;fill:#007081"
-       points="582.95,348.28 592.31,347.02 583.21,348.64 "
-       id="polygon13674" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.76,346.86 592.12,345.6 582.71,347.34 "
-       id="polygon13676" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.78,347.83 592.13,346.57 582.95,348.28 "
-       id="polygon13678" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="582.71,347.34 592.07,346.08 582.78,347.83 "
-       id="polygon13680" />
-    <polygon
-       style="opacity:1;fill:#00b48c"
-       points="581.7,336.67 581.69,336.36 581.33,336.56 "
-       id="polygon13682" />
-    <polygon
-       style="opacity:1;fill:#00a029"
-       points="568.61,329.35 568.2,329.55 568.55,329.67 "
-       id="polygon13684" />
-    <polygon
-       style="opacity:1;fill:#2aa400"
-       points="557.69,305.57 557.5,305.36 557.3,305.79 "
-       id="polygon13686" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="557.22,306.78 558.07,306.76 557.2,306.28 "
-       id="polygon13688" />
-    <polygon
-       style="opacity:1;fill:#49aa00"
-       points="551.82,306.11 548.8,308.89 552.14,306.18 "
-       id="polygon13690" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="550.89,304.92 547.71,307.85 550.95,305.24 "
-       id="polygon13692" />
-    <polygon
-       style="opacity:1;fill:#00b68e"
-       points="592.25,339.48 582.64,336.68 582.38,336.42 "
-       id="polygon13694" />
-    <polygon
-       style="opacity:1;fill:#347a00"
-       points="551.18,305.64 548.11,308.53 551.42,305.89 "
-       id="polygon13696" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.84,344.65 583.17,346.11 592.53,344.85 "
-       id="polygon13698" />
-    <polygon
-       style="opacity:1;fill:#00a2bb"
-       points="592.91,347.63 583.91,348.99 593.27,347.73 "
-       id="polygon13700" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.52,344.85 582.92,346.44 592.27,345.18 "
-       id="polygon13702" />
-    <polygon
-       style="opacity:1;fill:#00879c"
-       points="592.57,347.39 583.54,348.89 592.9,347.63 "
-       id="polygon13704" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.27,345.18 582.76,346.86 592.12,345.6 "
-       id="polygon13706" />
-    <polygon
-       style="opacity:1;fill:#007081"
-       points="592.31,347.02 583.21,348.64 592.57,347.38 "
-       id="polygon13708" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.11,345.61 582.71,347.34 592.07,346.08 "
-       id="polygon13710" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.13,346.57 582.95,348.28 592.31,347.02 "
-       id="polygon13712" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="592.07,346.09 582.78,347.83 592.13,346.57 "
-       id="polygon13714" />
-    <polygon
-       style="opacity:1;fill:#00b68e"
-       points="582.38,336.42 592.25,339.48 591.99,339.23 "
-       id="polygon13716" />
-    <polygon
-       style="opacity:1;fill:#009070"
-       points="591.31,339.16 581.69,336.36 581.33,336.56 "
-       id="polygon13718" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="590.95,339.36 581.33,336.56 581.02,336.89 "
-       id="polygon13720" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.64,339.7 581.02,336.89 580.77,337.33 "
-       id="polygon13722" />
-    <polygon
-       style="opacity:1;fill:#009125"
-       points="577.94,329.52 568.84,326.49 568.47,326.69 "
-       id="polygon13724" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.18,341.13 580.56,338.32 580.63,338.79 "
-       id="polygon13726" />
-    <polygon
-       style="opacity:1;fill:#007b1f"
-       points="577,332.32 567.89,329.29 568.16,329.54 "
-       id="polygon13728" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.39,340.14 580.77,337.33 580.61,337.82 "
-       id="polygon13730" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.23,340.63 580.61,337.82 580.56,338.32 "
-       id="polygon13732" />
-    <polygon
-       style="opacity:1;fill:#007b20"
-       points="577.57,329.72 568.47,326.69 568.14,327.02 "
-       id="polygon13734" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.82,331.94 567.72,328.9 567.89,329.29 "
-       id="polygon13736" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="577.25,330.05 568.14,327.02 567.88,327.45 "
-       id="polygon13738" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.76,331.48 567.66,328.44 567.72,328.9 "
-       id="polygon13740" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.98,330.48 567.88,327.45 567.71,327.94 "
-       id="polygon13742" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.82,330.97 567.71,327.94 567.66,328.44 "
-       id="polygon13744" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="558.17,305.77 566.43,305.61 558.36,305.39 "
-       id="polygon13746" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="558.43,307.62 566.29,307.5 558.21,307.27 "
-       id="polygon13748" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="558.07,306.76 566.13,306.52 558.05,306.3 "
-       id="polygon13750" />
-    <polygon
-       style="opacity:1;fill:#4a7a00"
-       points="552.43,305.03 551.18,305.64 551.42,305.89 "
-       id="polygon13752" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="551.89,304 550.89,304.92 551.96,304.38 "
-       id="polygon13754" />
-    <polygon
-       style="opacity:1;fill:#67aa00"
-       points="552.77,305.23 551.82,306.11 553.14,305.32 "
-       id="polygon13756" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="581.07,339.43 590.42,341.98 590.68,342.24 "
-       id="polygon13758" />
-    <polygon
-       style="opacity:1;fill:#5a9400"
-       points="553.39,305.28 553.82,305.39 553.46,305.57 "
-       id="polygon13760" />
-    <polygon
-       style="opacity:1;fill:#009070"
-       points="581.33,336.56 591.31,339.16 590.95,339.36 "
-       id="polygon13762" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="590.64,342.22 590.39,341.97 593.86,343.32 "
-       id="polygon13764" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.8,339.17 590.25,341.6 590.42,341.98 "
-       id="polygon13766" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="581.02,336.89 590.95,339.36 590.64,339.7 "
-       id="polygon13768" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.63,338.79 590.18,341.13 590.25,341.6 "
-       id="polygon13770" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.77,337.33 590.64,339.7 590.39,340.14 "
-       id="polygon13772" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.56,338.32 590.23,340.63 590.18,341.13 "
-       id="polygon13774" />
-    <polygon
-       style="opacity:1;fill:#009125"
-       points="568.47,326.69 577.94,329.52 577.57,329.72 "
-       id="polygon13776" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="580.61,337.82 590.39,340.14 590.23,340.63 "
-       id="polygon13778" />
-    <polygon
-       style="opacity:1;fill:#007b20"
-       points="568.14,327.02 577.57,329.72 577.25,330.05 "
-       id="polygon13780" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.12,335.7 576.82,331.94 576.97,332.31 "
-       id="polygon13782" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.72,328.9 576.76,331.48 576.82,331.94 "
-       id="polygon13784" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.88,327.45 577.25,330.05 576.98,330.48 "
-       id="polygon13786" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.66,328.44 576.82,330.97 576.76,331.48 "
-       id="polygon13788" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="567.71,327.94 576.98,330.48 576.82,330.97 "
-       id="polygon13790" />
-    <polygon
-       style="opacity:1;fill:#327400"
-       points="566.43,305.61 558.36,305.39 566.73,305.28 "
-       id="polygon13792" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="566.13,306.52 558.05,306.3 566.22,306.04 "
-       id="polygon13794" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="552.72,302.61 558.25,301.57 552.36,302.79 "
-       id="polygon13796" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="552.36,302.79 557.89,301.75 552.08,303.09 "
-       id="polygon13798" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="611.23,348.97 601.92,347.51 601.72,347.12 "
-       id="polygon13800" />
-    <polygon
-       style="opacity:1;fill:#009e96"
-       points="602.04,347.5 592.88,347.66 592.57,347.4 "
-       id="polygon13802" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="552.08,303.09 557.6,302.05 551.89,303.5 "
-       id="polygon13804" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="601.9,345.22 592.24,345.55 592.43,345.12 "
-       id="polygon13806" />
-    <polygon
-       style="opacity:1;fill:#5d9900"
-       points="552.32,305.24 557.85,304.2 552.68,305.49 "
-       id="polygon13808" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="551.89,303.5 557.41,302.46 551.82,303.96 "
-       id="polygon13810" />
-    <polygon
-       style="opacity:1;fill:#4c7d00"
-       points="552.05,304.88 557.57,303.84 552.32,305.24 "
-       id="polygon13812" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="601.63,346.15 592.19,346.55 592.16,346.05 "
-       id="polygon13814" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="551.82,303.96 557.34,302.92 551.88,304.44 "
-       id="polygon13816" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="551.88,304.44 557.4,303.4 552.05,304.88 "
-       id="polygon13818" />
-    <polygon
-       style="opacity:1;fill:#00a37f"
-       points="601.38,342.59 591.72,339.14 591.37,339.18 "
-       id="polygon13820" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="592.24,345.55 601.71,345.65 601.9,345.22 "
-       id="polygon13822" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="600.04,345.43 590.39,341.97 593.86,343.32 "
-       id="polygon13824" />
-    <polygon
-       style="opacity:1;fill:#009171"
-       points="601.02,342.64 591.37,339.18 591.01,339.38 "
-       id="polygon13826" />
-    <polygon
-       style="opacity:1;fill:#5d9900"
-       points="557.96,304.28 552.68,305.49 558.2,304.46 "
-       id="polygon13828" />
-    <polygon
-       style="opacity:1;fill:#00a42a"
-       points="587.67,333.27 578.37,329.5 578.02,329.55 "
-       id="polygon13830" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="557.54,302.18 551.89,303.5 557.41,302.46 "
-       id="polygon13832" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.89,345.06 590.23,341.59 590.39,341.97 "
-       id="polygon13834" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="600.66,342.84 591.01,339.38 590.68,339.71 "
-       id="polygon13836" />
-    <polygon
-       style="opacity:1;fill:#4c7d00"
-       points="557.66,303.95 552.32,305.24 557.85,304.2 "
-       id="polygon13838" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="551.88,304.44 557.34,302.92 557.36,303.07 "
-       id="polygon13840" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="552.05,304.88 557.4,303.4 557.45,303.54 "
-       id="polygon13842" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="557.36,303.07 551.88,304.44 557.4,303.4 "
-       id="polygon13844" />
-    <polygon
-       style="opacity:1;fill:#009225"
-       points="587.32,333.32 578.02,329.55 577.65,329.75 "
-       id="polygon13846" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.84,344.6 590.18,341.13 590.23,341.59 "
-       id="polygon13848" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="600.34,343.18 590.68,339.71 590.42,340.15 "
-       id="polygon13850" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.9,344.1 590.25,340.64 590.18,341.13 "
-       id="polygon13852" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="600.08,343.61 590.42,340.15 590.25,340.64 "
-       id="polygon13854" />
-    <polygon
-       style="opacity:1;fill:#007d20"
-       points="586.95,333.51 577.65,329.75 577.32,330.08 "
-       id="polygon13856" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="592.19,346.55 601.66,346.65 601.63,346.15 "
-       id="polygon13858" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.08,335.25 576.79,331.48 576.82,331.94 "
-       id="polygon13860" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.62,333.84 577.32,330.08 577.04,330.5 "
-       id="polygon13862" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.16,334.75 576.86,330.99 576.79,331.48 "
-       id="polygon13864" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.34,334.27 577.04,330.5 576.86,330.99 "
-       id="polygon13866" />
-    <polygon
-       style="opacity:1;fill:#52c000"
-       points="576.29,309.78 567.13,308.28 567.5,308.24 "
-       id="polygon13868" />
-    <polygon
-       style="opacity:1;fill:#357c00"
-       points="575.63,309.39 566.46,307.89 566.77,308.16 "
-       id="polygon13870" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="575.42,309 566.25,307.5 566.46,307.89 "
-       id="polygon13872" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="575.31,308.53 566.14,307.04 566.25,307.5 "
-       id="polygon13874" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="575.45,307.52 566.28,306.03 566.16,306.52 "
-       id="polygon13876" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="575.32,308.02 566.16,306.52 566.14,307.04 "
-       id="polygon13878" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.39,341.97 599.89,345.06 600.04,345.43 "
-       id="polygon13880" />
-    <polygon
-       style="opacity:1;fill:#00a42a"
-       points="578.02,329.55 587.67,333.27 587.32,333.32 "
-       id="polygon13882" />
-    <polygon
-       style="opacity:1;fill:#007b1f"
-       points="577.21,332.56 586.27,336.07 586.52,336.33 "
-       id="polygon13884" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="590.68,339.71 600.66,342.84 600.34,343.18 "
-       id="polygon13886" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="600,345.41 599.87,345.05 605.28,347.55 "
-       id="polygon13888" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.23,341.59 599.84,344.6 599.89,345.06 "
-       id="polygon13890" />
-    <polygon
-       style="opacity:1;fill:#009225"
-       points="577.65,329.75 587.32,333.32 586.95,333.51 "
-       id="polygon13892" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.42,340.15 600.34,343.18 600.08,343.61 "
-       id="polygon13894" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.97,332.31 586.12,335.7 586.27,336.07 "
-       id="polygon13896" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.18,341.13 599.9,344.1 599.84,344.6 "
-       id="polygon13898" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="590.25,340.64 600.08,343.61 599.9,344.1 "
-       id="polygon13900" />
-    <polygon
-       style="opacity:1;fill:#8fb800"
-       points="561.1,304.1 558.32,304.49 558.59,304.57 "
-       id="polygon13902" />
-    <polygon
-       style="opacity:1;fill:#007d20"
-       points="577.32,330.08 586.95,333.51 586.62,333.84 "
-       id="polygon13904" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.82,331.94 586.08,335.25 586.12,335.7 "
-       id="polygon13906" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="577.04,330.5 586.62,333.84 586.34,334.27 "
-       id="polygon13908" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.79,331.48 586.16,334.75 586.08,335.25 "
-       id="polygon13910" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="576.86,330.99 586.34,334.27 586.16,334.75 "
-       id="polygon13912" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="557.41,302.46 559.92,301.98 557.39,302.6 "
-       id="polygon13914" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="559.85,302.45 557.39,302.6 557.34,302.92 "
-       id="polygon13916" />
-    <polygon
-       style="opacity:1;fill:#617d00"
-       points="557.57,303.84 560.08,303.37 557.66,303.95 "
-       id="polygon13918" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.08,303.37 557.45,303.54 557.57,303.84 "
-       id="polygon13920" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="557.4,303.4 559.91,302.93 557.45,303.54 "
-       id="polygon13922" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.39,301.27 557.8,301.84 560.11,301.58 "
-       id="polygon13924" />
-    <polygon
-       style="opacity:1;fill:#357c00"
-       points="566.77,308.16 575.63,309.39 575.93,309.66 "
-       id="polygon13926" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="559.92,301.98 557.39,302.6 559.85,302.45 "
-       id="polygon13928" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="566.46,307.89 575.42,309 575.63,309.39 "
-       id="polygon13930" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="566.28,306.03 575.68,307.09 575.45,307.52 "
-       id="polygon13932" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="566.25,307.5 575.31,308.53 575.42,309 "
-       id="polygon13934" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="566.14,307.04 575.32,308.02 575.31,308.53 "
-       id="polygon13936" />
-    <polygon
-       style="opacity:1;fill:#8db400"
-       points="560.79,301.47 560.39,301.53 560.7,301.2 "
-       id="polygon13938" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="600.24,345.66 602.22,346.5 602.28,346.55 "
-       id="polygon13940" />
-    <polygon
-       style="opacity:1;fill:#00a098"
-       points="611.43,349.36 602.21,347.77 601.92,347.51 "
-       id="polygon13942" />
-    <polygon
-       style="opacity:1;fill:#00b82f"
-       points="588.04,333.41 597.78,338.2 597.56,337.96 "
-       id="polygon13944" />
-    <polygon
-       style="opacity:1;fill:#00a62a"
-       points="597.26,337.86 587.74,333.31 587.39,333.36 "
-       id="polygon13946" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="609.55,349.27 599.87,345.05 605.28,347.55 "
-       id="polygon13948" />
-    <polygon
-       style="opacity:1;fill:#009426"
-       points="596.92,337.91 587.39,333.36 587.04,333.56 "
-       id="polygon13950" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.65,340.26 586.13,335.7 586.25,336.05 "
-       id="polygon13952" />
-    <polygon
-       style="opacity:1;fill:#87ae00"
-       points="561.74,301.07 571.38,303.38 571.65,303.64 "
-       id="polygon13954" />
-    <polygon
-       style="opacity:1;fill:#5f7a00"
-       points="570.69,303.31 560.7,301.2 561.05,301 "
-       id="polygon13956" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="609.53,348.82 599.84,344.6 599.87,345.05 "
-       id="polygon13958" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="610.08,347.43 600.39,343.2 600.12,343.63 "
-       id="polygon13960" />
-    <polygon
-       style="opacity:1;fill:#007f20"
-       points="596.56,338.11 587.04,333.56 586.7,333.88 "
-       id="polygon13962" />
-    <polygon
-       style="opacity:1;fill:#7da000"
-       points="569.87,306.15 560.5,304.09 560.23,303.83 "
-       id="polygon13964" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="609.61,348.33 599.93,344.11 599.84,344.6 "
-       id="polygon13966" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="609.8,347.85 600.12,343.63 599.93,344.11 "
-       id="polygon13968" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.64,339.82 586.11,335.26 586.13,335.7 "
-       id="polygon13970" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="596.22,338.44 586.7,333.88 586.41,334.3 "
-       id="polygon13972" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.34,303.51 560.39,301.53 560.7,301.2 "
-       id="polygon13974" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.74,339.33 586.21,334.78 586.11,335.26 "
-       id="polygon13976" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.94,338.86 586.41,334.3 586.21,334.78 "
-       id="polygon13978" />
-    <polygon
-       style="opacity:1;fill:#617c00"
-       points="569.69,305.77 560.23,303.83 560.05,303.45 "
-       id="polygon13980" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.03,303.85 560.16,301.97 560.39,301.53 "
-       id="polygon13982" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.61,305.3 560.05,303.45 559.98,302.98 "
-       id="polygon13984" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.79,304.29 560.01,302.47 560.16,301.97 "
-       id="polygon13986" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.65,304.79 559.98,302.98 560.01,302.47 "
-       id="polygon13988" />
-    <polygon
-       style="opacity:1;fill:#46a300"
-       points="586.49,309.79 576.88,306.55 576.52,306.59 "
-       id="polygon13990" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="602.22,346.5 609.69,349.64 609.92,349.88 "
-       id="polygon13992" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="602.28,346.55 602.22,346.5 609.92,349.88 "
-       id="polygon13994" />
-    <polygon
-       style="opacity:1;fill:#007b1f"
-       points="586.47,336.3 595.77,340.61 596,340.86 "
-       id="polygon13996" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="600,345.41 609.55,349.27 609.69,349.64 "
-       id="polygon13998" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.25,336.05 595.65,340.26 595.77,340.61 "
-       id="polygon14000" />
-    <polygon
-       style="opacity:1;fill:#009426"
-       points="587.04,333.56 596.92,337.91 596.56,338.11 "
-       id="polygon14002" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.87,345.05 609.53,348.82 609.55,349.27 "
-       id="polygon14004" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.13,335.7 595.64,339.82 595.65,340.26 "
-       id="polygon14006" />
-    <polygon
-       style="opacity:1;fill:#007f20"
-       points="586.7,333.88 596.56,338.11 596.22,338.44 "
-       id="polygon14008" />
-    <polygon
-       style="opacity:1;fill:#7da000"
-       points="560.5,304.09 570.14,306.41 569.87,306.15 "
-       id="polygon14010" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.84,344.6 609.61,348.33 609.53,348.82 "
-       id="polygon14012" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="599.93,344.11 609.8,347.85 609.61,348.33 "
-       id="polygon14014" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.11,335.26 595.74,339.33 595.64,339.82 "
-       id="polygon14016" />
-    <polygon
-       style="opacity:1;fill:#5f7a00"
-       points="560.7,301.2 570.34,303.51 570.69,303.31 "
-       id="polygon14018" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.41,334.3 596.22,338.44 595.94,338.86 "
-       id="polygon14020" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="586.21,334.78 595.94,338.86 595.74,339.33 "
-       id="polygon14022" />
-    <polygon
-       style="opacity:1;fill:#617c00"
-       points="560.23,303.83 569.87,306.15 569.69,305.77 "
-       id="polygon14024" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.39,301.53 570.03,303.85 570.34,303.51 "
-       id="polygon14026" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="612.21,346.83 612.18,346.51 612.55,346.47 "
-       id="polygon14028" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.05,303.45 569.69,305.77 569.61,305.3 "
-       id="polygon14030" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.16,301.97 569.79,304.29 570.03,303.85 "
-       id="polygon14032" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="559.98,302.98 569.61,305.3 569.65,304.79 "
-       id="polygon14034" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="560.01,302.47 569.65,304.79 569.79,304.29 "
-       id="polygon14036" />
-    <polygon
-       style="opacity:1;fill:#7b9e00"
-       points="571.25,303.68 571.38,303.38 571.65,303.64 "
-       id="polygon14038" />
-    <polygon
-       style="opacity:1;fill:#46a300"
-       points="576.52,306.59 586.49,309.79 586.13,309.83 "
-       id="polygon14040" />
-    <polygon
-       style="opacity:1;fill:#7b9e00"
-       points="570.81,306.16 570.82,306.48 570.47,306.53 "
-       id="polygon14042" />
-    <polygon
-       style="opacity:1;fill:#3e9100"
-       points="576.16,306.79 586.13,309.83 585.77,310.03 "
-       id="polygon14044" />
-    <polygon
-       style="opacity:1;fill:#357c00"
-       points="575.84,307.12 585.77,310.03 585.45,310.36 "
-       id="polygon14046" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="575.58,307.55 585.45,310.36 585.18,310.79 "
-       id="polygon14048" />
-    <polygon
-       style="opacity:1;fill:#7b9e00"
-       points="570.43,303.79 570.34,303.51 570.69,303.31 "
-       id="polygon14050" />
-    <polygon
-       style="opacity:1;fill:#00928b"
-       points="622.31,350.36 612.37,346.56 612.72,346.52 "
-       id="polygon14052" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="621.95,350.41 612,346.76 612.37,346.56 "
-       id="polygon14054" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="621.59,350.61 611.66,347.09 612,346.76 "
-       id="polygon14056" />
-    <polygon
-       style="opacity:1;fill:#678400"
-       points="571.06,303.52 576.91,306.68 570.76,303.72 "
-       id="polygon14058" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="621.25,350.93 611.39,347.52 611.66,347.09 "
-       id="polygon14060" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="620.98,351.36 611.21,348 611.39,347.52 "
-       id="polygon14062" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.76,303.72 576.61,306.88 570.45,304.04 "
-       id="polygon14064" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.81,305.33 575.66,308.49 569.77,305.74 "
-       id="polygon14066" />
-    <polygon
-       style="opacity:1;fill:#009626"
-       points="606.78,343.38 597,337.98 596.65,338.18 "
-       id="polygon14068" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.45,304.04 576.3,307.2 570.17,304.44 "
-       id="polygon14070" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="605.45,345.65 595.67,340.25 595.76,340.59 "
-       id="polygon14072" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.95,304.89 575.8,308.04 569.81,305.33 "
-       id="polygon14074" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.17,304.44 576.02,307.6 569.95,304.89 "
-       id="polygon14076" />
-    <polygon
-       style="opacity:1;fill:#008121"
-       points="606.43,343.58 596.65,338.18 596.31,338.5 "
-       id="polygon14078" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="605.46,345.23 595.68,339.82 595.67,340.25 "
-       id="polygon14080" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="606.09,343.9 596.31,338.5 596.02,338.9 "
-       id="polygon14082" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="605.59,344.77 595.8,339.36 595.68,339.82 "
-       id="polygon14084" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="605.8,344.31 596.02,338.9 595.8,339.36 "
-       id="polygon14086" />
-    <polygon
-       style="opacity:1;fill:#5e7900"
-       points="575.64,309.04 569.81,306.06 575.66,309.21 "
-       id="polygon14088" />
-    <polygon
-       style="opacity:1;fill:#678400"
-       points="570.76,303.72 576.91,306.68 576.77,306.77 "
-       id="polygon14090" />
-    <polygon
-       style="opacity:1;fill:#439c00"
-       points="585.45,310.36 585.58,310.57 585.37,310.91 "
-       id="polygon14092" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="610.3,349.93 619.25,354.36 610.19,349.6 "
-       id="polygon14094" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.45,304.04 576.61,306.88 576.46,307.03 "
-       id="polygon14096" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.77,305.74 575.66,308.49 575.64,308.68 "
-       id="polygon14098" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="610.19,349.57 619.24,353.92 610.19,349.16 "
-       id="polygon14100" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="570.17,304.44 576.3,307.2 576.17,307.38 "
-       id="polygon14102" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.81,305.33 575.8,308.04 575.74,308.25 "
-       id="polygon14104" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="569.95,304.89 576.02,307.6 575.92,307.8 "
-       id="polygon14106" />
-    <polygon
-       style="opacity:1;fill:#53c000"
-       points="595.81,318.33 585.57,312.88 585.89,312.82 "
-       id="polygon14108" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="612,346.76 621.59,350.61 621.95,350.41 "
-       id="polygon14110" />
-    <polygon
-       style="opacity:1;fill:#007a1f"
-       points="595.95,340.81 605.54,345.99 605.73,346.22 "
-       id="polygon14112" />
-    <polygon
-       style="opacity:1;fill:#00a72b"
-       points="597,337.98 607.11,343.32 606.78,343.38 "
-       id="polygon14114" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="611.66,347.09 621.25,350.93 621.59,350.61 "
-       id="polygon14116" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.76,340.59 605.45,345.65 605.54,345.99 "
-       id="polygon14118" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="611.39,347.52 620.98,351.36 621.25,350.93 "
-       id="polygon14120" />
-    <polygon
-       style="opacity:1;fill:#5d9900"
-       points="581.97,309.4 577.06,306.64 576.91,306.68 "
-       id="polygon14122" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="611.21,348 620.8,351.85 620.98,351.36 "
-       id="polygon14124" />
-    <polygon
-       style="opacity:1;fill:#009626"
-       points="596.65,338.18 606.78,343.38 606.43,343.58 "
-       id="polygon14126" />
-    <polygon
-       style="opacity:1;fill:#4fb800"
-       points="586.93,309.99 597.36,315.66 597.18,315.43 "
-       id="polygon14128" />
-    <polygon
-       style="opacity:1;fill:#48a700"
-       points="596.91,315.34 586.67,309.9 586.35,309.96 "
-       id="polygon14130" />
-    <polygon
-       style="opacity:1;fill:#347a00"
-       points="595.36,318.02 585.12,312.57 585.31,312.8 "
-       id="polygon14132" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.67,340.25 605.46,345.23 605.45,345.65 "
-       id="polygon14134" />
-    <polygon
-       style="opacity:1;fill:#008121"
-       points="596.31,338.5 606.43,343.58 606.09,343.9 "
-       id="polygon14136" />
-    <polygon
-       style="opacity:1;fill:#497900"
-       points="575.61,308.89 580.67,311.62 575.64,309.04 "
-       id="polygon14138" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.68,339.82 605.59,344.77 605.46,345.23 "
-       id="polygon14140" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="576.61,306.88 581.66,309.6 576.46,307.03 "
-       id="polygon14142" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="596.02,338.9 606.09,343.9 605.8,344.31 "
-       id="polygon14144" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="595.8,339.36 605.8,344.31 605.59,344.77 "
-       id="polygon14146" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="575.66,308.49 580.71,311.21 575.64,308.68 "
-       id="polygon14148" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="576.3,307.2 581.36,309.92 576.17,307.38 "
-       id="polygon14150" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="580.71,311.21 575.74,308.25 575.66,308.49 "
-       id="polygon14152" />
-    <polygon
-       style="opacity:1;fill:#378100"
-       points="596.25,315.61 586.01,310.16 585.68,310.48 "
-       id="polygon14154" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="575.8,308.04 580.86,310.77 575.74,308.25 "
-       id="polygon14156" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="576.02,307.6 581.08,310.32 575.92,307.8 "
-       id="polygon14158" />
-    <polygon
-       style="opacity:1;fill:#5d9900"
-       points="582.25,309.33 577.06,306.64 581.97,309.4 "
-       id="polygon14160" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.92,315.93 585.68,310.48 585.39,310.89 "
-       id="polygon14162" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.42,316.79 585.18,311.35 585.05,311.81 "
-       id="polygon14164" />
-    <polygon
-       style="opacity:1;fill:#568e00"
-       points="582.3,309.68 582.46,309.4 582.61,309.61 "
-       id="polygon14166" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.63,316.34 585.39,310.89 585.18,311.35 "
-       id="polygon14168" />
-    <polygon
-       style="opacity:1;fill:#508400"
-       points="581.97,309.4 576.77,306.77 581.66,309.6 "
-       id="polygon14170" />
-    <polygon
-       style="opacity:1;fill:#497900"
-       points="580.67,311.62 575.64,309.04 580.71,311.94 "
-       id="polygon14172" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="580.71,311.21 575.64,308.68 580.67,311.62 "
-       id="polygon14174" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="581.08,310.32 575.92,307.8 580.86,310.77 "
-       id="polygon14176" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="585.04,312.23 595.3,317.26 595.28,317.68 "
-       id="polygon14178" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="585.05,311.81 595.42,316.79 595.3,317.26 "
-       id="polygon14180" />
-    <polygon
-       style="opacity:1;fill:#609e00"
-       points="582.39,309.6 587.99,313.84 582.18,309.68 "
-       id="polygon14182" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="605.47,345.64 605.89,345.89 605.51,345.24 "
-       id="polygon14184" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="585.12,312.57 595.28,317.68 595.36,318.02 "
-       id="polygon14186" />
-    <polygon
-       style="opacity:1;fill:#548a00"
-       points="582.18,309.68 587.77,313.92 581.91,309.88 "
-       id="polygon14188" />
-    <polygon
-       style="opacity:1;fill:#409600"
-       points="586.01,310.16 596.59,315.4 596.25,315.61 "
-       id="polygon14190" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="580.88,311.22 586.47,315.46 580.76,311.54 "
-       id="polygon14192" />
-    <polygon
-       style="opacity:1;fill:#467400"
-       points="581.91,309.88 587.51,314.11 581.63,310.16 "
-       id="polygon14194" />
-    <polygon
-       style="opacity:1;fill:#378100"
-       points="585.68,310.48 596.25,315.61 595.92,315.93 "
-       id="polygon14196" />
-    <polygon
-       style="opacity:1;fill:#609e00"
-       points="582.18,309.68 587.99,313.84 587.88,313.88 "
-       id="polygon14198" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="581.08,310.86 586.67,315.1 580.88,311.22 "
-       id="polygon14200" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="581.63,310.16 587.21,314.39 581.34,310.5 "
-       id="polygon14202" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="581.34,310.5 586.93,314.73 581.08,310.86 "
-       id="polygon14204" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="585.39,310.89 595.92,315.93 595.63,316.34 "
-       id="polygon14206" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="585.18,311.35 595.63,316.34 595.42,316.79 "
-       id="polygon14208" />
-    <polygon
-       style="opacity:1;fill:#477600"
-       points="580.73,311.78 586.35,315.78 586.33,315.9 "
-       id="polygon14210" />
-    <polygon
-       style="opacity:1;fill:#548a00"
-       points="587.63,314.02 581.91,309.88 587.51,314.11 "
-       id="polygon14212" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="580.76,311.54 586.47,315.46 586.41,315.63 "
-       id="polygon14214" />
-    <polygon
-       style="opacity:1;fill:#467400"
-       points="581.63,310.16 587.51,314.11 587.36,314.26 "
-       id="polygon14216" />
-    <polygon
-       style="opacity:1;fill:#467400"
-       points="587.36,314.26 581.63,310.16 587.21,314.39 "
-       id="polygon14218" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="580.88,311.22 586.67,315.1 586.57,315.29 "
-       id="polygon14220" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="587.07,314.57 581.34,310.5 586.93,314.73 "
-       id="polygon14222" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="581.08,310.86 586.93,314.73 586.79,314.93 "
-       id="polygon14224" />
-    <polygon
-       style="opacity:1;fill:#00a948"
-       points="607.3,343.72 617.23,349.7 607.59,343.66 "
-       id="polygon14226" />
-    <polygon
-       style="opacity:1;fill:#007a34"
-       points="606.11,346.42 615.59,352.27 605.96,346.22 "
-       id="polygon14228" />
-    <polygon
-       style="opacity:1;fill:#449e00"
-       points="587.99,313.84 594.14,318.49 587.88,313.88 "
-       id="polygon14230" />
-    <polygon
-       style="opacity:1;fill:#009841"
-       points="606.96,343.92 616.93,349.77 607.29,343.73 "
-       id="polygon14232" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="605.95,346.21 615.53,351.95 605.89,345.91 "
-       id="polygon14234" />
-    <polygon
-       style="opacity:1;fill:#449e00"
-       points="593.92,318.58 587.88,313.88 587.77,313.92 "
-       id="polygon14236" />
-    <polygon
-       style="opacity:1;fill:#3b8a00"
-       points="587.77,313.92 593.92,318.58 587.63,314.02 "
-       id="polygon14238" />
-    <polygon
-       style="opacity:1;fill:#008338"
-       points="606.63,344.22 616.59,349.97 606.95,343.93 "
-       id="polygon14240" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="605.89,345.89 615.57,351.55 605.94,345.51 "
-       id="polygon14242" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.5,320.44 586.41,315.63 586.35,315.78 "
-       id="polygon14244" />
-    <polygon
-       style="opacity:1;fill:#3b8a00"
-       points="593.66,318.77 587.63,314.02 587.51,314.11 "
-       id="polygon14246" />
-    <polygon
-       style="opacity:1;fill:#347800"
-       points="595.47,318.08 597.95,319.84 595.36,317.91 "
-       id="polygon14248" />
-    <polygon
-       style="opacity:1;fill:#3f9300"
-       points="596.27,315.85 596.59,315.4 596.25,315.61 "
-       id="polygon14250" />
-    <polygon
-       style="opacity:1;fill:#327400"
-       points="587.51,314.11 593.66,318.77 587.36,314.26 "
-       id="polygon14252" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="606.33,344.61 616.25,350.28 606.62,344.23 "
-       id="polygon14254" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="605.95,345.49 615.72,351.11 606.08,345.07 "
-       id="polygon14256" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="586.47,315.46 592.62,320.12 586.41,315.63 "
-       id="polygon14258" />
-    <polygon
-       style="opacity:1;fill:#4eb600"
-       points="597.25,315.6 599.61,317.36 599.76,317.4 "
-       id="polygon14260" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="606.09,345.05 615.95,350.68 606.32,344.63 "
-       id="polygon14262" />
-    <polygon
-       style="opacity:1;fill:#419800"
-       points="592.46,320.68 586.35,316.09 592.52,320.82 "
-       id="polygon14264" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.62,320.12 586.57,315.29 586.47,315.46 "
-       id="polygon14266" />
-    <polygon
-       style="opacity:1;fill:#327400"
-       points="593.36,319.05 587.36,314.26 587.21,314.39 "
-       id="polygon14268" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="621.79,350.75 632.65,357.67 621.43,351.06 "
-       id="polygon14270" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="587.21,314.39 593.36,319.05 587.07,314.57 "
-       id="polygon14272" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="586.67,315.1 592.82,319.76 586.57,315.29 "
-       id="polygon14274" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.82,319.76 586.79,314.93 586.67,315.1 "
-       id="polygon14276" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="586.93,314.73 593.08,319.39 586.79,314.93 "
-       id="polygon14278" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="620.89,351.9 631.76,358.83 620.76,352.35 "
-       id="polygon14280" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="621.43,351.06 632.3,357.98 621.13,351.46 "
-       id="polygon14282" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="621.13,351.46 631.99,358.38 620.89,351.9 "
-       id="polygon14284" />
-    <polygon
-       style="opacity:1;fill:#337600"
-       points="592.5,320.44 586.33,315.9 592.46,320.68 "
-       id="polygon14286" />
-    <polygon
-       style="opacity:1;fill:#429b00"
-       points="596.48,315.82 599.07,317.57 596.79,315.63 "
-       id="polygon14288" />
-    <line
-       x1="595.71002"
-       y1="318.20999"
-       x2="595.71002"
-       y2="318.20999"
-       style="stroke:#6eff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14290" />
-    <polygon
-       style="opacity:1;fill:#3b8a00"
-       points="593.92,318.58 587.63,314.02 593.66,318.77 "
-       id="polygon14292" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.35,317.63 597.88,319.34 595.44,317.28 "
-       id="polygon14294" />
-    <polygon
-       style="opacity:1;fill:#4cb000"
-       points="592.62,320.66 594.32,322.31 594.41,322.31 "
-       id="polygon14296" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.62,320.12 586.41,315.63 592.5,320.44 "
-       id="polygon14298" />
-    <polygon
-       style="opacity:1;fill:#327400"
-       points="593.66,318.77 587.36,314.26 593.36,319.05 "
-       id="polygon14300" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.35,317.63 597.87,319.64 597.86,319.43 "
-       id="polygon14302" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.87,316.48 598.45,318.19 596.16,316.11 "
-       id="polygon14304" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.82,319.76 586.57,315.29 592.62,320.12 "
-       id="polygon14306" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="593.36,319.05 587.07,314.57 593.08,319.39 "
-       id="polygon14308" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="593.08,319.39 586.79,314.93 592.82,319.76 "
-       id="polygon14310" />
-    <polygon
-       style="opacity:1;fill:#3a8600"
-       points="596.48,315.82 598.75,317.84 598.99,317.62 "
-       id="polygon14312" />
-    <polygon
-       style="opacity:1;fill:#378100"
-       points="592.65,320.48 592.46,320.68 592.5,320.44 "
-       id="polygon14314" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="595.62,316.88 597.99,318.98 598.13,318.68 "
-       id="polygon14316" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="598.13,318.68 595.62,316.88 598.18,318.58 "
-       id="polygon14318" />
-    <polygon
-       style="opacity:1;fill:#00a948"
-       points="616.93,349.77 607.29,343.73 617.23,349.7 "
-       id="polygon14320" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.59,352.27 605.96,346.22 615.53,351.95 "
-       id="polygon14322" />
-    <polygon
-       style="opacity:1;fill:#3c8c00"
-       points="593.75,318.96 595.81,320.44 595.61,320.59 "
-       id="polygon14324" />
-    <polygon
-       style="opacity:1;fill:#009841"
-       points="616.59,349.97 606.95,343.93 616.93,349.77 "
-       id="polygon14326" />
-    <polygon
-       style="opacity:1;fill:#3c8c00"
-       points="595.61,320.59 593.75,318.96 595.57,320.62 "
-       id="polygon14328" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.93,319.82 594.74,321.47 592.71,320.12 "
-       id="polygon14330" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="593.48,319.21 595.29,320.87 593.19,319.51 "
-       id="polygon14332" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.53,351.95 605.89,345.91 615.57,351.55 "
-       id="polygon14334" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="592.71,320.12 594.74,321.47 594.55,321.72 "
-       id="polygon14336" />
-    <polygon
-       style="opacity:1;fill:#008338"
-       points="616.25,350.28 606.62,344.23 616.59,349.97 "
-       id="polygon14338" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="593.19,319.51 595.29,320.87 595.05,321.11 "
-       id="polygon14340" />
-    <polygon
-       style="opacity:1;fill:#29a000"
-       points="595.99,320.34 602.61,326.38 595.84,320.42 "
-       id="polygon14342" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.57,351.55 605.94,345.51 615.72,351.11 "
-       id="polygon14344" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.95,350.68 606.32,344.63 616.25,350.28 "
-       id="polygon14346" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.72,351.11 606.08,345.07 615.95,350.68 "
-       id="polygon14348" />
-    <polygon
-       style="opacity:1;fill:#2cab00"
-       points="599.36,317.41 607.41,322.98 599.57,317.35 "
-       id="polygon14350" />
-    <polygon
-       style="opacity:1;fill:#2daf00"
-       points="596.01,320.34 602.71,326.39 602.69,326.39 "
-       id="polygon14352" />
-    <polygon
-       style="opacity:1;fill:#00968f"
-       points="633.28,357.43 622.15,350.55 633.02,357.48 "
-       id="polygon14354" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="605.7,325.06 597.87,319.71 597.87,319.64 "
-       id="polygon14356" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="594.52,321.77 601.14,327.81 594.39,321.98 "
-       id="polygon14358" />
-    <polygon
-       style="opacity:1;fill:#289b00"
-       points="599.07,317.57 607.14,323.05 599.3,317.43 "
-       id="polygon14360" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="597.87,319.64 605.7,325.06 597.86,319.43 "
-       id="polygon14362" />
-    <polygon
-       style="opacity:1;fill:#1e7600"
-       points="595.57,320.62 602.18,326.66 595.34,320.83 "
-       id="polygon14364" />
-    <polygon
-       style="opacity:1;fill:#00817a"
-       points="632.93,357.52 621.79,350.75 632.65,357.67 "
-       id="polygon14366" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="594.74,321.47 601.36,327.52 594.55,321.72 "
-       id="polygon14368" />
-    <polygon
-       style="opacity:1;fill:#29a000"
-       points="602.57,326.41 595.84,320.42 602.43,326.48 "
-       id="polygon14370" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="605.79,324.71 597.86,319.43 597.88,319.34 "
-       id="polygon14372" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="595,321.16 601.62,327.21 594.78,321.42 "
-       id="polygon14374" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="601.62,327.21 595.05,321.11 595,321.16 "
-       id="polygon14376" />
-    <polygon
-       style="opacity:1;fill:#228600"
-       points="598.75,317.84 606.84,323.25 598.99,317.62 "
-       id="polygon14378" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="597.88,319.34 605.79,324.71 597.95,319.08 "
-       id="polygon14380" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="631.73,358.93 620.76,352.35 631.63,359.28 "
-       id="polygon14382" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="598.45,318.19 606.52,323.55 598.68,317.91 "
-       id="polygon14384" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="597.99,318.98 605.97,324.31 598.13,318.68 "
-       id="polygon14386" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="632.23,358.07 621.13,351.46 631.99,358.38 "
-       id="polygon14388" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="601.1,327.88 594.39,321.98 600.98,328.07 "
-       id="polygon14390" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="631.94,358.48 620.89,351.9 631.76,358.83 "
-       id="polygon14392" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="606.22,323.91 598.13,318.68 598.18,318.58 "
-       id="polygon14394" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="598.18,318.58 606.22,323.91 598.38,318.28 "
-       id="polygon14396" />
-    <polygon
-       style="opacity:1;fill:#1e7600"
-       points="602.12,326.72 595.34,320.83 601.91,326.91 "
-       id="polygon14398" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="601.3,327.59 594.55,321.72 601.14,327.81 "
-       id="polygon14400" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="595.05,321.11 601.91,326.91 601.84,326.98 "
-       id="polygon14402" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="601.55,327.28 594.78,321.42 601.36,327.52 "
-       id="polygon14404" />
-    <polygon
-       style="opacity:1;fill:#00968f"
-       points="631.01,359.24 620.29,352.32 631.29,359.09 "
-       id="polygon14406" />
-    <polygon
-       style="opacity:1;fill:#1f7800"
-       points="605.82,325.51 597.98,319.88 605.71,325.34 "
-       id="polygon14408" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="594.78,321.42 601.62,327.21 601.55,327.28 "
-       id="polygon14410" />
-    <polygon
-       style="opacity:1;fill:#0da000"
-       points="605.06,328.89 602.57,326.41 602.43,326.48 "
-       id="polygon14412" />
-    <polygon
-       style="opacity:1;fill:#2cab00"
-       points="607.14,323.05 599.3,317.43 607.41,322.98 "
-       id="polygon14414" />
-    <polygon
-       style="opacity:1;fill:#0c8c00"
-       points="602.43,326.48 605.06,328.89 602.37,326.52 "
-       id="polygon14416" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="603.62,330.48 601.1,327.88 600.98,328.07 "
-       id="polygon14418" />
-    <polygon
-       style="opacity:1;fill:#0a7400"
-       points="603.62,330.48 600.97,328.11 603.55,330.66 "
-       id="polygon14420" />
-    <polygon
-       style="opacity:1;fill:#289b00"
-       points="606.84,323.25 598.99,317.62 607.14,323.05 "
-       id="polygon14422" />
-    <polygon
-       style="opacity:1;fill:#0c8c00"
-       points="605.06,328.89 602.37,326.52 604.82,329.07 "
-       id="polygon14424" />
-    <polygon
-       style="opacity:1;fill:#00aa49"
-       points="617,349.86 621.06,352.59 617.29,349.79 "
-       id="polygon14426" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="601.91,326.91 604.54,329.32 601.84,326.98 "
-       id="polygon14428" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="601.36,327.52 603.99,329.93 601.3,327.59 "
-       id="polygon14430" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="603.99,329.93 601.55,327.28 601.36,327.52 "
-       id="polygon14432" />
-    <polygon
-       style="opacity:1;fill:#228600"
-       points="606.52,323.55 598.68,317.91 606.84,323.25 "
-       id="polygon14434" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="605.79,324.71 597.95,319.08 605.97,324.31 "
-       id="polygon14436" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.59,352.22 619.53,354.88 615.56,351.93 "
-       id="polygon14438" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="606.22,323.91 598.38,318.28 606.52,323.55 "
-       id="polygon14440" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="605.97,324.31 598.13,318.68 606.22,323.91 "
-       id="polygon14442" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="604.54,329.32 601.84,326.98 604.25,329.61 "
-       id="polygon14444" />
-    <polygon
-       style="opacity:1;fill:#009942"
-       points="616.68,350.06 620.75,352.75 617,349.86 "
-       id="polygon14446" />
-    <polygon
-       style="opacity:1;fill:#0c8d00"
-       points="605.08,329 608.57,332.57 604.85,329.18 "
-       id="polygon14448" />
-    <polygon
-       style="opacity:1;fill:#0a7400"
-       points="603.57,330.58 607.14,334 607.08,334.1 "
-       id="polygon14450" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.56,351.93 619.54,354.55 615.63,351.56 "
-       id="polygon14452" />
-    <polygon
-       style="opacity:1;fill:#0da100"
-       points="608.63,332.54 605.08,329 608.57,332.57 "
-       id="polygon14454" />
-    <polygon
-       style="opacity:1;fill:#008439"
-       points="616.35,350.36 620.42,353.01 616.68,350.06 "
-       id="polygon14456" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.63,351.56 619.64,354.17 615.8,351.15 "
-       id="polygon14458" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="604.03,329.95 607.52,333.52 603.81,330.21 "
-       id="polygon14460" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="616.05,350.73 620.11,353.36 616.35,350.36 "
-       id="polygon14462" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="604.58,329.41 608.07,332.98 604.3,329.68 "
-       id="polygon14464" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.8,351.15 619.84,353.75 616.05,350.73 "
-       id="polygon14466" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="603.81,330.21 607.52,333.52 607.37,333.7 "
-       id="polygon14468" />
-    <polygon
-       style="opacity:1;fill:#009942"
-       points="617,349.86 620.75,352.75 620.95,352.62 "
-       id="polygon14470" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="604.3,329.68 608.07,332.98 607.88,333.16 "
-       id="polygon14472" />
-    <polygon
-       style="opacity:1;fill:#00a10d"
-       points="614.38,338.5 608.63,332.54 608.57,332.57 "
-       id="polygon14474" />
-    <polygon
-       style="opacity:1;fill:#00740a"
-       points="607.14,334 612.94,339.93 607.08,334.1 "
-       id="polygon14476" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="615.63,351.56 619.54,354.55 619.58,354.32 "
-       id="polygon14478" />
-    <polygon
-       style="opacity:1;fill:#0091a8"
-       points="636.47,359.41 633.57,357.49 633.35,357.42 "
-       id="polygon14480" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="619.58,354.32 615.63,351.56 619.64,354.17 "
-       id="polygon14482" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="605.79,324.99 607.55,326.49 605.93,324.71 "
-       id="polygon14484" />
-    <polygon
-       style="opacity:1;fill:#008439"
-       points="620.3,353.12 616.35,350.36 620.42,353.01 "
-       id="polygon14486" />
-    <polygon
-       style="opacity:1;fill:#299e00"
-       points="607.27,323.29 608.78,324.99 609,324.83 "
-       id="polygon14488" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="607.53,326.53 605.79,324.99 607.55,326.49 "
-       id="polygon14490" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="616.05,350.73 619.84,353.75 619.99,353.5 "
-       id="polygon14492" />
-    <polygon
-       style="opacity:1;fill:#00a10d"
-       points="614.52,338.42 608.63,332.54 614.38,338.5 "
-       id="polygon14494" />
-    <polygon
-       style="opacity:1;fill:#00760a"
-       points="613.88,338.91 608.15,332.91 608.07,332.98 "
-       id="polygon14496" />
-    <polygon
-       style="opacity:1;fill:#00740a"
-       points="607.08,334.1 612.94,339.93 612.93,339.95 "
-       id="polygon14498" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="606.14,324.39 607.91,325.88 606.41,324.05 "
-       id="polygon14500" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="608.07,332.98 613.88,338.91 607.88,333.16 "
-       id="polygon14502" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="613.32,339.45 607.61,333.43 607.52,333.52 "
-       id="polygon14504" />
-    <polygon
-       style="opacity:1;fill:#1d7300"
-       points="606.7,323.74 608.19,325.54 608.44,325.28 "
-       id="polygon14506" />
-    <polygon
-       style="opacity:1;fill:#00760a"
-       points="614.1,338.71 608.15,332.91 613.88,338.91 "
-       id="polygon14508" />
-    <polygon
-       style="opacity:1;fill:#00bf31"
-       points="620.16,344.48 616.58,340.49 620.19,344.44 "
-       id="polygon14510" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="613.55,339.22 607.61,333.43 613.32,339.45 "
-       id="polygon14512" />
-    <polygon
-       style="opacity:1;fill:#00a129"
-       points="616.31,340.48 614.52,338.42 614.38,338.5 "
-       id="polygon14514" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.42,359.98 632.57,357.74 632.3,357.98 "
-       id="polygon14516" />
-    <polygon
-       style="opacity:1;fill:#00a129"
-       points="616.48,340.39 614.52,338.42 616.31,340.48 "
-       id="polygon14518" />
-    <polygon
-       style="opacity:1;fill:#0fae00"
-       points="609.04,324.82 616.47,331.22 609.22,324.74 "
-       id="polygon14520" />
-    <polygon
-       style="opacity:1;fill:#00741e"
-       points="612.94,339.93 614.88,341.91 612.93,339.95 "
-       id="polygon14522" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="614.88,341.91 613.07,339.75 612.94,339.93 "
-       id="polygon14524" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="607.49,326.71 614.8,333.03 607.53,326.53 "
-       id="polygon14526" />
-    <polygon
-       style="opacity:1;fill:#0d9e00"
-       points="608.78,324.99 616.24,331.33 609,324.83 "
-       id="polygon14528" />
-    <polygon
-       style="opacity:1;fill:#00aa67"
-       points="621.06,352.59 627.67,357.05 621.23,352.55 "
-       id="polygon14530" />
-    <polygon
-       style="opacity:1;fill:#00a029"
-       points="616.48,340.45 620.09,344.4 616.32,340.55 "
-       id="polygon14532" />
-    <polygon
-       style="opacity:1;fill:#0d9e00"
-       points="616.24,331.33 608.73,325.02 608.78,324.99 "
-       id="polygon14534" />
-    <polygon
-       style="opacity:1;fill:#00761e"
-       points="615.81,340.89 614.1,338.71 613.88,338.91 "
-       id="polygon14536" />
-    <polygon
-       style="opacity:1;fill:#006f81"
-       points="636.14,359.47 632.93,357.52 635.77,359.66 "
-       id="polygon14538" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="607.55,326.49 614.93,332.77 607.66,326.25 "
-       id="polygon14540" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="615.27,341.43 613.55,339.22 613.32,339.45 "
-       id="polygon14542" />
-    <polygon
-       style="opacity:1;fill:#0b8a00"
-       points="608.48,325.24 615.97,331.53 608.73,325.02 "
-       id="polygon14544" />
-    <polygon
-       style="opacity:1;fill:#007f93"
-       points="636.36,359.7 636.47,359.41 636.75,359.5 "
-       id="polygon14546" />
-    <polygon
-       style="opacity:1;fill:#0fb800"
-       points="616.51,331.2 609.22,324.74 616.62,331.21 "
-       id="polygon14548" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="607.7,326.2 615.12,332.45 607.87,325.93 "
-       id="polygon14550" />
-    <polygon
-       style="opacity:1;fill:#00995d"
-       points="620.75,352.75 627.38,357.13 620.95,352.62 "
-       id="polygon14552" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.77,359.66 632.57,357.74 635.42,359.98 "
-       id="polygon14554" />
-    <polygon
-       style="opacity:1;fill:#097300"
-       points="608.19,325.54 615.67,331.8 608.44,325.28 "
-       id="polygon14556" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="619.53,354.88 625.94,359.2 619.51,354.69 "
-       id="polygon14558" />
-    <polygon
-       style="opacity:1;fill:#097300"
-       points="615.67,331.8 608.14,325.59 608.19,325.54 "
-       id="polygon14560" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="607.91,325.88 615.38,332.12 608.14,325.59 "
-       id="polygon14562" />
-    <polygon
-       style="opacity:1;fill:#00aa49"
-       points="618.41,346.03 623.83,351.96 618.48,346.01 "
-       id="polygon14564" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.42,359.98 632.23,358.07 635.12,360.38 "
-       id="polygon14566" />
-    <polygon
-       style="opacity:1;fill:#00751e"
-       points="616.09,340.71 619.69,344.67 615.82,340.94 "
-       id="polygon14568" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.01,358.83 619.51,354.69 619.54,354.55 "
-       id="polygon14570" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="614.77,333.2 607.48,326.74 614.8,333.03 "
-       id="polygon14572" />
-    <polygon
-       style="opacity:1;fill:#008450"
-       points="620.42,353.01 627.06,357.32 620.63,352.82 "
-       id="polygon14574" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="614.88,341.88 618.65,345.64 618.54,345.77 "
-       id="polygon14576" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="619.54,354.55 626.01,358.83 619.58,354.32 "
-       id="polygon14578" />
-    <polygon
-       style="opacity:1;fill:#0fae00"
-       points="616.29,331.29 609,324.83 616.47,331.22 "
-       id="polygon14580" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="615.54,341.19 619.14,345.14 615.27,341.45 "
-       id="polygon14582" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.18,358.42 619.58,354.32 619.64,354.17 "
-       id="polygon14584" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="620.11,353.36 626.73,357.63 620.3,353.12 "
-       id="polygon14586" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="619.64,354.17 626.18,358.42 619.75,353.91 "
-       id="polygon14588" />
-    <polygon
-       style="opacity:1;fill:#00751e"
-       points="615.82,340.94 619.69,344.67 619.51,344.82 "
-       id="polygon14590" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.43,358 619.75,353.91 619.84,353.75 "
-       id="polygon14592" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="614.81,332.99 607.53,326.53 614.93,332.77 "
-       id="polygon14594" />
-    <polygon
-       style="opacity:1;fill:#00b56e"
-       points="627.67,357.05 621.23,352.55 627.89,357.11 "
-       id="polygon14596" />
-    <polygon
-       style="opacity:1;fill:#0b8a00"
-       points="608.73,325.02 615.97,331.53 616.02,331.48 "
-       id="polygon14598" />
-    <polygon
-       style="opacity:1;fill:#00bf74"
-       points="627.72,352.92 625.54,350.48 627.8,352.79 "
-       id="polygon14600" />
-    <polygon
-       style="opacity:1;fill:#007949"
-       points="626.11,359.67 619.67,355.17 625.97,359.49 "
-       id="polygon14602" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="614.95,332.71 607.66,326.25 615.12,332.45 "
-       id="polygon14604" />
-    <polygon
-       style="opacity:1;fill:#0b8a00"
-       points="615.72,331.74 608.44,325.28 615.97,331.53 "
-       id="polygon14606" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="619.92,344.5 625.34,350.44 619.77,344.62 "
-       id="polygon14608" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="615.16,332.39 607.87,325.93 615.38,332.12 "
-       id="polygon14610" />
-    <polygon
-       style="opacity:1;fill:#097300"
-       points="615.43,332.05 608.14,325.59 615.67,331.8 "
-       id="polygon14612" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="608.14,325.59 615.38,332.12 615.43,332.05 "
-       id="polygon14614" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="625.11,350.61 619.77,344.62 619.69,344.67 "
-       id="polygon14616" />
-    <polygon
-       style="opacity:1;fill:#00aa67"
-       points="627.38,357.13 620.95,352.62 627.67,357.05 "
-       id="polygon14618" />
-    <polygon
-       style="opacity:1;fill:#007532"
-       points="623.89,351.8 618.43,345.93 623.82,351.91 "
-       id="polygon14620" />
-    <polygon
-       style="opacity:1;fill:#00a045"
-       points="625.48,350.36 619.98,344.47 625.34,350.44 "
-       id="polygon14622" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="624.07,351.57 618.72,345.56 618.65,345.64 "
-       id="polygon14624" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="618.88,345.4 624.29,351.34 618.72,345.56 "
-       id="polygon14626" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="624.56,351.08 619.23,345.06 619.14,345.14 "
-       id="polygon14628" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="619.77,344.62 625.34,350.44 625.29,350.47 "
-       id="polygon14630" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="625.29,350.47 619.77,344.62 625.11,350.61 "
-       id="polygon14632" />
-    <polygon
-       style="opacity:1;fill:#00995d"
-       points="627.06,357.32 620.63,352.82 627.38,357.13 "
-       id="polygon14634" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="616.81,334.77 614.77,333.2 614.8,333.03 "
-       id="polygon14636" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="624.25,351.38 618.72,345.56 624.07,351.57 "
-       id="polygon14638" />
-    <polygon
-       style="opacity:1;fill:#009e0d"
-       points="616.24,331.33 618.29,333.06 616.29,331.29 "
-       id="polygon14640" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="618.72,345.56 624.29,351.34 624.25,351.38 "
-       id="polygon14642" />
-    <polygon
-       style="opacity:1;fill:#008450"
-       points="626.73,357.63 620.3,353.12 627.06,357.32 "
-       id="polygon14644" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="619.23,345.06 624.84,350.83 624.79,350.88 "
-       id="polygon14646" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.01,358.83 619.58,354.32 626.18,358.42 "
-       id="polygon14648" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="624.79,350.88 619.23,345.06 624.56,351.08 "
-       id="polygon14650" />
-    <polygon
-       style="opacity:1;fill:#009e0d"
-       points="618.29,333.06 616.02,331.48 616.24,331.33 "
-       id="polygon14652" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="627.54,352.85 625.48,350.36 625.34,350.44 "
-       id="polygon14654" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="627.71,352.75 625.48,350.36 627.54,352.85 "
-       id="polygon14656" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="640.11,363.53 635.59,360.13 640.76,363.77 "
-       id="polygon14658" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.94,359.84 640.76,363.77 635.59,360.13 "
-       id="polygon14660" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.59,360.13 644.3,367.23 635.27,360.49 "
-       id="polygon14662" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="640.06,363.51 635.59,360.13 639.46,363.29 "
-       id="polygon14664" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.24,363.43 638.66,362.39 638.58,362.34 "
-       id="polygon14666" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.02,362.59 639.43,363.34 639.36,362.76 "
-       id="polygon14668" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.64,363.21 639.36,362.76 639.43,363.34 "
-       id="polygon14670" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.64,363.21 639.4,362.77 639.37,362.76 "
-       id="polygon14672" />
-    <polygon
-       style="opacity:1;fill:#008498"
-       points="636.58,359.58 645.3,366.68 636.28,359.65 "
-       id="polygon14674" />
-    <polygon
-       style="opacity:1;fill:#008498"
-       points="645.28,366.68 636.28,359.65 645,366.75 "
-       id="polygon14676" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="640.22,362.83 640.33,362.74 640.13,362.67 "
-       id="polygon14678" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.66,362.39 638.14,361.45 638.03,361.37 "
-       id="polygon14680" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.58,362.34 638.66,362.39 637.97,361.33 "
-       id="polygon14682" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.97,361.33 638.66,362.39 638.03,361.37 "
-       id="polygon14684" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.55,361.73 639.02,362.59 638.85,361.93 "
-       id="polygon14686" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.36,362.76 638.85,361.93 639.02,362.59 "
-       id="polygon14688" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.4,362.77 638.99,362.01 638.91,361.96 "
-       id="polygon14690" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.37,362.76 639.4,362.77 638.88,361.94 "
-       id="polygon14692" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.88,361.94 639.4,362.77 638.91,361.96 "
-       id="polygon14694" />
-    <line
-       x1="639.67999"
-       y1="363.09"
-       x2="639.07001"
-       y2="362.06"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14696" />
-    <polygon
-       style="opacity:1;fill:#0093aa"
-       points="636.82,359.64 645.53,366.73 636.58,359.58 "
-       id="polygon14698" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.43,358 619.99,353.5 626.73,357.63 "
-       id="polygon14700" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.18,358.42 619.75,353.91 626.43,358 "
-       id="polygon14702" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="626.11,354.18 623.89,351.8 626.02,354.31 "
-       id="polygon14704" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.11,354.18 624.04,351.61 623.91,351.77 "
-       id="polygon14706" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="616.81,334.77 614.81,332.99 616.95,334.48 "
-       id="polygon14708" />
-    <polygon
-       style="opacity:1;fill:#007309"
-       points="617.72,333.51 615.43,332.05 615.67,331.8 "
-       id="polygon14710" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="617.43,333.82 615.16,332.39 615.38,332.12 "
-       id="polygon14712" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="627.04,353.24 625.06,350.65 624.84,350.83 "
-       id="polygon14714" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.49,353.75 624.51,351.13 624.29,351.34 "
-       id="polygon14716" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="627.31,353.02 625.06,350.65 627.04,353.24 "
-       id="polygon14718" />
-    <polygon
-       style="opacity:1;fill:#00b00f"
-       points="618.35,333.28 622.59,337.63 618.53,333.18 "
-       id="polygon14720" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="616.82,334.84 621.03,339.18 616.89,334.69 "
-       id="polygon14722" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="617.16,334.16 615.16,332.39 617.43,333.82 "
-       id="polygon14724" />
-    <polygon
-       style="opacity:1;fill:#007309"
-       points="617.43,333.82 615.43,332.05 617.72,333.51 "
-       id="polygon14726" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.76,353.49 624.51,351.13 626.49,353.75 "
-       id="polygon14728" />
-    <polygon
-       style="opacity:1;fill:#00b00f"
-       points="618.53,333.18 622.59,337.63 622.71,337.57 "
-       id="polygon14730" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.24,353.98 629.41,357.58 626.08,354.17 "
-       id="polygon14732" />
-    <polygon
-       style="opacity:1;fill:#00a00d"
-       points="618.11,333.45 622.38,337.78 618.35,333.28 "
-       id="polygon14734" />
-    <polygon
-       style="opacity:1;fill:#00b66e"
-       points="627.71,357.14 632.09,360.49 627.91,357.19 "
-       id="polygon14736" />
-    <polygon
-       style="opacity:1;fill:#007346"
-       points="627.29,353.03 630.46,356.63 627.02,353.25 "
-       id="polygon14738" />
-    <polygon
-       style="opacity:1;fill:#00b00f"
-       points="622.53,337.66 618.35,333.28 622.59,337.63 "
-       id="polygon14740" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="640.76,363.77 644.65,366.94 640.11,363.53 "
-       id="polygon14742" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="616.89,334.69 621.03,339.18 621.07,339.08 "
-       id="polygon14744" />
-    <polygon
-       style="opacity:1;fill:#008b54"
-       points="627.29,353.03 630.7,356.46 630.54,356.58 "
-       id="polygon14746" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="617.05,334.47 621.31,338.77 617.27,334.22 "
-       id="polygon14748" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.73,353.5 629.91,357.09 626.46,353.75 "
-       id="polygon14750" />
-    <polygon
-       style="opacity:1;fill:#00a00d"
-       points="618.35,333.28 622.38,337.78 622.53,337.66 "
-       id="polygon14752" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.01,360.89 643.72,367.99 634.83,361.29 "
-       id="polygon14754" />
-    <polygon
-       style="opacity:1;fill:#008b54"
-       points="630.54,356.58 627.29,353.03 630.46,356.63 "
-       id="polygon14756" />
-    <polygon
-       style="opacity:1;fill:#00740a"
-       points="617.54,333.94 621.83,338.24 617.83,333.68 "
-       id="polygon14758" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="629.48,357.52 626.24,353.98 629.41,357.58 "
-       id="polygon14760" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.27,360.49 643.98,367.59 635.01,360.89 "
-       id="polygon14762" />
-    <polygon
-       style="opacity:1;fill:#00ab68"
-       points="627.45,357.23 631.86,360.52 627.71,357.14 "
-       id="polygon14764" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="643.71,368.02 634.83,361.29 643.55,368.38 "
-       id="polygon14766" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="630.88,356.36 636.22,362.42 630.75,356.43 "
-       id="polygon14768" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="629.99,357.02 626.73,353.5 629.91,357.09 "
-       id="polygon14770" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="625.98,359.43 630.28,362.66 625.98,359.17 "
-       id="polygon14772" />
-    <polygon
-       style="opacity:1;fill:#008c0c"
-       points="622.01,338.07 617.83,333.68 622.11,337.98 "
-       id="polygon14774" />
-    <polygon
-       style="opacity:1;fill:#00af89"
-       points="630.91,356.36 636.32,362.4 636.3,362.4 "
-       id="polygon14776" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="637.82,358.63 640.33,362.74 640.13,362.67 "
-       id="polygon14778" />
-    <polygon
-       style="opacity:1;fill:#00740a"
-       points="617.83,333.68 621.83,338.24 622.01,338.07 "
-       id="polygon14780" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="621.46,338.61 617.27,334.22 621.55,338.51 "
-       id="polygon14782" />
-    <polygon
-       style="opacity:1;fill:#008398"
-       points="634.76,361.3 644.1,368.88 644.21,368.82 "
-       id="polygon14784" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="636.04,362.52 630.75,356.43 630.7,356.46 "
-       id="polygon14786" />
-    <polygon
-       style="opacity:1;fill:#009b5e"
-       points="627.14,357.42 631.57,360.67 627.45,357.23 "
-       id="polygon14788" />
-    <polygon
-       style="opacity:1;fill:#008b6c"
-       points="630.7,356.46 636.04,362.52 630.54,356.58 "
-       id="polygon14790" />
-    <polygon
-       style="opacity:1;fill:#00b02d"
-       points="622.59,337.63 628.44,343.63 622.71,337.57 "
-       id="polygon14792" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="625.98,359.17 630.32,362.37 626.07,358.83 "
-       id="polygon14794" />
-    <polygon
-       style="opacity:1;fill:#00735a"
-       points="640.69,363.71 639.86,363 640.09,362.83 "
-       id="polygon14796" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.14,361.45 636.91,359.23 636.75,359.3 "
-       id="polygon14798" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.03,361.37 638.14,361.45 636.75,359.3 "
-       id="polygon14800" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.97,361.33 638.03,361.37 636.75,359.3 "
-       id="polygon14802" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.85,361.93 637.12,359.11 638.55,361.73 "
-       id="polygon14804" />
-    <polygon
-       style="opacity:1;fill:#008651"
-       points="626.82,357.71 631.25,360.92 627.14,357.42 "
-       id="polygon14806" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="636.18,362.45 630.75,356.43 636.04,362.52 "
-       id="polygon14808" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.07,358.83 630.45,362.01 626.26,358.45 "
-       id="polygon14810" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="629.64,357.35 634.98,363.41 629.48,357.52 "
-       id="polygon14812" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.99,362.01 637.34,358.98 637.16,359.09 "
-       id="polygon14814" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.91,361.96 638.99,362.01 637.16,359.09 "
-       id="polygon14816" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="638.88,361.94 638.91,361.96 637.16,359.09 "
-       id="polygon14818" />
-    <polygon
-       style="opacity:1;fill:#007182"
-       points="634.05,361.78 643.75,369.11 634.41,361.49 "
-       id="polygon14820" />
-    <polygon
-       style="opacity:1;fill:#007182"
-       points="643.5,369.31 634.05,361.78 643.75,369.11 "
-       id="polygon14822" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.19,356.85 635.53,362.91 629.99,357.02 "
-       id="polygon14824" />
-    <polygon
-       style="opacity:1;fill:#008a53"
-       points="637.71,358.73 634.38,353.29 637.57,358.82 "
-       id="polygon14826" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.52,358.07 630.94,361.25 626.82,357.71 "
-       id="polygon14828" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="636.61,359.37 633.41,353.87 633.32,353.91 "
-       id="polygon14830" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="626.97,344.95 621.07,339.08 621.13,339 "
-       id="polygon14832" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.26,358.45 630.66,361.63 626.52,358.07 "
-       id="polygon14834" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="637.12,359.11 633.78,353.68 636.94,359.21 "
-       id="polygon14836" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="636.75,359.3 633.57,353.79 633.46,353.85 "
-       id="polygon14838" />
-    <polygon
-       style="opacity:1;fill:#008c24"
-       points="628.01,343.92 622.01,338.07 622.11,337.98 "
-       id="polygon14840" />
-    <polygon
-       style="opacity:1;fill:#009b5e"
-       points="627.45,357.23 631.57,360.67 631.75,360.55 "
-       id="polygon14842" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="633.65,353.75 636.94,359.21 633.57,353.79 "
-       id="polygon14844" />
-    <polygon
-       style="opacity:1;fill:#007245"
-       points="637.37,358.96 634.2,353.42 634.08,353.5 "
-       id="polygon14846" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="633.41,353.87 630.08,348.43 633.32,353.91 "
-       id="polygon14848" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="637.16,359.09 634,353.55 633.86,353.63 "
-       id="polygon14850" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="638.33,365.56 637.99,365.11 637.96,365.14 "
-       id="polygon14852" />
-    <polygon
-       style="opacity:1;fill:#008398"
-       points="643.86,369.02 634.41,361.49 644.1,368.88 "
-       id="polygon14854" />
-    <polygon
-       style="opacity:1;fill:#00735a"
-       points="635.74,362.74 630.27,356.79 635.53,362.91 "
-       id="polygon14856" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="627.45,344.42 621.46,338.61 621.55,338.51 "
-       id="polygon14858" />
-    <line
-       x1="637.20001"
-       y1="358.95999"
-       x2="639.07001"
-       y2="362.06"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14860" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="635.18,363.21 629.71,357.27 634.98,363.41 "
-       id="polygon14862" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="633.57,353.79 630.24,348.35 633.46,353.85 "
-       id="polygon14864" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="626.84,345.13 621.07,339.08 626.97,344.95 "
-       id="polygon14866" />
-    <polygon
-       style="opacity:1;fill:#008651"
-       points="627.14,357.42 631.25,360.92 631.45,360.75 "
-       id="polygon14868" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.07,358.83 630.32,362.37 630.38,362.16 "
-       id="polygon14870" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="633.65,353.75 630.44,348.25 630.36,348.29 "
-       id="polygon14872" />
-    <polygon
-       style="opacity:1;fill:#008651"
-       points="631.13,361.04 626.82,357.71 631.25,360.92 "
-       id="polygon14874" />
-    <line
-       x1="637.20001"
-       y1="358.95999"
-       x2="633.90002"
-       y2="353.5"
-       style="stroke:#00ff9b;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14876" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.26,358.45 630.45,362.01 630.56,361.79 "
-       id="polygon14878" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="630.36,348.29 627.59,343.65 627.53,343.61 "
-       id="polygon14880" />
-    <polygon
-       style="opacity:1;fill:#008c24"
-       points="627.77,344.12 622.01,338.07 628.01,343.92 "
-       id="polygon14882" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="630.82,361.39 626.52,358.07 630.94,361.25 "
-       id="polygon14884" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="626.52,358.07 630.66,361.63 630.82,361.39 "
-       id="polygon14886" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="637.99,365.11 635.99,362.56 635.8,362.69 "
-       id="polygon14888" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="637.96,365.14 637.99,365.11 635.8,362.69 "
-       id="polygon14890" />
-    <polygon
-       style="opacity:1;fill:#008a23"
-       points="627.86,342.33 631.15,347.79 627.72,342.43 "
-       id="polygon14892" />
-    <polygon
-       style="opacity:1;fill:#00736e"
-       points="635.8,362.69 638.33,365.56 635.74,362.74 "
-       id="polygon14894" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="644.63,366.96 640.06,363.51 644.3,367.23 "
-       id="polygon14896" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="644.3,367.23 640.06,363.51 639.46,363.29 "
-       id="polygon14898" />
-    <polygon
-       style="opacity:1;fill:#009f0d"
-       points="625.56,338.25 627.96,342.23 625.45,338.34 "
-       id="polygon14900" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="627.59,343.65 627.1,342.81 627.06,342.83 "
-       id="polygon14902" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="627.53,343.61 627.59,343.65 627.06,342.83 "
-       id="polygon14904" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="643.96,367.62 635.01,360.89 643.72,367.99 "
-       id="polygon14906" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="644.28,367.25 635.27,360.49 643.98,367.59 "
-       id="polygon14908" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="635.01,360.89 643.98,367.59 643.96,367.62 "
-       id="polygon14910" />
-    <polygon
-       style="opacity:1;fill:#00701c"
-       points="627.49,342.58 630.79,348.04 627.31,342.69 "
-       id="polygon14912" />
-    <polygon
-       style="opacity:1;fill:#00ba50"
-       points="630.17,345.47 633.58,349.68 633.64,349.66 "
-       id="polygon14914" />
-    <polygon
-       style="opacity:1;fill:#008a0b"
-       points="625.45,338.34 627.86,342.33 625.29,338.46 "
-       id="polygon14916" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="624.47,338.94 627.06,342.83 626.91,342.91 "
-       id="polygon14918" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="628.63,346.63 626.84,345.13 626.97,344.95 "
-       id="polygon14920" />
-    <polygon
-       style="opacity:1;fill:#009b79"
-       points="636.78,367.88 630.58,362.96 630.5,362.95 "
-       id="polygon14922" />
-    <polygon
-       style="opacity:1;fill:#007209"
-       points="625.09,338.59 627.69,342.45 627.52,342.56 "
-       id="polygon14924" />
-    <polygon
-       style="opacity:1;fill:#11cf00"
-       points="624.73,336.84 621.9,331.55 621.96,331.55 "
-       id="polygon14926" />
-    <line
-       x1="639.46002"
-       y1="363"
-       x2="639.46002"
-       y2="363"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14928" />
-    <polygon
-       style="opacity:1;fill:#10ba00"
-       points="624.75,336.88 621.97,331.6 624.72,336.94 "
-       id="polygon14930" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="624.87,338.72 627.27,342.71 624.66,338.84 "
-       id="polygon14932" />
-    <polygon
-       style="opacity:1;fill:#007009"
-       points="625.09,338.59 627.49,342.58 624.87,338.72 "
-       id="polygon14934" />
-    <polygon
-       style="opacity:1;fill:#00b04c"
-       points="630.09,345.5 633.45,349.77 633.56,349.69 "
-       id="polygon14936" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="629.13,346.1 627.22,344.66 627.45,344.42 "
-       id="polygon14938" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="629.41,345.84 627.77,344.12 629.69,345.61 "
-       id="polygon14940" />
-    <polygon
-       style="opacity:1;fill:#00a045"
-       points="629.72,345.76 633.25,349.91 629.93,345.6 "
-       id="polygon14942" />
-    <polygon
-       style="opacity:1;fill:#0a7a00"
-       points="623.59,337.5 620.88,332.21 620.82,332.21 "
-       id="polygon14944" />
-    <polygon
-       style="opacity:1;fill:#00a045"
-       points="629.93,345.6 633.25,349.91 633.4,349.79 "
-       id="polygon14946" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="628.7,346.61 632.24,350.75 628.93,346.41 "
-       id="polygon14948" />
-    <polygon
-       style="opacity:1;fill:#008c3c"
-       points="629.46,345.96 633,350.1 629.72,345.76 "
-       id="polygon14950" />
-    <line
-       x1="639.09998"
-       y1="363.64001"
-       x2="639.09998"
-       y2="363.64001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14952" />
-    <line
-       x1="627.32001"
-       y1="342.57999"
-       x2="624.90997"
-       y2="338.59"
-       style="stroke:#00ff16;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14954" />
-    <polygon
-       style="opacity:1;fill:#007532"
-       points="629.19,346.19 632.73,350.31 629.46,345.96 "
-       id="polygon14956" />
-    <polygon
-       style="opacity:1;fill:#00ab86"
-       points="638.41,365.43 631.75,360.55 631.86,360.52 "
-       id="polygon14958" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="632.39,350.6 628.93,346.41 632.47,350.54 "
-       id="polygon14960" />
-    <polygon
-       style="opacity:1;fill:#007532"
-       points="629.46,345.96 632.73,350.31 632.93,350.15 "
-       id="polygon14962" />
-    <line
-       x1="640.53998"
-       y1="362.01001"
-       x2="640.53998"
-       y2="362.01001"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14964" />
-    <polygon
-       style="opacity:1;fill:#007030"
-       points="629.19,346.19 632.47,350.54 632.66,350.38 "
-       id="polygon14966" />
-    <polygon
-       style="opacity:1;fill:#097000"
-       points="623.95,337.41 621.32,332.05 621.18,332.12 "
-       id="polygon14968" />
-    <line
-       x1="624.90997"
-       y1="338.59"
-       x2="624.15997"
-       y2="337.17001"
-       style="stroke:#00ff16;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line14970" />
-    <polygon
-       style="opacity:1;fill:#00b06b"
-       points="633.56,349.69 638.36,355.58 638.4,355.55 "
-       id="polygon14972" />
-    <polygon
-       style="opacity:1;fill:#009b79"
-       points="631.57,360.67 638.15,365.51 631.75,360.55 "
-       id="polygon14974" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.28,362.66 636.68,367.46 630.28,362.5 "
-       id="polygon14976" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="636.77,356.93 631.92,351.07 636.83,356.86 "
-       id="polygon14978" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="636.97,356.71 632.01,350.96 632.05,350.92 "
-       id="polygon14980" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="633.25,349.91 638.18,355.7 633.4,349.79 "
-       id="polygon14982" />
-    <polygon
-       style="opacity:1;fill:#0096ad"
-       points="640.07,370.25 645.6,376.63 645.62,376.63 "
-       id="polygon14984" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="632.05,350.92 636.97,356.71 632.17,350.8 "
-       id="polygon14986" />
-    <polygon
-       style="opacity:1;fill:#1f7a00"
-       points="620.88,332.21 618.09,326.92 620.82,332.21 "
-       id="polygon14988" />
-    <polygon
-       style="opacity:1;fill:#00b06b"
-       points="638.25,355.65 633.4,349.79 638.36,355.58 "
-       id="polygon14990" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.77,367.12 630.28,362.5 630.32,362.37 "
-       id="polygon14992" />
-    <polygon
-       style="opacity:1;fill:#008c55"
-       points="633,350.1 637.95,355.87 633.19,349.95 "
-       id="polygon14994" />
-    <polygon
-       style="opacity:1;fill:#00d3a4"
-       points="643.26,361.47 642.17,360.07 643.25,361.48 "
-       id="polygon14996" />
-    <polygon
-       style="opacity:1;fill:#008669"
-       points="631.25,360.92 637.84,365.7 631.45,360.75 "
-       id="polygon14998" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.32,362.37 636.77,367.12 630.38,362.16 "
-       id="polygon15000" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="620.99,332.18 618.2,326.9 620.89,332.21 "
-       id="polygon15002" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="632.24,350.75 637.17,356.52 632.39,350.6 "
-       id="polygon15004" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="632.73,350.31 637.69,356.08 632.93,350.15 "
-       id="polygon15006" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="632.47,350.54 637.42,356.3 632.66,350.38 "
-       id="polygon15008" />
-    <polygon
-       style="opacity:1;fill:#00a061"
-       points="638.03,355.81 633.19,349.95 638.18,355.7 "
-       id="polygon15010" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.94,361.25 637.52,365.99 631.13,361.04 "
-       id="polygon15012" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.45,362.01 636.96,366.73 630.56,361.79 "
-       id="polygon15014" />
-    <line
-       x1="624.15997"
-       y1="337.17001"
-       x2="621.39001"
-       y2="331.88"
-       style="stroke:#16ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15016" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.52,365.99 630.82,361.39 630.94,361.25 "
-       id="polygon15018" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="637.02,356.66 632.17,350.8 637.17,356.52 "
-       id="polygon15020" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="618.52,326.78 621.36,332.04 621.32,332.05 "
-       id="polygon15022" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="620.89,332.21 618.2,326.9 618.12,326.92 "
-       id="polygon15024" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="630.66,361.63 637.21,366.35 630.82,361.39 "
-       id="polygon15026" />
-    <polygon
-       style="opacity:1;fill:#008c55"
-       points="637.77,356.01 632.93,350.15 637.95,355.87 "
-       id="polygon15028" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="632.93,350.15 637.69,356.08 637.77,356.01 "
-       id="polygon15030" />
-    <polygon
-       style="opacity:1;fill:#007044"
-       points="637.24,356.46 632.39,350.6 637.42,356.3 "
-       id="polygon15032" />
-    <polygon
-       style="opacity:1;fill:#007547"
-       points="637.5,356.23 632.66,350.38 637.69,356.08 "
-       id="polygon15034" />
-    <line
-       x1="638.73999"
-       y1="364.76999"
-       x2="638.73999"
-       y2="364.76999"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15036" />
-    <polygon
-       style="opacity:1;fill:#1c7000"
-       points="618.59,326.74 621.36,332.04 618.52,326.78 "
-       id="polygon15038" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="641.95,360.13 638.03,355.81 638.18,355.7 "
-       id="polygon15040" />
-    <polygon
-       style="opacity:1;fill:#00b089"
-       points="641.95,360.13 638.25,355.65 642.11,360.02 "
-       id="polygon15042" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="640.72,361.14 636.86,356.82 636.97,356.71 "
-       id="polygon15044" />
-    <polygon
-       style="opacity:1;fill:#00a4ec"
-       points="644.55,368.52 643.89,367.98 644.41,368.83 "
-       id="polygon15046" />
-    <line
-       x1="640.92999"
-       y1="361.41"
-       x2="640.92999"
-       y2="361.41"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15048" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.97,356.71 640.72,361.14 637.02,356.66 "
-       id="polygon15050" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.68,367.72 630.29,362.77 636.68,367.46 "
-       id="polygon15052" />
-    <polygon
-       style="opacity:1;fill:#008c6d"
-       points="637.95,355.87 641.73,360.29 638.03,355.81 "
-       id="polygon15054" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="641.73,360.29 638.03,355.81 641.95,360.13 "
-       id="polygon15056" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="640.57,361.27 641.58,362.75 641.66,362.67 "
-       id="polygon15058" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="641.21,360.71 637.24,356.46 637.42,356.3 "
-       id="polygon15060" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.42,356.3 641.21,360.71 637.5,356.23 "
-       id="polygon15062" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="644.96,367.77 644.28,367.25 644.64,368.13 "
-       id="polygon15064" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="640.72,361.14 637.02,356.66 640.95,360.93 "
-       id="polygon15066" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="645.97,376.03 640.24,369.79 645.79,376.23 "
-       id="polygon15068" />
-    <polygon
-       style="opacity:1;fill:#009b79"
-       points="637.84,365.7 631.45,360.75 638.15,365.51 "
-       id="polygon15070" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="618.7,326.68 615.89,321.41 618.59,326.74 "
-       id="polygon15072" />
-    <line
-       x1="621.39001"
-       y1="331.88"
-       x2="618.62"
-       y2="326.59"
-       style="stroke:#42ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15074" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="640.24,369.79 646.01,375.98 645.97,376.03 "
-       id="polygon15076" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.68,367.46 630.28,362.5 636.77,367.12 "
-       id="polygon15078" />
-    <polygon
-       style="opacity:1;fill:#00755b"
-       points="641.21,360.71 637.5,356.23 641.48,360.48 "
-       id="polygon15080" />
-    <polygon
-       style="opacity:1;fill:#47a400"
-       points="619.08,326.44 616.34,321.11 616.3,321.15 "
-       id="polygon15082" />
-    <polygon
-       style="opacity:1;fill:#00b6d3"
-       points="652.5,373.34 647.88,367.41 652.42,373.42 "
-       id="polygon15084" />
-    <polygon
-       style="opacity:1;fill:#3b8900"
-       points="616.3,321.15 619.08,326.44 616.23,321.21 "
-       id="polygon15086" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="615.47,321.59 618.24,326.89 615.4,321.61 "
-       id="polygon15088" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="649.05,370.34 645.72,367.41 648.81,370.23 "
-       id="polygon15090" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="648.84,369.69 652.02,373.65 648.92,369.61 "
-       id="polygon15092" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="651.25,374.25 647.21,369.4 647.46,369.53 "
-       id="polygon15094" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="647.46,369.53 651.25,374.25 647.73,369.67 "
-       id="polygon15096" />
-    <polygon
-       style="opacity:1;fill:#006473"
-       points="648.53,369.82 651.76,373.84 648.68,369.81 "
-       id="polygon15098" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="648.76,369.75 652.02,373.65 648.7,369.81 "
-       id="polygon15100" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="651.8,373.81 648.7,369.81 652.02,373.65 "
-       id="polygon15102" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="645.39,367.59 653.82,375.29 645.25,367.71 "
-       id="polygon15104" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="645.25,367.71 653.82,375.29 648.43,370.73 "
-       id="polygon15106" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="646.19,368.7 641.57,362.76 646.23,368.66 "
-       id="polygon15108" />
-    <polygon
-       style="opacity:1;fill:#00b0a7"
-       points="643.19,361.48 647.72,367.48 647.8,367.42 "
-       id="polygon15110" />
-    <polygon
-       style="opacity:1;fill:#008b6c"
-       points="641.73,360.34 642.59,361.91 642.82,361.74 "
-       id="polygon15112" />
-    <polygon
-       style="opacity:1;fill:#008669"
-       points="637.52,365.99 631.13,361.04 637.84,365.7 "
-       id="polygon15114" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.77,367.12 630.38,362.16 636.96,366.73 "
-       id="polygon15116" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="640.95,360.94 642.06,362.32 641.21,360.74 "
-       id="polygon15118" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="641.67,362.66 646.35,368.54 641.82,362.53 "
-       id="polygon15120" />
-    <polygon
-       style="opacity:1;fill:#307000"
-       points="616,321.35 618.77,326.64 615.89,321.41 "
-       id="polygon15122" />
-    <polygon
-       style="opacity:1;fill:#00a098"
-       points="642.84,361.73 647.54,367.61 643.03,361.59 "
-       id="polygon15124" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.21,366.35 630.82,361.39 637.52,365.99 "
-       id="polygon15126" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.96,366.73 630.56,361.79 637.21,366.35 "
-       id="polygon15128" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="646.28,368.61 641.66,362.67 646.35,368.54 "
-       id="polygon15130" />
-    <polygon
-       style="opacity:1;fill:#00a098"
-       points="643.03,361.59 647.54,367.61 647.65,367.52 "
-       id="polygon15132" />
-    <line
-       x1="638.39001"
-       y1="365.92001"
-       x2="638.39001"
-       y2="365.92001"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15134" />
-    <polygon
-       style="opacity:1;fill:#005378"
-       points="647.78,378.86 645.63,376.46 647.71,379 "
-       id="polygon15136" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="641.84,362.51 646.54,368.38 642.04,362.34 "
-       id="polygon15138" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="642.59,361.91 647.3,367.78 642.82,361.74 "
-       id="polygon15140" />
-    <polygon
-       style="opacity:1;fill:#00736e"
-       points="642.32,362.12 647.04,367.98 642.57,361.93 "
-       id="polygon15142" />
-    <line
-       x1="641.32001"
-       y1="360.70999"
-       x2="642.40997"
-       y2="362.10999"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15144" />
-    <polygon
-       style="opacity:1;fill:#64a400"
-       points="613.55,315.84 616.39,321.07 616.34,321.11 "
-       id="polygon15146" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="642.06,362.32 646.78,368.19 642.3,362.14 "
-       id="polygon15148" />
-    <polygon
-       style="opacity:1;fill:#008b84"
-       points="642.82,361.74 647.3,367.78 647.44,367.68 "
-       id="polygon15150" />
-    <polygon
-       style="opacity:1;fill:#0098b0"
-       points="652.4,373.38 647.65,367.52 647.72,367.48 "
-       id="polygon15152" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.93,378.66 645.76,376.27 647.78,378.86 "
-       id="polygon15154" />
-    <polygon
-       style="opacity:1;fill:#64a400"
-       points="613.62,315.77 616.39,321.07 613.55,315.84 "
-       id="polygon15156" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="646.66,368.28 642.04,362.34 646.78,368.19 "
-       id="polygon15158" />
-    <polygon
-       style="opacity:1;fill:#447000"
-       points="613.09,316.13 616,321.35 615.89,321.41 "
-       id="polygon15160" />
-    <line
-       x1="618.62"
-       y1="326.59"
-       x2="615.84003"
-       y2="321.29999"
-       style="stroke:#6eff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15162" />
-    <polygon
-       style="opacity:1;fill:#00736e"
-       points="642.57,361.93 647.04,367.98 647.18,367.87 "
-       id="polygon15164" />
-    <polygon
-       style="opacity:1;fill:#00736e"
-       points="646.92,368.08 642.3,362.14 647.04,367.98 "
-       id="polygon15166" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="648.16,378.42 646.23,375.77 646.01,375.98 "
-       id="polygon15168" />
-    <polygon
-       style="opacity:1;fill:#002772"
-       points="664.45,393.91 661.18,389.49 660.98,389.64 "
-       id="polygon15170" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="648.43,378.16 646.23,375.77 648.16,378.42 "
-       id="polygon15172" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="647.3,367.78 648.84,369.69 647.44,367.68 "
-       id="polygon15174" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="647.44,367.68 648.84,369.69 648.92,369.61 "
-       id="polygon15176" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="647.21,369.4 646.44,368.46 646.54,368.38 "
-       id="polygon15178" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="647.46,369.53 647.21,369.4 646.54,368.38 "
-       id="polygon15180" />
-    <polygon
-       style="opacity:1;fill:#002772"
-       points="664.72,393.71 661.18,389.49 664.45,393.91 "
-       id="polygon15182" />
-    <polygon
-       style="opacity:1;fill:#9dc900"
-       points="610.86,310.38 613.64,315.68 610.88,310.41 "
-       id="polygon15184" />
-    <polygon
-       style="opacity:1;fill:#91ba00"
-       points="610.85,310.47 613.66,315.71 613.63,315.76 "
-       id="polygon15186" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="646.54,368.38 647.46,369.53 646.66,368.28 "
-       id="polygon15188" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="646.66,368.28 647.46,369.53 647.73,369.67 "
-       id="polygon15190" />
-    <polygon
-       style="opacity:1;fill:#00ac86"
-       points="638.2,365.61 641.11,368.03 638.45,365.52 "
-       id="polygon15192" />
-    <polygon
-       style="opacity:1;fill:#006473"
-       points="647.04,367.98 648.53,369.82 647.18,367.87 "
-       id="polygon15194" />
-    <polygon
-       style="opacity:1;fill:#006473"
-       points="647.18,367.87 648.53,369.82 648.68,369.81 "
-       id="polygon15196" />
-    <polygon
-       style="opacity:1;fill:#5f7a00"
-       points="609.72,311.04 612.57,316.33 612.51,316.33 "
-       id="polygon15198" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="648.81,370.23 649.05,370.34 649.1,370.5 "
-       id="polygon15200" />
-    <polygon
-       style="opacity:1;fill:#008aa0"
-       points="652.06,373.62 647.44,367.68 652.24,373.49 "
-       id="polygon15202" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="648.7,369.81 647.18,367.87 648.76,369.75 "
-       id="polygon15204" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.88,378.66 651.7,382.94 647.74,378.88 "
-       id="polygon15206" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="645.25,367.71 648.43,370.73 645.05,367.87 "
-       id="polygon15208" />
-    <polygon
-       style="opacity:1;fill:#00ac86"
-       points="638.45,365.52 641.11,368.03 641.29,367.96 "
-       id="polygon15210" />
-    <line
-       x1="615.84003"
-       y1="321.29999"
-       x2="613.07001"
-       y2="316"
-       style="stroke:#9bff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15212" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="612.9,316.22 610.09,310.94 612.86,316.24 "
-       id="polygon15214" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="610.09,310.94 613.04,316.16 612.9,316.22 "
-       id="polygon15216" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="645.05,367.87 653.48,375.56 644.73,368.2 "
-       id="polygon15218" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="644.73,368.2 653.16,375.9 644.46,368.57 "
-       id="polygon15220" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="665.15,393.34 671.85,401.13 664.95,393.44 "
-       id="polygon15222" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="648.38,378.13 652.2,382.4 648.1,378.41 "
-       id="polygon15224" />
-    <polygon
-       style="opacity:1;fill:#008769"
-       points="637.58,366.07 640.5,368.45 637.9,365.8 "
-       id="polygon15226" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.81,367.12 639.7,369.47 637.01,366.77 "
-       id="polygon15228" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="653.12,375.95 644.46,368.57 652.88,376.26 "
-       id="polygon15230" />
-    <polygon
-       style="opacity:1;fill:#006998"
-       points="648.51,372.25 643.86,369.02 644.1,368.88 "
-       id="polygon15232" />
-    <polygon
-       style="opacity:1;fill:#577000"
-       points="610.26,310.86 613.04,316.16 610.09,310.94 "
-       id="polygon15234" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.27,366.41 640.19,368.77 637.58,366.07 "
-       id="polygon15236" />
-    <polygon
-       style="opacity:1;fill:#002f88"
-       points="664.95,393.44 671.65,401.23 664.68,393.61 "
-       id="polygon15238" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="651.8,382.82 647.88,378.66 651.7,382.94 "
-       id="polygon15240" />
-    <polygon
-       style="opacity:1;fill:#747a00"
-       points="608.34,308.28 609.79,311.04 608.27,308.28 "
-       id="polygon15242" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.88,378.66 651.92,382.68 651.8,382.82 "
-       id="polygon15244" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="636.81,367.12 639.56,369.79 639.64,369.56 "
-       id="polygon15246" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="648.16,372.44 643.5,369.31 643.75,369.11 "
-       id="polygon15248" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="639.64,369.56 636.81,367.12 639.7,369.47 "
-       id="polygon15250" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="652.33,382.28 648.38,378.13 652.2,382.4 "
-       id="polygon15252" />
-    <polygon
-       style="opacity:1;fill:#6a7000"
-       points="608.47,308.25 609.92,311 608.34,308.28 "
-       id="polygon15254" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="643.4,369.42 647.8,372.74 643.5,369.31 "
-       id="polygon15256" />
-    <polygon
-       style="opacity:1;fill:#003cae"
-       points="671.92,401.12 665.15,393.34 671.85,401.13 "
-       id="polygon15258" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.8,372.74 643.18,369.68 643.4,369.42 "
-       id="polygon15260" />
-    <polygon
-       style="opacity:1;fill:#757a00"
-       points="608.38,308.25 607.14,305.73 608.31,308.24 "
-       id="polygon15262" />
-    <line
-       x1="613.07001"
-       y1="316"
-       x2="610.28998"
-       y2="310.70999"
-       style="stroke:#c7ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15264" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="637.27,366.41 639.91,369.12 640.11,368.85 "
-       id="polygon15266" />
-    <polygon
-       style="opacity:1;fill:#6a7000"
-       points="608.81,308.1 610.26,310.86 608.63,308.18 "
-       id="polygon15268" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="656.17,388.53 651.53,383.24 651.5,383.3 "
-       id="polygon15270" />
-    <polygon
-       style="opacity:1;fill:#00369d"
-       points="671.76,401.18 664.95,393.44 671.65,401.23 "
-       id="polygon15272" />
-    <polygon
-       style="opacity:1;fill:#0075a9"
-       points="648.51,372.25 644.21,368.82 648.83,372.18 "
-       id="polygon15274" />
-    <polygon
-       style="opacity:1;fill:#6a7000"
-       points="608.81,308.11 607.56,305.6 608.64,308.18 "
-       id="polygon15276" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="654.39,375.04 649.05,370.34 654.14,375.1 "
-       id="polygon15278" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="654.14,375.1 649.05,370.34 649.1,370.5 "
-       id="polygon15280" />
-    <polygon
-       style="opacity:1;fill:#7a6a00"
-       points="607.14,305.73 604.54,300.5 607.07,305.73 "
-       id="polygon15282" />
-    <polygon
-       style="opacity:1;fill:#006998"
-       points="648.16,372.44 643.86,369.02 648.51,372.25 "
-       id="polygon15284" />
-    <line
-       x1="610.28998"
-       y1="310.70999"
-       x2="608.84003"
-       y2="307.95001"
-       style="stroke:#f3ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15286" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="656.22,388.38 651.53,383.24 656.17,388.53 "
-       id="polygon15288" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="651.92,382.68 656.59,387.9 651.8,382.82 "
-       id="polygon15290" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="645.05,367.87 653.82,375.29 653.78,375.32 "
-       id="polygon15292" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="657.95,386.86 653.16,381.69 657.74,386.96 "
-       id="polygon15294" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.59,387.9 652.05,382.55 651.92,382.68 "
-       id="polygon15296" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="647.8,372.74 643.5,369.31 648.16,372.44 "
-       id="polygon15298" />
-    <polygon
-       style="opacity:1;fill:#7a6a00"
-       points="607.07,305.73 604.54,300.5 604.48,300.49 "
-       id="polygon15300" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="652.5,382.14 657.17,387.36 652.33,382.28 "
-       id="polygon15302" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="653.78,375.32 645.05,367.87 653.48,375.56 "
-       id="polygon15304" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.87,387.63 652.33,382.28 652.2,382.4 "
-       id="polygon15306" />
-    <polygon
-       style="opacity:1;fill:#706100"
-       points="607.56,305.6 604.95,300.38 607.41,305.67 "
-       id="polygon15308" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.22,373.52 642.92,370.09 647.48,373.11 "
-       id="polygon15310" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.48,373.11 643.18,369.68 647.8,372.74 "
-       id="polygon15312" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="653.44,375.61 644.73,368.2 653.16,375.9 "
-       id="polygon15314" />
-    <line
-       x1="608.84003"
-       y1="307.95001"
-       x2="607.60999"
-       y2="305.44"
-       style="stroke:#f3ff00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15316" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.37,388.16 651.62,383.05 656.22,388.38 "
-       id="polygon15318" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="639.52,370.04 647.84,377.02 639.53,369.87 "
-       id="polygon15320" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="657.47,387.13 652.63,382.03 657.17,387.36 "
-       id="polygon15322" />
-    <polygon
-       style="opacity:1;fill:#009c94"
-       points="640.82,368.19 649.35,375.2 641.04,368.05 "
-       id="polygon15324" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.87,387.63 652.05,382.55 656.59,387.9 "
-       id="polygon15326" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="639.56,369.79 647.96,376.71 639.64,369.56 "
-       id="polygon15328" />
-    <polygon
-       style="opacity:1;fill:#008781"
-       points="640.5,368.45 649.05,375.39 640.74,368.24 "
-       id="polygon15330" />
-    <polygon
-       style="opacity:1;fill:#008781"
-       points="649.05,375.39 640.42,368.52 640.5,368.45 "
-       id="polygon15332" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="657.95,386.78 660.4,389.42 657.71,386.88 "
-       id="polygon15334" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="639.7,369.47 648.16,376.36 639.85,369.21 "
-       id="polygon15336" />
-    <line
-       x1="607.60999"
-       y1="305.44"
-       x2="605.02002"
-       y2="300.20999"
-       style="stroke:#ffdd00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15338" />
-    <polygon
-       style="opacity:1;fill:#00706b"
-       points="640.19,368.77 648.73,375.67 640.42,368.52 "
-       id="polygon15340" />
-    <polygon
-       style="opacity:1;fill:#00706b"
-       points="648.73,375.67 640.11,368.85 640.19,368.77 "
-       id="polygon15342" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="648.43,376 639.85,369.21 639.91,369.12 "
-       id="polygon15344" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="639.91,369.12 648.43,376 640.11,368.85 "
-       id="polygon15346" />
-    <polygon
-       style="opacity:1;fill:#704d00"
-       points="604.95,300.38 602.34,295.15 604.82,300.43 "
-       id="polygon15348" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.31,388.16 658.76,390.8 656.17,388.4 "
-       id="polygon15350" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="657.43,387.05 659.88,389.69 657.11,387.3 "
-       id="polygon15352" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="656.8,387.58 659.26,390.22 656.52,387.88 "
-       id="polygon15354" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="647.83,377.26 639.52,370.1 647.84,377.02 "
-       id="polygon15356" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="658.8,390.75 656.31,388.16 658.76,390.8 "
-       id="polygon15358" />
-    <polygon
-       style="opacity:1;fill:#00aca4"
-       points="649.35,375.2 641.04,368.05 649.6,375.12 "
-       id="polygon15360" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="657.11,387.3 659.88,389.69 659.62,389.89 "
-       id="polygon15362" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="655.36,376.21 654.1,375.13 655.03,376.39 "
-       id="polygon15364" />
-    <line
-       x1="605.02002"
-       y1="300.20999"
-       x2="602.42999"
-       y2="294.95999"
-       style="stroke:#ffb100;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15366" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="647.84,377.02 639.53,369.87 647.96,376.71 "
-       id="polygon15368" />
-    <polygon
-       style="opacity:1;fill:#703a00"
-       points="602.34,295.15 599.72,289.92 602.23,295.19 "
-       id="polygon15370" />
-    <polygon
-       style="opacity:1;fill:#009c94"
-       points="649.05,375.39 640.74,368.24 649.35,375.2 "
-       id="polygon15372" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="653.48,375.56 654.69,376.67 653.44,375.61 "
-       id="polygon15374" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="648.27,372.6 654.45,378.01 648.61,372.41 "
-       id="polygon15376" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="647.96,376.71 639.64,369.56 648.16,376.36 "
-       id="polygon15378" />
-    <polygon
-       style="opacity:1;fill:#008781"
-       points="648.73,375.67 640.42,368.52 649.05,375.39 "
-       id="polygon15380" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="654.37,377 653.12,375.95 654.09,377.37 "
-       id="polygon15382" />
-    <polygon
-       style="opacity:1;fill:#003eb3"
-       points="658.64,391.3 668.66,402.07 658.77,391.3 "
-       id="polygon15384" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="648.16,376.36 639.85,369.21 648.43,376 "
-       id="polygon15386" />
-    <polygon
-       style="opacity:1;fill:#00706b"
-       points="648.43,376 640.11,368.85 648.73,375.67 "
-       id="polygon15388" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="647.61,373.21 653.78,378.54 647.93,372.87 "
-       id="polygon15390" />
-    <polygon
-       style="opacity:1;fill:#003bad"
-       points="660.55,389.42 670.57,400.18 660.42,389.42 "
-       id="polygon15392" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="648.89,372.34 654.76,377.89 654.88,377.85 "
-       id="polygon15394" />
-    <line
-       x1="602.42999"
-       y1="294.95999"
-       x2="599.84003"
-       y2="289.73001"
-       style="stroke:#ff8500;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15396" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="668.64,401.8 658.65,391 658.63,391.04 "
-       id="polygon15398" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="660.17,389.51 670.18,400.27 659.93,389.66 "
-       id="polygon15400" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="654.27,378.12 648.27,372.6 654.45,378.01 "
-       id="polygon15402" />
-    <polygon
-       style="opacity:1;fill:#005b84"
-       points="648.27,372.6 654.12,378.23 654.27,378.12 "
-       id="polygon15404" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="669.9,400.45 659.93,389.66 659.88,389.69 "
-       id="polygon15406" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="655.39,376.29 663.03,383.75 655.08,376.48 "
-       id="polygon15408" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="659.88,389.69 669.9,400.45 659.62,389.89 "
-       id="polygon15410" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="658.98,390.52 669,401.28 658.8,390.75 "
-       id="polygon15412" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="653.6,378.73 647.61,373.21 653.78,378.54 "
-       id="polygon15414" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669,401.28 659.02,390.47 658.98,390.52 "
-       id="polygon15416" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="659.57,389.93 669.58,400.7 659.3,390.17 "
-       id="polygon15418" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="659.26,390.22 669.27,400.98 659.02,390.47 "
-       id="polygon15420" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.27,400.98 659.3,390.17 659.26,390.22 "
-       id="polygon15422" />
-    <line
-       x1="599.84003"
-       y1="289.73001"
-       x2="597.25"
-       y2="284.48001"
-       style="stroke:#ff5800;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15424" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="654.74,376.74 662.38,384.2 654.42,377.05 "
-       id="polygon15426" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="686.75,421.12 678.14,411.91 678.14,411.95 "
-       id="polygon15428" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="647.9,377.28 655.68,384.47 647.93,377.07 "
-       id="polygon15430" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="678.18,411.77 686.79,420.94 678.14,411.91 "
-       id="polygon15432" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="668.63,401.84 658.59,391.19 668.6,401.98 "
-       id="polygon15434" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="686.79,420.94 678.21,411.71 678.18,411.77 "
-       id="polygon15436" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="658.59,391.19 668.64,401.8 668.63,401.84 "
-       id="polygon15438" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="655.77,384.21 647.93,377.07 647.93,377.07 "
-       id="polygon15440" />
-    <polygon
-       style="opacity:1;fill:#00359c"
-       points="670.37,400.2 660.2,389.5 670.18,400.27 "
-       id="polygon15442" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="658.15,382.92 653.32,379.09 653.48,378.88 "
-       id="polygon15444" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="657.88,383.29 653.32,379.09 658.15,382.92 "
-       id="polygon15446" />
-    <polygon
-       style="opacity:1;fill:#00879c"
-       points="649.16,375.55 657.13,382.75 649.46,375.36 "
-       id="polygon15448" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="647.93,377.07 655.77,384.21 648.05,376.79 "
-       id="polygon15450" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="668.75,401.61 658.65,391 668.64,401.8 "
-       id="polygon15452" />
-    <line
-       x1="597.25"
-       y1="284.48001"
-       x2="594.65997"
-       y2="279.23999"
-       style="stroke:#ff2c00;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15454" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="659.93,389.66 670.18,400.27 670.13,400.31 "
-       id="polygon15456" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="648.05,376.79 655.96,383.9 648.26,376.46 "
-       id="polygon15458" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="670.13,400.31 659.93,389.66 669.9,400.45 "
-       id="polygon15460" />
-    <polygon
-       style="opacity:1;fill:#008499"
-       points="647.98,377.4 655.79,384.75 655.74,384.74 "
-       id="polygon15462" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="655.08,376.48 663.03,383.75 662.96,383.79 "
-       id="polygon15464" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="654.76,377.89 659.43,382.04 654.88,377.85 "
-       id="polygon15466" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="668.95,401.34 658.8,390.75 668.78,401.56 "
-       id="polygon15468" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="648.54,376.13 656.51,383.24 648.84,375.81 "
-       id="polygon15470" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="648.26,376.46 656.21,383.57 648.53,376.13 "
-       id="polygon15472" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="662.96,383.79 655.08,376.48 662.72,383.93 "
-       id="polygon15474" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.83,400.5 659.62,389.89 669.58,400.7 "
-       id="polygon15476" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="659.43,382.04 654.6,377.93 654.76,377.89 "
-       id="polygon15478" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.21,401.04 659.02,390.47 669,401.28 "
-       id="polygon15480" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="659.3,390.17 669.58,400.7 669.52,400.75 "
-       id="polygon15482" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.52,400.75 659.3,390.17 669.27,400.98 "
-       id="polygon15484" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="654.42,377.05 662.38,384.2 662.31,384.27 "
-       id="polygon15486" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="655.66,384.62 647.9,377.28 655.68,384.47 "
-       id="polygon15488" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="686.79,420.94 678.14,411.91 686.75,421.12 "
-       id="polygon15490" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="654.12,378.23 658.82,382.31 654.27,378.12 "
-       id="polygon15492" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="658.82,382.31 653.92,378.39 654.12,378.23 "
-       id="polygon15494" />
-    <line
-       x1="594.65997"
-       y1="279.23999"
-       x2="592.07001"
-       y2="273.98999"
-       style="stroke:#ff0000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15496" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="655.69,384.41 647.93,377.07 655.77,384.21 "
-       id="polygon15498" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="653.48,378.88 658.15,382.92 653.6,378.73 "
-       id="polygon15500" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="686.92,420.7 678.21,411.71 686.79,420.94 "
-       id="polygon15502" />
-    <polygon
-       style="opacity:1;fill:#00879c"
-       points="656.93,382.89 649.16,375.55 657.13,382.75 "
-       id="polygon15504" />
-    <polygon
-       style="opacity:1;fill:#007587"
-       points="649.16,375.55 656.83,382.96 656.93,382.89 "
-       id="polygon15506" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="655.81,384.13 648.05,376.79 655.96,383.9 "
-       id="polygon15508" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="659.15,382.12 654.6,377.93 659.43,382.04 "
-       id="polygon15510" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="648.26,376.46 655.96,383.9 656.02,383.8 "
-       id="polygon15512" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="656.02,383.8 648.26,376.46 656.21,383.57 "
-       id="polygon15514" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="656.29,383.46 648.53,376.13 656.51,383.24 "
-       id="polygon15516" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="687.42,420.11 678.59,411.17 687.14,420.41 "
-       id="polygon15518" />
-    <polygon
-       style="opacity:1;fill:#001a9c"
-       points="673.36,403.69 670.37,400.2 670.18,400.27 "
-       id="polygon15520" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="671.82,405.21 668.75,401.61 668.64,401.8 "
-       id="polygon15522" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="658.47,382.58 653.92,378.39 658.82,382.31 "
-       id="polygon15524" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="658.15,382.92 653.6,378.73 658.47,382.58 "
-       id="polygon15526" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="668.78,401.56 671.95,404.98 668.75,401.61 "
-       id="polygon15528" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="664.91,386.08 662.96,383.79 662.72,383.93 "
-       id="polygon15530" />
-    <polygon
-       style="opacity:1;fill:#001a9c"
-       points="673.59,403.59 670.37,400.2 673.36,403.69 "
-       id="polygon15532" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.76,404.11 669.83,400.5 669.58,400.7 "
-       id="polygon15534" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.17,404.69 669.21,401.04 669,401.28 "
-       id="polygon15536" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="665.23,385.89 662.96,383.79 664.91,386.08 "
-       id="polygon15538" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="671.95,404.98 668.75,401.61 671.82,405.21 "
-       id="polygon15540" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="673.07,403.86 669.83,400.5 672.76,404.11 "
-       id="polygon15542" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="664.58,386.34 662.31,384.27 664.26,386.66 "
-       id="polygon15544" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="686.71,421 687.73,421.55 687.63,421.82 "
-       id="polygon15546" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.45,404.39 669.21,401.04 672.17,404.69 "
-       id="polygon15548" />
-    <line
-       x1="673.94"
-       y1="403.45999"
-       x2="673.94"
-       y2="403.45999"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line15550" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="687.3,420.01 688.21,420.86 687.03,420.36 "
-       id="polygon15552" />
-    <polygon
-       style="opacity:1;fill:#005d87"
-       points="656.83,382.96 660.23,386.02 656.93,382.89 "
-       id="polygon15554" />
-    <polygon
-       style="opacity:1;fill:#005d87"
-       points="660.23,386.02 656.61,383.15 656.83,382.96 "
-       id="polygon15556" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="659.2,382.24 664.32,387.21 659.46,382.16 "
-       id="polygon15558" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="659.33,386.93 655.81,384.13 655.96,383.9 "
-       id="polygon15560" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="659.91,386.28 656.29,383.46 656.51,383.24 "
-       id="polygon15562" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="656.21,383.57 659.6,386.59 656.29,383.46 "
-       id="polygon15564" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="659.12,387.26 655.81,384.13 659.33,386.93 "
-       id="polygon15566" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="658.56,382.68 663.71,387.57 658.89,382.42 "
-       id="polygon15568" />
-    <polygon
-       style="opacity:1;fill:#005d87"
-       points="659.91,386.28 656.61,383.15 660.23,386.02 "
-       id="polygon15570" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="657.96,383.32 663.09,388.19 658.24,382.99 "
-       id="polygon15572" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="659.6,386.59 656.29,383.46 659.91,386.28 "
-       id="polygon15574" />
-    <polygon
-       style="opacity:1;fill:#001a9a"
-       points="673.56,403.42 680.89,410.38 673.29,403.5 "
-       id="polygon15576" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="664.2,387.25 659.2,382.24 664.32,387.21 "
-       id="polygon15578" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="673.29,403.5 680.63,410.46 672.97,403.69 "
-       id="polygon15580" />
-    <polygon
-       style="opacity:1;fill:#0060b9"
-       points="696.17,430.15 687.88,422.22 696.34,430.17 "
-       id="polygon15582" />
-    <polygon
-       style="opacity:1;fill:#003f78"
-       points="687.62,421.85 696.06,429.79 687.62,422.05 "
-       id="polygon15584" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="671.84,404.97 679.18,411.94 671.73,405.27 "
-       id="polygon15586" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="665.24,385.94 674.43,395.18 664.93,386.12 "
-       id="polygon15588" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.06,429.79 687.63,421.82 687.62,421.85 "
-       id="polygon15590" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.97,403.69 680.31,410.65 672.64,403.96 "
-       id="polygon15592" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.04,404.63 679.38,411.6 671.84,404.97 "
-       id="polygon15594" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="687.73,421.55 696.17,429.49 687.63,421.82 "
-       id="polygon15596" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="663.56,387.7 658.56,382.68 663.71,387.57 "
-       id="polygon15598" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.64,403.96 679.98,410.92 672.32,404.28 "
-       id="polygon15600" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.32,404.28 679.66,411.25 672.04,404.63 "
-       id="polygon15602" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="658.24,382.99 663.09,388.19 663.24,388.01 "
-       id="polygon15604" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="664.61,386.38 673.79,395.62 664.29,386.68 "
-       id="polygon15606" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="687.94,421.21 696.38,429.15 687.75,421.52 "
-       id="polygon15608" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.38,429.15 687.96,421.18 687.94,421.21 "
-       id="polygon15610" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="659.12,387.25 663.79,391.71 659.33,386.94 "
-       id="polygon15612" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="688.21,420.86 696.65,428.8 687.96,421.18 "
-       id="polygon15614" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="659.92,386.32 664.63,390.8 660.25,386.06 "
-       id="polygon15616" />
-    <polygon
-       style="opacity:1;fill:#001a9a"
-       points="680.8,410.41 673.29,403.5 680.63,410.46 "
-       id="polygon15618" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="663.7,391.84 659.12,387.25 663.79,391.71 "
-       id="polygon15620" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="679.14,412.04 671.73,405.27 679.07,412.23 "
-       id="polygon15622" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="660.25,386.06 664.63,390.8 664.82,390.65 "
-       id="polygon15624" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="672.97,403.69 680.63,410.46 680.52,410.53 "
-       id="polygon15626" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="671.73,405.27 679.18,411.94 679.14,412.04 "
-       id="polygon15628" />
-    <polygon
-       style="opacity:1;fill:#003f78"
-       points="696.06,429.82 687.62,422.05 696.05,430.02 "
-       id="polygon15630" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="664.18,391.21 659.61,386.62 664.32,391.08 "
-       id="polygon15632" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="679.31,411.72 671.84,404.97 679.18,411.94 "
-       id="polygon15634" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.64,403.96 680.31,410.65 680.2,410.75 "
-       id="polygon15636" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="670.36,393.08 664.2,387.25 664.32,387.21 "
-       id="polygon15638" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="680.2,410.75 672.64,403.96 679.98,410.92 "
-       id="polygon15640" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="679.56,411.37 672.04,404.63 679.38,411.6 "
-       id="polygon15642" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="672.04,404.63 679.66,411.25 679.56,411.37 "
-       id="polygon15644" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.15,429.54 687.63,421.82 696.06,429.79 "
-       id="polygon15646" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="674.41,395.19 664.93,386.12 674.13,395.36 "
-       id="polygon15648" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="687.63,421.82 696.17,429.49 696.15,429.54 "
-       id="polygon15650" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.34,429.2 687.75,421.52 696.17,429.49 "
-       id="polygon15652" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="664.29,386.68 673.79,395.62 673.77,395.64 "
-       id="polygon15654" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="687.75,421.52 696.38,429.15 696.34,429.2 "
-       id="polygon15656" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="673.77,395.64 664.29,386.68 673.47,395.93 "
-       id="polygon15658" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.61,428.86 687.96,421.18 696.38,429.15 "
-       id="polygon15660" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="696.92,428.52 688.23,420.83 696.65,428.8 "
-       id="polygon15662" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="669.79,393.35 663.56,387.7 663.71,387.57 "
-       id="polygon15664" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.14,393.92 662.96,388.34 663.09,388.19 "
-       id="polygon15666" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="663.09,388.19 669.14,393.92 663.24,388.01 "
-       id="polygon15668" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="670.1,393.17 664.2,387.25 670.36,393.08 "
-       id="polygon15670" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="664.63,390.8 671.36,397.2 664.82,390.65 "
-       id="polygon15672" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="670.45,398.09 663.7,391.84 663.79,391.71 "
-       id="polygon15674" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="671.36,397.2 664.5,390.9 664.63,390.8 "
-       id="polygon15676" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="669.46,393.61 663.56,387.7 669.79,393.35 "
-       id="polygon15678" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="679.07,412.23 683.05,416.02 679.07,412.32 "
-       id="polygon15680" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="668.86,394.25 662.96,388.34 669.14,393.92 "
-       id="polygon15682" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.05,416.02 679.14,412.04 679.07,412.23 "
-       id="polygon15684" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="674.89,396.13 674.41,395.19 674.13,395.36 "
-       id="polygon15686" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.36,415.38 679.56,411.37 679.38,411.6 "
-       id="polygon15688" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="679.98,410.92 683.96,414.7 679.86,411.04 "
-       id="polygon15690" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="697.82,431.05 696.34,429.2 696.17,429.49 "
-       id="polygon15692" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="698.3,430.36 696.92,428.52 696.65,428.8 "
-       id="polygon15694" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="670.24,398.4 663.7,391.84 670.45,398.09 "
-       id="polygon15696" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="671.04,397.46 664.5,390.9 671.36,397.2 "
-       id="polygon15698" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="698.03,430.71 696.34,429.2 697.82,431.05 "
-       id="polygon15700" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="684.61,414.25 680.52,410.53 684.29,414.43 "
-       id="polygon15702" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="670.73,397.77 664.18,391.21 671.04,397.46 "
-       id="polygon15704" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.96,414.7 679.86,411.04 683.64,415.03 "
-       id="polygon15706" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="675.2,395.95 682.35,403.12 674.89,396.13 "
-       id="polygon15708" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="674.56,396.39 681.71,403.56 674.24,396.7 "
-       id="polygon15710" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="681.32,403.96 673.96,397.03 681.12,404.2 "
-       id="polygon15712" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="670.12,393.21 680.57,403.63 670.37,393.12 "
-       id="polygon15714" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="670.23,398.39 672.28,400.4 670.44,398.09 "
-       id="polygon15716" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="671.04,397.47 673.11,399.49 671.36,397.22 "
-       id="polygon15718" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="670.72,397.77 672.79,399.78 671.04,397.47 "
-       id="polygon15720" />
-    <polygon
-       style="opacity:1;fill:#0040bb"
-       points="683.14,416.43 692.05,424.4 683.35,416.46 "
-       id="polygon15722" />
-    <polygon
-       style="opacity:1;fill:#004686"
-       points="671.36,397.22 673.11,399.49 673.37,399.28 "
-       id="polygon15724" />
-    <polygon
-       style="opacity:1;fill:#005479"
-       points="697.66,431.4 706.05,438.12 697.69,431.68 "
-       id="polygon15726" />
-    <polygon
-       style="opacity:1;fill:#002e86"
-       points="669.5,393.65 680.02,403.91 669.82,393.39 "
-       id="polygon15728" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="668.9,394.27 679.38,404.48 669.18,393.95 "
-       id="polygon15730" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="674.89,396.13 682.35,403.12 682.26,403.17 "
-       id="polygon15732" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="697.73,431.04 706.13,437.77 697.66,431.4 "
-       id="polygon15734" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="682.26,403.17 674.89,396.13 682.04,403.3 "
-       id="polygon15736" />
-    <polygon
-       style="opacity:1;fill:#003498"
-       points="672.29,401.02 681.21,410.32 672.15,401.02 "
-       id="polygon15738" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="697.91,430.65 706.31,437.37 697.73,431.04 "
-       id="polygon15740" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="698.49,429.88 706.89,436.6 698.17,430.25 "
-       id="polygon15742" />
-    <polygon
-       style="opacity:1;fill:#002979"
-       points="683.02,416.04 691.93,424.01 683.03,416.28 "
-       id="polygon15744" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="698.17,430.25 706.57,436.97 697.91,430.65 "
-       id="polygon15746" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="674.24,396.7 681.71,403.56 681.63,403.64 "
-       id="polygon15748" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="684.57,414.17 693.48,422.14 684.25,414.36 "
-       id="polygon15750" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.12,415.71 692.02,423.69 683.02,416.04 "
-       id="polygon15752" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="670.37,393.12 680.57,403.63 680.59,403.62 "
-       id="polygon15754" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="684.25,414.36 693.15,422.33 683.91,414.64 "
-       id="polygon15756" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.31,415.35 692.21,423.32 683.12,415.71 "
-       id="polygon15758" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.91,414.64 692.81,422.61 683.59,414.98 "
-       id="polygon15760" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.59,414.98 692.49,422.95 683.31,415.35 "
-       id="polygon15762" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.51,409.46 672.24,400.46 672.28,400.4 "
-       id="polygon15764" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="678.91,405.08 668.69,394.58 679.11,404.8 "
-       id="polygon15766" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="672.28,400.4 681.51,409.46 672.45,400.15 "
-       id="polygon15768" />
-    <polygon
-       style="opacity:1;fill:#005479"
-       points="706.06,438.18 697.69,431.68 706.09,438.4 "
-       id="polygon15770" />
-    <polygon
-       style="opacity:1;fill:#002e86"
-       points="679.72,404.15 669.5,393.65 680.02,403.91 "
-       id="polygon15772" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="682.1,408.84 672.73,399.83 672.79,399.78 "
-       id="polygon15774" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="679.4,404.45 669.18,393.95 679.69,404.17 "
-       id="polygon15776" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="669.18,393.95 679.38,404.48 679.4,404.45 "
-       id="polygon15778" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="706.11,437.84 697.66,431.4 706.05,438.12 "
-       id="polygon15780" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="684.88,406.14 682.26,403.17 682.04,403.3 "
-       id="polygon15782" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="706.27,437.45 697.73,431.04 706.13,437.77 "
-       id="polygon15784" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.95,407.04 681.32,403.96 681.12,404.2 "
-       id="polygon15786" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="706.52,437.05 697.91,430.65 706.31,437.37 "
-       id="polygon15788" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="706.82,436.68 698.17,430.25 706.57,436.97 "
-       id="polygon15790" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="697.91,430.65 706.57,436.97 706.52,437.05 "
-       id="polygon15792" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.14,410.22 672.08,400.91 681.16,410.03 "
-       id="polygon15794" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="685.18,405.95 682.26,403.17 684.88,406.14 "
-       id="polygon15796" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692,423.75 683.02,416.04 691.93,424.01 "
-       id="polygon15798" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="684.23,406.71 681.32,403.96 683.95,407.04 "
-       id="polygon15800" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="684.55,406.39 681.63,403.64 684.23,406.71 "
-       id="polygon15802" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.18,423.4 683.12,415.71 692.02,423.69 "
-       id="polygon15804" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.91,414.64 693.15,422.33 693.08,422.39 "
-       id="polygon15806" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="693.08,422.39 683.91,414.64 692.81,422.61 "
-       id="polygon15808" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.43,423.03 683.31,415.35 692.21,423.32 "
-       id="polygon15810" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.31,415.35 692.49,422.95 692.43,423.03 "
-       id="polygon15812" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.75,422.68 683.59,414.98 692.49,422.95 "
-       id="polygon15814" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.29,409.77 672.24,400.46 681.51,409.46 "
-       id="polygon15816" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.79,409.14 672.73,399.83 682.1,408.84 "
-       id="polygon15818" />
-    <polygon
-       style="opacity:1;fill:#001786"
-       points="680.93,404.81 679.72,404.15 680.02,403.91 "
-       id="polygon15820" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="679.8,406 678.91,405.08 680.01,405.69 "
-       id="polygon15822" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="680.29,405.37 679.4,404.45 680.61,405.06 "
-       id="polygon15824" />
-    <polygon
-       style="opacity:1;fill:#0041bc"
-       points="685.7,405.97 695.64,415.57 695.63,415.79 "
-       id="polygon15826" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="695.55,415.44 685.43,405.82 685.61,405.84 "
-       id="polygon15828" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="680.29,405.36 680.8,405.84 680.61,405.05 "
-       id="polygon15830" />
-    <polygon
-       style="opacity:1;fill:#006979"
-       points="708.3,440.17 706.06,438.18 706.09,438.4 "
-       id="polygon15832" />
-    <polygon
-       style="opacity:1;fill:#006979"
-       points="706.05,438.12 708.27,439.89 706.06,438.18 "
-       id="polygon15834" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="695.11,415.51 684.86,406.09 685.17,405.91 "
-       id="polygon15836" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="708.52,439.14 706.52,437.05 706.31,437.37 "
-       id="polygon15838" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="708.79,438.74 706.82,436.68 706.57,436.97 "
-       id="polygon15840" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.18,426.03 692,423.75 691.93,424.01 "
-       id="polygon15842" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="694.79,415.7 684.52,406.36 684.86,406.09 "
-       id="polygon15844" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="693.87,416.63 683.72,407.36 683.93,407.02 "
-       id="polygon15846" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="694.18,426.03 691.93,424.06 694.19,426.27 "
-       id="polygon15848" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="694.46,415.96 684.2,406.68 684.52,406.36 "
-       id="polygon15850" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="694.14,416.29 683.93,407.02 684.2,406.68 "
-       id="polygon15852" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="708.52,439.14 706.27,437.45 708.35,439.54 "
-       id="polygon15854" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="692.21,423.32 694.47,425.34 692.18,423.4 "
-       id="polygon15856" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.47,425.34 692.43,423.03 692.21,423.32 "
-       id="polygon15858" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695.07,424.63 692.75,422.68 694.74,424.97 "
-       id="polygon15860" />
-    <polygon
-       style="opacity:1;fill:#002e86"
-       points="681.12,405.54 692.09,415.93 681.43,405.29 "
-       id="polygon15862" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="680.31,406.48 691.17,416.83 680.51,406.18 "
-       id="polygon15864" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.14,421.26 681.15,410.03 681.13,410.23 "
-       id="polygon15866" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="680.8,405.84 691.76,416.19 681.11,405.55 "
-       id="polygon15868" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.48,420.68 681.49,409.45 681.28,409.77 "
-       id="polygon15870" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="693.08,420.05 682.09,408.83 681.77,409.13 "
-       id="polygon15872" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="684.86,406.09 694.79,415.7 695.11,415.51 "
-       id="polygon15874" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.72,407.36 693.66,416.96 693.87,416.63 "
-       id="polygon15876" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="684.52,406.36 694.46,415.96 694.79,415.7 "
-       id="polygon15878" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="683.93,407.02 693.87,416.63 694.14,416.29 "
-       id="polygon15880" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="684.2,406.68 694.14,416.29 694.46,415.96 "
-       id="polygon15882" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="694.16,426.05 702.57,432.98 694.18,426.32 "
-       id="polygon15884" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="690.96,417.14 680.3,406.5 691.17,416.83 "
-       id="polygon15886" />
-    <polygon
-       style="opacity:1;fill:#002e86"
-       points="691.76,416.19 681.11,405.55 692.09,415.93 "
-       id="polygon15888" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="691.45,416.5 680.79,405.86 691.76,416.19 "
-       id="polygon15890" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.24,425.7 702.66,432.63 694.16,426.05 "
-       id="polygon15892" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="718.57,446.68 708.31,440.26 708.24,439.93 "
-       id="polygon15894" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.15,410.03 692.27,420.99 692.14,421.26 "
-       id="polygon15896" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.42,425.31 702.84,432.24 694.24,425.7 "
-       id="polygon15898" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695,424.56 703.42,431.48 694.68,424.92 "
-       id="polygon15900" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.68,424.92 703.1,431.84 694.42,425.31 "
-       id="polygon15902" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="718.6,446.27 708.24,439.93 708.27,439.53 "
-       id="polygon15904" />
-    <polygon
-       style="opacity:1;fill:#00359a"
-       points="695.34,415.34 696.59,416.46 695.07,415.43 "
-       id="polygon15906" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="718.75,445.82 708.27,439.53 708.41,439.09 "
-       id="polygon15908" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.49,409.45 692.76,420.36 692.48,420.68 "
-       id="polygon15910" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="719.29,444.98 708.65,438.64 708.96,438.24 "
-       id="polygon15912" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="681.77,409.13 693.08,420.05 692.76,420.36 "
-       id="polygon15914" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="718.98,445.38 708.41,439.09 708.65,438.64 "
-       id="polygon15916" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="694.41,415.89 695.99,416.73 695.7,416.98 "
-       id="polygon15918" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="702.58,433.04 694.18,426.32 702.6,433.25 "
-       id="polygon15920" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="694.09,416.23 695.66,417.01 695.38,417.31 "
-       id="polygon15922" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695.06,417.72 703.62,425.4 694.89,418.03 "
-       id="polygon15924" />
-    <polygon
-       style="opacity:1;fill:#003bac"
-       points="692.35,415.65 695.19,418.17 692.61,415.56 "
-       id="polygon15926" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.64,432.71 694.16,426.05 702.57,432.98 "
-       id="polygon15928" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.79,432.33 694.24,425.7 702.66,432.63 "
-       id="polygon15930" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.24,425.7 702.84,432.24 702.79,432.33 "
-       id="polygon15932" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.04,431.93 694.42,425.31 702.84,432.24 "
-       id="polygon15934" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="690.92,417.14 693.74,419.6 691.12,416.8 "
-       id="polygon15936" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="691.71,416.11 694.57,418.59 692.04,415.84 "
-       id="polygon15938" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="691.39,416.44 694.25,418.9 691.71,416.11 "
-       id="polygon15940" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="693.69,419.68 690.92,417.14 693.74,419.6 "
-       id="polygon15942" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="692.04,415.84 694.57,418.59 694.81,418.38 "
-       id="polygon15944" />
-    <polygon
-       style="opacity:1;fill:#0061bb"
-       points="705.46,424.55 696.9,416.66 705.46,424.31 "
-       id="polygon15946" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="696.59,416.46 705.15,424.14 696.35,416.53 "
-       id="polygon15948" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="708.31,440.26 718.64,447 718.57,446.68 "
-       id="polygon15950" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="691.39,416.44 693.96,419.25 694.16,418.98 "
-       id="polygon15952" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="704.88,424.22 696.35,416.53 696.32,416.54 "
-       id="polygon15954" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="708.24,439.93 718.57,446.68 718.6,446.27 "
-       id="polygon15956" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="696.32,416.54 704.88,424.22 696.04,416.71 "
-       id="polygon15958" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="708.27,439.53 718.6,446.27 718.75,445.82 "
-       id="polygon15960" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695.99,416.73 704.55,424.41 695.7,416.98 "
-       id="polygon15962" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695.66,417.01 704.21,424.69 695.38,417.31 "
-       id="polygon15964" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="695.33,417.35 703.89,425.03 695.1,417.67 "
-       id="polygon15966" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.89,425.03 695.38,417.31 695.33,417.35 "
-       id="polygon15968" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.13,421.27 700.81,429.48 692.25,420.99 "
-       id="polygon15970" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.73,420.33 701.57,428.5 693.05,420.01 "
-       id="polygon15972" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.46,420.66 701.26,428.82 692.73,420.33 "
-       id="polygon15974" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.62,425.4 694.89,418.03 703.43,425.76 "
-       id="polygon15976" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="703.65,425.68 695.13,418.19 695.19,418.17 "
-       id="polygon15978" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.17,435.11 702.64,432.71 702.57,432.98 "
-       id="polygon15980" />
-    <polygon
-       style="opacity:1;fill:#00509b"
-       points="694.89,418.33 703.39,425.77 695.13,418.19 "
-       id="polygon15982" />
-    <polygon
-       style="opacity:1;fill:#00359b"
-       points="701.97,428.17 693.38,419.75 702.21,428.02 "
-       id="polygon15984" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="701.95,427.27 693.57,419.99 693.61,419.91 "
-       id="polygon15986" />
-    <polygon
-       style="opacity:1;fill:#00509b"
-       points="703.39,425.77 694.81,418.38 694.89,418.33 "
-       id="polygon15988" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="693.61,419.91 701.95,427.27 693.69,419.68 "
-       id="polygon15990" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.16,426.92 693.69,419.68 693.74,419.6 "
-       id="polygon15992" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="703.08,425.96 694.48,418.65 694.57,418.59 "
-       id="polygon15994" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="693.74,419.6 702.16,426.92 693.89,419.34 "
-       id="polygon15996" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="704.88,424.22 696.04,416.71 704.55,424.41 "
-       id="polygon15998" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="694.25,418.9 702.75,426.23 694.48,418.65 "
-       id="polygon16000" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.43,426.57 693.89,419.34 693.96,419.25 "
-       id="polygon16002" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="693.96,419.25 702.43,426.57 694.16,418.98 "
-       id="polygon16004" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.25,434.77 702.64,432.71 705.17,435.11 "
-       id="polygon16006" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="692.13,421.27 700.71,429.74 700.71,429.7 "
-       id="polygon16008" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="704.55,424.41 695.7,416.98 704.21,424.69 "
-       id="polygon16010" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="700.71,429.7 692.13,421.27 700.81,429.48 "
-       id="polygon16012" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.89,425.03 695.1,417.67 703.62,425.4 "
-       id="polygon16014" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="704.21,424.69 695.38,417.31 703.89,425.03 "
-       id="polygon16016" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="701.04,429.09 692.46,420.66 701.26,428.82 "
-       id="polygon16018" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="701.32,428.75 692.73,420.33 701.57,428.5 "
-       id="polygon16020" />
-    <polygon
-       style="opacity:1;fill:#008ba1"
-       points="718.68,447.06 721.15,448.32 718.9,447.3 "
-       id="polygon16022" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="701.84,427.57 693.57,419.99 701.95,427.27 "
-       id="polygon16024" />
-    <polygon
-       style="opacity:1;fill:#00509b"
-       points="703.08,425.96 694.81,418.38 703.39,425.77 "
-       id="polygon16026" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="701.95,427.27 693.69,419.68 702.16,426.92 "
-       id="polygon16028" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="702.75,426.23 694.48,418.65 703.08,425.96 "
-       id="polygon16030" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.16,426.92 693.89,419.34 702.43,426.57 "
-       id="polygon16032" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.43,426.57 694.16,418.98 702.75,426.23 "
-       id="polygon16034" />
-    <polygon
-       style="opacity:1;fill:#004f99"
-       points="705.27,424.16 706.48,425.12 704.97,424.24 "
-       id="polygon16036" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="704.69,424.5 704.18,424.65 704.52,424.36 "
-       id="polygon16038" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.04,431.98 700.7,429.91 700.71,429.74 "
-       id="polygon16040" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="700.71,429.74 703.04,431.98 700.71,429.7 "
-       id="polygon16042" />
-    <polygon
-       style="opacity:1;fill:#00509b"
-       points="704.61,430.27 701.97,428.17 702.21,428.02 "
-       id="polygon16044" />
-    <polygon
-       style="opacity:1;fill:#006998"
-       points="706.95,432.96 716.38,439.84 706.64,433.03 "
-       id="polygon16046" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.54,425.9 704.92,426.46 704.76,426.82 "
-       id="polygon16048" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="704.3,424.73 705.85,425.39 705.54,425.66 "
-       id="polygon16050" />
-    <polygon
-       style="opacity:1;fill:#00547a"
-       points="705.16,435.14 714.59,442.03 705.21,435.44 "
-       id="polygon16052" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.96,430.72 701.32,428.75 701.57,428.5 "
-       id="polygon16054" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="705.22,426.02 703.98,425.1 705.18,426.05 "
-       id="polygon16056" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="706.64,433.03 716.07,439.91 706.29,433.23 "
-       id="polygon16058" />
-    <polygon
-       style="opacity:1;fill:#00509b"
-       points="704.3,430.45 701.97,428.17 704.61,430.27 "
-       id="polygon16060" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.21,434.76 714.65,441.65 705.16,435.14 "
-       id="polygon16062" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.37,431.37 701.04,429.09 703.64,431.04 "
-       id="polygon16064" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.64,431.04 701.32,428.75 703.96,430.72 "
-       id="polygon16066" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.38,434.34 714.82,441.23 705.21,434.76 "
-       id="polygon16068" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="702.63,426.1 704.41,427.42 702.96,425.8 "
-       id="polygon16070" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="701.87,427.26 703.63,428.57 702.05,426.86 "
-       id="polygon16072" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.31,426.46 704.09,427.78 702.63,426.1 "
-       id="polygon16074" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.64,441.7 705.16,435.14 714.59,442.03 "
-       id="polygon16076" />
-    <polygon
-       style="opacity:1;fill:#00519b"
-       points="703.31,432.41 710.86,439.37 703.11,432.38 "
-       id="polygon16078" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.6,428.63 701.87,427.26 703.63,428.57 "
-       id="polygon16080" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="702.31,426.46 703.82,428.17 704.04,427.83 "
-       id="polygon16082" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="704.57,430.18 712.45,437.11 704.84,430.09 "
-       id="polygon16084" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.02,432.24 710.71,439.06 703.02,432.01 "
-       id="polygon16086" />
-    <polygon
-       style="opacity:1;fill:#0081ba"
-       points="717.47,434.04 706.84,425.37 717.44,433.76 "
-       id="polygon16088" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="706.48,425.12 717.09,433.54 706.21,425.19 "
-       id="polygon16090" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="704.25,430.37 712.17,437.22 704.57,430.18 "
-       id="polygon16092" />
-    <polygon
-       style="opacity:1;fill:#00547a"
-       points="714.6,442.07 705.21,435.44 714.64,442.32 "
-       id="polygon16094" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="728.85,452.26 721.13,448.24 721.15,448.32 "
-       id="polygon16096" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="706.18,425.2 716.79,433.62 705.88,425.38 "
-       id="polygon16098" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="703.92,430.65 711.85,437.44 704.25,430.37 "
-       id="polygon16100" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.13,431.7 710.96,438.44 703.32,431.35 "
-       id="polygon16102" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.6,430.98 711.52,437.73 703.92,430.65 "
-       id="polygon16104" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.32,431.35 711.21,438.08 703.6,430.98 "
-       id="polygon16106" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.85,425.39 716.46,433.81 705.54,425.66 "
-       id="polygon16108" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="704.92,426.46 715.53,434.88 704.76,426.82 "
-       id="polygon16110" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.5,425.69 716.11,434.11 705.22,426.02 "
-       id="polygon16112" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="715.53,434.88 704.95,426.42 704.92,426.46 "
-       id="polygon16114" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="705.18,426.05 715.79,434.48 704.95,426.42 "
-       id="polygon16116" />
-    <polygon
-       style="opacity:1;fill:#005fb7"
-       points="712.53,437.08 704.84,430.09 712.67,437.1 "
-       id="polygon16118" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.73,437.04 703.54,429.26 703.54,429.21 "
-       id="polygon16120" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="703.54,429.21 713.73,437.04 703.52,428.98 "
-       id="polygon16122" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="712.26,437.17 704.57,430.18 712.45,437.11 "
-       id="polygon16124" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="715.53,434.88 704.76,426.82 715.35,435.28 "
-       id="polygon16126" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="704.75,427.14 715.24,435.02 705.03,426.97 "
-       id="polygon16128" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="704.57,430.18 712.17,437.22 712.26,437.17 "
-       id="polygon16130" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="715.24,435.02 704.7,427.16 704.75,427.14 "
-       id="polygon16132" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="703.53,428.93 713.81,436.68 703.6,428.63 "
-       id="polygon16134" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="711.95,437.36 704.25,430.37 712.17,437.22 "
-       id="polygon16136" />
-    <polygon
-       style="opacity:1;fill:#005b84"
-       points="704.41,427.42 714.91,435.22 704.7,427.16 "
-       id="polygon16138" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.13,431.7 710.79,438.78 710.82,438.69 "
-       id="polygon16140" />
-    <polygon
-       style="opacity:1;fill:#005b84"
-       points="714.91,435.22 704.36,427.46 704.41,427.42 "
-       id="polygon16142" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.99,436.29 703.6,428.63 703.63,428.57 "
-       id="polygon16144" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="710.82,438.69 703.13,431.7 710.96,438.44 "
-       id="polygon16146" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="703.63,428.57 713.99,436.29 703.78,428.23 "
-       id="polygon16148" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="704.09,427.78 714.57,435.52 704.36,427.46 "
-       id="polygon16150" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="711.61,437.64 703.92,430.65 711.85,437.44 "
-       id="polygon16152" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="703.82,428.17 714.25,435.88 704.04,427.83 "
-       id="polygon16154" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="711.02,438.34 703.32,431.35 711.21,438.08 "
-       id="polygon16156" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="711.29,437.97 703.6,430.98 711.52,437.73 "
-       id="polygon16158" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="703.6,430.98 711.21,438.08 711.29,437.97 "
-       id="polygon16160" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="717.09,433.54 706.21,425.19 716.79,433.62 "
-       id="polygon16162" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="716.79,433.62 705.88,425.38 716.46,433.81 "
-       id="polygon16164" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="716.46,433.81 705.54,425.66 716.11,434.11 "
-       id="polygon16166" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="715.79,434.48 704.95,426.42 715.53,434.88 "
-       id="polygon16168" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="716.11,434.11 705.22,426.02 715.79,434.48 "
-       id="polygon16170" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.75,437.31 703.54,429.26 713.73,437.04 "
-       id="polygon16172" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="712.17,437.22 715.39,440.01 712.26,437.17 "
-       id="polygon16174" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="715.39,440.01 711.95,437.36 712.17,437.22 "
-       id="polygon16176" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.95,441.53 710.71,439 710.79,438.78 "
-       id="polygon16178" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.73,437.04 703.52,428.98 713.81,436.68 "
-       id="polygon16180" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="714.91,435.22 704.7,427.16 715.24,435.02 "
-       id="polygon16182" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.81,436.68 703.6,428.63 713.99,436.29 "
-       id="polygon16184" />
-    <polygon
-       style="opacity:1;fill:#005b84"
-       points="714.57,435.52 704.36,427.46 714.91,435.22 "
-       id="polygon16186" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="711.52,437.73 714.74,440.48 711.61,437.64 "
-       id="polygon16188" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.74,440.48 711.29,437.97 711.52,437.73 "
-       id="polygon16190" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.42,440.82 711.02,438.34 711.21,438.08 "
-       id="polygon16192" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.99,436.29 703.78,428.23 714.25,435.88 "
-       id="polygon16194" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.25,435.88 704.04,427.83 714.57,435.52 "
-       id="polygon16196" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.84,441.84 710.71,439 713.95,441.53 "
-       id="polygon16198" />
-    <polygon
-       style="opacity:1;fill:#006b9a"
-       points="715.07,440.2 711.95,437.36 715.39,440.01 "
-       id="polygon16200" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.14,441.18 711.02,438.34 714.42,440.82 "
-       id="polygon16202" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.42,440.82 711.29,437.97 714.74,440.48 "
-       id="polygon16204" />
-    <polygon
-       style="opacity:1;fill:#0092d3"
-       points="723.2,446.01 715.96,440.28 717.92,441.65 "
-       id="polygon16206" />
-    <polygon
-       style="opacity:1;fill:#007081"
-       points="728.27,447.61 717.1,441.08 717.45,440.88 "
-       id="polygon16208" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.92,447.82 716.75,441.4 717.1,441.08 "
-       id="polygon16210" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.5,448.08 727.84,447.75 728.65,448.58 "
-       id="polygon16212" />
-    <polygon
-       style="opacity:1;fill:#007081"
-       points="717.1,441.08 727.92,447.82 728.27,447.61 "
-       id="polygon16214" />
-    <polygon
-       style="opacity:1;fill:#0092d3"
-       points="715.95,440.02 715.96,440.28 717.92,441.65 "
-       id="polygon16216" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.57,448.14 716.45,441.8 716.75,441.4 "
-       id="polygon16218" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.45,441.8 727.27,448.54 727.57,448.14 "
-       id="polygon16220" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="720.84,444.17 722.76,445.65 720.76,444.02 "
-       id="polygon16222" />
-    <polygon
-       style="opacity:1;fill:#009cb4"
-       points="729.04,447.83 718.04,440.89 718.23,441.1 "
-       id="polygon16224" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="714.16,442.35 721.25,448.13 713.95,442.3 "
-       id="polygon16226" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.75,441.4 727.57,448.14 727.92,447.82 "
-       id="polygon16228" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="715.33,439.89 720.84,444.17 715.62,439.81 "
-       id="polygon16230" />
-    <polygon
-       style="opacity:1;fill:#0076ab"
-       points="715.62,439.81 720.84,444.17 720.76,444.02 "
-       id="polygon16232" />
-    <polygon
-       style="opacity:1;fill:#008296"
-       points="728.59,447.54 717.45,440.88 717.78,440.81 "
-       id="polygon16234" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.83,442.14 721.05,447.78 713.82,441.88 "
-       id="polygon16236" />
-    <polygon
-       style="opacity:1;fill:#006997"
-       points="714.78,435.07 715.97,435.81 715.13,434.87 "
-       id="polygon16238" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.7,437.07 714.86,437.79 713.74,436.68 "
-       id="polygon16240" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.27,448.54 716.22,442.26 716.45,441.8 "
-       id="polygon16242" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="715,440.09 722.46,445.77 715.33,439.89 "
-       id="polygon16244" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.82,441.88 721.11,447.46 713.9,441.53 "
-       id="polygon16246" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.13,435.79 715.32,436.51 714.44,435.39 "
-       id="polygon16248" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.04,449 716.08,442.71 716.22,442.26 "
-       id="polygon16250" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.22,442.26 727.04,449 727.27,448.54 "
-       id="polygon16252" />
-    <polygon
-       style="opacity:1;fill:#005c84"
-       points="714.67,440.38 722.13,446 715,440.09 "
-       id="polygon16254" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.89,436.23 715.07,436.95 714.13,435.79 "
-       id="polygon16256" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.9,441.53 721.26,447.09 714.09,441.14 "
-       id="polygon16258" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="731.56,452.77 735.12,454.98 729.1,450.92 "
-       id="polygon16260" />
-    <polygon
-       style="opacity:1;fill:#008498"
-       points="727.54,449.78 735.46,454.76 728.86,450.74 "
-       id="polygon16262" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="733.93,454.09 735.09,454.62 734.89,454.52 "
-       id="polygon16264" />
-    <polygon
-       style="opacity:1;fill:#008498"
-       points="735.16,454.95 728.86,450.74 735.46,454.76 "
-       id="polygon16266" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="728.86,450.74 735.12,454.98 735.16,454.95 "
-       id="polygon16268" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="729.1,450.92 735.12,454.98 728.86,450.74 "
-       id="polygon16270" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.08,442.71 726.9,449.45 727.04,449 "
-       id="polygon16272" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.35,440.75 721.8,446.32 714.67,440.38 "
-       id="polygon16274" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.09,441.14 721.5,446.69 714.35,440.75 "
-       id="polygon16276" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="721.07,447.96 713.83,442.14 721.05,447.78 "
-       id="polygon16278" />
-    <polygon
-       style="opacity:1;fill:#008397"
-       points="717.46,433.71 728.64,441.1 717.16,433.78 "
-       id="polygon16280" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="715.33,439.89 722.46,445.77 722.57,445.71 "
-       id="polygon16282" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="713.82,441.88 721.05,447.78 721.05,447.69 "
-       id="polygon16284" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="721.05,447.69 713.82,441.88 721.11,447.46 "
-       id="polygon16286" />
-    <polygon
-       style="opacity:1;fill:#006a99"
-       points="722.24,445.91 715,440.09 722.46,445.77 "
-       id="polygon16288" />
-    <polygon
-       style="opacity:1;fill:#007082"
-       points="717.15,433.78 728.32,441.17 716.82,433.98 "
-       id="polygon16290" />
-    <polygon
-       style="opacity:1;fill:#005c84"
-       points="715,440.09 722.13,446 722.24,445.91 "
-       id="polygon16292" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="721.14,447.35 713.9,441.53 721.26,447.09 "
-       id="polygon16294" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.67,440.38 721.8,446.32 721.9,446.2 "
-       id="polygon16296" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.09,441.14 721.26,447.09 721.32,446.96 "
-       id="polygon16298" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.8,433.98 727.98,441.37 716.47,434.29 "
-       id="polygon16300" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="721.32,446.96 714.09,441.14 721.5,446.69 "
-       id="polygon16302" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="721.59,446.56 714.35,440.75 721.8,446.32 "
-       id="polygon16304" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="714.35,440.75 721.5,446.69 721.59,446.56 "
-       id="polygon16306" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="715.91,435.14 727.09,442.53 715.77,435.56 "
-       id="polygon16308" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.46,434.3 727.63,441.69 716.16,434.68 "
-       id="polygon16310" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.09,442.53 715.92,435.12 715.91,435.14 "
-       id="polygon16312" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="716.15,434.7 727.33,442.09 715.92,435.12 "
-       id="polygon16314" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="715.07,438.33 725.44,445.04 714.92,438.15 "
-       id="polygon16316" />
-    <polygon
-       style="opacity:1;fill:#00a2bb"
-       points="728.42,447.79 728.2,447.54 728.53,447.48 "
-       id="polygon16318" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="727.84,447.75 728.2,447.54 729.06,448.31 "
-       id="polygon16320" />
-    <polygon
-       style="opacity:1;fill:#008296"
-       points="717.45,440.88 728.27,447.61 728.59,447.54 "
-       id="polygon16322" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.38,444.72 714.92,438.15 714.91,438.12 "
-       id="polygon16324" />
-    <polygon
-       style="opacity:1;fill:#008397"
-       points="715.97,435.81 726.81,442.51 716.29,435.63 "
-       id="polygon16326" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="714.91,438.12 725.38,444.72 714.86,437.83 "
-       id="polygon16328" />
-    <polygon
-       style="opacity:1;fill:#007082"
-       points="715.63,436.12 726.46,442.71 715.94,435.83 "
-       id="polygon16330" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="714.86,437.79 725.42,444.32 714.9,437.43 "
-       id="polygon16332" />
-    <polygon
-       style="opacity:1;fill:#007082"
-       points="726.46,442.71 715.59,436.15 715.63,436.12 "
-       id="polygon16334" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="715.32,436.51 726.12,443.03 715.59,436.15 "
-       id="polygon16336" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="714.91,437.39 725.57,443.88 715.05,436.99 "
-       id="polygon16338" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="715.07,436.95 725.81,443.43 715.29,436.55 "
-       id="polygon16340" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="721.11,447.46 724.63,450.15 721.14,447.35 "
-       id="polygon16342" />
-    <polygon
-       style="opacity:1;fill:#007384"
-       points="725.73,448.71 721.9,446.2 722.13,446 "
-       id="polygon16344" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.81,449.76 721.14,447.35 721.26,447.09 "
-       id="polygon16346" />
-    <polygon
-       style="opacity:1;fill:#006e80"
-       points="727.84,441.25 728.2,441.05 728.56,441.58 "
-       id="polygon16348" />
-    <polygon
-       style="opacity:1;fill:#008397"
-       points="728.64,441.1 717.16,433.78 728.32,441.17 "
-       id="polygon16350" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="721.8,446.32 725.39,449 721.9,446.2 "
-       id="polygon16352" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.55,450.76 721.07,447.96 724.54,450.5 "
-       id="polygon16354" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.07,449.37 721.32,446.96 721.5,446.69 "
-       id="polygon16356" />
-    <polygon
-       style="opacity:1;fill:#007082"
-       points="728.32,441.17 716.82,433.98 727.98,441.37 "
-       id="polygon16358" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.54,450.5 721.05,447.69 724.63,450.15 "
-       id="polygon16360" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.98,441.37 716.47,434.29 727.63,441.69 "
-       id="polygon16362" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.63,441.69 716.16,434.68 727.33,442.09 "
-       id="polygon16364" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.33,442.09 715.92,435.12 727.09,442.53 "
-       id="polygon16366" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.81,449.76 721.32,446.96 725.07,449.37 "
-       id="polygon16368" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.07,449.37 721.59,446.56 725.39,449 "
-       id="polygon16370" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="725.61,445.24 715.09,438.36 725.44,445.04 "
-       id="polygon16372" />
-    <polygon
-       style="opacity:1;fill:#008397"
-       points="726.46,442.71 715.94,435.83 726.81,442.51 "
-       id="polygon16374" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.38,444.72 714.86,437.83 725.42,444.32 "
-       id="polygon16376" />
-    <polygon
-       style="opacity:1;fill:#007082"
-       points="726.12,443.03 715.59,436.15 726.46,442.71 "
-       id="polygon16378" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.42,444.32 714.9,437.43 725.57,443.88 "
-       id="polygon16380" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.81,443.43 715.29,436.55 726.12,443.03 "
-       id="polygon16382" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.57,443.88 715.05,436.99 725.81,443.43 "
-       id="polygon16384" />
-    <polygon
-       style="opacity:1;fill:#00697a"
-       points="724.72,451.04 734.12,457.24 724.57,450.84 "
-       id="polygon16386" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="733.14,450.19 728.2,447.54 729.06,448.31 "
-       id="polygon16388" />
-    <polygon
-       style="opacity:1;fill:#009bb3"
-       points="733.91,450.38 728.81,447.57 733.76,450.21 "
-       id="polygon16390" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="732.79,450.4 727.84,447.75 728.65,448.58 "
-       id="polygon16392" />
-    <line
-       x1="727.71002"
-       y1="447.22"
-       x2="727.71002"
-       y2="447.17999"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16394" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.88,449.45 731.82,452.1 726.87,449.88 "
-       id="polygon16396" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.5,448.08 732.45,450.73 727.21,448.5 "
-       id="polygon16398" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727,448.97 731.94,451.63 726.88,449.45 "
-       id="polygon16400" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.21,448.5 732.16,451.15 727,448.97 "
-       id="polygon16402" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.52,450.54 734.11,456.57 724.58,450.15 "
-       id="polygon16404" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="725.29,448.89 731.56,452.77 725.62,448.57 "
-       id="polygon16406" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="725.62,448.57 731.56,452.77 729.1,450.92 "
-       id="polygon16408" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.58,450.15 734.25,456.14 724.74,449.71 "
-       id="polygon16410" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.98,449.28 734.79,455.3 725.29,448.89 "
-       id="polygon16412" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="724.74,449.71 734.49,455.7 724.98,449.28 "
-       id="polygon16414" />
-    <line
-       x1="727.44"
-       y1="446.07999"
-       x2="727.42999"
-       y2="446.04001"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16416" />
-    <polygon
-       style="opacity:1;fill:#009ab2"
-       points="728.81,441.07 734.57,444.17 734.47,444.05 "
-       id="polygon16418" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="728.53,440.98 734.09,443.86 728.2,441.05 "
-       id="polygon16420" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="727.84,447.75 733.14,450.19 733.05,450.25 "
-       id="polygon16422" />
-    <polygon
-       style="opacity:1;fill:#006e80"
-       points="733.75,443.92 728.2,441.05 728.56,441.58 "
-       id="polygon16424" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.97,444.65 725.4,444.31 725.37,444.73 "
-       id="polygon16426" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="732.7,450.48 727.5,448.08 732.45,450.73 "
-       id="polygon16428" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.21,448.5 732.45,450.73 732.38,450.84 "
-       id="polygon16430" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.88,449.45 731.94,451.63 731.91,451.75 "
-       id="polygon16432" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="732.38,450.84 727.21,448.5 732.16,451.15 "
-       id="polygon16434" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727,448.97 732.16,451.15 732.1,451.28 "
-       id="polygon16436" />
-    <polygon
-       style="opacity:1;fill:#009ab2"
-       points="734.47,444.05 728.81,441.07 734.37,443.94 "
-       id="polygon16438" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.5,441.59 733.06,444.46 727.21,442.01 "
-       id="polygon16440" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.21,442.01 732.77,444.88 727,442.48 "
-       id="polygon16442" />
-    <polygon
-       style="opacity:1;fill:#008498"
-       points="728.86,450.74 725.62,448.57 727.54,449.78 "
-       id="polygon16444" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="734.05,456.91 724.52,450.54 734.11,456.57 "
-       id="polygon16446" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="725.62,448.57 729.1,450.92 728.86,450.74 "
-       id="polygon16448" />
-    <polygon
-       style="opacity:1;fill:#007183"
-       points="734.82,455.26 725.29,448.89 735.12,454.98 "
-       id="polygon16450" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="734.11,456.52 724.58,450.15 734.25,456.14 "
-       id="polygon16452" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="734.51,455.66 724.98,449.28 734.79,455.3 "
-       id="polygon16454" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="734.27,456.09 724.74,449.71 734.49,455.7 "
-       id="polygon16456" />
-    <polygon
-       style="opacity:1;fill:#006e80"
-       points="727.84,441.25 733.75,443.92 733.57,444.02 "
-       id="polygon16458" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.89,442.96 732.56,445.36 732.5,445.6 "
-       id="polygon16460" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="726.91,442.95 733.02,445.96 727.27,442.74 "
-       id="polygon16462" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.05,445.43 731.9,448.37 725.95,445.08 "
-       id="polygon16464" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="749.69,456.42 739.63,453.63 739.99,453.43 "
-       id="polygon16466" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.5,441.59 733.4,444.13 733.23,444.29 "
-       id="polygon16468" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="726.58,443.28 732.67,446.23 726.91,442.95 "
-       id="polygon16470" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="733.23,444.29 727.5,441.59 733.06,444.46 "
-       id="polygon16472" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="731.82,452.1 733.59,453.05 731.82,452.21 "
-       id="polygon16474" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="749.34,456.63 739.31,453.98 739.63,453.63 "
-       id="polygon16476" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727.21,442.01 733.06,444.46 732.91,444.67 "
-       id="polygon16478" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="734.91,451.14 733.05,450.25 734.55,451.34 "
-       id="polygon16480" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.29,443.7 732.35,446.6 726.58,443.28 "
-       id="polygon16482" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.95,444.65 731.93,447.52 726.07,444.17 "
-       id="polygon16484" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="732.91,444.67 727.21,442.01 732.77,444.88 "
-       id="polygon16486" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="727,442.48 732.77,444.88 732.67,445.13 "
-       id="polygon16488" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="733.58,453.48 731.84,452.62 733.68,453.82 "
-       id="polygon16490" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.07,444.17 732.1,447.05 726.29,443.7 "
-       id="polygon16492" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="734.21,451.68 732.38,450.84 733.93,452.1 "
-       id="polygon16494" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.71,452.57 731.91,451.75 733.59,453.05 "
-       id="polygon16496" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.93,452.1 732.1,451.28 733.71,452.57 "
-       id="polygon16498" />
-    <polygon
-       style="opacity:1;fill:#007a74"
-       points="735.19,457.95 734.25,457.41 734.12,457.24 "
-       id="polygon16500" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="732.56,445.36 738.27,448.31 732.5,445.6 "
-       id="polygon16502" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.27,448.31 732.5,445.6 738.16,448.79 "
-       id="polygon16504" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="727.27,442.74 733.02,445.96 733.18,445.87 "
-       id="polygon16506" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.95,445.08 731.9,448.37 731.85,448.21 "
-       id="polygon16508" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="726.91,442.95 732.67,446.23 732.82,446.08 "
-       id="polygon16510" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="725.95,444.65 731.86,447.98 731.86,447.78 "
-       id="polygon16512" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.58,443.28 732.35,446.6 732.48,446.41 "
-       id="polygon16514" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="731.86,447.78 725.95,444.65 731.93,447.52 "
-       id="polygon16516" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.07,444.17 731.93,447.52 731.98,447.3 "
-       id="polygon16518" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="726.29,443.7 732.1,447.05 732.19,446.83 "
-       id="polygon16520" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="731.98,447.3 726.07,444.17 732.1,447.05 "
-       id="polygon16522" />
-    <polygon
-       style="opacity:1;fill:#009891"
-       points="736.25,455.68 735.16,454.95 736.58,455.47 "
-       id="polygon16524" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="735.36,456.82 734.11,456.52 734.25,456.14 "
-       id="polygon16526" />
-    <polygon
-       style="opacity:1;fill:#00837d"
-       points="735.91,455.99 734.82,455.26 736.25,455.68 "
-       id="polygon16528" />
-    <polygon
-       style="opacity:1;fill:#009089"
-       points="739.99,453.43 749.69,456.42 750.05,456.36 "
-       id="polygon16530" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="739.63,453.63 749.34,456.63 749.69,456.42 "
-       id="polygon16532" />
-    <polygon
-       style="opacity:1;fill:#00948d"
-       points="744.59,455.34 734.84,451.09 735.18,451.03 "
-       id="polygon16534" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.77,447.41 733.23,444.29 733.06,444.46 "
-       id="polygon16536" />
-    <polygon
-       style="opacity:1;fill:#00c1b8"
-       points="732.59,448.85 737.27,451.44 732.44,448.88 "
-       id="polygon16538" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="739.31,453.98 749.02,456.98 749.34,456.63 "
-       id="polygon16540" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="744.25,455.4 734.49,451.3 734.84,451.09 "
-       id="polygon16542" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="732.77,444.88 738.48,447.84 732.67,445.13 "
-       id="polygon16544" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="743,457.81 733.72,453.85 733.59,453.49 "
-       id="polygon16546" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.89,455.61 734.16,451.64 734.49,451.3 "
-       id="polygon16548" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="736.29,450.68 745.71,454.96 745.91,455.19 "
-       id="polygon16550" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="742.99,457.36 733.59,453.49 733.58,453.05 "
-       id="polygon16552" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.56,455.95 733.88,452.07 734.16,451.64 "
-       id="polygon16554" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.88,452.07 743.28,456.39 743.56,455.95 "
-       id="polygon16556" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.48,462.5 770.7,462.05 768.22,462.06 "
-       id="polygon16558" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.93,461.7 779.47,462.71 770.64,462.05 "
-       id="polygon16560" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.7,462.05 760.89,460.6 761.11,460.15 "
-       id="polygon16562" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="760.9,460.6 748.61,457.93 748.75,457.42 "
-       id="polygon16564" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.25,459.04 752.92,459.38 751.1,458.35 "
-       id="polygon16566" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.49,460.33 752.66,459.83 749.97,459.4 "
-       id="polygon16568" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.09,462.42 762.33,461.96 760.09,461.87 "
-       id="polygon16570" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.81,463.73 772.11,463.37 770.08,463.41 "
-       id="polygon16572" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="778.98,463.57 770.34,463.02 778.89,464.03 "
-       id="polygon16574" />
-    <polygon
-       style="opacity:1;fill:#007670"
-       points="772.36,463.16 781.33,464.04 772.03,463.38 "
-       id="polygon16576" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.11,463.37 762.27,461.96 762.56,461.6 "
-       id="polygon16578" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.33,461.96 752.61,459.81 752.85,459.36 "
-       id="polygon16580" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.66,459.83 743.05,456.86 743.23,456.36 "
-       id="polygon16582" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.09,456.87 733.58,453.05 733.68,452.55 "
-       id="polygon16584" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.28,456.39 733.68,452.55 733.88,452.07 "
-       id="polygon16586" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.69,447.36 739.02,447.02 739.89,447.77 "
-       id="polygon16588" />
-    <polygon
-       style="opacity:1;fill:#008079"
-       points="739.46,446.87 733.57,444.02 739.11,447.08 "
-       id="polygon16590" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="732.67,446.23 737.66,448.64 732.82,446.08 "
-       id="polygon16592" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.7,450.35 731.85,448.21 731.86,447.98 "
-       id="polygon16594" />
-    <polygon
-       style="opacity:1;fill:#00958e"
-       points="746.54,460.48 736.44,455.33 736.1,455.54 "
-       id="polygon16596" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="739.11,447.08 733.23,444.29 738.77,447.41 "
-       id="polygon16598" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="732.35,446.6 737.32,448.98 732.48,446.41 "
-       id="polygon16600" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.24,462.84 735.14,457.68 735.24,458.03 "
-       id="polygon16602" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="737.03,449.4 731.98,447.3 732.1,447.05 "
-       id="polygon16604" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.77,447.41 732.91,444.67 738.48,447.84 "
-       id="polygon16606" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.48,447.84 732.67,445.13 738.27,448.31 "
-       id="polygon16608" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="746.2,460.7 736.1,455.54 735.77,455.88 "
-       id="polygon16610" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.25,462.41 735.16,457.25 735.14,457.68 "
-       id="polygon16612" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="736.99,451.36 732.16,448.79 736.79,451.13 "
-       id="polygon16614" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.87,461.03 735.77,455.88 735.49,456.3 "
-       id="polygon16616" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.37,461.93 735.27,456.77 735.16,457.25 "
-       id="polygon16618" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.58,461.46 735.49,456.3 735.27,456.77 "
-       id="polygon16620" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="735.09,454.62 743.34,458.41 743.12,458.17 "
-       id="polygon16622" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="734.89,454.52 735.09,454.62 743.12,458.17 "
-       id="polygon16624" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="743.81,455.57 744.16,455.36 745.29,456.06 "
-       id="polygon16626" />
-    <polygon
-       style="opacity:1;fill:#00948d"
-       points="734.84,451.09 744.25,455.4 744.59,455.34 "
-       id="polygon16628" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="737.23,448.92 737.55,448.57 738.34,449.33 "
-       id="polygon16630" />
-    <polygon
-       style="opacity:1;fill:#00958e"
-       points="737.66,448.64 732.82,446.08 738.02,448.44 "
-       id="polygon16632" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.69,450.78 731.85,448.21 736.7,450.35 "
-       id="polygon16634" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="737.32,448.98 732.48,446.41 737.66,448.64 "
-       id="polygon16636" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="733.72,453.85 743.12,458.17 743,457.81 "
-       id="polygon16638" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.49,455.91 743.81,455.57 744.93,456.37 "
-       id="polygon16640" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="734.49,451.3 743.89,455.61 744.25,455.4 "
-       id="polygon16642" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.7,450.35 731.86,447.78 736.82,449.87 "
-       id="polygon16644" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="737.03,449.4 732.19,446.83 737.32,448.98 "
-       id="polygon16646" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.82,449.87 731.98,447.3 737.03,449.4 "
-       id="polygon16648" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.59,453.49 743,457.81 742.99,457.36 "
-       id="polygon16650" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.23,456.36 743.49,455.91 744.78,456.84 "
-       id="polygon16652" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="734.16,451.64 743.56,455.95 743.89,455.61 "
-       id="polygon16654" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.58,453.05 742.99,457.36 743.09,456.87 "
-       id="polygon16656" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="733.68,452.55 743.09,456.87 743.28,456.39 "
-       id="polygon16658" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="735.24,458.03 745.24,462.84 745.34,463.18 "
-       id="polygon16660" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="744.76,449.08 739.02,447.02 739.38,446.81 "
-       id="polygon16662" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="745.72,460.95 746.04,460.61 746.55,461.21 "
-       id="polygon16664" />
-    <polygon
-       style="opacity:1;fill:#00958e"
-       points="736.1,455.54 746.54,460.48 746.2,460.7 "
-       id="polygon16666" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="735.77,455.88 746.2,460.7 745.87,461.03 "
-       id="polygon16668" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="744.4,449.29 739.02,447.02 739.89,447.77 "
-       id="polygon16670" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="735.16,457.25 745.37,461.93 745.25,462.41 "
-       id="polygon16672" />
-    <polygon
-       style="opacity:1;fill:#00b1a8"
-       points="740.02,446.85 745.4,449.11 745.63,449.36 "
-       id="polygon16674" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="735.49,456.3 745.87,461.03 745.58,461.46 "
-       id="polygon16676" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="735.27,456.77 745.58,461.46 745.37,461.93 "
-       id="polygon16678" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.61,450.56 738.14,448.79 738.23,448.29 "
-       id="polygon16680" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="744.4,449.29 744.07,449.63 742.37,448.6 "
-       id="polygon16682" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="754.26,452.35 753.91,452.57 752.6,451.83 "
-       id="polygon16684" />
-    <polygon
-       style="opacity:1;fill:#009c94"
-       points="754.61,452.3 754.25,452.67 754.53,452.62 "
-       id="polygon16686" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.12,455.34 763.43,454.99 761.33,454.88 "
-       id="polygon16688" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="773.01,456.59 773.35,456.38 771.21,456.29 "
-       id="polygon16690" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="773.38,456.7 773.35,456.38 773.7,456.32 "
-       id="polygon16692" />
-    <polygon
-       style="opacity:1;fill:#008a84"
-       points="773.63,456.32 778.98,456.79 773.27,456.38 "
-       id="polygon16694" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="773.35,456.38 763.35,454.98 763.69,454.77 "
-       id="polygon16696" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.43,454.99 753.52,452.89 753.82,452.54 "
-       id="polygon16698" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.59,452.91 743.75,450.05 744.01,449.6 "
-       id="polygon16700" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.8,450.07 738.23,448.29 738.42,447.8 "
-       id="polygon16702" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="744.33,449.25 744.68,449.04 746,449.77 "
-       id="polygon16704" />
-    <polygon
-       style="opacity:1;fill:#00938c"
-       points="739.38,446.81 744.76,449.08 745.1,449.02 "
-       id="polygon16706" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.69,447.36 744.07,449.63 742.37,448.6 "
-       id="polygon16708" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.59,450.55 743.75,450.05 745.73,451.17 "
-       id="polygon16710" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.42,447.8 743.8,450.07 744.07,449.63 "
-       id="polygon16712" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="738.23,448.29 743.61,450.56 743.8,450.07 "
-       id="polygon16714" />
-    <line
-       x1="747.12"
-       y1="460.63"
-       x2="747.12"
-       y2="460.63"
-       style="stroke:#00fff3;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line16716" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="747.94,455.78 736.84,451.17 737.07,451.41 "
-       id="polygon16718" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.45,459.8 748.99,456.97 749.3,456.62 "
-       id="polygon16720" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771,461.7 761.11,460.15 761.4,459.8 "
-       id="polygon16722" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.14,460.15 748.75,457.42 748.99,456.97 "
-       id="polygon16724" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.81,455.41 736.71,450.8 736.84,451.17 "
-       id="polygon16726" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.09,454.37 743.57,451.52 743.52,451.05 "
-       id="polygon16728" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.59,452.91 753.33,453.36 750.74,452.08 "
-       id="polygon16730" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.74,456.3 762.88,455.79 760.15,455.64 "
-       id="polygon16732" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.72,456.95 762.84,455.79 763.05,455.33 "
-       id="polygon16734" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.88,455.79 753.13,453.85 753.28,453.34 "
-       id="polygon16736" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.16,453.86 743.52,451.05 743.59,450.55 "
-       id="polygon16738" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.52,451.05 753.09,454.37 753.16,453.86 "
-       id="polygon16740" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="748.66,453.18 737.55,448.57 738.34,449.33 "
-       id="polygon16742" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.79,454.95 736.68,450.35 736.71,450.8 "
-       id="polygon16744" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.33,453.52 737.23,448.92 736.96,449.36 "
-       id="polygon16746" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.33,453.52 748.06,453.96 745.9,452.63 "
-       id="polygon16748" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.17,454.84 762.77,457.3 762.7,456.82 "
-       id="polygon16750" />
-    <polygon
-       style="opacity:1;fill:#00b2aa"
-       points="759.66,456.69 759.57,456.41 759.28,456.76 "
-       id="polygon16752" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="759.68,456.43 759.36,456.77 757.88,455.96 "
-       id="polygon16754" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.96,457.73 759.12,457.23 757.01,457.16 "
-       id="polygon16756" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.48,458.79 759.28,456.76 759.06,457.21 "
-       id="polygon16758" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.12,457.23 747.99,453.93 747.83,454.44 "
-       id="polygon16760" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.87,454.45 736.77,449.85 736.68,450.35 "
-       id="polygon16762" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="748.66,453.18 748.33,453.52 746.96,452.55 "
-       id="polygon16764" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.12,457.23 759.36,456.77 757.54,456.76 "
-       id="polygon16766" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.38,458.44 762.81,457.3 762.71,456.82 "
-       id="polygon16768" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.81,457.3 772.48,458.92 772.38,458.44 "
-       id="polygon16770" />
-    <polygon
-       style="opacity:1;fill:#007873"
-       points="770.77,458.44 759.57,456.41 759.28,456.76 "
-       id="polygon16772" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.36,456.77 748.23,453.48 747.99,453.93 "
-       id="polygon16774" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.06,453.96 736.96,449.36 736.77,449.85 "
-       id="polygon16776" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.99,456.97 761.14,460.15 761.45,459.8 "
-       id="polygon16778" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.75,457.42 760.9,460.6 761.14,460.15 "
-       id="polygon16780" />
-    <polygon
-       style="opacity:1;fill:#00b0a8"
-       points="744.81,455.4 754.25,458.86 754.48,459.11 "
-       id="polygon16782" />
-    <polygon
-       style="opacity:1;fill:#00928b"
-       points="753.94,458.77 744.16,455.36 744.51,455.3 "
-       id="polygon16784" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="752.6,461.67 743.41,458.45 743.17,458.2 "
-       id="polygon16786" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="753.59,458.82 744.16,455.36 745.29,456.06 "
-       id="polygon16788" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="752.46,461.3 743.17,458.2 743.02,457.82 "
-       id="polygon16790" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.64,462.05 779.2,463.06 770.45,462.5 "
-       id="polygon16792" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.48,462.5 760.76,461.11 760.89,460.6 "
-       id="polygon16794" />
-    <polygon
-       style="opacity:1;fill:#00aea6"
-       points="754.17,458.84 763.65,461.45 763.91,461.7 "
-       id="polygon16796" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="762.64,461.61 762.99,461.4 760.92,461.14 "
-       id="polygon16798" />
-    <polygon
-       style="opacity:1;fill:#008d86"
-       points="772.79,463.09 762.9,461.39 763.25,461.33 "
-       id="polygon16800" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="762.99,461.4 753.16,459.01 753.5,458.79 "
-       id="polygon16802" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.25,459.04 743.81,455.57 744.93,456.37 "
-       id="polygon16804" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.42,460.83 743.02,457.82 742.98,457.36 "
-       id="polygon16806" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="753.59,458.82 753.25,459.04 751.86,458.25 "
-       id="polygon16808" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.33,461.96 762.64,461.61 760.54,461.47 "
-       id="polygon16810" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.34,463.02 778.99,463.52 778.98,463.57 "
-       id="polygon16812" />
-    <polygon
-       style="opacity:1;fill:#007873"
-       points="772.45,463.15 762.56,461.6 762.9,461.39 "
-       id="polygon16814" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.64,461.61 752.85,459.36 753.16,459.01 "
-       id="polygon16816" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.92,459.38 743.49,455.91 744.78,456.84 "
-       id="polygon16818" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.92,459.38 752.66,459.83 749.95,458.46 "
-       id="polygon16820" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.95,462.93 762.09,462.42 759.3,462.2 "
-       id="polygon16822" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.81,463.73 762.05,462.41 762.27,461.96 "
-       id="polygon16824" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.09,462.42 752.46,460.32 752.61,459.81 "
-       id="polygon16826" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.49,460.33 742.98,457.36 743.05,456.86 "
-       id="polygon16828" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.46,466.14 745.26,462.87 745.4,463.24 "
-       id="polygon16830" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="755.23,463.88 746.04,460.61 746.55,461.21 "
-       id="polygon16832" />
-    <polygon
-       style="opacity:1;fill:#00918a"
-       points="754.61,452.3 744.68,449.04 745.03,448.98 "
-       id="polygon16834" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="755.23,463.88 754.92,464.23 753.86,463.46 "
-       id="polygon16836" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.8,464.19 754.57,464.65 756.89,464.66 "
-       id="polygon16838" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.66,464.68 754.49,465.18 751.47,463.73 "
-       id="polygon16840" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.71,467.75 777.76,467.71 772.89,467.3 "
-       id="polygon16842" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.74,467.75 763.64,466.68 763.54,467.2 "
-       id="polygon16844" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.57,467.2 754.43,465.16 754.41,465.68 "
-       id="polygon16846" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.42,465.68 745.23,462.4 745.26,462.87 "
-       id="polygon16848" />
-    <polygon
-       style="opacity:1;fill:#00928b"
-       points="755.57,463.66 755.23,463.88 754.42,463.29 "
-       id="polygon16850" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.66,464.68 754.92,464.23 753.4,464.23 "
-       id="polygon16852" />
-    <polygon
-       style="opacity:1;fill:#00b7ae"
-       points="765.5,465.96 757.65,464.21 759.77,464.56 "
-       id="polygon16854" />
-    <polygon
-       style="opacity:1;fill:#007974"
-       points="763.93,466.23 764.23,465.88 762.59,465.94 "
-       id="polygon16856" />
-    <polygon
-       style="opacity:1;fill:#008b85"
-       points="773.56,466.72 764.46,465.66 764.12,465.88 "
-       id="polygon16858" />
-    <polygon
-       style="opacity:1;fill:#007974"
-       points="764.23,465.88 755.09,463.84 754.8,464.19 "
-       id="polygon16860" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.92,464.23 745.72,460.95 745.47,461.4 "
-       id="polygon16862" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.42,465.68 754.49,465.18 752.31,464.93 "
-       id="polygon16864" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.57,467.2 763.7,466.69 761.82,466.81 "
-       id="polygon16866" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.95,467.29 763.84,466.23 763.64,466.68 "
-       id="polygon16868" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.7,466.69 754.57,464.65 754.43,465.16 "
-       id="polygon16870" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.49,465.18 745.3,461.9 745.23,462.4 "
-       id="polygon16872" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.66,464.68 745.47,461.4 745.3,461.9 "
-       id="polygon16874" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="754.26,452.35 744.68,449.04 746,449.77 "
-       id="polygon16876" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="748.23,453.48 748.54,453.13 749.45,453.8 "
-       id="polygon16878" />
-    <polygon
-       style="opacity:1;fill:#00938c"
-       points="737.55,448.57 749.01,452.97 748.66,453.18 "
-       id="polygon16880" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.84,451.17 747.81,455.41 747.94,455.78 "
-       id="polygon16882" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.59,452.91 753.91,452.57 751.84,452.31 "
-       id="polygon16884" />
-    <polygon
-       style="opacity:1;fill:#007a74"
-       points="763.43,454.99 763.77,454.77 761.7,454.55 "
-       id="polygon16886" />
-    <polygon
-       style="opacity:1;fill:#008d86"
-       points="773.7,456.32 763.69,454.77 764.04,454.71 "
-       id="polygon16888" />
-    <polygon
-       style="opacity:1;fill:#007a74"
-       points="763.77,454.77 753.82,452.54 754.17,452.33 "
-       id="polygon16890" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.91,452.57 744.01,449.6 744.33,449.25 "
-       id="polygon16892" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="737.23,448.92 748.33,453.52 746.96,452.55 "
-       id="polygon16894" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.71,450.8 747.79,454.95 747.81,455.41 "
-       id="polygon16896" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.96,449.36 748.06,453.96 745.9,452.63 "
-       id="polygon16898" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.68,450.35 747.87,454.45 747.79,454.95 "
-       id="polygon16900" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="736.77,449.85 748.06,453.96 747.87,454.45 "
-       id="polygon16902" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.88,455.79 763.12,455.34 760.83,455.27 "
-       id="polygon16904" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.72,456.95 773.01,456.59 770.76,456.62 "
-       id="polygon16906" />
-    <polygon
-       style="opacity:1;fill:#007670"
-       points="773.27,456.38 778.63,456.84 772.95,456.6 "
-       id="polygon16908" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="773.01,456.59 763.05,455.33 763.35,454.98 "
-       id="polygon16910" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.12,455.34 753.28,453.34 753.52,452.89 "
-       id="polygon16912" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.33,453.36 743.75,450.05 745.73,451.17 "
-       id="polygon16914" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="743.81,455.57 753.25,459.04 751.86,458.25 "
-       id="polygon16916" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="743.17,458.2 752.6,461.67 752.46,461.3 "
-       id="polygon16918" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.49,455.91 752.92,459.38 751.1,458.35 "
-       id="polygon16920" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.02,457.82 752.46,461.3 752.42,460.83 "
-       id="polygon16922" />
-    <polygon
-       style="opacity:1;fill:#00a39b"
-       points="746.38,460.39 755.91,463.6 755.57,463.66 "
-       id="polygon16924" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.23,456.36 752.66,459.83 749.95,458.46 "
-       id="polygon16926" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="742.98,457.36 752.42,460.83 752.49,460.33 "
-       id="polygon16928" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="746.02,455.25 760.42,459.66 760.66,459.91 "
-       id="polygon16930" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="745.64,463.48 754.6,466.52 754.83,466.76 "
-       id="polygon16932" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.05,456.86 752.66,459.83 749.97,459.4 "
-       id="polygon16934" />
-    <polygon
-       style="opacity:1;fill:#00928b"
-       points="746.04,460.61 755.23,463.88 754.42,463.29 "
-       id="polygon16936" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="745.72,460.95 754.92,464.23 753.86,463.46 "
-       id="polygon16938" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.41,465.68 763.57,467.2 763.54,467.72 "
-       id="polygon16940" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.26,462.87 754.42,465.68 754.46,466.14 "
-       id="polygon16942" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.47,461.4 754.92,464.23 753.4,464.23 "
-       id="polygon16944" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.23,462.4 754.49,465.18 752.31,464.93 "
-       id="polygon16946" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="745.3,461.9 754.49,465.18 751.47,463.73 "
-       id="polygon16948" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="744.33,449.25 753.91,452.57 752.6,451.83 "
-       id="polygon16950" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="744.01,449.6 753.91,452.57 751.84,452.31 "
-       id="polygon16952" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.75,450.05 753.33,453.36 750.74,452.08 "
-       id="polygon16954" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="743.59,450.55 753.16,453.86 753.33,453.36 "
-       id="polygon16956" />
-    <polygon
-       style="opacity:1;fill:#00b7ae"
-       points="757.65,464.21 756.37,463.93 756.11,463.67 "
-       id="polygon16958" />
-    <polygon
-       style="opacity:1;fill:#00b7ae"
-       points="759.77,464.56 757.65,464.21 756.11,463.67 "
-       id="polygon16960" />
-    <polygon
-       style="opacity:1;fill:#00c1b8"
-       points="759.71,459.46 748.58,456.16 748.93,456.11 "
-       id="polygon16962" />
-    <polygon
-       style="opacity:1;fill:#00c1b8"
-       points="764.39,468.94 755.26,466.9 755.61,466.84 "
-       id="polygon16964" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="762.14,464.3 752.91,461.95 752.66,461.69 "
-       id="polygon16966" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="759.14,459.1 748.01,455.8 748.26,456.06 "
-       id="polygon16968" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.7,456.82 753.17,454.84 753.1,454.37 "
-       id="polygon16970" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="759.68,456.43 748.54,453.13 749.45,453.8 "
-       id="polygon16972" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="761.96,463.92 752.66,461.69 752.48,461.31 "
-       id="polygon16974" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.97,458.72 747.84,455.43 748.01,455.8 "
-       id="polygon16976" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.9,463.45 752.48,461.31 752.42,460.84 "
-       id="polygon16978" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.91,458.25 747.78,454.95 747.84,455.43 "
-       id="polygon16980" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="763.8,468.58 754.67,466.54 754.94,466.79 "
-       id="polygon16982" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.75,463.73 780.73,464.61 771.56,464.19 "
-       id="polygon16984" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.6,464.18 761.93,462.93 762.05,462.41 "
-       id="polygon16986" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.95,462.93 752.42,460.84 752.46,460.32 "
-       id="polygon16988" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.26,459.25 759.06,457.21 758.94,457.73 "
-       id="polygon16990" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.96,457.73 747.83,454.44 747.78,454.95 "
-       id="polygon16992" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.62,468.2 754.49,466.15 754.67,466.54 "
-       id="polygon16994" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.7,466.69 763.93,466.23 762.24,466.36 "
-       id="polygon16996" />
-    <polygon
-       style="opacity:1;fill:#007671"
-       points="773.23,466.93 764.12,465.88 763.84,466.23 "
-       id="polygon16998" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.93,466.23 754.57,464.65 756.89,464.66 "
-       id="polygon17000" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.64,468.26 763.54,467.2 763.54,467.72 "
-       id="polygon17002" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.54,467.72 754.41,465.68 754.49,466.15 "
-       id="polygon17004" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="769.93,461.4 760.5,459.67 760.77,459.93 "
-       id="polygon17006" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="753.16,459.01 762.99,461.4 760.92,461.14 "
-       id="polygon17008" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.5,457.4 762.72,456.3 762.84,455.79 "
-       id="polygon17010" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.74,456.3 753.1,454.37 753.13,453.85 "
-       id="polygon17012" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="752.66,461.69 762.14,464.3 761.96,463.92 "
-       id="polygon17014" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.85,459.36 762.64,461.61 760.54,461.47 "
-       id="polygon17016" />
-    <polygon
-       style="opacity:1;fill:#009d96"
-       points="764.81,465.6 764.46,465.66 766.31,465.77 "
-       id="polygon17018" />
-    <polygon
-       style="opacity:1;fill:#008e87"
-       points="755.09,463.84 764.57,465.66 764.23,465.88 "
-       id="polygon17020" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.48,461.31 761.96,463.92 761.9,463.45 "
-       id="polygon17022" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.61,459.81 762.33,461.96 760.09,461.87 "
-       id="polygon17024" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.42,460.84 761.9,463.45 761.95,462.93 "
-       id="polygon17026" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="752.46,460.32 762.09,462.42 759.3,462.2 "
-       id="polygon17028" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.67,466.54 763.62,468.2 763.8,468.58 "
-       id="polygon17030" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="748.01,455.8 758.97,458.72 759.14,459.1 "
-       id="polygon17032" />
-    <polygon
-       style="opacity:1;fill:#007974"
-       points="754.8,464.19 764.23,465.88 762.59,465.94 "
-       id="polygon17034" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.11,460.15 770.7,462.05 771,461.7 "
-       id="polygon17036" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="748.23,453.48 759.36,456.77 757.88,455.96 "
-       id="polygon17038" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.49,466.15 763.54,467.72 763.62,468.2 "
-       id="polygon17040" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.57,464.65 763.93,466.23 762.24,466.36 "
-       id="polygon17042" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.84,455.43 758.91,458.25 758.97,458.72 "
-       id="polygon17044" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="760.89,460.6 770.7,462.05 768.22,462.06 "
-       id="polygon17046" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.99,453.93 759.36,456.77 757.54,456.76 "
-       id="polygon17048" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="754.43,465.16 763.7,466.69 761.82,466.81 "
-       id="polygon17050" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.78,454.95 758.96,457.73 758.91,458.25 "
-       id="polygon17052" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="747.83,454.44 759.12,457.23 757.01,457.16 "
-       id="polygon17054" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="760.77,459.93 769.93,461.4 770.21,461.66 "
-       id="polygon17056" />
-    <polygon
-       style="opacity:1;fill:#007a74"
-       points="753.82,452.54 763.77,454.77 761.7,454.55 "
-       id="polygon17058" />
-    <polygon
-       style="opacity:1;fill:#00b3aa"
-       points="762.58,464.25 762.8,464.67 762.47,464.57 "
-       id="polygon17060" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.52,452.89 763.43,454.99 761.33,454.88 "
-       id="polygon17062" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.28,453.34 763.12,455.34 760.83,455.27 "
-       id="polygon17064" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.1,454.37 762.7,456.82 762.74,456.3 "
-       id="polygon17066" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="753.13,453.85 762.88,455.79 760.15,455.64 "
-       id="polygon17068" />
-    <polygon
-       style="opacity:1;fill:#00b0a7"
-       points="770.61,461.76 770.37,461.34 770.64,461.43 "
-       id="polygon17070" />
-    <polygon
-       style="opacity:1;fill:#00c0b7"
-       points="773.6,470.01 764.49,468.95 764.85,468.89 "
-       id="polygon17072" />
-    <polygon
-       style="opacity:1;fill:#009d96"
-       points="773.91,466.66 764.46,465.66 766.31,465.77 "
-       id="polygon17074" />
-    <polygon
-       style="opacity:1;fill:#00a098"
-       points="771.74,466.08 762.47,464.57 762.2,464.31 "
-       id="polygon17076" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="771.55,465.7 762.2,464.31 762,463.92 "
-       id="polygon17078" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="772.97,469.64 763.87,468.58 764.16,468.84 "
-       id="polygon17080" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.46,465.22 762,463.92 761.91,463.45 "
-       id="polygon17082" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.56,464.19 780.53,465.07 771.46,464.7 "
-       id="polygon17084" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.47,464.7 761.91,463.45 761.93,462.93 "
-       id="polygon17086" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.76,469.26 763.66,468.2 763.87,468.58 "
-       id="polygon17088" />
-    <polygon
-       style="opacity:1;fill:#00c0b7"
-       points="771.02,461.51 759.82,459.48 760.17,459.42 "
-       id="polygon17090" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.64,468.78 763.54,467.72 763.66,468.2 "
-       id="polygon17092" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="770.41,461.15 759.21,459.11 759.49,459.37 "
-       id="polygon17094" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.21,460.76 759.02,458.73 759.21,459.11 "
-       id="polygon17096" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.12,460.28 758.92,458.25 759.02,458.73 "
-       id="polygon17098" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.12,459.77 777.38,460 770.21,459.25 "
-       id="polygon17100" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.13,459.76 758.94,457.73 758.92,458.25 "
-       id="polygon17102" />
-    <polygon
-       style="opacity:1;fill:#00a098"
-       points="762.47,464.57 772.02,466.34 771.74,466.08 "
-       id="polygon17104" />
-    <polygon
-       style="opacity:1;fill:#007873"
-       points="762.56,461.6 772.11,463.37 772.45,463.15 "
-       id="polygon17106" />
-    <polygon
-       style="opacity:1;fill:#008b85"
-       points="764.12,465.88 773.56,466.72 773.23,466.93 "
-       id="polygon17108" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="762.2,464.31 771.74,466.08 771.55,465.7 "
-       id="polygon17110" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.27,461.96 772.11,463.37 770.08,463.41 "
-       id="polygon17112" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.64,462.05 779.47,462.71 779.44,462.75 "
-       id="polygon17114" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="764.16,468.84 772.97,469.64 773.26,469.91 "
-       id="polygon17116" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.47,457.41 777.83,457.87 772.38,457.92 "
-       id="polygon17118" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.39,457.92 762.71,456.82 762.72,456.3 "
-       id="polygon17120" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="779.44,462.75 770.64,462.05 779.2,463.06 "
-       id="polygon17122" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.05,462.41 771.6,464.18 771.81,463.73 "
-       id="polygon17124" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762,463.92 771.55,465.7 771.46,465.22 "
-       id="polygon17126" />
-    <polygon
-       style="opacity:1;fill:#007671"
-       points="763.84,466.23 773.23,466.93 772.95,467.29 "
-       id="polygon17128" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.87,468.58 772.76,469.26 772.97,469.64 "
-       id="polygon17130" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.91,463.45 771.46,465.22 771.47,464.7 "
-       id="polygon17132" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="761.93,462.93 771.47,464.7 771.6,464.18 "
-       id="polygon17134" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.64,466.68 772.95,467.29 772.74,467.75 "
-       id="polygon17136" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.66,468.2 772.64,468.78 772.76,469.26 "
-       id="polygon17138" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.54,467.2 772.74,467.75 772.64,468.26 "
-       id="polygon17140" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.54,467.72 772.64,468.26 772.64,468.78 "
-       id="polygon17142" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="778.87,462.63 770.27,461.66 778.61,462.4 "
-       id="polygon17144" />
-    <polygon
-       style="opacity:1;fill:#007873"
-       points="759.28,456.76 770.77,458.44 770.48,458.79 "
-       id="polygon17146" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.21,459.11 770.21,460.76 770.41,461.15 "
-       id="polygon17148" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="763.35,454.98 773.35,456.38 771.21,456.29 "
-       id="polygon17150" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.06,457.21 770.48,458.79 770.26,459.25 "
-       id="polygon17152" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="759.02,458.73 770.12,460.28 770.21,460.76 "
-       id="polygon17154" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.94,457.73 770.26,459.25 770.13,459.76 "
-       id="polygon17156" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="758.92,458.25 770.13,459.76 770.12,460.28 "
-       id="polygon17158" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="763.05,455.33 773.01,456.59 770.76,456.62 "
-       id="polygon17160" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.84,455.79 772.5,457.4 772.72,456.95 "
-       id="polygon17162" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.72,456.3 772.39,457.92 772.5,457.4 "
-       id="polygon17164" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="762.71,456.82 772.38,458.44 772.39,457.92 "
-       id="polygon17166" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.09,463.65 779.17,463.11 778.99,463.52 "
-       id="polygon17168" />
-    <line
-       x1="772.19"
-       y1="463.26001"
-       x2="772.19"
-       y2="463.26001"
-       style="stroke:#00fff3;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17170" />
-    <line
-       x1="772"
-       y1="462.5"
-       x2="772"
-       y2="462.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17172" />
-    <polygon
-       style="opacity:1;fill:#00d9ce"
-       points="772.43,466.45 781.4,467.33 772.78,466.39 "
-       id="polygon17174" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.98,463.39 780.07,463.65 780.27,463.2 "
-       id="polygon17176" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="773.02,469.64 777.85,469.63 772.79,469.26 "
-       id="polygon17178" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.66,468.78 777.59,468.7 772.63,468.27 "
-       id="polygon17180" />
-    <polygon
-       style="opacity:1;fill:#008ca1"
-       points="779.85,462.42 779.46,462.48 779.75,462.73 "
-       id="polygon17182" />
-    <line
-       x1="771.65997"
-       y1="461.14001"
-       x2="771.65997"
-       y2="461.14001"
-       style="stroke:#00fff3;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17184" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="771.8,466.09 780.78,466.97 772.09,466.34 "
-       id="polygon17186" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.07,463.65 782.8,463.84 782.98,463.39 "
-       id="polygon17188" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="771.59,465.7 780.56,466.58 771.8,466.09 "
-       id="polygon17190" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.47,465.22 780.45,466.1 771.59,465.7 "
-       id="polygon17192" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="771.46,464.7 780.43,465.58 771.47,465.22 "
-       id="polygon17194" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.89,467.3 777.76,467.71 777.84,467.5 "
-       id="polygon17196" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.79,469.26 777.85,469.63 777.74,469.46 "
-       id="polygon17198" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.63,468.27 777.59,468.7 777.58,468.46 "
-       id="polygon17200" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="785.41,463.52 782.79,463.85 782.97,463.39 "
-       id="polygon17202" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="779.49,462.48 781.95,462.3 782.18,462.69 "
-       id="polygon17204" />
-    <line
-       x1="783.42999"
-       y1="463.09"
-       x2="783.42999"
-       y2="463.06"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17206" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="770.77,461.41 777.77,461.82 770.48,461.15 "
-       id="polygon17208" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.39,458.45 777.75,458.91 772.52,458.92 "
-       id="polygon17210" />
-    <polygon
-       style="opacity:1;fill:#007670"
-       points="781.3,464.05 772.03,463.38 781,464.25 "
-       id="polygon17212" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.26,460.76 777.38,461.03 770.14,460.29 "
-       id="polygon17214" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="780.98,464.28 771.75,463.73 780.73,464.61 "
-       id="polygon17216" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="780.58,466.61 771.8,466.09 780.78,466.97 "
-       id="polygon17218" />
-    <polygon
-       style="opacity:1;fill:#008da2"
-       points="785.57,463.72 785.41,463.52 785.67,463.16 "
-       id="polygon17220" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="780.71,464.64 771.56,464.19 780.53,465.07 "
-       id="polygon17222" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="780.45,466.14 771.59,465.7 780.56,466.58 "
-       id="polygon17224" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="780.43,465.62 771.47,465.22 780.45,466.1 "
-       id="polygon17226" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.47,457.41 778.03,457.41 777.94,457.62 "
-       id="polygon17228" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="777.94,457.62 772.47,457.41 777.83,457.87 "
-       id="polygon17230" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="777.74,458.62 772.39,458.45 777.75,458.91 "
-       id="polygon17232" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="772.39,458.45 777.74,458.39 777.74,458.62 "
-       id="polygon17234" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="777.85,469.63 781.92,469.63 777.74,469.46 "
-       id="polygon17236" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="770.48,461.15 777.77,461.82 777.68,461.74 "
-       id="polygon17238" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="777.68,461.74 770.48,461.15 777.53,461.48 "
-       id="polygon17240" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.41,458.79 777.54,459.53 777.61,459.38 "
-       id="polygon17242" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="777.41,459.84 770.21,459.25 777.54,459.53 "
-       id="polygon17244" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="770.14,460.29 777.38,461.03 777.34,460.88 "
-       id="polygon17246" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="777.34,460.88 770.14,460.29 777.32,460.52 "
-       id="polygon17248" />
-    <polygon
-       style="opacity:1;fill:#006574"
-       points="782.02,467.66 777.84,467.5 782.29,467.31 "
-       id="polygon17250" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.92,469.63 777.74,469.46 781.78,469.15 "
-       id="polygon17252" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.75,468.63 777.58,468.46 781.83,468.12 "
-       id="polygon17254" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.07,462.72 781.97,462.3 782.2,462.69 "
-       id="polygon17256" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.72,464.32 780.98,464.28 781.44,464.68 "
-       id="polygon17258" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.15,465.65 780.52,465.11 780.43,465.58 "
-       id="polygon17260" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.42,457.79 778.18,457.22 778.03,457.41 "
-       id="polygon17262" />
-    <polygon
-       style="opacity:1;fill:#006372"
-       points="792.77,457.41 799.37,457.13 792.46,457.63 "
-       id="polygon17264" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.51,457.61 782.38,457.81 782.64,457.45 "
-       id="polygon17266" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="778.03,457.41 782.42,457.79 777.94,457.62 "
-       id="polygon17268" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.13,458.77 777.79,458.1 777.74,458.39 "
-       id="polygon17270" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="777.74,458.39 782.13,458.77 777.74,458.62 "
-       id="polygon17272" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.7,457.44 778.18,457.22 782.42,457.79 "
-       id="polygon17274" />
-    <polygon
-       style="opacity:1;fill:#006473"
-       points="791.67,459.24 781.09,459.32 780.84,459.67 "
-       id="polygon17276" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="777.54,459.53 780.89,459.65 777.61,459.38 "
-       id="polygon17278" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="777.53,461.48 780.75,461.63 777.46,461.36 "
-       id="polygon17280" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="777.32,460.52 780.61,460.63 777.32,460.36 "
-       id="polygon17282" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.23,458.25 777.79,458.1 782.13,458.77 "
-       id="polygon17284" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="785.38,463.52 794.57,463.56 794.83,463.21 "
-       id="polygon17286" />
-    <polygon
-       style="opacity:1;fill:#006676"
-       points="780.89,459.65 777.61,459.38 781.16,459.3 "
-       id="polygon17288" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.41,464.48 781.39,464.69 781.65,464.34 "
-       id="polygon17290" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.75,461.63 777.46,461.36 780.62,461.14 "
-       id="polygon17292" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.97,462.3 791.94,462.25 792.07,462.72 "
-       id="polygon17294" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.61,460.63 777.32,460.36 780.7,460.11 "
-       id="polygon17296" />
-    <polygon
-       style="opacity:1;fill:#006373"
-       points="791.91,467.23 782.25,467.32 781.99,467.68 "
-       id="polygon17298" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.11,464.86 799.58,464.39 790.95,465.31 "
-       id="polygon17300" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.97,465.3 781.14,465.66 781.21,465.14 "
-       id="polygon17302" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.94,466.33 781.32,466.65 781.18,466.18 "
-       id="polygon17304" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.48,468.04 781.82,468.13 781.75,468.64 "
-       id="polygon17306" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.46,469.06 781.8,469.16 781.95,469.63 "
-       id="polygon17308" />
-    <polygon
-       style="opacity:1;fill:#006373"
-       points="781.99,467.68 791.91,467.23 791.65,467.58 "
-       id="polygon17310" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.32,466.65 791.08,466.8 790.94,466.33 "
-       id="polygon17312" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.14,465.66 790.9,465.81 790.97,465.3 "
-       id="polygon17314" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.07,458.42 782.13,458.77 782.21,458.26 "
-       id="polygon17316" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.95,469.63 791.46,469.06 791.61,469.54 "
-       id="polygon17318" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="781.75,468.64 791.48,468.04 791.41,468.55 "
-       id="polygon17320" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="794.54,463.58 799.54,463.32 794.38,464.03 "
-       id="polygon17322" />
-    <polygon
-       style="opacity:1;fill:#008ea3"
-       points="791.59,459.8 791.67,459.24 791.41,459.59 "
-       id="polygon17324" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.23,460.07 796.6,459.45 791.38,459.61 "
-       id="polygon17326" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.24,460.05 780.67,460.12 780.6,460.63 "
-       id="polygon17328" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.22,461.08 780.64,461.15 780.79,461.62 "
-       id="polygon17330" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.68,463.13 794.54,463.58 799.54,463.32 "
-       id="polygon17332" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.11,462.72 799.88,462.17 791.96,462.25 "
-       id="polygon17334" />
-    <polygon
-       style="opacity:1;fill:#008da3"
-       points="791.53,464.76 791.41,464.48 791.72,464.27 "
-       id="polygon17336" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="794.38,464.03 799.54,463.32 799.47,463.53 "
-       id="polygon17338" />
-    <polygon
-       style="opacity:1;fill:#006474"
-       points="782.64,457.45 792.51,457.61 792.83,457.39 "
-       id="polygon17340" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="782.13,458.77 792,458.93 792.07,458.42 "
-       id="polygon17342" />
-    <polygon
-       style="opacity:1;fill:#006473"
-       points="780.84,459.67 791.67,459.24 791.41,459.59 "
-       id="polygon17344" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.79,461.62 791.22,461.08 791.37,461.55 "
-       id="polygon17346" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="780.6,460.63 791.24,460.05 791.18,460.56 "
-       id="polygon17348" />
-    <polygon
-       style="opacity:1;fill:#006372"
-       points="791.64,467.59 796.98,467.2 791.89,467.24 "
-       id="polygon17350" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.99,462.54 792.11,462.72 799.88,462.17 "
-       id="polygon17352" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.43,468.55 796.67,468.08 791.48,468.05 "
-       id="polygon17354" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.35,464.5 799.82,464.04 791.11,464.86 "
-       id="polygon17356" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="799.54,463.32 803.79,463.11 799.47,463.53 "
-       id="polygon17358" />
-    <polygon
-       style="opacity:1;fill:#007182"
-       points="791.12,466.8 799.59,466.33 791.37,467.18 "
-       id="polygon17360" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.95,465.31 799.43,464.84 790.9,465.82 "
-       id="polygon17362" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.96,466.33 799.43,465.86 791.12,466.8 "
-       id="polygon17364" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.9,465.82 799.38,465.35 790.96,466.33 "
-       id="polygon17366" />
-    <polygon
-       style="opacity:1;fill:#006372"
-       points="796.85,467.39 791.64,467.59 796.98,467.2 "
-       id="polygon17368" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.64,467.59 796.78,467.6 796.85,467.39 "
-       id="polygon17370" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.64,469.54 796.96,469.51 796.85,469.33 "
-       id="polygon17372" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="796.85,469.33 791.64,469.54 796.77,469.08 "
-       id="polygon17374" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="803.79,463.11 799.47,463.53 803.63,463.56 "
-       id="polygon17376" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="796.64,468.35 791.43,468.55 796.67,468.08 "
-       id="polygon17378" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.43,468.55 796.66,468.59 796.64,468.35 "
-       id="polygon17380" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.46,457.63 799.06,457.35 792.22,457.98 "
-       id="polygon17382" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.05,462.62 802.29,462.48 799.99,462.54 "
-       id="polygon17384" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.79,464.08 791.11,464.86 799.58,464.39 "
-       id="polygon17386" />
-    <polygon
-       style="opacity:1;fill:#007182"
-       points="799.63,466.38 791.37,467.18 799.84,466.71 "
-       id="polygon17388" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.56,464.45 790.95,465.31 799.43,464.84 "
-       id="polygon17390" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.06,458.43 798.66,458.16 792.01,458.95 "
-       id="polygon17392" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.46,465.93 791.12,466.8 799.59,466.33 "
-       id="polygon17394" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="799.42,464.91 790.9,465.82 799.38,465.35 "
-       id="polygon17396" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="790.96,466.33 799.38,465.35 799.38,465.42 "
-       id="polygon17398" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.29,462.48 799.99,462.54 802.13,462.01 "
-       id="polygon17400" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.66,461.93 796.84,461.35 791.41,461.55 "
-       id="polygon17402" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.18,460.57 796.5,459.93 791.23,460.07 "
-       id="polygon17404" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.41,461.55 796.63,460.93 791.24,461.08 "
-       id="polygon17406" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.24,461.08 796.51,460.44 791.18,460.57 "
-       id="polygon17408" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="796.78,467.6 801.42,467.21 796.85,467.39 "
-       id="polygon17410" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.42,467.21 796.69,467.84 796.78,467.6 "
-       id="polygon17412" />
-    <polygon
-       style="opacity:1;fill:#006372"
-       points="799.27,457.21 792.46,457.63 799.06,457.35 "
-       id="polygon17414" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.41,469.16 797.09,469.71 796.96,469.51 "
-       id="polygon17416" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="796.66,468.59 801.2,468.17 796.64,468.35 "
-       id="polygon17418" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.2,468.17 796.69,468.86 796.66,468.59 "
-       id="polygon17420" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.22,457.98 799.06,457.35 798.98,457.47 "
-       id="polygon17422" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="792.01,458.95 798.66,458.16 798.64,458.34 "
-       id="polygon17424" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="798.64,458.34 792.01,458.95 798.61,458.67 "
-       id="polygon17426" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="796.67,459.22 791.38,459.61 796.79,459.05 "
-       id="polygon17428" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.38,459.61 796.6,459.45 796.67,459.22 "
-       id="polygon17430" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="796.96,461.53 791.66,461.93 796.84,461.35 "
-       id="polygon17432" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="796.52,459.67 791.23,460.07 796.6,459.45 "
-       id="polygon17434" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.41,461.55 796.84,461.35 796.71,461.16 "
-       id="polygon17436" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="791.18,460.57 796.51,460.44 796.48,460.18 "
-       id="polygon17438" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="796.54,460.69 791.24,461.08 796.51,460.44 "
-       id="polygon17440" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.66,469.54 797.09,469.71 801.41,469.16 "
-       id="polygon17442" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.26,467.66 796.69,467.84 801.42,467.21 "
-       id="polygon17444" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.26,468.69 796.69,468.86 801.2,468.17 "
-       id="polygon17446" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.8,465.79 799.38,465.42 799.43,465.86 "
-       id="polygon17448" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.95,464.31 799.56,464.45 800.79,464.77 "
-       id="polygon17450" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="800.96,466.25 799.63,466.38 801.21,466.63 "
-       id="polygon17452" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.74,465.27 799.38,465.42 800.8,465.79 "
-       id="polygon17454" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="812.89,462.17 802.57,462.86 802.88,463.11 "
-       id="polygon17456" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.64,461.8 802.32,462.48 802.57,462.86 "
-       id="polygon17458" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.48,461.33 802.16,462.01 802.32,462.48 "
-       id="polygon17460" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.41,460.82 802.09,461.5 802.16,462.01 "
-       id="polygon17462" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.09,461.5 812.46,460.31 812.41,460.82 "
-       id="polygon17464" />
-    <polygon
-       style="opacity:1;fill:#0094d6"
-       points="803.36,461.41 798.27,461.59 798.12,461.7 "
-       id="polygon17466" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.23,457.57 798.98,457.47 798.82,457.71 "
-       id="polygon17468" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.02,458.53 798.64,458.34 798.61,458.67 "
-       id="polygon17470" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="797.12,461.66 802.36,461.13 796.96,461.53 "
-       id="polygon17472" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="803.07,456.94 813.24,456.09 813.58,456.18 "
-       id="polygon17474" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="812.91,456.15 802.44,457.23 802.74,457 "
-       id="polygon17476" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.47,457.21 798.98,457.47 802.23,457.57 "
-       id="polygon17478" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.07,458.82 796.52,459.67 796.6,459.45 "
-       id="polygon17480" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="796.5,459.93 801.92,459.27 796.52,459.67 "
-       id="polygon17482" />
-    <polygon
-       style="opacity:1;fill:#0094d6"
-       points="812.56,469.33 802.67,469.82 802.98,469.6 "
-       id="polygon17484" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.92,459.27 796.48,460.18 796.5,459.93 "
-       id="polygon17486" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.94,460.29 796.71,461.16 796.63,460.93 "
-       id="polygon17488" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="796.63,460.93 801.94,460.29 796.54,460.69 "
-       id="polygon17490" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.88,459.78 796.54,460.69 796.51,460.44 "
-       id="polygon17492" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.37,462.65 801.15,463.98 801.45,463.76 "
-       id="polygon17494" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.07,458.02 798.64,458.34 802.02,458.53 "
-       id="polygon17496" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="811.86,466.14 801.97,466.64 801.66,466.86 "
-       id="polygon17498" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.07,462.87 800.92,464.33 801.15,463.98 "
-       id="polygon17500" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="811.18,465.52 801.57,466.87 801.26,466.62 "
-       id="polygon17502" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.84,463.22 800.78,464.78 800.92,464.33 "
-       id="polygon17504" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="803.02,461.48 797.62,461.88 802.68,461.38 "
-       id="polygon17506" />
-    <polygon
-       style="opacity:1;fill:#004f72"
-       points="811.55,466.37 801.66,466.86 801.42,467.21 "
-       id="polygon17508" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="810.92,465.15 801.26,466.62 801,466.25 "
-       id="polygon17510" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="811.57,469.05 801.68,469.54 801.98,469.79 "
-       id="polygon17512" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.7,463.68 800.75,465.28 800.78,464.78 "
-       id="polygon17514" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="802.88,463.11 812.89,462.17 813.2,462.42 "
-       id="polygon17516" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.75,464.68 801,466.25 800.82,465.79 "
-       id="polygon17518" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.31,466.72 801.42,467.21 801.27,467.66 "
-       id="polygon17520" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.67,464.18 800.82,465.79 800.75,465.28 "
-       id="polygon17522" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="802.68,461.38 797.27,461.78 802.36,461.13 "
-       id="polygon17524" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.16,467.18 801.27,467.66 801.21,468.18 "
-       id="polygon17526" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.57,462.86 812.64,461.8 812.89,462.17 "
-       id="polygon17528" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.16,468.2 801.27,468.69 801.43,469.16 "
-       id="polygon17530" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.11,467.69 801.21,468.18 801.27,468.69 "
-       id="polygon17532" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.92,459.27 796.52,459.67 802.07,458.82 "
-       id="polygon17534" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.32,462.48 812.48,461.33 812.64,461.8 "
-       id="polygon17536" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.16,462.01 812.41,460.82 812.48,461.33 "
-       id="polygon17538" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.88,459.78 796.48,460.18 801.92,459.27 "
-       id="polygon17540" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.11,460.76 796.71,461.16 801.94,460.29 "
-       id="polygon17542" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.94,460.29 796.54,460.69 801.88,459.78 "
-       id="polygon17544" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="802.33,469.88 811.88,469.3 812.22,469.4 "
-       id="polygon17546" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="801.66,466.86 811.86,466.14 811.55,466.37 "
-       id="polygon17548" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.92,464.33 810.84,463.22 811.07,462.87 "
-       id="polygon17550" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.61,456.38 802.21,457.58 802.44,457.23 "
-       id="polygon17552" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="801.57,466.87 811.5,465.76 811.18,465.52 "
-       id="polygon17554" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="801.98,469.79 811.57,469.05 811.88,469.3 "
-       id="polygon17556" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.78,464.78 810.7,463.68 810.84,463.22 "
-       id="polygon17558" />
-    <polygon
-       style="opacity:1;fill:#004f72"
-       points="801.42,467.21 811.55,466.37 811.31,466.72 "
-       id="polygon17560" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="801.26,466.62 811.18,465.52 810.92,465.15 "
-       id="polygon17562" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.38,456.73 802.07,458.04 802.21,457.58 "
-       id="polygon17564" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.75,465.28 810.67,464.18 810.7,463.68 "
-       id="polygon17566" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801,466.25 810.92,465.15 810.75,464.68 "
-       id="polygon17568" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="800.82,465.79 810.75,464.68 810.67,464.18 "
-       id="polygon17570" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.23,457.18 802.03,458.54 802.07,458.04 "
-       id="polygon17572" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.27,467.66 811.31,466.72 811.16,467.18 "
-       id="polygon17574" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.43,469.16 811.16,468.2 811.32,468.67 "
-       id="polygon17576" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.21,468.18 811.16,467.18 811.11,467.69 "
-       id="polygon17578" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.27,468.69 811.11,467.69 811.16,468.2 "
-       id="polygon17580" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="803.07,461.46 812.46,460.25 802.72,461.37 "
-       id="polygon17582" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.03,458.54 812.2,457.69 812.23,457.18 "
-       id="polygon17584" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.05,458.84 811.96,457.39 802.28,458.48 "
-       id="polygon17586" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.43,460.82 816.39,460.25 812.47,460.32 "
-       id="polygon17588" />
-    <line
-       x1="812.77002"
-       y1="462.29001"
-       x2="812.78998"
-       y2="462.26001"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17590" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="802.72,461.37 812.14,460.02 802.4,461.13 "
-       id="polygon17592" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.67,461.8 816.54,461.24 812.5,461.33 "
-       id="polygon17594" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.92,459.29 811.74,457.75 802.05,458.84 "
-       id="polygon17596" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.4,461.13 811.87,459.66 802.14,460.76 "
-       id="polygon17598" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.89,459.79 811.62,458.2 801.92,459.29 "
-       id="polygon17600" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.14,460.76 811.69,459.21 801.96,460.3 "
-       id="polygon17602" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="801.96,460.3 811.6,458.71 801.89,459.79 "
-       id="polygon17604" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="802.44,457.23 812.61,456.38 812.91,456.15 "
-       id="polygon17606" />
-    <polygon
-       style="opacity:1;fill:#0075a9"
-       points="811.54,465.75 811.59,465.45 811.33,465.25 "
-       id="polygon17608" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.21,457.58 812.38,456.73 812.61,456.38 "
-       id="polygon17610" />
-    <polygon
-       style="opacity:1;fill:#0078ad"
-       points="811.7,466.64 811.56,466.36 811.32,466.72 "
-       id="polygon17612" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.67,461.8 816.75,461.66 816.61,461.45 "
-       id="polygon17614" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="816.61,461.45 812.67,461.8 816.54,461.24 "
-       id="polygon17616" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="802.07,458.04 812.23,457.18 812.38,456.73 "
-       id="polygon17618" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="816.37,460.47 812.43,460.82 816.39,460.25 "
-       id="polygon17620" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="816.69,464.68 822.82,464.41 816.89,464.84 "
-       id="polygon17622" />
-    <polygon
-       style="opacity:1;fill:#0082bc"
-       points="811.54,465.75 814.85,465.27 811.88,465.84 "
-       id="polygon17624" />
-    <polygon
-       style="opacity:1;fill:#004f72"
-       points="811.32,466.72 814.43,466.49 811.56,466.36 "
-       id="polygon17626" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="811.22,465.51 814.53,465.02 811.54,465.75 "
-       id="polygon17628" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.7,463.69 814.01,463.2 810.68,464.19 "
-       id="polygon17630" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.77,464.69 814.08,464.2 810.95,465.14 "
-       id="polygon17632" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.12,467.69 814.16,467.41 811.17,467.18 "
-       id="polygon17634" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.33,468.68 814.31,468.41 811.17,468.2 "
-       id="polygon17636" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="814.43,462.34 811.05,462.89 814.36,462.4 "
-       id="polygon17638" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.76,457.7 802.05,458.84 811.96,457.39 "
-       id="polygon17640" />
-    <polygon
-       style="opacity:1;fill:#005b83"
-       points="812.42,460.24 802.72,461.37 812.14,460.02 "
-       id="polygon17642" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="822.82,464.41 816.89,464.84 823.13,464.66 "
-       id="polygon17644" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.7,463.69 814.14,462.75 814.04,463.08 "
-       id="polygon17646" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.62,458.15 801.92,459.29 811.74,457.75 "
-       id="polygon17648" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.11,460 802.4,461.13 811.87,459.66 "
-       id="polygon17650" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.68,464.19 814.01,463.2 814,463.57 "
-       id="polygon17652" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="814.36,468.55 811.33,468.68 814.31,468.41 "
-       id="polygon17654" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.59,458.65 801.89,459.79 811.62,458.2 "
-       id="polygon17656" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.84,459.63 802.14,460.76 811.69,459.21 "
-       id="polygon17658" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.95,465.14 814.08,464.2 814.21,464.54 "
-       id="polygon17660" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="810.77,464.69 813.99,463.7 814.05,464.07 "
-       id="polygon17662" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="814.15,467.56 811.12,467.69 814.16,467.41 "
-       id="polygon17664" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="811.67,459.16 801.96,460.3 811.6,458.71 "
-       id="polygon17666" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.63,460.99 816.86,461.82 816.75,461.66 "
-       id="polygon17668" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="816.75,461.66 821.63,460.99 816.61,461.45 "
-       id="polygon17670" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="816.41,460.75 821.39,460.02 816.37,460.47 "
-       id="polygon17672" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.39,460.02 816.44,460.98 816.41,460.75 "
-       id="polygon17674" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.43,459.51 816.41,459.96 821.57,459.05 "
-       id="polygon17676" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="812.37,456.74 815.14,456.11 814.98,456.37 "
-       id="polygon17678" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.46,460.53 816.44,460.98 821.39,460.02 "
-       id="polygon17680" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="814.98,456.37 812.37,456.74 814.92,456.46 "
-       id="polygon17682" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="821.56,465.95 814.36,466.6 814.43,466.49 "
-       id="polygon17684" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.25,466.91 821.32,466.31 814.36,466.6 "
-       id="polygon17686" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.32,466.31 814.2,467.05 814.25,466.91 "
-       id="polygon17688" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.33,468.27 814.6,468.93 814.53,468.82 "
-       id="polygon17690" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.64,462.18 824.22,460.76 814.43,462.34 "
-       id="polygon17692" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.53,468.82 821.33,468.27 814.36,468.55 "
-       id="polygon17694" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.17,466.77 814.15,467.56 814.16,467.41 "
-       id="polygon17696" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.17,467.8 814.36,468.55 814.31,468.41 "
-       id="polygon17698" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.19,467.93 821.11,467.28 814.15,467.56 "
-       id="polygon17700" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.9,457.57 811.76,457.7 813.13,457.21 "
-       id="polygon17702" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.36,462.4 823.93,460.98 814.2,462.66 "
-       id="polygon17704" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.71,461.33 814.2,462.66 814.14,462.75 "
-       id="polygon17706" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.14,462.75 823.71,461.33 814.04,463.08 "
-       id="polygon17708" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="814.53,465.02 824.11,463.61 814.77,465.2 "
-       id="polygon17710" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.73,458.52 811.59,458.65 812.77,458.02 "
-       id="polygon17712" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.99,459.49 811.84,459.63 812.81,459.03 "
-       id="polygon17714" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.59,461.78 814.04,463.08 814.01,463.2 "
-       id="polygon17716" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.01,463.2 823.59,461.78 814,463.57 "
-       id="polygon17718" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="814.26,464.66 823.84,463.24 814.46,464.93 "
-       id="polygon17720" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.57,462.28 814,463.57 813.99,463.7 "
-       id="polygon17722" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="813.99,463.7 823.57,462.28 814.05,464.07 "
-       id="polygon17724" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.08,464.2 823.65,462.79 814.21,464.54 "
-       id="polygon17726" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.65,462.79 814.05,464.07 814.08,464.2 "
-       id="polygon17728" />
-    <polygon
-       style="opacity:1;fill:#003b72"
-       points="821.32,466.31 814.36,466.6 821.56,465.95 "
-       id="polygon17730" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.93,455.25 815.21,456.05 815.14,456.11 "
-       id="polygon17732" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.57,468.65 814.6,468.93 821.33,468.27 "
-       id="polygon17734" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.17,466.77 814.2,467.05 821.32,466.31 "
-       id="polygon17736" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.33,468.27 814.36,468.55 821.17,467.8 "
-       id="polygon17738" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.11,467.28 814.15,467.56 821.17,466.77 "
-       id="polygon17740" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="835.02,464.46 823.09,464.68 822.79,464.42 "
-       id="polygon17742" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.17,467.8 814.2,468.08 821.11,467.28 "
-       id="polygon17744" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="814.92,456.46 822.71,455.6 814.82,456.8 "
-       id="polygon17746" />
-    <polygon
-       style="opacity:1;fill:#0062bc"
-       points="824.43,463.85 815.11,465.33 824.77,463.94 "
-       id="polygon17748" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.93,460.98 814.2,462.66 823.71,461.33 "
-       id="polygon17750" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.45,459.52 832.14,458.04 821.57,459.06 "
-       id="polygon17752" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="824.11,463.61 814.77,465.2 824.43,463.85 "
-       id="polygon17754" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.42,460.02 832.03,458.5 821.45,459.52 "
-       id="polygon17756" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.71,461.33 814.04,463.08 823.59,461.78 "
-       id="polygon17758" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.66,461 832.13,459.51 821.49,460.54 "
-       id="polygon17760" />
-    <polygon
-       style="opacity:1;fill:#00529d"
-       points="824.61,458.63 813.59,460.11 813.93,460.2 "
-       id="polygon17762" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.49,460.54 832.03,459.01 821.42,460.02 "
-       id="polygon17764" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.42,463.56 834.64,463.6 834.6,463.08 "
-       id="polygon17766" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="823.84,463.24 814.46,464.93 824.11,463.61 "
-       id="polygon17768" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.71,455.6 814.82,456.8 822.57,456.05 "
-       id="polygon17770" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.71,455.61 830.05,454.73 822.59,456.06 "
-       id="polygon17772" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="824.14,455.74 813.12,457.22 812.9,457.57 "
-       id="polygon17774" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.59,461.78 814,463.57 823.57,462.28 "
-       id="polygon17776" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.65,462.79 814.21,464.54 823.84,463.24 "
-       id="polygon17778" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.57,462.28 814.05,464.07 823.65,462.79 "
-       id="polygon17780" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="824.3,458.39 813.28,459.86 813.59,460.11 "
-       id="polygon17782" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.21,455.02 815.21,456.05 822.93,455.25 "
-       id="polygon17784" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.92,456.1 812.9,457.57 812.77,458.02 "
-       id="polygon17786" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="824.04,458.02 813.02,459.49 813.28,459.86 "
-       id="polygon17788" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.79,456.55 812.77,458.02 812.75,458.53 "
-       id="polygon17790" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.93,455.25 814.98,456.37 822.71,455.6 "
-       id="polygon17792" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.85,457.56 812.83,459.03 813.02,459.49 "
-       id="polygon17794" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.77,457.05 812.75,458.53 812.83,459.03 "
-       id="polygon17796" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="823.09,464.68 835.31,464.72 835.02,464.46 "
-       id="polygon17798" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="832.04,458.38 821.45,459.52 832.14,458.04 "
-       id="polygon17800" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.45,459.52 832.03,458.5 832.04,458.38 "
-       id="polygon17802" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="832.26,459.87 821.66,461 832.13,459.51 "
-       id="polygon17804" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="832.01,458.89 821.42,460.02 832.03,458.5 "
-       id="polygon17806" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.42,460.02 832.03,459.01 832.01,458.89 "
-       id="polygon17808" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.49,460.54 832.13,459.51 832.09,459.4 "
-       id="polygon17810" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="832.09,459.4 821.49,460.54 832.03,459.01 "
-       id="polygon17812" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.44,466.16 821.35,466.3 821.19,466.77 "
-       id="polygon17814" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.42,468.14 821.32,468.28 821.56,468.66 "
-       id="polygon17816" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="824.23,460.75 828.8,460.13 823.95,460.97 "
-       id="polygon17818" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.9,457.57 824.14,455.74 823.92,456.1 "
-       id="polygon17820" />
-    <polygon
-       style="opacity:1;fill:#004584"
-       points="813.59,460.11 824.3,458.39 824.61,458.63 "
-       id="polygon17822" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.22,467.14 821.13,467.28 821.17,467.8 "
-       id="polygon17824" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.77,458.02 823.92,456.1 823.79,456.55 "
-       id="polygon17826" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="813.28,459.86 824.04,458.02 824.3,458.39 "
-       id="polygon17828" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.95,460.97 828.51,460.35 823.73,461.33 "
-       id="polygon17830" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.75,458.53 823.79,456.55 823.77,457.05 "
-       id="polygon17832" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="813.02,459.49 823.85,457.56 824.04,458.02 "
-       id="polygon17834" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="812.83,459.03 823.77,457.05 823.85,457.56 "
-       id="polygon17836" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="824.12,463.62 828.68,463 824.43,463.86 "
-       id="polygon17838" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.73,461.33 828.3,460.71 823.61,461.78 "
-       id="polygon17840" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="823.86,463.25 828.43,462.63 824.12,463.62 "
-       id="polygon17842" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.61,461.78 828.18,461.16 823.59,462.29 "
-       id="polygon17844" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.67,462.79 828.24,462.17 823.86,463.25 "
-       id="polygon17846" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.59,462.29 828.16,461.66 823.67,462.79 "
-       id="polygon17848" />
-    <polygon
-       style="opacity:1;fill:#0062bd"
-       points="824.77,463.95 829,463.24 829.22,463.3 "
-       id="polygon17850" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="824.43,463.86 828.68,463 828.89,463.16 "
-       id="polygon17852" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="828.22,461 823.61,461.78 828.18,461.16 "
-       id="polygon17854" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.59,462.29 828.18,461.16 828.16,461.49 "
-       id="polygon17856" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.86,463.25 828.24,462.17 828.36,462.47 "
-       id="polygon17858" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="828.21,461.99 823.67,462.79 828.24,462.17 "
-       id="polygon17860" />
-    <polygon
-       style="opacity:1;fill:#004d95"
-       points="831.09,454.14 823.53,454.96 830.86,454.07 "
-       id="polygon17862" />
-    <polygon
-       style="opacity:1;fill:#00529f"
-       points="835,464.47 837.38,464.57 835.28,464.73 "
-       id="polygon17864" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.56,468.66 831.42,468.14 831.65,468.52 "
-       id="polygon17866" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.19,466.77 831.44,466.16 831.28,466.63 "
-       id="polygon17868" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="821.17,467.8 831.22,467.14 831.27,467.66 "
-       id="polygon17870" />
-    <polygon
-       style="opacity:1;fill:#0055a4"
-       points="824.66,458.32 824.3,458.39 824.61,458.63 "
-       id="polygon17872" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="830.46,454.21 822.93,455.25 830.26,454.37 "
-       id="polygon17874" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.28,458.04 832.01,458.89 832.03,458.5 "
-       id="polygon17876" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.33,459.05 832.26,459.87 832.13,459.51 "
-       id="polygon17878" />
-    <polygon
-       style="opacity:1;fill:#004382"
-       points="837.33,464.48 835,464.47 837.38,464.57 "
-       id="polygon17880" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="822.71,455.61 830.26,454.37 830.2,454.48 "
-       id="polygon17882" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="834.7,462.56 837.25,462.19 837.12,462.55 "
-       id="polygon17884" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="830.2,454.48 822.71,455.61 830.05,454.73 "
-       id="polygon17886" />
-    <polygon
-       style="opacity:1;fill:#006fd5"
-       points="825.28,458.66 827.97,458.18 827.75,458.35 "
-       id="polygon17888" />
-    <line
-       x1="834.38"
-       y1="464.84"
-       x2="834.35999"
-       y2="464.87"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17890" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="834.65,463.61 837,463.18 837.02,463.58 "
-       id="polygon17892" />
-    <polygon
-       style="opacity:1;fill:#004585"
-       points="824.62,458.64 827.02,458.28 824.3,458.39 "
-       id="polygon17894" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.25,458.54 832.01,458.89 835.28,458.04 "
-       id="polygon17896" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="824.15,455.74 826.46,455.71 826.63,455.43 "
-       id="polygon17898" />
-    <line
-       x1="833.45001"
-       y1="465.91"
-       x2="833.41998"
-       y2="465.94"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17900" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.46,458.16 835.35,459.06 835.52,459.53 "
-       id="polygon17902" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.8,460.13 837.39,458.96 828.61,460.27 "
-       id="polygon17904" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.81,456.55 826.27,456.63 826.29,456.24 "
-       id="polygon17906" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="823.87,457.56 826.48,457.61 826.34,457.25 "
-       id="polygon17908" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.51,460.35 837.11,459.18 828.38,460.58 "
-       id="polygon17910" />
-    <polygon
-       style="opacity:1;fill:#0041bd"
-       points="829,463.24 837.59,462.08 829.22,463.3 "
-       id="polygon17912" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.89,459.54 828.38,460.58 828.3,460.71 "
-       id="polygon17914" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.3,460.71 836.89,459.54 828.22,461 "
-       id="polygon17916" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="828.68,463 837.28,461.84 828.89,463.16 "
-       id="polygon17918" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.77,459.99 828.22,461 828.18,461.16 "
-       id="polygon17920" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.18,461.16 836.77,459.99 828.16,461.49 "
-       id="polygon17922" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="828.43,462.63 837.02,461.46 828.59,462.87 "
-       id="polygon17924" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="837.02,461.46 828.36,462.47 828.43,462.63 "
-       id="polygon17926" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.75,460.5 828.16,461.49 828.16,461.66 "
-       id="polygon17928" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.16,461.66 836.75,460.5 828.21,461.99 "
-       id="polygon17930" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="828.24,462.17 836.84,461 828.36,462.47 "
-       id="polygon17932" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.55,456.68 835.43,457.58 835.3,458.04 "
-       id="polygon17934" />
-    <line
-       x1="835.72998"
-       y1="457.73999"
-       x2="835.72998"
-       y2="457.73999"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line17936" />
-    <polygon
-       style="opacity:1;fill:#002c82"
-       points="845.36,464.89 837.33,464.48 837.38,464.57 "
-       id="polygon17938" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.63,468.53 834.35,468.49 831.41,468.14 "
-       id="polygon17940" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="837.25,462.19 845.23,462.51 837.12,462.55 "
-       id="polygon17942" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.31,466.62 834.13,466.56 831.48,466.16 "
-       id="polygon17944" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="833.23,454.34 830.2,454.48 830.05,454.73 "
-       id="polygon17946" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.27,467.66 834.04,467.59 831.24,467.14 "
-       id="polygon17948" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="837,463.18 844.99,463.5 837.02,463.58 "
-       id="polygon17950" />
-    <polygon
-       style="opacity:1;fill:#0049d5"
-       points="827.97,458.18 836.49,457.26 827.75,458.35 "
-       id="polygon17952" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="831.24,467.14 834.04,467.59 834.02,467.2 "
-       id="polygon17954" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="837.39,458.96 828.61,460.27 837.11,459.18 "
-       id="polygon17956" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="833.23,454.34 830.01,454.86 833.11,454.8 "
-       id="polygon17958" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.34,453.25 833.12,454.8 833.24,454.34 "
-       id="polygon17960" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.46,455.71 835.36,454.34 826.63,455.43 "
-       id="polygon17962" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.42,457.13 835.3,458.04 835.27,458.55 "
-       id="polygon17964" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.39,457.64 835.27,458.55 835.35,459.06 "
-       id="polygon17966" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="837.11,459.18 828.38,460.58 836.89,459.54 "
-       id="polygon17968" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="827.02,458.28 835.52,457 826.78,458.09 "
-       id="polygon17970" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.31,456.14 835.14,454.69 826.41,455.79 "
-       id="polygon17972" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="837.28,461.84 828.89,463.16 837.59,462.08 "
-       id="polygon17974" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.14,454.69 826.29,456.24 826.31,456.14 "
-       id="polygon17976" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.72,458 835.26,456.63 826.52,457.71 "
-       id="polygon17978" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.27,456.63 835.02,455.14 826.29,456.24 "
-       id="polygon17980" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.89,459.54 828.22,461 836.77,459.99 "
-       id="polygon17982" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.02,455.14 826.26,456.74 826.27,456.63 "
-       id="polygon17984" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.08,456.16 826.52,457.71 826.48,457.61 "
-       id="polygon17986" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="837.02,461.46 828.59,462.87 837.28,461.84 "
-       id="polygon17988" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.48,457.61 835.08,456.16 826.34,457.25 "
-       id="polygon17990" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="826.32,457.14 835,455.65 826.26,456.74 "
-       id="polygon17992" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.77,459.99 828.16,461.49 836.75,460.5 "
-       id="polygon17994" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.84,461 828.36,462.47 837.02,461.46 "
-       id="polygon17996" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.75,460.5 828.21,461.99 836.84,461 "
-       id="polygon17998" />
-    <polygon
-       style="opacity:1;fill:#002c82"
-       points="845.14,464.5 837.33,464.48 845.36,464.89 "
-       id="polygon18000" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="835.36,454.34 826.63,455.43 835.64,454.11 "
-       id="polygon18002" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="834.13,466.56 841.85,466.39 834.25,466.22 "
-       id="polygon18004" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.79,468.38 834.41,468.59 834.35,468.49 "
-       id="polygon18006" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.3,458.04 844.55,456.68 844.42,457.13 "
-       id="polygon18008" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.85,466.39 834.08,466.68 834.13,466.56 "
-       id="polygon18010" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.27,458.55 844.42,457.13 844.39,457.64 "
-       id="polygon18012" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.83,452.67 833.45,453.98 833.73,453.76 "
-       id="polygon18014" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.62,467.38 834.05,467.73 834.04,467.59 "
-       id="polygon18016" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="834.04,467.59 841.62,467.38 834.02,467.2 "
-       id="polygon18018" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.14,454.69 826.41,455.79 835.36,454.34 "
-       id="polygon18020" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.35,459.06 844.39,457.64 844.46,458.16 "
-       id="polygon18022" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="835.83,457.24 827.09,458.33 835.52,457 "
-       id="polygon18024" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.02,455.14 826.29,456.24 835.14,454.69 "
-       id="polygon18026" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.52,457 826.78,458.09 835.26,456.63 "
-       id="polygon18028" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.55,452.89 833.24,454.34 833.45,453.98 "
-       id="polygon18030" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835,455.65 826.26,456.74 835.02,455.14 "
-       id="polygon18032" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.26,456.63 826.52,457.71 835.08,456.16 "
-       id="polygon18034" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.08,456.16 826.34,457.25 835,455.65 "
-       id="polygon18036" />
-    <line
-       x1="837.28998"
-       y1="459.20001"
-       x2="837.28998"
-       y2="459.20001"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18038" />
-    <line
-       x1="837.03998"
-       y1="458.41"
-       x2="837.03998"
-       y2="458.41"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18040" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.01,468.77 834.41,468.59 841.79,468.38 "
-       id="polygon18042" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.43,458.97 836.8,459.98 836.92,459.53 "
-       id="polygon18044" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.68,466.86 834.08,466.68 841.85,466.39 "
-       id="polygon18046" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="842.52,460.92 837.27,461.85 837.02,461.48 "
-       id="polygon18048" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.65,467.9 834.05,467.73 841.62,467.38 "
-       id="polygon18050" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.28,459.94 836.84,461.01 836.77,460.5 "
-       id="polygon18052" />
-    <line
-       x1="836.63"
-       y1="457.10001"
-       x2="836.63"
-       y2="457.10001"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18054" />
-    <polygon
-       style="opacity:1;fill:#003aa8"
-       points="846.46,461.95 856.96,462.67 857.24,462.93 "
-       id="polygon18056" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="856.33,462.64 845.52,462.14 845.82,461.92 "
-       id="polygon18058" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="855.84,465.62 866.41,466.66 856.11,465.88 "
-       id="polygon18060" />
-    <polygon
-       style="opacity:1;fill:#0042c0"
-       points="856.13,465.87 845.94,465.25 845.63,465.15 "
-       id="polygon18062" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="833.24,454.34 842.34,453.25 842.55,452.89 "
-       id="polygon18064" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="856.02,462.86 845.27,462.51 845.52,462.14 "
-       id="polygon18066" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="855.86,465.62 845.63,465.15 845.35,464.89 "
-       id="polygon18068" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="837.57,462.09 843.07,461.54 842.77,461.3 "
-       id="polygon18070" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="837.27,461.85 842.77,461.3 842.52,460.92 "
-       id="polygon18072" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.8,459.98 842.3,459.43 842.43,458.97 "
-       id="polygon18074" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.59,463.7 845.01,463.5 845.09,462.97 "
-       id="polygon18076" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.53,464.75 845.14,464.51 845.03,464.02 "
-       id="polygon18078" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.4,457.64 848.79,457.17 844.43,457.13 "
-       id="polygon18080" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="836.84,461.01 842.35,460.45 842.28,459.94 "
-       id="polygon18082" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.89,453.77 835.39,454.32 835.17,454.68 "
-       id="polygon18084" />
-    <polygon
-       style="opacity:1;fill:#004fe5"
-       points="843.71,461.57 845.51,461.43 843.99,461.35 "
-       id="polygon18086" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.67,454.13 835.17,454.68 835.04,455.14 "
-       id="polygon18088" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.76,456.08 835.26,456.63 835.51,457.01 "
-       id="polygon18090" />
-    <polygon
-       style="opacity:1;fill:#002772"
-       points="848.95,456.38 844.57,456.66 849.02,456.25 "
-       id="polygon18092" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.54,454.59 835.04,455.14 835.02,455.65 "
-       id="polygon18094" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.57,456.66 848.86,456.68 848.95,456.38 "
-       id="polygon18096" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.59,455.61 835.09,456.16 835.26,456.63 "
-       id="polygon18098" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.52,455.1 835.02,455.65 835.09,456.16 "
-       id="polygon18100" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="844.4,457.64 848.81,457.69 848.77,457.35 "
-       id="polygon18102" />
-    <polygon
-       style="opacity:1;fill:#002f8a"
-       points="845.82,461.92 856.33,462.64 856.65,462.57 "
-       id="polygon18104" />
-    <polygon
-       style="opacity:1;fill:#002771"
-       points="844.63,458.33 842.66,458.61 844.47,458.46 "
-       id="polygon18106" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.17,454.68 840.89,453.77 840.67,454.13 "
-       id="polygon18108" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="845.52,462.14 856.02,462.86 856.33,462.64 "
-       id="polygon18110" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="844.7,461.26 843.06,461.55 844.87,461.4 "
-       id="polygon18112" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.32,459.43 844.12,459.28 842.29,459.94 "
-       id="polygon18114" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.35,460.46 844.16,460.31 842.52,460.93 "
-       id="polygon18116" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="845.63,465.15 856.13,465.87 855.86,465.62 "
-       id="polygon18118" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.51,457.01 840.76,456.08 841.01,456.46 "
-       id="polygon18120" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.04,455.14 840.67,454.13 840.54,454.59 "
-       id="polygon18122" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.85,452.66 846.32,452.3 842.57,452.89 "
-       id="polygon18124" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.26,456.63 840.59,455.61 840.76,456.08 "
-       id="polygon18126" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="835.09,456.16 840.52,455.1 840.59,455.61 "
-       id="polygon18128" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="845.35,464.89 855.86,465.62 855.65,465.23 "
-       id="polygon18130" />
-    <line
-       x1="842.64001"
-       y1="458.16"
-       x2="842.63"
-       y2="458.13"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18132" />
-    <polygon
-       style="opacity:1;fill:#003db1"
-       points="841.52,453.8 841.5,453.46 841.18,453.54 "
-       id="polygon18134" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.29,459.94 844.12,459.28 844.11,459.5 "
-       id="polygon18136" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="845.09,462.97 855.59,463.7 855.77,463.23 "
-       id="polygon18138" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="844.47,458.46 845.82,458.35 844.38,458.61 "
-       id="polygon18140" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="845.03,464.02 855.53,464.75 855.51,464.22 "
-       id="polygon18142" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="852.66,466.65 842.14,466.02 841.89,466.39 "
-       id="polygon18144" />
-    <line
-       x1="842.33002"
-       y1="457.19"
-       x2="842.32001"
-       y2="457.14999"
-       style="stroke:#0058ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18146" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.4,467.02 841.89,466.39 841.72,466.85 "
-       id="polygon18148" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.29,469.02 841.78,468.39 841.99,468.77 "
-       id="polygon18150" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.57,452.89 846.32,452.3 846.11,452.47 "
-       id="polygon18152" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.17,468.54 841.66,467.9 841.78,468.39 "
-       id="polygon18154" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.15,468.01 841.64,467.38 841.66,467.9 "
-       id="polygon18156" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="840.9,453.76 843.04,453.46 841.18,453.54 "
-       id="polygon18158" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.47,459.17 844.11,459.5 845.44,459.68 "
-       id="polygon18160" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.51,460.2 844.23,460.51 845.68,460.67 "
-       id="polygon18162" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="841.3,456.71 843.09,456.39 841,456.46 "
-       id="polygon18164" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="848.86,456.68 857.35,455.81 848.95,456.38 "
-       id="polygon18166" />
-    <polygon
-       style="opacity:1;fill:#0025d7"
-       points="844.02,456.48 845.11,456.46 843.91,456.57 "
-       id="polygon18168" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.35,455.81 848.81,456.84 848.86,456.68 "
-       id="polygon18170" />
-    <polygon
-       style="opacity:1;fill:#002d85"
-       points="843.27,456.54 841.3,456.71 843.09,456.39 "
-       id="polygon18172" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="848.79,457.17 857.22,456.27 848.81,456.84 "
-       id="polygon18174" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.25,457.31 849,458.34 848.94,458.18 "
-       id="polygon18176" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="848.94,458.18 857.25,457.31 848.84,457.87 "
-       id="polygon18178" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="848.81,457.69 857.18,456.79 848.77,457.35 "
-       id="polygon18180" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.18,456.79 848.84,457.87 848.81,457.69 "
-       id="polygon18182" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.93,457.84 845.64,458.7 845.86,458.34 "
-       id="polygon18184" />
-    <line
-       x1="845.97998"
-       y1="458.48001"
-       x2="845.97998"
-       y2="458.48001"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18186" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.52,454.42 840.56,454.58 842.61,454.13 "
-       id="polygon18188" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.56,454.58 842.51,454.61 842.52,454.42 "
-       id="polygon18190" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="840.6,455.61 842.63,455.63 842.56,455.45 "
-       id="polygon18192" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="842.56,455.45 840.6,455.61 842.52,455.13 "
-       id="polygon18194" />
-    <polygon
-       style="opacity:1;fill:#00369f"
-       points="842.59,469.13 852.78,469.66 853.1,469.76 "
-       id="polygon18196" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="844.07,453.5 842.87,453.6 844.35,453.27 "
-       id="polygon18198" />
-    <polygon
-       style="opacity:1;fill:#002f8a"
-       points="842.14,466.02 852.96,466.43 852.66,466.65 "
-       id="polygon18200" />
-    <line
-       x1="845.52002"
-       y1="457.04001"
-       x2="845.51001"
-       y2="457.01001"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18202" />
-    <polygon
-       style="opacity:1;fill:#002c82"
-       points="842.27,469.03 852.5,469.41 852.78,469.66 "
-       id="polygon18204" />
-    <polygon
-       style="opacity:1;fill:#001685"
-       points="844.47,456.45 843.27,456.54 844.17,456.2 "
-       id="polygon18206" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="841.89,466.39 852.66,466.65 852.4,467.02 "
-       id="polygon18208" />
-    <line
-       x1="845.26001"
-       y1="456.25"
-       x2="845.25"
-       y2="456.20999"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18210" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.93,455.82 842.73,455.92 843.77,455.35 "
-       id="polygon18212" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.7,454.83 842.49,454.93 843.73,454.32 "
-       id="polygon18214" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.78,468.39 852.17,468.54 852.29,469.02 "
-       id="polygon18216" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="841.64,467.38 852.23,467.48 852.15,468.01 "
-       id="polygon18218" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.22,456.27 848.81,456.84 857.35,455.81 "
-       id="polygon18220" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.71,458.2 845.5,459.16 845.64,458.7 "
-       id="polygon18222" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.18,456.79 848.77,457.35 857.22,456.27 "
-       id="polygon18224" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.25,457.31 848.84,457.87 857.18,456.79 "
-       id="polygon18226" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="856.74,460.18 845.89,461.05 845.66,460.68 "
-       id="polygon18228" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.57,458.66 845.45,459.68 845.5,459.16 "
-       id="polygon18230" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="846.04,452.54 855.93,451.52 845.88,452.8 "
-       id="polygon18232" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.59,459.7 845.66,460.68 845.51,460.2 "
-       id="polygon18234" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.53,459.18 845.51,460.2 845.45,459.68 "
-       id="polygon18236" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.71,451.88 845.88,452.8 845.83,452.89 "
-       id="polygon18238" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.83,452.89 855.71,451.88 845.74,453.23 "
-       id="polygon18240" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="856.06,462.86 866.64,463.89 855.8,463.23 "
-       id="polygon18242" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="855.64,465.23 866.22,466.27 855.84,465.62 "
-       id="polygon18244" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.8,463.23 866.38,464.26 855.63,463.7 "
-       id="polygon18246" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.54,464.75 866.11,465.79 855.64,465.23 "
-       id="polygon18248" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.63,463.7 866.2,464.73 855.53,464.22 "
-       id="polygon18250" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="855.53,464.22 866.11,465.26 855.54,464.75 "
-       id="polygon18252" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.59,452.34 845.69,453.73 855.57,452.86 "
-       id="polygon18254" />
-    <polygon
-       style="opacity:1;fill:#001372"
-       points="855.3,452.85 844.1,453.48 843.88,453.85 "
-       id="polygon18256" />
-    <polygon
-       style="opacity:1;fill:#003aa9"
-       points="867.82,463.96 856.99,462.66 867.56,463.7 "
-       id="polygon18258" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.09,453.22 843.88,453.85 843.75,454.31 "
-       id="polygon18260" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.13,455.2 843.93,455.82 844.16,456.21 "
-       id="polygon18262" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="854.95,453.68 843.75,454.31 843.71,454.83 "
-       id="polygon18264" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="854.97,454.72 843.77,455.35 843.93,455.82 "
-       id="polygon18266" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="854.91,454.2 843.71,454.83 843.77,455.35 "
-       id="polygon18268" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.2,451.3 846.11,452.47 855.93,451.52 "
-       id="polygon18270" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.64,458.7 856.71,458.2 856.93,457.84 "
-       id="polygon18272" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="845.89,461.05 856.97,460.56 856.74,460.18 "
-       id="polygon18274" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.93,451.52 845.88,452.8 855.71,451.88 "
-       id="polygon18276" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.5,459.16 856.57,458.66 856.71,458.2 "
-       id="polygon18278" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.66,460.68 856.74,460.18 856.59,459.7 "
-       id="polygon18280" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.45,459.68 856.53,459.18 856.57,458.66 "
-       id="polygon18282" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="845.51,460.2 856.59,459.7 856.53,459.18 "
-       id="polygon18284" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.71,451.88 845.74,453.23 855.59,452.34 "
-       id="polygon18286" />
-    <polygon
-       style="opacity:1;fill:#002977"
-       points="866.94,463.67 856.06,462.86 866.64,463.89 "
-       id="polygon18288" />
-    <polygon
-       style="opacity:1;fill:#00369c"
-       points="853,466.42 863.06,467.3 853.32,466.36 "
-       id="polygon18290" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="866.41,466.66 856.11,465.88 866.68,466.92 "
-       id="polygon18292" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="866.63,463.9 855.8,463.23 866.38,464.26 "
-       id="polygon18294" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="866.22,466.27 855.84,465.62 866.41,466.66 "
-       id="polygon18296" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="852.7,466.65 862.74,467.38 853,466.42 "
-       id="polygon18298" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="866.38,464.27 855.63,463.7 866.2,464.73 "
-       id="polygon18300" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="866.11,465.79 855.64,465.23 866.22,466.27 "
-       id="polygon18302" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="866.2,464.73 855.53,464.22 866.11,465.26 "
-       id="polygon18304" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="866.11,465.26 855.54,464.75 866.11,465.79 "
-       id="polygon18306" />
-    <polygon
-       style="opacity:1;fill:#002977"
-       points="852.45,467.02 862.44,467.63 852.7,466.65 "
-       id="polygon18308" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.48,469.41 862.07,470 852.29,469.02 "
-       id="polygon18310" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.26,467.48 862.19,468 852.45,467.02 "
-       id="polygon18312" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.29,469.02 861.95,469.52 852.18,468.54 "
-       id="polygon18314" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="852.18,468.54 861.93,469 852.17,468.01 "
-       id="polygon18316" />
-    <polygon
-       style="opacity:1;fill:#001372"
-       points="843.88,453.85 855.3,452.85 855.09,453.22 "
-       id="polygon18318" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="844.16,456.21 855.13,455.2 855.36,455.58 "
-       id="polygon18320" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.75,454.31 855.09,453.22 854.95,453.68 "
-       id="polygon18322" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.93,455.82 854.97,454.72 855.13,455.2 "
-       id="polygon18324" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.71,454.83 854.95,453.68 854.91,454.2 "
-       id="polygon18326" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="843.77,455.35 854.91,454.2 854.97,454.72 "
-       id="polygon18328" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.09,456.14 857.25,456.26 857.19,456.79 "
-       id="polygon18330" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.09,457.19 857.23,457.31 857.38,457.79 "
-       id="polygon18332" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="862.46,467.59 852.7,466.65 862.74,467.38 "
-       id="polygon18334" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="862.51,470.62 852.75,469.67 862.27,470.38 "
-       id="polygon18336" />
-    <polygon
-       style="opacity:1;fill:#002977"
-       points="862.21,467.96 852.45,467.02 862.44,467.63 "
-       id="polygon18338" />
-    <line
-       x1="856.90997"
-       y1="457.42001"
-       x2="856.90002"
-       y2="457.38"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18340" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="862.25,470.36 852.48,469.41 862.07,470 "
-       id="polygon18342" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="862.02,468.43 852.26,467.48 862.19,468 "
-       id="polygon18344" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="862.05,469.97 852.29,469.02 861.95,469.52 "
-       id="polygon18346" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="861.93,468.95 852.17,468.01 862.02,468.47 "
-       id="polygon18348" />
-    <line
-       x1="856.52002"
-       y1="456.04001"
-       x2="856.51001"
-       y2="456"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18350" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856,451.5 866.49,451.2 855.77,451.86 "
-       id="polygon18352" />
-    <polygon
-       style="opacity:1;fill:#001daa"
-       points="867.64,463.7 878.34,465.07 878.6,465.33 "
-       id="polygon18354" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="877.73,465.04 866.72,463.9 867.02,463.67 "
-       id="polygon18356" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.63,452.33 866.13,452.03 855.59,452.85 "
-       id="polygon18358" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.38,457.79 870.09,457.19 870.23,457.67 "
-       id="polygon18360" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="869.05,458.57 856.61,458.65 856.77,458.18 "
-       id="polygon18362" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="857.19,456.79 870.09,456.14 870.04,456.66 "
-       id="polygon18364" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="887.74,469.35 877.13,468.04 876.96,467.65 "
-       id="polygon18366" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="877.15,468.04 866.7,466.92 866.44,466.67 "
-       id="polygon18368" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="868.98,460.57 856.91,460.57 856.7,460.18 "
-       id="polygon18370" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="877.43,465.27 866.46,464.27 866.72,463.9 "
-       id="polygon18372" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="868.82,459.56 856.58,459.7 856.55,459.18 "
-       id="polygon18374" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="876.97,467.65 866.44,466.67 866.26,466.28 "
-       id="polygon18376" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="877.17,465.64 866.27,464.74 866.46,464.27 "
-       id="polygon18378" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="863.11,470.44 862.51,470.62 862.27,470.38 "
-       id="polygon18380" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="863.32,467.68 862.46,467.59 863.63,467.45 "
-       id="polygon18382" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="863.37,470.7 863.46,470.38 863.71,470.46 "
-       id="polygon18384" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.88,467.17 866.26,466.28 866.16,465.79 "
-       id="polygon18386" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.98,466.11 866.17,465.26 866.27,464.74 "
-       id="polygon18388" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.88,466.64 866.16,465.79 866.17,465.26 "
-       id="polygon18390" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.89,468.51 861.93,468.95 862.02,468.47 "
-       id="polygon18392" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.8,469.57 861.94,469.48 862.8,469.04 "
-       id="polygon18394" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855,453.67 865.08,453.34 855.15,453.2 "
-       id="polygon18396" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.34,455.59 865.14,455.33 855.12,455.21 "
-       id="polygon18398" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="854.99,454.73 864.93,454.35 854.95,454.2 "
-       id="polygon18400" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.45,451.28 855.77,451.86 866.27,451.56 "
-       id="polygon18402" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="855.59,452.85 866.13,452.03 866.12,452.14 "
-       id="polygon18404" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.12,452.14 855.59,452.85 866.08,452.55 "
-       id="polygon18406" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="866.72,463.9 877.43,465.27 877.73,465.04 "
-       id="polygon18408" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="866.7,466.92 877.41,468.3 877.15,468.04 "
-       id="polygon18410" />
-    <polygon
-       style="opacity:1;fill:#001b9d"
-       points="874.7,468.78 863.99,467.38 863.67,467.45 "
-       id="polygon18412" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.46,464.27 877.17,465.64 877.43,465.27 "
-       id="polygon18414" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.77,458.18 869.05,458.57 869.29,458.2 "
-       id="polygon18416" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="866.44,466.67 877.15,468.04 876.97,467.65 "
-       id="polygon18418" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.27,464.74 876.98,466.11 877.17,465.64 "
-       id="polygon18420" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.26,466.28 876.97,467.65 876.88,467.17 "
-       id="polygon18422" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="874.38,468.85 863.67,467.45 863.37,467.68 "
-       id="polygon18424" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.17,465.26 876.88,466.64 876.98,466.11 "
-       id="polygon18426" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.7,460.18 868.98,460.57 868.85,460.09 "
-       id="polygon18428" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="866.16,465.79 876.88,467.17 876.88,466.64 "
-       id="polygon18430" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="856.55,459.18 868.82,459.56 868.89,459.04 "
-       id="polygon18432" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="874.08,469.08 863.37,467.68 863.11,468.04 "
-       id="polygon18434" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.19,457.67 871.97,457.72 870.07,457.19 "
-       id="polygon18436" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.06,456.66 871.86,456.7 870.14,456.13 "
-       id="polygon18438" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.62,471.46 862.9,470.05 863.09,470.45 "
-       id="polygon18440" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="865.3,455.63 855.34,455.59 865.14,455.33 "
-       id="polygon18442" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.82,469.45 863.11,468.04 862.92,468.52 "
-       id="polygon18444" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="864.97,453.7 855,453.67 865.08,453.34 "
-       id="polygon18446" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.52,470.98 862.81,469.57 862.9,470.05 "
-       id="polygon18448" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.63,469.92 862.92,468.52 862.82,469.04 "
-       id="polygon18450" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.53,470.45 862.82,469.04 862.81,469.57 "
-       id="polygon18452" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="864.95,454.76 854.99,454.73 864.93,454.35 "
-       id="polygon18454" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.14,456.13 871.86,456.7 871.93,456.25 "
-       id="polygon18456" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="870.07,457.19 871.97,457.72 871.87,457.3 "
-       id="polygon18458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.25,451.48 866.45,451.28 866.27,451.56 "
-       id="polygon18460" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="866.27,451.56 869.25,451.48 866.24,451.66 "
-       id="polygon18462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.06,452.46 866.12,452.14 866.08,452.55 "
-       id="polygon18464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="866.08,452.55 869.06,452.46 866.09,452.66 "
-       id="polygon18466" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="863.37,467.68 874.38,468.85 874.08,469.08 "
-       id="polygon18468" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="863.34,470.7 873.8,471.85 874.05,472.11 "
-       id="polygon18470" />
-    <polygon
-       style="opacity:1;fill:#001478"
-       points="863.11,468.04 874.08,469.08 873.82,469.45 "
-       id="polygon18472" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="863.09,470.45 873.62,471.46 873.8,471.85 "
-       id="polygon18474" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.92,468.52 873.82,469.45 873.63,469.92 "
-       id="polygon18476" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.9,470.05 873.52,470.98 873.62,471.46 "
-       id="polygon18478" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.82,469.04 873.63,469.92 873.53,470.45 "
-       id="polygon18480" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="862.81,469.57 873.53,470.45 873.52,470.98 "
-       id="polygon18482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="894.14,460.09 883.06,458.51 883.24,458.9 "
-       id="polygon18484" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="872.41,458.4 883.3,458.9 872.19,458.18 "
-       id="polygon18486" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.14,453.24 864.97,453.7 865.08,453.34 "
-       id="polygon18488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.11,455.25 865.3,455.63 865.14,455.33 "
-       id="polygon18490" />
-    <polygon
-       style="opacity:1;fill:#0025da"
-       points="888.45,470.09 877.98,468.32 877.67,468.39 "
-       id="polygon18492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="867.94,454.24 864.95,454.76 864.93,454.35 "
-       id="polygon18494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="871.86,456.7 883.04,456.97 871.93,456.25 "
-       id="polygon18496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="871.97,457.72 882.98,458.03 871.87,457.3 "
-       id="polygon18498" />
-    <polygon
-       style="opacity:1;fill:#001579"
-       points="888.54,466.73 877.46,465.27 877.77,465.04 "
-       id="polygon18500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.32,455.63 865.3,455.63 868.11,455.25 "
-       id="polygon18502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="867.99,453.71 864.97,453.7 868.14,453.24 "
-       id="polygon18504" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="898.54,471.34 887.89,469.73 887.73,469.34 "
-       id="polygon18506" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="887.91,469.73 877.38,468.3 877.13,468.04 "
-       id="polygon18508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="867.98,454.77 864.95,454.76 867.94,454.24 "
-       id="polygon18510" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="888.24,466.96 877.2,465.64 877.46,465.27 "
-       id="polygon18512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="883.3,458.9 872.19,458.18 883.09,458.51 "
-       id="polygon18514" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="882.31,459.25 870.26,457.93 870.25,457.92 "
-       id="polygon18516" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="869.95,461.35 882.01,462.68 870.25,461.28 "
-       id="polygon18518" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.98,467.34 877.01,466.11 877.2,465.64 "
-       id="polygon18520" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.66,468.86 876.96,467.65 876.88,467.17 "
-       id="polygon18522" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.78,467.8 876.89,466.64 877.01,466.11 "
-       id="polygon18524" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.67,468.33 876.88,467.17 876.89,466.64 "
-       id="polygon18526" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="869.94,457.99 882,459.31 869.64,458.22 "
-       id="polygon18528" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="881.71,462.57 881.46,462.32 876.07,461.95 "
-       id="polygon18530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.17,461.45 881.27,461.93 877.34,461.17 "
-       id="polygon18532" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="904.07,466.91 893.29,464.46 892.98,464.53 "
-       id="polygon18534" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="892.7,464.43 892.47,464.18 896.59,465.2 "
-       id="polygon18536" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="881.41,462.32 892.51,464.18 892.34,463.79 "
-       id="polygon18538" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.35,465.69 892.32,463.79 892.26,463.31 "
-       id="polygon18540" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="892.34,463.79 881.41,462.32 881.24,461.93 "
-       id="polygon18542" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="869.4,460.99 881.46,462.32 869.64,461.25 "
-       id="polygon18544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.64,458.22 881.7,459.54 869.39,458.58 "
-       id="polygon18546" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="869.21,460.61 881.27,461.93 869.39,460.98 "
-       id="polygon18548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.39,458.59 881.45,459.91 869.21,459.05 "
-       id="polygon18550" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="870.5,450.89 882.63,452.07 882.88,452.33 "
-       id="polygon18552" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="882.03,452.05 869.61,451.09 869.9,450.86 "
-       id="polygon18554" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.11,460.12 881.17,461.45 869.21,460.59 "
-       id="polygon18556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.21,459.06 881.27,460.38 869.11,459.57 "
-       id="polygon18558" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.11,459.59 881.17,460.91 869.11,460.11 "
-       id="polygon18560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.74,452.28 869.37,451.46 869.61,451.09 "
-       id="polygon18562" />
-    <polygon
-       style="opacity:1;fill:#00188d"
-       points="877.77,465.04 888.54,466.73 888.85,466.67 "
-       id="polygon18564" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="881.2,457.42 868.76,455.99 869.05,455.92 "
-       id="polygon18566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.5,452.65 869.19,451.93 869.37,451.46 "
-       id="polygon18568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.32,453.12 869.1,452.46 869.19,451.93 "
-       id="polygon18570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="882.98,458.03 871.87,457.3 882.96,457.5 "
-       id="polygon18572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.23,453.65 869.11,452.99 869.1,452.46 "
-       id="polygon18574" />
-    <polygon
-       style="opacity:1;fill:#001579"
-       points="877.46,465.27 888.24,466.96 888.54,466.73 "
-       id="polygon18576" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="877.38,468.3 888.15,469.99 887.91,469.73 "
-       id="polygon18578" />
-    <polygon
-       style="opacity:1;fill:#0021c1"
-       points="885.09,473.95 874.32,472.2 874.63,472.13 "
-       id="polygon18580" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="877.2,465.64 887.98,467.34 888.24,466.96 "
-       id="polygon18582" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="877.13,468.04 887.91,469.73 887.74,469.35 "
-       id="polygon18584" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="880.92,457.33 880.69,457.07 876.76,456.85 "
-       id="polygon18586" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="882.97,458.03 894.06,459.07 894.05,459.6 "
-       id="polygon18588" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.92,459.09 880.48,456.68 880.63,457.07 "
-       id="polygon18590" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="880.69,457.07 868.25,455.64 868.48,455.89 "
-       id="polygon18592" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.11,452.99 881.23,454.18 881.23,453.65 "
-       id="polygon18594" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="880.94,454.29 868.51,452.87 868.27,453.24 "
-       id="polygon18596" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="877.01,466.11 887.78,467.8 887.98,467.34 "
-       id="polygon18598" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.96,467.65 887.74,469.35 887.66,468.86 "
-       id="polygon18600" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.89,466.64 887.67,468.33 887.78,467.8 "
-       id="polygon18602" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="876.88,467.17 887.66,468.86 887.67,468.33 "
-       id="polygon18604" />
-    <polygon
-       style="opacity:1;fill:#001fb8"
-       points="875.03,468.88 886.04,470.88 885.8,470.62 "
-       id="polygon18606" />
-    <polygon
-       style="opacity:1;fill:#00188d"
-       points="885.19,470.59 874.42,468.85 874.12,469.08 "
-       id="polygon18608" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="880.84,457.32 880.63,457.07 883.87,457.85 "
-       id="polygon18610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.25,455.64 880.52,456.68 880.69,457.07 "
-       id="polygon18612" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="894.05,459.6 882.97,458.03 883.06,458.51 "
-       id="polygon18614" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="894.56,460.73 894.32,460.48 889.66,460.04 "
-       id="polygon18616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="894.27,460.47 894.11,460.08 899.91,461.46 "
-       id="polygon18618" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="883.06,458.51 894.05,459.6 894.14,460.09 "
-       id="polygon18620" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.99,459.46 892.85,459.07 895.53,460.01 "
-       id="polygon18622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.92,459.09 892.86,458.61 888.75,458.28 "
-       id="polygon18624" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.96,461.06 892.86,458.07 892.8,458.6 "
-       id="polygon18626" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.86,458.61 880.43,456.2 880.48,456.68 "
-       id="polygon18628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.52,456.68 868.09,455.25 868.25,455.64 "
-       id="polygon18630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.71,454.66 868.27,453.24 868.1,453.71 "
-       id="polygon18632" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.43,456.2 868,454.77 868.09,455.25 "
-       id="polygon18634" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.17,475.23 884.37,473.2 884.53,473.59 "
-       id="polygon18636" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="884.55,473.59 873.78,471.85 874.02,472.11 "
-       id="polygon18638" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="868.26,453.82 880.7,455.25 880.62,455.68 "
-       id="polygon18640" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.53,455.14 868.1,453.71 868,454.24 "
-       id="polygon18642" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.44,455.67 868,454.24 868,454.77 "
-       id="polygon18644" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="884.89,470.82 874.12,469.08 873.85,469.45 "
-       id="polygon18646" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="882,459.31 869.64,458.22 881.7,459.54 "
-       id="polygon18648" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.38,473.21 873.61,471.46 873.78,471.85 "
-       id="polygon18650" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="869.64,461.25 881.46,462.32 876.07,461.95 "
-       id="polygon18652" />
-    <polygon
-       style="opacity:1;fill:#002af6"
-       points="873.99,469.66 884.76,471.4 884.6,471.78 "
-       id="polygon18654" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.63,471.19 873.85,469.45 873.66,469.92 "
-       id="polygon18656" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.3,472.72 873.53,470.98 873.61,471.46 "
-       id="polygon18658" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.43,471.66 873.66,469.92 873.54,470.45 "
-       id="polygon18660" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.32,472.19 873.54,470.45 873.53,470.98 "
-       id="polygon18662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.7,459.54 869.39,458.58 881.45,459.91 "
-       id="polygon18664" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="881.27,461.93 869.39,460.98 881.46,462.32 "
-       id="polygon18666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.45,459.91 869.21,459.05 881.27,460.38 "
-       id="polygon18668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.21,460.59 881.27,461.93 877.34,461.17 "
-       id="polygon18670" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="869.61,451.09 881.74,452.28 882.03,452.05 "
-       id="polygon18672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.27,460.38 869.11,459.57 881.17,460.91 "
-       id="polygon18674" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.27,463.31 881.24,461.93 881.16,461.44 "
-       id="polygon18676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.17,460.91 869.11,460.11 881.17,461.45 "
-       id="polygon18678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.37,451.46 881.5,452.65 881.74,452.28 "
-       id="polygon18680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.19,451.93 881.32,453.12 881.5,452.65 "
-       id="polygon18682" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="869.1,452.46 881.23,453.65 881.32,453.12 "
-       id="polygon18684" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="868.48,455.89 880.69,457.07 876.76,456.85 "
-       id="polygon18686" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="868.27,453.24 880.94,454.29 880.71,454.66 "
-       id="polygon18688" />
-    <polygon
-       style="opacity:1;fill:#00188d"
-       points="874.12,469.08 885.19,470.59 884.89,470.82 "
-       id="polygon18690" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="874.02,472.11 884.55,473.59 884.8,473.85 "
-       id="polygon18692" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.1,453.71 880.71,454.66 880.53,455.14 "
-       id="polygon18694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868.09,455.25 880.43,456.2 880.52,456.68 "
-       id="polygon18696" />
-    <line
-       x1="883.07001"
-       y1="459.45001"
-       x2="883.07001"
-       y2="459.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868,454.24 880.53,455.14 880.44,455.67 "
-       id="polygon18700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="868,454.77 880.44,455.67 880.43,456.2 "
-       id="polygon18702" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="873.85,469.45 884.89,470.82 884.63,471.19 "
-       id="polygon18704" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.78,471.85 884.38,473.21 884.55,473.59 "
-       id="polygon18706" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="894.86,460.83 883.78,459.26 884.09,459.19 "
-       id="polygon18708" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.66,469.92 884.63,471.19 884.43,471.66 "
-       id="polygon18710" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.61,471.46 884.3,472.72 884.38,473.21 "
-       id="polygon18712" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.54,470.45 884.43,471.66 884.32,472.19 "
-       id="polygon18714" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="873.53,470.98 884.32,472.19 884.3,472.72 "
-       id="polygon18716" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="894.32,460.48 883.24,458.9 883.48,459.16 "
-       id="polygon18718" />
-    <polygon
-       style="opacity:1;fill:#001dab"
-       points="889.17,466.77 899.98,468.76 900.22,469.02 "
-       id="polygon18720" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="899.39,468.73 888.27,466.97 888.57,466.74 "
-       id="polygon18722" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="898.7,471.73 888.13,469.99 887.89,469.73 "
-       id="polygon18724" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="899.09,468.96 888,467.34 888.27,466.97 "
-       id="polygon18726" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.82,469.33 887.8,467.81 888,467.34 "
-       id="polygon18728" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.47,470.86 887.73,469.34 887.66,468.86 "
-       id="polygon18730" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.62,469.8 887.68,468.33 887.8,467.81 "
-       id="polygon18732" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.5,470.33 887.66,468.86 887.68,468.33 "
-       id="polygon18734" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="882.66,459.35 893.76,461.21 894,461.47 "
-       id="polygon18736" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="893.16,461.18 881.76,459.55 882.07,459.32 "
-       id="polygon18738" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="894.64,454.26 882.14,452.06 882.44,451.99 "
-       id="polygon18740" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.86,461.41 881.5,459.91 881.76,459.55 "
-       id="polygon18742" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="883.48,459.16 894.32,460.48 889.66,460.04 "
-       id="polygon18744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.6,461.78 881.3,460.39 881.5,459.91 "
-       id="polygon18746" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="894.35,454.34 881.85,452.29 882.14,452.06 "
-       id="polygon18748" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.4,462.25 881.18,460.91 881.3,460.39 "
-       id="polygon18750" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.29,462.78 881.16,461.44 881.18,460.91 "
-       id="polygon18752" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="883.24,458.9 894.14,460.09 894.32,460.48 "
-       id="polygon18754" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="888.13,469.99 898.94,471.98 898.7,471.73 "
-       id="polygon18756" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="888.27,466.97 899.09,468.96 899.39,468.73 "
-       id="polygon18758" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="894.05,454.57 881.59,452.66 881.85,452.29 "
-       id="polygon18760" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="887.89,469.73 898.7,471.73 898.54,471.34 "
-       id="polygon18762" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="888,467.34 898.82,469.33 899.09,468.96 "
-       id="polygon18764" />
-    <polygon
-       style="opacity:1;fill:#001fb8"
-       points="885.82,470.63 896.86,472.91 896.63,472.65 "
-       id="polygon18766" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="896.34,472.55 885.54,470.53 885.22,470.6 "
-       id="polygon18768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.79,454.93 881.39,453.13 881.59,452.66 "
-       id="polygon18770" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.44,456.46 881.3,454.66 881.23,454.18 "
-       id="polygon18772" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.73,469.34 898.54,471.34 898.47,470.86 "
-       id="polygon18774" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.8,467.81 898.62,469.8 898.82,469.33 "
-       id="polygon18776" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.59,455.41 881.27,453.65 881.39,453.13 "
-       id="polygon18778" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.47,455.93 881.23,454.18 881.27,453.65 "
-       id="polygon18780" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="893.05,459.47 880.63,457.07 883.87,457.85 "
-       id="polygon18782" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.66,468.86 898.47,470.86 898.5,470.33 "
-       id="polygon18784" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="887.68,468.33 898.5,470.33 898.62,469.8 "
-       id="polygon18786" />
-    <polygon
-       style="opacity:1;fill:#00188e"
-       points="896.03,472.62 885.22,470.6 884.92,470.83 "
-       id="polygon18788" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.3,454.66 893.5,456.95 893.44,456.46 "
-       id="polygon18790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.47,456.94 905.63,459.97 905.59,459.49 "
-       id="polygon18792" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.56,462.89 917.62,462.37 913.32,461.69 "
-       id="polygon18794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.07,466.05 917.57,462.36 917.73,461.84 "
-       id="polygon18796" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.62,462.37 905.56,459.48 905.62,458.96 "
-       id="polygon18798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.59,459.49 893.47,456.94 893.43,456.46 "
-       id="polygon18800" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="893.47,456.71 881.04,454.3 880.78,454.68 "
-       id="polygon18802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.21,457.08 880.78,454.68 880.59,455.14 "
-       id="polygon18804" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="895.72,472.85 884.92,470.83 884.65,471.2 "
-       id="polygon18806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.02,457.55 880.59,455.14 880.46,455.67 "
-       id="polygon18808" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.85,459.07 892.8,458.6 895.92,459.71 "
-       id="polygon18810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.43,456.2 892.9,458.08 892.86,458.61 "
-       id="polygon18812" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.1,460.54 893,457.55 892.86,458.07 "
-       id="polygon18814" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.9,458.08 880.46,455.67 880.43,456.2 "
-       id="polygon18816" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.45,473.22 884.65,471.2 884.45,471.66 "
-       id="polygon18818" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.1,474.75 884.3,472.72 884.37,473.2 "
-       id="polygon18820" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.25,473.69 884.45,471.66 884.32,472.19 "
-       id="polygon18822" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.13,474.21 884.32,472.19 884.3,472.72 "
-       id="polygon18824" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="881.65,462.57 892.75,464.44 892.51,464.18 "
-       id="polygon18826" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="881.76,459.55 892.86,461.41 893.16,461.18 "
-       id="polygon18828" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.5,459.91 892.6,461.78 892.86,461.41 "
-       id="polygon18830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.24,461.93 892.34,463.79 892.27,463.31 "
-       id="polygon18832" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.3,460.39 892.4,462.25 892.6,461.78 "
-       id="polygon18834" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.16,461.44 892.27,463.31 892.29,462.78 "
-       id="polygon18836" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.18,460.91 892.29,462.78 892.4,462.25 "
-       id="polygon18838" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="881.85,452.29 894.05,454.57 894.35,454.34 "
-       id="polygon18840" />
-    <polygon
-       style="opacity:1;fill:#0021c1"
-       points="885.37,473.88 895.86,475.97 896.17,475.9 "
-       id="polygon18842" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.59,452.66 893.79,454.93 894.05,454.57 "
-       id="polygon18844" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="880.84,457.32 893.05,459.47 893.27,459.73 "
-       id="polygon18846" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.39,453.13 893.59,455.41 893.79,454.93 "
-       id="polygon18848" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.23,454.18 893.44,456.46 893.47,455.93 "
-       id="polygon18850" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="881.27,453.65 893.47,455.93 893.59,455.41 "
-       id="polygon18852" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="884.77,473.85 895.34,475.62 895.57,475.88 "
-       id="polygon18854" />
-    <polygon
-       style="opacity:1;fill:#00188e"
-       points="884.92,470.83 896.03,472.62 895.72,472.85 "
-       id="polygon18856" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.63,457.07 892.92,459.09 893.05,459.47 "
-       id="polygon18858" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="880.78,454.68 893.47,456.71 893.21,457.08 "
-       id="polygon18860" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.48,456.68 892.86,458.61 888.75,458.28 "
-       id="polygon18862" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.59,455.14 893.21,457.08 893.02,457.55 "
-       id="polygon18864" />
-    <polygon
-       style="opacity:1;fill:#0021c1"
-       points="907.29,478.34 895.84,475.97 896.15,475.9 "
-       id="polygon18866" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="895.55,475.87 895.32,475.62 902.01,477.09 "
-       id="polygon18868" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.53,473.59 895.17,475.23 895.34,475.62 "
-       id="polygon18870" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="884.65,471.2 895.72,472.85 895.45,473.22 "
-       id="polygon18872" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="880.46,455.67 893.02,457.55 892.9,458.08 "
-       id="polygon18874" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.37,473.2 895.1,474.75 895.17,475.23 "
-       id="polygon18876" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.45,471.66 895.45,473.22 895.25,473.69 "
-       id="polygon18878" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.3,472.72 895.13,474.21 895.1,474.75 "
-       id="polygon18880" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="884.32,472.19 895.25,473.69 895.13,474.21 "
-       id="polygon18882" />
-    <line
-       x1="898.31"
-       y1="471.79001"
-       x2="898.28998"
-       y2="471.81"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18884" />
-    <polygon
-       style="opacity:1;fill:#001dac"
-       points="900.01,468.76 911.48,471.13 911.71,471.38 "
-       id="polygon18886" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="911.2,471.03 899.41,468.73 899.72,468.66 "
-       id="polygon18888" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="910.89,471.1 899.11,468.96 899.41,468.73 "
-       id="polygon18890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.2,462.39 894.11,460.08 899.91,461.46 "
-       id="polygon18892" />
-    <line
-       x1="897.34003"
-       y1="472.85001"
-       x2="897.34003"
-       y2="472.85001"
-       style="stroke:#002cff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line18894" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910.59,471.33 898.84,469.33 899.11,468.96 "
-       id="polygon18896" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="910.01,473.71 898.69,471.73 898.53,471.34 "
-       id="polygon18898" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910.31,471.7 898.63,469.8 898.84,469.33 "
-       id="polygon18900" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="909.95,473.22 898.53,471.34 898.47,470.86 "
-       id="polygon18902" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910.11,472.17 898.5,470.33 898.63,469.8 "
-       id="polygon18904" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="909.98,472.7 898.47,470.86 898.5,470.33 "
-       id="polygon18906" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="893.81,461.22 904.9,463.6 905.13,463.86 "
-       id="polygon18908" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="904.31,463.57 892.91,461.42 893.21,461.19 "
-       id="polygon18910" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="903.79,466.82 903.56,466.56 896.97,465.35 "
-       id="polygon18912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.35,465.69 903.41,466.18 899.2,464.98 "
-       id="polygon18914" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.45,471.71 914.44,469 914.41,468.52 "
-       id="polygon18916" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="914.46,469 903.53,466.55 903.39,466.17 "
-       id="polygon18918" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="903.56,466.56 892.47,464.18 896.59,465.2 "
-       id="polygon18920" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904,463.8 892.64,461.79 892.91,461.42 "
-       id="polygon18922" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="903.41,466.18 892.47,464.18 892.32,463.79 "
-       id="polygon18924" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="894.5,460.73 905.35,462.78 905.59,463.04 "
-       id="polygon18926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.73,464.17 892.43,462.25 892.64,461.79 "
-       id="polygon18928" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="894.99,454.38 907.14,457.4 907.36,457.65 "
-       id="polygon18930" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="906.88,457.3 894.42,454.35 894.72,454.28 "
-       id="polygon18932" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.52,464.64 892.29,462.78 892.43,462.25 "
-       id="polygon18934" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.39,465.16 892.26,463.31 892.29,462.78 "
-       id="polygon18936" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="905.53,463.02 905.31,462.77 909.33,463.95 "
-       id="polygon18938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="894.27,460.47 905.2,462.39 905.35,462.78 "
-       id="polygon18940" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="898.92,471.98 910.39,474.35 910.16,474.09 "
-       id="polygon18942" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="899.11,468.96 910.59,471.33 910.89,471.1 "
-       id="polygon18944" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="906.58,457.38 894.12,454.58 894.42,454.35 "
-       id="polygon18946" />
-    <polygon
-       style="opacity:1;fill:#0025da"
-       points="922.13,476.96 910.97,474.37 910.66,474.44 "
-       id="polygon18948" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="910.38,474.35 910.15,474.09 916.92,475.67 "
-       id="polygon18950" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="898.69,471.73 910.16,474.09 910.01,473.71 "
-       id="polygon18952" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.84,469.33 910.31,471.7 910.59,471.33 "
-       id="polygon18954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="906.28,457.61 893.84,454.95 894.12,454.58 "
-       id="polygon18956" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="921.46,476.23 910.15,474.09 910,473.7 "
-       id="polygon18958" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.53,471.34 910.01,473.71 909.95,473.22 "
-       id="polygon18960" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.63,469.8 910.11,472.17 910.31,471.7 "
-       id="polygon18962" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.47,470.86 909.95,473.22 909.98,472.7 "
-       id="polygon18964" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="906,457.97 893.63,455.41 893.84,454.95 "
-       id="polygon18966" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="898.5,470.33 909.98,472.7 910.11,472.17 "
-       id="polygon18968" />
-    <polygon
-       style="opacity:1;fill:#001fb8"
-       points="896.64,472.65 908.33,475.27 908.1,475.02 "
-       id="polygon18970" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="907.5,474.99 896.05,472.63 895.74,472.86 "
-       id="polygon18972" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.79,458.44 893.48,455.93 893.63,455.41 "
-       id="polygon18974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.19,469.88 931.89,466.56 932.06,466.05 "
-       id="polygon18976" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="931.91,466.57 917.51,462.88 917.57,462.36 "
-       id="polygon18978" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.56,462.89 905.59,459.96 905.56,459.48 "
-       id="polygon18980" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="905.6,459.7 893.49,456.72 893.22,457.08 "
-       id="polygon18982" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.64,458.96 893.43,456.46 893.48,455.93 "
-       id="polygon18984" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="906.77,477.99 895.32,475.62 902.01,477.09 "
-       id="polygon18986" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.09,462.45 904.95,462.07 902.96,461.92 "
-       id="polygon18988" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.32,464.74 904.82,461.57 904.87,462.05 "
-       id="polygon18990" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.95,462.07 892.85,459.07 895.53,460.01 "
-       id="polygon18992" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="907.2,475.22 895.74,472.86 895.47,473.22 "
-       id="polygon18994" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.32,460.07 893.22,457.08 893,457.55 "
-       id="polygon18996" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.95,462.07 904.91,461.59 902.93,461.57 "
-       id="polygon18998" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.1,460.54 904.96,461.06 903.3,460.18 "
-       id="polygon19000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.38,464.21 904.87,461.04 904.82,461.57 "
-       id="polygon19002" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.91,461.59 892.8,458.6 895.92,459.71 "
-       id="polygon19004" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.62,477.6 895.16,475.23 895.32,475.62 "
-       id="polygon19006" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="893.21,461.19 904.31,463.57 904.62,463.5 "
-       id="polygon19008" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.93,475.59 895.47,473.22 895.26,473.69 "
-       id="polygon19010" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.55,477.12 895.1,474.75 895.16,475.23 "
-       id="polygon19012" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.71,476.06 895.26,473.69 895.13,474.22 "
-       id="polygon19014" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.59,476.59 895.13,474.22 895.1,474.75 "
-       id="polygon19016" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="892.7,464.43 903.56,466.56 896.97,465.35 "
-       id="polygon19018" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="892.91,461.42 904,463.8 904.31,463.57 "
-       id="polygon19020" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="892.47,464.18 903.56,466.56 903.41,466.18 "
-       id="polygon19022" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.64,461.79 903.73,464.17 904,463.8 "
-       id="polygon19024" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.32,463.79 903.41,466.18 899.2,464.98 "
-       id="polygon19026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.43,462.25 903.52,464.64 903.73,464.17 "
-       id="polygon19028" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.26,463.31 903.35,465.69 903.39,465.16 "
-       id="polygon19030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.29,462.78 903.39,465.16 903.52,464.64 "
-       id="polygon19032" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="894.12,454.58 906.28,457.61 906.58,457.38 "
-       id="polygon19034" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.87,462.05 905.02,462.43 907.82,462.86 "
-       id="polygon19036" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="893.2,459.71 905.09,462.45 905.3,462.7 "
-       id="polygon19038" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.84,454.95 906,457.97 906.28,457.61 "
-       id="polygon19040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.63,455.41 905.79,458.44 906,457.97 "
-       id="polygon19042" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="895.55,475.87 906.77,477.99 907.01,478.24 "
-       id="polygon19044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.43,456.46 905.59,459.49 905.64,458.96 "
-       id="polygon19046" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="895.74,472.86 907.5,474.99 907.2,475.22 "
-       id="polygon19048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.99,459.46 904.95,462.07 902.96,461.92 "
-       id="polygon19050" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893.48,455.93 905.64,458.96 905.79,458.44 "
-       id="polygon19052" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.02,460.52 905.26,460.05 907.85,461.17 "
-       id="polygon19054" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="893.22,457.08 905.6,459.7 905.32,460.07 "
-       id="polygon19056" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.85,459.07 904.91,461.59 902.93,461.57 "
-       id="polygon19058" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.32,475.62 906.62,477.6 906.77,477.99 "
-       id="polygon19060" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="895.47,473.22 907.2,475.22 906.93,475.59 "
-       id="polygon19062" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="893,457.55 905.32,460.07 905.1,460.54 "
-       id="polygon19064" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.8,458.6 904.96,461.06 904.91,461.59 "
-       id="polygon19066" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="892.86,458.07 904.96,461.06 903.3,460.18 "
-       id="polygon19068" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.16,475.23 906.55,477.12 906.62,477.6 "
-       id="polygon19070" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.26,473.69 906.93,475.59 906.71,476.06 "
-       id="polygon19072" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.1,474.75 906.59,476.59 906.55,477.12 "
-       id="polygon19074" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="895.13,474.22 906.71,476.06 906.59,476.59 "
-       id="polygon19076" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="916.4,465.68 905.31,462.77 909.33,463.95 "
-       id="polygon19078" />
-    <polygon
-       style="opacity:1;fill:#001dac"
-       points="911.5,471.13 922.96,473.64 923.2,473.9 "
-       id="polygon19080" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="922.37,473.62 910.59,471.33 910.9,471.1 "
-       id="polygon19082" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="921.62,476.61 910.15,474.09 916.92,475.67 "
-       id="polygon19084" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="906.59,457.71 906.29,457.61 906.61,457.39 "
-       id="polygon19086" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="922.07,473.85 910.32,471.7 910.59,471.33 "
-       id="polygon19088" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.79,474.22 910.11,472.17 910.32,471.7 "
-       id="polygon19090" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.41,475.74 910,473.7 909.94,473.22 "
-       id="polygon19092" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.58,474.69 909.98,472.7 910.11,472.17 "
-       id="polygon19094" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.45,475.21 909.94,473.22 909.98,472.7 "
-       id="polygon19096" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="915.74,466.34 904.36,463.58 904.66,463.51 "
-       id="polygon19098" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="915.43,466.41 904.04,463.81 904.36,463.58 "
-       id="polygon19100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="915.12,466.64 903.76,464.18 904.04,463.81 "
-       id="polygon19102" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="905.53,463.02 916.4,465.68 916.62,465.93 "
-       id="polygon19104" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.84,467 903.54,464.64 903.76,464.18 "
-       id="polygon19106" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.41,468.52 903.39,466.17 903.34,465.69 "
-       id="polygon19108" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.61,467.47 903.39,465.16 903.54,464.64 "
-       id="polygon19110" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.47,468 903.34,465.69 903.39,465.16 "
-       id="polygon19112" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="907.18,457.41 919.18,460.81 919.39,461.07 "
-       id="polygon19114" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="918.91,460.72 906.61,457.39 906.91,457.32 "
-       id="polygon19116" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="910.38,474.35 921.85,476.87 921.62,476.61 "
-       id="polygon19118" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="910.59,471.33 922.07,473.85 922.37,473.62 "
-       id="polygon19120" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="918.6,460.79 906.29,457.61 906.61,457.39 "
-       id="polygon19122" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="921.61,476.61 927.13,477.85 921.84,476.87 "
-       id="polygon19124" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="910.15,474.09 921.62,476.61 921.46,476.23 "
-       id="polygon19126" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910.32,471.7 921.79,474.22 922.07,473.85 "
-       id="polygon19128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="918.29,461.02 906.01,457.98 906.29,457.61 "
-       id="polygon19130" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="921.45,476.22 926.98,477.46 921.61,476.61 "
-       id="polygon19132" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910,473.7 921.46,476.23 921.41,475.74 "
-       id="polygon19134" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="910.11,472.17 921.58,474.69 921.79,474.22 "
-       id="polygon19136" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.39,475.74 926.92,476.98 921.45,476.22 "
-       id="polygon19138" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="909.94,473.22 921.41,475.74 921.45,475.21 "
-       id="polygon19140" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="909.98,472.7 921.45,475.21 921.58,474.69 "
-       id="polygon19142" />
-    <polygon
-       style="opacity:1;fill:#001fb7"
-       points="908.11,475.02 919.82,477.8 919.59,477.55 "
-       id="polygon19144" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="919,477.52 907.52,475 907.21,475.23 "
-       id="polygon19146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="918.01,461.38 905.78,458.44 906.01,457.98 "
-       id="polygon19148" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="916.53,465.61 905.02,462.43 905.26,462.69 "
-       id="polygon19150" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.77,461.85 905.62,458.96 905.78,458.44 "
-       id="polygon19152" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="918.24,480.52 906.77,477.99 906.99,478.24 "
-       id="polygon19154" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="918.69,477.75 907.21,475.23 906.94,475.59 "
-       id="polygon19156" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="917.07,462.87 905.56,459.7 905.26,460.05 "
-       id="polygon19158" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.38,465.22 905.02,462.43 907.82,462.86 "
-       id="polygon19160" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.09,480.13 906.61,477.6 906.77,477.99 "
-       id="polygon19162" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="903.75,466.8 914.82,469.64 914.6,469.39 "
-       id="polygon19164" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.77,463.23 905.26,460.05 907.85,461.17 "
-       id="polygon19166" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.41,478.12 906.94,475.59 906.72,476.06 "
-       id="polygon19168" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.03,479.64 906.55,477.12 906.61,477.6 "
-       id="polygon19170" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.53,463.69 905.02,460.52 904.87,461.04 "
-       id="polygon19172" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.2,478.59 906.72,476.06 906.59,476.59 "
-       id="polygon19174" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.07,479.12 906.59,476.59 906.55,477.12 "
-       id="polygon19176" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="903.53,466.55 914.6,469.39 914.46,469 "
-       id="polygon19178" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.76,464.18 914.84,467 915.12,466.64 "
-       id="polygon19180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.39,466.17 914.46,469 914.41,468.52 "
-       id="polygon19182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.54,464.64 914.61,467.47 914.84,467 "
-       id="polygon19184" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.34,465.69 914.41,468.52 914.47,468 "
-       id="polygon19186" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="903.39,465.16 914.47,468 914.61,467.47 "
-       id="polygon19188" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.97,461.37 918.27,461.01 924,462.96 "
-       id="polygon19190" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="906.29,457.61 918.29,461.02 918.6,460.79 "
-       id="polygon19192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.73,461.84 917.97,461.37 922.1,462.96 "
-       id="polygon19194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="906.01,457.98 918.01,461.38 918.29,461.02 "
-       id="polygon19196" />
-    <polygon
-       style="opacity:1;fill:#00167f"
-       points="906.99,478.24 918.24,480.52 918.47,480.77 "
-       id="polygon19198" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="915.46,466.42 915.45,466.75 915.7,466.69 "
-       id="polygon19200" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="907.21,475.23 919,477.52 918.69,477.75 "
-       id="polygon19202" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="927.92,469.35 916.85,466.01 917.16,465.94 "
-       id="polygon19204" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.78,458.44 917.77,461.85 918.01,461.38 "
-       id="polygon19206" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.56,459.48 917.62,462.37 913.32,461.69 "
-       id="polygon19208" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.62,458.96 917.62,462.37 917.77,461.85 "
-       id="polygon19210" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="905.26,462.69 916.53,465.61 916.77,465.87 "
-       id="polygon19212" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.77,477.99 918.09,480.13 918.24,480.52 "
-       id="polygon19214" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="906.94,475.59 918.69,477.75 918.41,478.12 "
-       id="polygon19216" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.61,477.6 918.03,479.64 918.09,480.13 "
-       id="polygon19218" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.72,476.06 918.41,478.12 918.2,478.59 "
-       id="polygon19220" />
-    <polygon
-       style="opacity:1;fill:#001dac"
-       points="928.61,475.01 922.97,473.65 928.5,474.89 "
-       id="polygon19222" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="905.26,460.05 917.07,462.87 916.77,463.23 "
-       id="polygon19224" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="922.06,473.85 927.59,475.09 921.78,474.21 "
-       id="polygon19226" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.55,477.12 918.07,479.12 918.03,479.64 "
-       id="polygon19228" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="906.59,476.59 918.2,478.59 918.07,479.12 "
-       id="polygon19230" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.87,462.05 916.32,464.74 916.38,465.22 "
-       id="polygon19232" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="905.02,460.52 916.77,463.23 916.53,463.69 "
-       id="polygon19234" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.82,461.57 916.38,464.21 916.32,464.74 "
-       id="polygon19236" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.78,474.21 927.31,475.46 921.57,474.68 "
-       id="polygon19238" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="904.87,461.04 916.53,463.69 916.38,464.21 "
-       id="polygon19240" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.57,474.68 927.09,475.93 921.43,475.21 "
-       id="polygon19242" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.43,475.21 926.96,476.45 921.39,475.74 "
-       id="polygon19244" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="922.06,473.85 927.9,474.86 927.74,474.98 "
-       id="polygon19246" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.78,474.21 927.59,475.09 927.45,475.28 "
-       id="polygon19248" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="921.61,476.61 926.98,477.46 927.06,477.66 "
-       id="polygon19250" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.57,474.68 927.31,475.46 927.2,475.7 "
-       id="polygon19252" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="927.2,475.7 921.57,474.68 927.09,475.93 "
-       id="polygon19254" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="926.94,476.72 921.39,475.74 926.92,476.98 "
-       id="polygon19256" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.43,475.21 927.09,475.93 927.03,476.2 "
-       id="polygon19258" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="921.39,475.74 926.96,476.45 926.94,476.72 "
-       id="polygon19260" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="926.82,469.54 915.46,466.42 915.77,466.35 "
-       id="polygon19262" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="926.51,469.61 915.15,466.65 915.46,466.42 "
-       id="polygon19264" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="926.19,469.84 914.86,467.01 915.15,466.65 "
-       id="polygon19266" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="916.58,465.92 927.44,469.01 927.65,469.26 "
-       id="polygon19268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.45,475.16 925.47,472.18 925.44,471.71 "
-       id="polygon19270" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="925.49,472.19 914.57,469.38 914.44,469 "
-       id="polygon19272" />
-    <polygon
-       style="opacity:1;fill:#001fb7"
-       points="924.34,478.63 919.6,477.55 924.43,478.74 "
-       id="polygon19274" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="919.01,477.52 923.87,478.57 919.32,477.45 "
-       id="polygon19276" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.91,470.2 914.63,467.48 914.86,467.01 "
-       id="polygon19278" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.67,470.67 914.47,468 914.63,467.48 "
-       id="polygon19280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.52,471.19 914.41,468.52 914.47,468 "
-       id="polygon19282" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="918.7,477.75 923.56,478.74 919.01,477.52 "
-       id="polygon19284" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="918.42,478.12 923.27,479.05 918.7,477.75 "
-       id="polygon19286" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.23,480.52 922.91,481.44 918.08,480.13 "
-       id="polygon19288" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="946.07,478.93 934.38,476.21 934.62,476.46 "
-       id="polygon19290" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="945.55,478.57 933.77,476.18 934.09,476.11 "
-       id="polygon19292" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="927.9,474.86 933.79,476.18 927.74,474.98 "
-       id="polygon19294" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.2,478.59 923.03,479.48 918.42,478.12 "
-       id="polygon19296" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.08,480.13 922.79,481.01 918.03,479.64 "
-       id="polygon19298" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.07,479.12 922.86,479.98 918.2,478.59 "
-       id="polygon19300" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.03,479.64 922.78,480.51 918.07,479.12 "
-       id="polygon19302" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="933.48,476.41 927.74,474.98 927.59,475.09 "
-       id="polygon19304" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="926.98,477.46 932.87,478.79 927.06,477.66 "
-       id="polygon19306" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="927.31,475.46 933.2,476.78 927.2,475.7 "
-       id="polygon19308" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.87,478.79 926.95,477.23 926.98,477.46 "
-       id="polygon19310" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="918.23,480.52 923.1,481.75 922.96,481.6 "
-       id="polygon19312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="926.92,476.98 932.81,478.3 926.95,477.23 "
-       id="polygon19314" />
-    <polygon
-       style="opacity:1;fill:#00157b"
-       points="918.7,477.75 923.27,479.05 923.43,478.84 "
-       id="polygon19316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="927.09,475.93 932.98,477.25 927.03,476.2 "
-       id="polygon19318" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.81,478.3 926.94,476.72 926.92,476.98 "
-       id="polygon19320" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="915.46,466.42 926.51,469.61 926.82,469.54 "
-       id="polygon19322" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.85,477.77 927.03,476.2 926.96,476.45 "
-       id="polygon19324" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="926.96,476.45 932.85,477.77 926.94,476.72 "
-       id="polygon19326" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.08,480.13 922.91,481.44 922.82,481.21 "
-       id="polygon19328" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="914.79,469.63 925.83,472.82 925.62,472.57 "
-       id="polygon19330" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="922.94,479.68 918.2,478.59 923.03,479.48 "
-       id="polygon19332" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.03,479.64 922.79,481.01 922.76,480.73 "
-       id="polygon19334" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="915.15,466.65 926.19,469.84 926.51,469.61 "
-       id="polygon19336" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.2,478.59 922.86,479.98 922.94,479.68 "
-       id="polygon19338" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="922.76,480.73 918.03,479.64 922.78,480.51 "
-       id="polygon19340" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="919.2,460.82 933.54,465.02 933.76,465.28 "
-       id="polygon19342" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="932.93,464.99 918.27,461.01 918.59,460.79 "
-       id="polygon19344" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="918.07,479.12 922.78,480.51 922.8,480.2 "
-       id="polygon19346" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="925.8,472.81 925.59,472.56 930.7,474.27 "
-       id="polygon19348" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="914.57,469.38 925.62,472.57 925.49,472.19 "
-       id="polygon19350" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="933.02,479.17 927.25,477.98 933.25,479.43 "
-       id="polygon19352" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.86,467.01 925.91,470.2 926.19,469.84 "
-       id="polygon19354" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.6,465.22 918.27,461.01 924,462.96 "
-       id="polygon19356" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.44,469 925.49,472.19 925.45,471.71 "
-       id="polygon19358" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.63,467.48 925.67,470.67 925.91,470.2 "
-       id="polygon19360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="933.48,476.41 927.45,475.28 933.2,476.78 "
-       id="polygon19362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.41,468.52 925.45,471.71 925.52,471.19 "
-       id="polygon19364" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="932.87,478.79 927.06,477.66 933.02,479.17 "
-       id="polygon19366" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.3,465.58 917.97,461.37 922.1,462.96 "
-       id="polygon19368" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="914.47,468 925.52,471.19 925.67,470.67 "
-       id="polygon19370" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="933.2,476.78 927.2,475.7 932.98,477.25 "
-       id="polygon19372" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.81,478.3 926.95,477.23 932.87,478.79 "
-       id="polygon19374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.98,477.25 927.03,476.2 932.85,477.77 "
-       id="polygon19376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.85,477.77 926.94,476.72 932.81,478.3 "
-       id="polygon19378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.51,462.88 931.85,467.09 931.91,466.57 "
-       id="polygon19380" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="931.69,466.8 917.42,462.65 917.1,462.88 "
-       id="polygon19382" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="930.8,469.77 916.53,465.61 916.75,465.86 "
-       id="polygon19384" />
-    <polygon
-       style="opacity:1;fill:#0000ba"
-       points="933.37,479.11 933.55,479.53 933.26,479.43 "
-       id="polygon19386" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="931.37,467.03 917.1,462.88 916.8,463.24 "
-       id="polygon19388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.65,469.38 916.38,465.22 916.53,465.61 "
-       id="polygon19390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="931.07,467.39 916.8,463.24 916.56,463.7 "
-       id="polygon19392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.61,468.91 916.34,464.75 916.38,465.22 "
-       id="polygon19394" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="923.56,478.74 930.49,480.15 923.74,478.61 "
-       id="polygon19396" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.83,467.86 916.56,463.7 916.4,464.22 "
-       id="polygon19398" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.67,468.38 916.4,464.22 916.34,464.75 "
-       id="polygon19400" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="929.72,483.15 923.2,481.85 923.1,481.75 "
-       id="polygon19402" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="930.18,480.38 923.16,479.2 923.27,479.05 "
-       id="polygon19404" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="922.91,481.44 929.57,482.76 922.82,481.21 "
-       id="polygon19406" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="923.03,479.48 929.91,480.75 923.16,479.2 "
-       id="polygon19408" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.91,480.75 922.94,479.68 923.03,479.48 "
-       id="polygon19410" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="922.79,481.01 929.52,482.28 922.76,480.73 "
-       id="polygon19412" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="922.86,479.98 929.69,481.22 922.94,479.68 "
-       id="polygon19414" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.69,481.22 922.8,480.2 922.86,479.98 "
-       id="polygon19416" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="922.78,480.51 929.55,481.75 922.8,480.2 "
-       id="polygon19418" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="960.09,477.79 959.92,478.31 955.94,476.65 "
-       id="polygon19420" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.26,482.12 970.32,481.59 965.56,480.63 "
-       id="polygon19422" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.58,484.88 970.45,481.06 970.29,481.58 "
-       id="polygon19424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.32,481.59 959.89,478.3 959.82,478.82 "
-       id="polygon19426" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.85,478.83 949.29,475.38 949.32,475.85 "
-       id="polygon19428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.34,475.86 938.33,472.21 938.45,472.59 "
-       id="polygon19430" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="938.46,472.59 927.42,469 927.63,469.25 "
-       id="polygon19432" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="918.59,460.79 932.93,464.99 933.25,464.93 "
-       id="polygon19434" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="930.18,480.38 923.43,478.84 930.49,480.15 "
-       id="polygon19436" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="918.27,461.01 932.6,465.22 932.93,464.99 "
-       id="polygon19438" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.72,483.15 922.96,481.6 929.57,482.76 "
-       id="polygon19440" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="929.91,480.75 923.16,479.2 930.18,480.38 "
-       id="polygon19442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.97,461.37 932.3,465.58 932.6,465.22 "
-       id="polygon19444" />
-    <line
-       x1="932.21997"
-       y1="479.70999"
-       x2="932.20001"
-       y2="479.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19446" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.57,482.76 922.82,481.21 929.52,482.28 "
-       id="polygon19448" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.69,481.22 922.94,479.68 929.91,480.75 "
-       id="polygon19450" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.73,461.84 932.07,466.05 932.3,465.58 "
-       id="polygon19452" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.52,482.28 922.76,480.73 929.55,481.75 "
-       id="polygon19454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="917.57,462.36 931.91,466.57 932.07,466.05 "
-       id="polygon19456" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.55,481.75 922.8,480.2 929.69,481.22 "
-       id="polygon19458" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="945.23,478.64 933.46,476.4 933.77,476.18 "
-       id="polygon19460" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="944.48,481.64 933.26,479.43 933.02,479.17 "
-       id="polygon19462" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="916.75,465.86 930.8,469.77 931.02,470.02 "
-       id="polygon19464" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="937.85,473 926.53,469.62 926.84,469.55 "
-       id="polygon19466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.91,478.87 933.18,476.77 933.46,476.4 "
-       id="polygon19468" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="944.32,481.25 933.02,479.17 932.86,478.79 "
-       id="polygon19470" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.53,465.61 930.65,469.38 930.8,469.77 "
-       id="polygon19472" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="955.5,480.96 944.61,479.23 944.89,478.87 "
-       id="polygon19474" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.63,479.24 932.96,477.24 933.18,476.77 "
-       id="polygon19476" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="937.54,473.07 926.21,469.85 926.53,469.62 "
-       id="polygon19478" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="936.6,476.02 925.59,472.56 930.7,474.27 "
-       id="polygon19480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.25,480.77 932.86,478.79 932.79,478.3 "
-       id="polygon19482" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="916.8,463.24 931.37,467.03 931.07,467.39 "
-       id="polygon19484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="955.22,481.33 944.4,479.71 944.61,479.23 "
-       id="polygon19486" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.42,479.71 932.83,477.77 932.96,477.24 "
-       id="polygon19488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.29,480.24 932.79,478.3 932.83,477.77 "
-       id="polygon19490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.38,465.22 930.61,468.91 930.65,469.38 "
-       id="polygon19492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.56,463.7 931.07,467.39 930.83,467.86 "
-       id="polygon19494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="937.22,473.3 925.92,470.21 926.21,469.85 "
-       id="polygon19496" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="927.63,469.25 938.46,472.59 938.67,472.84 "
-       id="polygon19498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.34,464.75 930.67,468.38 930.61,468.91 "
-       id="polygon19500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="965.61,483.84 976.17,486.07 976.39,485.6 "
-       id="polygon19502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.6,485.19 958.48,481.98 958.65,481.46 "
-       id="polygon19504" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.5,481.99 947.39,478.77 947.46,478.25 "
-       id="polygon19506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.41,478.77 936.46,475.63 936.44,475.16 "
-       id="polygon19508" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="936.48,475.64 925.59,472.56 925.47,472.18 "
-       id="polygon19510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="916.4,464.22 930.83,467.86 930.67,468.38 "
-       id="polygon19512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.93,473.66 925.68,470.67 925.92,470.21 "
-       id="polygon19514" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="927.42,469 938.34,472.21 938.46,472.59 "
-       id="polygon19516" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.68,474.13 925.51,471.19 925.68,470.67 "
-       id="polygon19518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.52,474.64 925.44,471.71 925.51,471.19 "
-       id="polygon19520" />
-    <polygon
-       style="opacity:1;fill:#0000c1"
-       points="941.77,486.22 930.22,483.5 930.54,483.43 "
-       id="polygon19522" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="933.26,479.43 944.71,481.9 944.48,481.64 "
-       id="polygon19524" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="933.46,476.4 944.91,478.87 945.23,478.64 "
-       id="polygon19526" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="931.1,480.18 942.87,483.15 942.64,482.89 "
-       id="polygon19528" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="942.36,482.8 930.81,480.08 930.5,480.15 "
-       id="polygon19530" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="925.8,472.81 936.81,476.27 936.6,476.02 "
-       id="polygon19532" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="933.02,479.17 944.48,481.64 944.32,481.25 "
-       id="polygon19534" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="933.18,476.77 944.63,479.24 944.91,478.87 "
-       id="polygon19536" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="926.21,469.85 937.22,473.3 937.54,473.07 "
-       id="polygon19538" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="942.05,482.87 930.5,480.15 930.18,480.38 "
-       id="polygon19540" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.86,478.79 944.32,481.25 944.25,480.77 "
-       id="polygon19542" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.27,480.23 944.4,479.71 949.17,480.95 "
-       id="polygon19544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.96,477.24 944.42,479.71 944.63,479.24 "
-       id="polygon19546" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="925.59,472.56 936.6,476.02 936.48,475.64 "
-       id="polygon19548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.05,484.99 941.11,485.48 934.68,483.75 "
-       id="polygon19550" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.7,487.95 941.09,485.47 941.25,485.86 "
-       id="polygon19552" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="941.26,485.86 929.71,483.14 929.94,483.4 "
-       id="polygon19554" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.79,478.3 944.25,480.77 944.29,480.24 "
-       id="polygon19556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.83,477.77 944.29,480.24 944.42,479.71 "
-       id="polygon19558" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.92,470.21 936.93,473.66 937.22,473.3 "
-       id="polygon19560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.47,472.18 936.48,475.64 936.45,475.16 "
-       id="polygon19562" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="941.73,483.1 930.18,480.38 929.91,480.75 "
-       id="polygon19564" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.68,470.67 936.68,474.13 936.93,473.66 "
-       id="polygon19566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.11,485.48 929.56,482.76 929.71,483.14 "
-       id="polygon19568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.44,471.71 936.45,475.16 936.52,474.64 "
-       id="polygon19570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="925.51,471.19 936.52,474.64 936.68,474.13 "
-       id="polygon19572" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="942.05,482.87 941.73,483.1 936.62,481.73 "
-       id="polygon19574" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="952.32,485.57 941.72,483.09 941.43,483.46 "
-       id="polygon19576" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.46,483.46 929.91,480.75 929.68,481.22 "
-       id="polygon19578" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.04,485.93 951.82,486.41 948.71,485.32 "
-       id="polygon19580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.14,489.08 962.27,488.55 959.66,488.57 "
-       id="polygon19582" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.63,490.01 972.83,489.54 971.01,489.78 "
-       id="polygon19584" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="980.38,490.61 973.85,488.6 974.94,488.85 "
-       id="polygon19586" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="980.25,490.22 976.16,489.03 976.91,489.14 "
-       id="polygon19588" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.21,489.74 969.37,486.7 969.33,486.22 "
-       id="polygon19590" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="973.85,488.6 980.61,490.87 980.38,490.61 "
-       id="polygon19592" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="973.15,488.45 980.61,490.87 973.85,488.6 "
-       id="polygon19594" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.37,486.7 980.25,490.22 980.21,489.74 "
-       id="polygon19596" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.33,486.22 980.21,489.74 980.27,489.22 "
-       id="polygon19598" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.24,491.83 980.25,489.21 982.32,489.24 "
-       id="polygon19600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.44,488.7 980.27,489.22 975.18,487.27 "
-       id="polygon19602" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.74,490.98 991.44,491.35 995.65,491.93 "
-       id="polygon19604" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.49,491.36 991.24,491.83 987.72,490.45 "
-       id="polygon19606" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="985.24,492.69 983.98,492.65 984.1,492.76 "
-       id="polygon19608" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="984.1,492.76 985.24,492.69 985.7,492.7 "
-       id="polygon19610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.89,494.96 1002.03,494.43 998.51,494.15 "
-       id="polygon19612" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.85,496.36 1013.07,495.88 1010.45,495.93 "
-       id="polygon19614" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.43,494.73 1022.77,496.57 1022.97,496.09 "
-       id="polygon19616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1022.97,496.09 1010.43,494.73 1010.64,494.26 "
-       id="polygon19618" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.5,494.74 997.99,492.27 998.13,491.74 "
-       id="polygon19620" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.92,493.89 1010.64,494.26 1013.17,494.22 "
-       id="polygon19622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="998.13,491.74 1010.5,494.74 1010.73,494.27 "
-       id="polygon19624" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="1003.5,493.4 1014.36,495.33 1014.63,495.6 "
-       id="polygon19626" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1013.45,495.8 1013.36,495.51 1013.69,495.29 "
-       id="polygon19628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1022.68,496.58 1033.7,496.57 1033.86,496.11 "
-       id="polygon19630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1024.2,496.64 1013,495.88 1013.28,495.52 "
-       id="polygon19632" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1013.07,495.88 1001.99,494.43 1002.21,493.95 "
-       id="polygon19634" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1002.03,494.43 991.06,492.35 991.2,491.82 "
-       id="polygon19636" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.09,492.36 980.2,489.74 980.25,489.21 "
-       id="polygon19638" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="998.7,490.91 985.98,487.94 986.28,487.57 "
-       id="polygon19640" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="998.4,491.28 985.74,488.41 985.98,487.94 "
-       id="polygon19642" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="976.03,486.6 985.6,488.94 985.75,488.41 "
-       id="polygon19644" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="992.47,490.71 985.65,488.83 985.54,488.7 "
-       id="polygon19646" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="992.13,490.77 985.51,489.04 985.71,488.91 "
-       id="polygon19648" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.44,488.7 980.7,488.23 976.34,487.37 "
-       id="polygon19650" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.79,491 980.65,488.22 980.96,487.86 "
-       id="polygon19652" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.49,491.36 980.41,488.68 980.65,488.22 "
-       id="polygon19654" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="986.27,487.57 976.4,485.6 976.69,485.23 "
-       id="polygon19656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="976.4,485.6 985.97,487.94 986.27,487.57 "
-       id="polygon19658" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="997.39,490.33 984.77,487.14 985.02,487.4 "
-       id="polygon19660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.23,489.94 984.6,486.74 984.77,487.14 "
-       id="polygon19662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.65,488.22 991.49,491.36 991.79,491 "
-       id="polygon19664" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.41,488.68 991.24,491.83 987.72,490.45 "
-       id="polygon19666" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="985.02,487.4 997.39,490.33 997.64,490.59 "
-       id="polygon19668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="984.77,487.14 997.23,489.94 997.39,490.33 "
-       id="polygon19670" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="984.6,486.74 997.16,489.45 997.23,489.94 "
-       id="polygon19672" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="994.92,489.11 984.09,489.53 983.78,489.75 "
-       id="polygon19674" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="983.87,489.73 973,489.18 972.74,489.54 "
-       id="polygon19676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.83,489.54 962.41,488.07 962.21,488.54 "
-       id="polygon19678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.27,488.55 951.77,486.39 951.64,486.93 "
-       id="polygon19680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.68,486.93 941.07,484.46 941.04,484.99 "
-       id="polygon19682" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.05,484.99 929.5,482.27 929.56,482.76 "
-       id="polygon19684" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.23,483.94 929.68,481.22 929.55,481.75 "
-       id="polygon19686" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.46,483.46 941.23,483.94 936.51,482.52 "
-       id="polygon19688" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.82,486.41 941.21,483.93 941.07,484.46 "
-       id="polygon19690" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.1,484.46 929.55,481.75 929.5,482.27 "
-       id="polygon19692" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="945.07,468.83 932.61,465.22 932.94,465 "
-       id="polygon19694" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="941.72,483.09 942.04,482.86 949.23,484.64 "
-       id="polygon19696" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="930.5,480.15 942.36,482.8 942.05,482.87 "
-       id="polygon19698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.74,469.06 932.3,465.58 932.61,465.22 "
-       id="polygon19700" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="929.94,483.4 941.26,485.86 941.49,486.12 "
-       id="polygon19702" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="930.18,480.38 941.73,483.1 936.62,481.73 "
-       id="polygon19704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.43,469.42 932.06,466.05 932.3,465.58 "
-       id="polygon19706" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.02,470.4 931.82,467.09 931.89,466.56 "
-       id="polygon19708" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.71,483.14 941.11,485.48 941.26,485.86 "
-       id="polygon19710" />
-    <line
-       x1="949.95001"
-       y1="475.48001"
-       x2="949.95001"
-       y2="475.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.92,478.31 949.37,474.86 949.29,475.38 "
-       id="polygon19714" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.31,475.38 938.31,471.74 938.33,472.21 "
-       id="polygon19716" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="941.77,472.86 930.8,469.77 931.03,470.03 "
-       id="polygon19718" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="929.91,480.75 941.73,483.1 941.46,483.46 "
-       id="polygon19720" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.56,482.76 941.11,485.48 934.68,483.75 "
-       id="polygon19722" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="931.82,467.09 943.95,470.93 944.02,470.4 "
-       id="polygon19724" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="942.32,470.11 931.36,467.03 931.06,467.39 "
-       id="polygon19726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.68,481.22 941.23,483.94 936.51,482.52 "
-       id="polygon19728" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.63,472.47 930.66,469.39 930.8,469.77 "
-       id="polygon19730" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.5,482.27 941.1,484.46 941.05,484.99 "
-       id="polygon19732" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="929.55,481.75 941.23,483.94 941.1,484.46 "
-       id="polygon19734" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="942.03,470.47 931.06,467.39 930.83,467.86 "
-       id="polygon19736" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.58,471.99 930.61,468.91 930.66,469.39 "
-       id="polygon19738" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="942.32,470.11 942.03,470.47 937.22,468.87 "
-       id="polygon19740" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="956.23,473.82 944.01,470.4 944.18,469.88 "
-       id="polygon19742" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.18,469.88 956.23,473.82 956.49,473.35 "
-       id="polygon19744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.01,470.4 956.07,474.33 956.23,473.82 "
-       id="polygon19746" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="968.52,477.19 956.22,473.81 956.47,473.35 "
-       id="polygon19748" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="964.2,475.65 953.24,472.98 952.95,473.34 "
-       id="polygon19750" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.98,473.35 942.01,470.46 941.77,470.93 "
-       id="polygon19752" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.79,470.94 930.83,467.86 930.67,468.38 "
-       id="polygon19754" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.64,471.46 930.67,468.38 930.61,468.91 "
-       id="polygon19756" />
-    <line
-       x1="944.16998"
-       y1="481.67001"
-       x2="944.15002"
-       y2="481.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19758" />
-    <line
-       x1="943.34003"
-       y1="482.79001"
-       x2="943.32001"
-       y2="482.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19760" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="955.09,483.74 944.73,481.91 944.48,481.65 "
-       id="polygon19762" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="948.52,476.68 937.23,473.3 937.55,473.07 "
-       id="polygon19764" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="932.94,465 945.07,468.83 945.4,468.77 "
-       id="polygon19766" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="954.93,483.35 944.48,481.65 944.32,481.25 "
-       id="polygon19768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="948.2,476.91 936.93,473.66 937.23,473.3 "
-       id="polygon19770" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.4,479.71 955.01,481.8 955.22,481.33 "
-       id="polygon19772" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.85,484.72 969.6,485.19 965.51,483.46 "
-       id="polygon19774" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.44,488.7 969.4,485.7 969.57,485.18 "
-       id="polygon19776" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.43,485.7 958.4,482.5 958.48,481.98 "
-       id="polygon19778" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.43,482.51 947.41,479.24 947.39,478.77 "
-       id="polygon19780" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="947.43,479.25 936.59,476.01 936.46,475.63 "
-       id="polygon19782" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="932.61,465.22 944.74,469.06 945.07,468.83 "
-       id="polygon19784" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="954.86,482.86 944.32,481.25 944.25,480.77 "
-       id="polygon19786" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="955.01,481.8 944.4,479.71 949.17,480.95 "
-       id="polygon19788" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.9,477.27 936.68,474.13 936.93,473.66 "
-       id="polygon19790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="954.88,482.33 944.25,480.77 944.27,480.23 "
-       id="polygon19792" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="938.45,472.59 949.34,475.86 949.46,476.23 "
-       id="polygon19794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.65,477.73 936.51,474.64 936.68,474.13 "
-       id="polygon19796" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.48,478.25 936.44,475.16 936.51,474.64 "
-       id="polygon19798" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="931.03,470.03 941.77,472.86 942,473.11 "
-       id="polygon19800" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.3,465.58 944.43,469.42 944.74,469.06 "
-       id="polygon19802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="938.33,472.21 949.31,475.38 949.34,475.86 "
-       id="polygon19804" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="932.06,466.05 944.19,469.88 944.43,469.42 "
-       id="polygon19806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="931.89,466.56 944.02,470.4 944.19,469.88 "
-       id="polygon19808" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.8,469.77 941.63,472.47 941.77,472.86 "
-       id="polygon19810" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="931.06,467.39 942.03,470.47 937.22,468.87 "
-       id="polygon19812" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.66,469.39 941.58,471.99 941.63,472.47 "
-       id="polygon19814" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.83,467.86 942.03,470.47 941.79,470.94 "
-       id="polygon19816" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.61,468.91 941.64,471.46 941.58,471.99 "
-       id="polygon19818" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="930.67,468.38 941.79,470.94 941.64,471.46 "
-       id="polygon19820" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="944.73,481.91 955.34,484 955.09,483.74 "
-       id="polygon19822" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="937.23,473.3 948.2,476.91 948.52,476.68 "
-       id="polygon19824" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="944.48,481.65 955.09,483.74 954.93,483.35 "
-       id="polygon19826" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="936.59,476.01 947.55,479.63 947.43,479.25 "
-       id="polygon19828" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.93,473.66 947.9,477.27 948.2,476.91 "
-       id="polygon19830" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="942.65,482.89 953.48,485.63 953.25,485.37 "
-       id="polygon19832" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="952.64,485.34 942.04,482.86 949.23,484.64 "
-       id="polygon19834" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.32,481.25 954.93,483.35 954.86,482.86 "
-       id="polygon19836" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.46,475.63 947.43,479.25 947.41,478.77 "
-       id="polygon19838" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.25,480.77 954.86,482.86 954.88,482.33 "
-       id="polygon19840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.27,480.23 954.88,482.33 955.01,481.8 "
-       id="polygon19842" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="951.85,488.34 941.25,485.86 941.48,486.12 "
-       id="polygon19844" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.68,474.13 947.65,477.73 947.9,477.27 "
-       id="polygon19846" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.44,475.16 947.41,478.77 947.48,478.25 "
-       id="polygon19848" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="936.51,474.64 947.48,478.25 947.65,477.73 "
-       id="polygon19850" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="952.64,485.34 952.32,485.57 949.7,484.73 "
-       id="polygon19852" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="952.39,485.85 952.64,485.34 952.32,485.57 "
-       id="polygon19854" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="962.77,487.71 952.27,485.55 951.99,485.93 "
-       id="polygon19856" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.04,485.93 941.43,483.46 941.21,483.93 "
-       id="polygon19858" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.82,486.41 951.68,486.93 947.84,485.68 "
-       id="polygon19860" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.63,490.01 962.21,488.54 962.1,489.07 "
-       id="polygon19862" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.14,489.08 951.64,486.93 951.61,487.46 "
-       id="polygon19864" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.64,487.46 941.04,484.99 941.09,485.47 "
-       id="polygon19866" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.42,485.41 970.29,481.58 970.23,482.11 "
-       id="polygon19868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.26,482.12 959.82,478.82 959.86,479.3 "
-       id="polygon19870" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.88,479.3 949.32,475.85 949.45,476.23 "
-       id="polygon19872" />
-    <line
-       x1="949.59998"
-       y1="476.13"
-       x2="949.59998"
-       y2="476.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line19874" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="941.48,486.12 951.85,488.34 952.09,488.6 "
-       id="polygon19876" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="941.72,483.09 952.32,485.57 949.7,484.73 "
-       id="polygon19878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.25,485.86 951.7,487.95 951.85,488.34 "
-       id="polygon19880" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="957.46,472.7 945.07,468.84 945.41,468.77 "
-       id="polygon19882" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="941.43,483.46 952.32,485.57 952.04,485.93 "
-       id="polygon19884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.09,485.47 951.64,487.46 951.7,487.95 "
-       id="polygon19886" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.21,483.93 951.82,486.41 948.71,485.32 "
-       id="polygon19888" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.04,484.99 951.68,486.93 951.64,487.46 "
-       id="polygon19890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.07,484.46 951.68,486.93 947.84,485.68 "
-       id="polygon19892" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="957.13,472.77 944.73,469.06 945.07,468.84 "
-       id="polygon19894" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="953.27,472.98 942.3,470.1 942.01,470.46 "
-       id="polygon19896" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.6,475.36 941.63,472.47 941.78,472.86 "
-       id="polygon19898" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="957.46,472.7 957.13,472.77 950.79,470.62 "
-       id="polygon19900" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="969.17,476.6 956.78,472.99 957.12,472.76 "
-       id="polygon19902" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="956.8,472.99 944.43,469.42 944.73,469.06 "
-       id="polygon19904" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.55,474.87 941.57,471.98 941.63,472.47 "
-       id="polygon19906" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.91,476.02 952.95,473.34 952.72,473.81 "
-       id="polygon19908" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.75,473.82 941.77,470.93 941.63,471.46 "
-       id="polygon19910" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="964.2,475.65 963.91,476.02 959.68,474.72 "
-       id="polygon19912" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="976.05,477.9 987.21,480.4 986.96,480.14 "
-       id="polygon19914" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="998.07,482.43 987.21,480.4 986.94,480.14 "
-       id="polygon19916" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="997.15,482.13 986.29,480.1 985.95,480.32 "
-       id="polygon19918" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="985.98,480.33 975.08,478.09 974.79,478.46 "
-       id="polygon19920" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.82,478.46 963.88,476.01 963.66,476.48 "
-       id="polygon19922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.68,476.48 952.72,473.81 952.58,474.34 "
-       id="polygon19924" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.6,474.34 941.63,471.46 941.57,471.98 "
-       id="polygon19926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="968.83,476.82 956.47,473.35 956.78,472.99 "
-       id="polygon19928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="956.49,473.35 944.18,469.88 944.43,469.42 "
-       id="polygon19930" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="959.56,480.42 948.2,476.91 948.52,476.68 "
-       id="polygon19932" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="965.7,485.79 955.34,484 955.09,483.74 "
-       id="polygon19934" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="965.53,485.39 955.09,483.74 954.93,483.35 "
-       id="polygon19936" />
-    <polygon
-       style="opacity:1;fill:#0000ba"
-       points="959.54,480.74 959.21,480.64 959.55,480.42 "
-       id="polygon19938" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="977.31,484.93 966.43,482.77 966.75,482.7 "
-       id="polygon19940" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="976.99,485 966.11,483 966.43,482.77 "
-       id="polygon19942" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="976.67,485.23 965.82,483.37 966.11,483 "
-       id="polygon19944" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="966.11,483 976.67,485.23 976.99,485 "
-       id="polygon19946" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="970.49,484.14 959.21,480.64 959.55,480.42 "
-       id="polygon19948" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.23,480.65 947.89,477.27 948.2,476.91 "
-       id="polygon19950" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="965.45,484.91 954.93,483.35 954.85,482.86 "
-       id="polygon19952" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.27,489.22 969.33,486.22 969.4,485.7 "
-       id="polygon19954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.35,486.23 958.43,482.98 958.4,482.5 "
-       id="polygon19956" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="958.45,482.98 947.54,479.62 947.41,479.24 "
-       id="polygon19958" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.45,476.23 959.88,479.3 960,479.69 "
-       id="polygon19960" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.93,481.01 947.64,477.73 947.89,477.27 "
-       id="polygon19962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.23,480.65 958.93,481.01 954.22,479.15 "
-       id="polygon19964" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.75,488.41 976.03,486.6 976.17,486.07 "
-       id="polygon19966" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="985.51,489.04 980.96,487.86 981.3,487.63 "
-       id="polygon19968" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="981,487.87 969.82,484.71 970.13,484.35 "
-       id="polygon19970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.85,484.72 958.65,481.46 958.91,481 "
-       id="polygon19972" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.68,481.47 947.46,478.25 947.64,477.73 "
-       id="polygon19974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.32,475.85 959.85,478.83 959.88,479.3 "
-       id="polygon19976" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.29,475.38 959.92,478.31 959.85,478.83 "
-       id="polygon19978" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="949.37,474.86 959.92,478.31 955.94,476.65 "
-       id="polygon19980" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="942.01,473.12 952.75,475.75 952.98,476 "
-       id="polygon19982" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.78,472.86 952.6,475.36 952.75,475.75 "
-       id="polygon19984" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="945.07,468.84 957.13,472.77 950.79,470.62 "
-       id="polygon19986" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="942.01,470.46 953.27,472.98 952.98,473.35 "
-       id="polygon19988" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.63,472.47 952.55,474.87 952.6,475.36 "
-       id="polygon19990" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.77,470.93 952.98,473.35 952.75,473.82 "
-       id="polygon19992" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="963.97,487.77 953.48,485.63 953.23,485.36 "
-       id="polygon19994" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="944.73,469.06 956.8,472.99 957.13,472.77 "
-       id="polygon19996" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.57,471.98 952.6,474.34 952.55,474.87 "
-       id="polygon19998" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="941.63,471.46 952.75,473.82 952.6,474.34 "
-       id="polygon20000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="944.43,469.42 956.49,473.35 956.8,472.99 "
-       id="polygon20002" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="955.34,484 965.95,486.05 965.7,485.79 "
-       id="polygon20004" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="947.75,479.87 958.79,483.62 958.57,483.37 "
-       id="polygon20006" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="948.2,476.91 959.23,480.65 959.56,480.42 "
-       id="polygon20008" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="955.09,483.74 965.7,485.79 965.53,485.39 "
-       id="polygon20010" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="947.54,479.62 958.57,483.37 958.45,482.98 "
-       id="polygon20012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.89,477.27 958.93,481.01 954.22,479.15 "
-       id="polygon20014" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.41,479.24 958.45,482.98 958.43,482.51 "
-       id="polygon20016" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="962.36,490.5 951.86,488.34 952.11,488.6 "
-       id="polygon20018" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.64,477.73 958.68,481.47 958.93,481.01 "
-       id="polygon20020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.39,478.77 958.43,482.51 958.5,481.99 "
-       id="polygon20022" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="947.46,478.25 958.5,481.99 958.68,481.47 "
-       id="polygon20024" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.19,490.1 951.69,487.95 951.86,488.34 "
-       id="polygon20026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.27,488.55 962.49,488.08 960.1,488.11 "
-       id="polygon20028" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="973.11,489.17 962.69,487.7 962.41,488.07 "
-       id="polygon20030" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.49,488.08 951.99,485.93 951.77,486.39 "
-       id="polygon20032" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.11,489.61 951.61,487.46 951.69,487.95 "
-       id="polygon20034" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="953.23,485.36 963.97,487.77 963.73,487.52 "
-       id="polygon20036" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="970.43,482.98 960,479.69 960.23,479.94 "
-       id="polygon20038" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="952.11,488.6 962.36,490.5 962.61,490.76 "
-       id="polygon20040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.36,485.94 970.23,482.11 970.28,482.59 "
-       id="polygon20042" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.29,482.59 959.86,479.3 960,479.69 "
-       id="polygon20044" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="952.27,485.55 963.09,487.48 962.77,487.71 "
-       id="polygon20046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.86,488.34 962.19,490.1 962.36,490.5 "
-       id="polygon20048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.82,484.41 970.69,480.59 970.45,481.06 "
-       id="polygon20050" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.49,481.07 960.05,477.78 959.89,478.3 "
-       id="polygon20052" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="951.99,485.93 962.77,487.71 962.49,488.08 "
-       id="polygon20054" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.69,487.95 962.11,489.61 962.19,490.1 "
-       id="polygon20056" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.77,486.39 962.49,488.08 960.1,488.11 "
-       id="polygon20058" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.61,487.46 962.14,489.08 962.11,489.61 "
-       id="polygon20060" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="951.64,486.93 962.27,488.55 959.66,488.57 "
-       id="polygon20062" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="956.78,472.99 968.83,476.82 969.17,476.6 "
-       id="polygon20064" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="964.53,475.42 953.57,472.75 953.24,472.98 "
-       id="polygon20066" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="963.71,478.42 952.76,475.75 953,476.01 "
-       id="polygon20068" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="956.4,475.98 968.45,479.82 968.21,479.57 "
-       id="polygon20070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.55,478.03 952.6,475.36 952.76,475.75 "
-       id="polygon20072" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.5,477.54 952.54,474.87 952.6,475.36 "
-       id="polygon20074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.54,477.01 952.58,474.34 952.54,474.87 "
-       id="polygon20076" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="963.37,487.76 963.73,487.52 963.42,487.41 "
-       id="polygon20078" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="960.23,479.94 970.43,482.98 970.66,483.24 "
-       id="polygon20080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="960,479.69 970.29,482.59 970.43,482.98 "
-       id="polygon20082" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.16,484.36 958.91,481 959.21,480.64 "
-       id="polygon20084" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="969.38,486.7 958.56,483.36 958.43,482.98 "
-       id="polygon20086" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.86,479.3 970.26,482.12 970.29,482.59 "
-       id="polygon20088" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="960.05,477.78 970.74,480.61 970.49,481.07 "
-       id="polygon20090" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.82,478.82 970.32,481.59 965.56,480.63 "
-       id="polygon20092" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="959.89,478.3 970.49,481.07 970.32,481.59 "
-       id="polygon20094" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="953,476.01 963.71,478.42 963.95,478.68 "
-       id="polygon20096" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.76,475.75 963.55,478.03 963.71,478.42 "
-       id="polygon20098" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="952.95,473.34 963.91,476.02 959.68,474.72 "
-       id="polygon20100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.6,475.36 963.5,477.54 963.55,478.03 "
-       id="polygon20102" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.72,473.81 963.91,476.02 963.68,476.48 "
-       id="polygon20104" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.54,474.87 963.54,477.01 963.5,477.54 "
-       id="polygon20106" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="952.58,474.34 963.68,476.48 963.54,477.01 "
-       id="polygon20108" />
-    <polygon
-       style="opacity:1;fill:#0000c0"
-       points="973.39,492.34 962.98,490.86 963.32,490.8 "
-       id="polygon20110" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="958.79,483.62 969.73,487.34 969.51,487.09 "
-       id="polygon20112" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="965.14,475.45 966.26,475.73 965.89,475.62 "
-       id="polygon20114" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="957.12,472.76 969.17,476.6 969.5,476.54 "
-       id="polygon20116" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="958.56,483.36 969.51,487.09 969.38,486.7 "
-       id="polygon20118" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.91,481 969.85,484.72 970.16,484.36 "
-       id="polygon20120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.43,482.98 969.38,486.7 969.35,486.23 "
-       id="polygon20122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.65,481.46 969.6,485.19 965.51,483.46 "
-       id="polygon20124" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.4,482.5 969.35,486.23 969.43,485.7 "
-       id="polygon20126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="958.48,481.98 969.43,485.7 969.6,485.19 "
-       id="polygon20128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.61,491.57 962.2,490.1 962.39,490.5 "
-       id="polygon20130" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.51,491.08 962.1,489.61 962.2,490.1 "
-       id="polygon20132" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.2,489.74 991.03,492.89 991.09,492.36 "
-       id="polygon20134" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.16,489.45 984.54,486.25 984.6,486.74 "
-       id="polygon20136" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="984.54,486.25 997.21,488.91 997.16,489.45 "
-       id="polygon20138" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.21,490.17 994.36,489.7 992,490.25 "
-       id="polygon20140" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="994.54,489.91 994.61,489.34 994.36,489.7 "
-       id="polygon20142" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="984.72,485.2 997.59,487.91 997.35,488.38 "
-       id="polygon20144" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.05,491.2 997.34,488.38 997.2,488.91 "
-       id="polygon20146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.2,488.91 1010.05,491.2 1009.91,491.73 "
-       id="polygon20148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.32,489.72 999.88,488.98 994.55,489.36 "
-       id="polygon20150" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.36,489.7 983.54,490.11 983.38,490.58 "
-       id="polygon20152" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.43,490.57 972.56,490.01 972.48,490.54 "
-       id="polygon20154" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.52,490.54 962.1,489.07 962.1,489.61 "
-       id="polygon20156" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="964.53,475.42 964.53,475.75 964.27,475.93 "
-       id="polygon20158" />
-    <line
-       x1="970.75"
-       y1="480.72"
-       x2="970.75"
-       y2="480.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20160" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="963.67,487.51 974.35,489.24 974.08,488.98 "
-       id="polygon20162" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="962.69,487.7 973.43,488.94 973.11,489.17 "
-       id="polygon20164" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="962.66,490.76 972.81,491.97 973.08,492.23 "
-       id="polygon20166" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="983.56,486.81 970.43,482.98 970.68,483.24 "
-       id="polygon20168" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="962.41,488.07 973.11,489.17 972.83,489.54 "
-       id="polygon20170" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.39,490.5 972.61,491.57 972.81,491.97 "
-       id="polygon20172" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.41,486.42 970.28,482.59 970.43,482.98 "
-       id="polygon20174" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.21,488.54 972.83,489.54 971.01,489.78 "
-       id="polygon20176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1002.03,494.43 1002.27,493.96 999.35,493.78 "
-       id="polygon20178" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1013.07,495.88 1013.36,495.51 1011,495.51 "
-       id="polygon20180" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1024.53,496.42 1013.28,495.52 1013.61,495.29 "
-       id="polygon20182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1013.36,495.51 1002.21,493.95 1002.5,493.59 "
-       id="polygon20184" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1002.27,493.96 991.2,491.82 991.44,491.35 "
-       id="polygon20186" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.73,496.89 1012.85,496.36 1009.7,496.35 "
-       id="polygon20188" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.93,497.02 1012.81,496.36 1013,495.88 "
-       id="polygon20190" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.85,496.36 1001.87,494.96 1001.99,494.43 "
-       id="polygon20192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.89,494.96 991.02,492.89 991.06,492.35 "
-       id="polygon20194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.2,491.82 1002.27,493.96 999.35,493.78 "
-       id="polygon20196" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.06,492.35 1002.03,494.43 998.51,494.15 "
-       id="polygon20198" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="991.37,492.48 991.41,492.47 994.93,492.35 "
-       id="polygon20200" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="980.4,490.62 991.23,493.77 991.08,493.37 "
-       id="polygon20202" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="985.24,492.69 987.95,492.51 988.81,492.56 "
-       id="polygon20204" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="987.95,492.51 989.98,492.38 990.74,492.45 "
-       id="polygon20206" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="992.73,490.8 1003.56,493.41 1003.82,493.67 "
-       id="polygon20208" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1002.83,493.36 1002.5,493.59 1005.72,493.87 "
-       id="polygon20210" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.44,491.35 1002.27,493.96 1002.57,493.59 "
-       id="polygon20212" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="994.62,492.09 992.19,492.18 991.99,492.26 "
-       id="polygon20214" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.17,489.45 1009.91,491.73 1009.88,492.27 "
-       id="polygon20216" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.18,490.18 999.7,489.39 994.32,489.72 "
-       id="polygon20218" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.21,490.17 983.38,490.58 983.32,491.1 "
-       id="polygon20220" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.51,491.08 983.35,491.1 983.38,491.63 "
-       id="polygon20222" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.2,490.1 972.51,491.08 972.61,491.57 "
-       id="polygon20224" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.1,489.07 972.63,490.01 972.52,490.54 "
-       id="polygon20226" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="962.1,489.61 972.52,490.54 972.51,491.08 "
-       id="polygon20228" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="981.28,483.06 968.23,479.57 968.08,479.18 "
-       id="polygon20230" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="968.08,479.18 981.28,483.06 981.23,482.58 "
-       id="polygon20232" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="974.66,480.88 963.72,478.43 963.97,478.69 "
-       id="polygon20234" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="966.26,475.73 976.32,478.17 976.07,477.91 "
-       id="polygon20236" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="986.31,480.1 975.41,477.86 975.08,478.09 "
-       id="polygon20238" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="975.11,478.09 964.17,475.64 963.88,476.01 "
-       id="polygon20240" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="981.23,482.58 968.08,479.18 968.04,478.7 "
-       id="polygon20242" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.49,480.49 963.55,478.03 963.72,478.43 "
-       id="polygon20244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.42,480 963.49,477.54 963.55,478.03 "
-       id="polygon20246" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1008.88,484.28 998.06,482.44 997.79,482.17 "
-       id="polygon20248" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="997.79,482.17 1008.88,484.28 1008.61,484.01 "
-       id="polygon20250" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1008.6,484.01 1019.66,485.96 1019.38,485.69 "
-       id="polygon20252" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="1019.05,485.58 1008.27,483.9 1007.92,483.96 "
-       id="polygon20254" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1007.95,483.96 997.13,482.13 996.79,482.35 "
-       id="polygon20256" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="996.82,482.35 985.95,480.32 985.66,480.69 "
-       id="polygon20258" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.69,480.7 974.79,478.46 974.57,478.93 "
-       id="polygon20260" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.59,478.93 963.66,476.48 963.52,477.01 "
-       id="polygon20262" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1018.7,485.64 1007.92,483.96 1007.59,484.19 "
-       id="polygon20264" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1007.61,484.19 996.79,482.35 996.5,482.72 "
-       id="polygon20266" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.53,482.72 985.66,480.69 985.45,481.16 "
-       id="polygon20268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.47,481.17 974.57,478.93 974.44,479.46 "
-       id="polygon20270" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.46,479.46 963.52,477.01 963.49,477.54 "
-       id="polygon20272" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.97,487.94 976.17,486.07 976.4,485.6 "
-       id="polygon20274" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="976.17,486.07 985.75,488.41 985.97,487.94 "
-       id="polygon20276" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="981.34,487.64 970.13,484.35 970.47,484.13 "
-       id="polygon20278" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="973.85,488.6 969.74,487.34 969.51,487.09 "
-       id="polygon20280" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="974.94,488.85 973.85,488.6 969.51,487.09 "
-       id="polygon20282" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="976.16,489.03 969.51,487.09 969.37,486.7 "
-       id="polygon20284" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="976.91,489.14 976.16,489.03 969.37,486.7 "
-       id="polygon20286" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="965.89,475.62 966.26,475.73 976.07,477.91 "
-       id="polygon20288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.7,488.23 969.57,485.18 969.82,484.71 "
-       id="polygon20290" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="970.68,483.24 983.56,486.81 983.8,487.07 "
-       id="polygon20292" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="970.69,480.59 984.13,484.05 983.82,484.41 "
-       id="polygon20294" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="981.43,483.45 968.47,479.83 968.23,479.57 "
-       id="polygon20296" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.43,482.98 983.41,486.42 983.56,486.81 "
-       id="polygon20298" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="964.17,475.64 975.43,477.87 975.11,478.09 "
-       id="polygon20300" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.28,482.59 983.36,485.94 983.41,486.42 "
-       id="polygon20302" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.72,478.43 974.49,480.49 974.66,480.88 "
-       id="polygon20304" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="963.88,476.01 975.11,478.09 974.82,478.46 "
-       id="polygon20306" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.45,481.06 983.82,484.41 983.58,484.88 "
-       id="polygon20308" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.23,482.11 983.42,485.41 983.36,485.94 "
-       id="polygon20310" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="970.29,481.58 983.58,484.88 983.42,485.41 "
-       id="polygon20312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.55,478.03 974.42,480 974.49,480.49 "
-       id="polygon20314" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.66,476.48 974.82,478.46 974.59,478.93 "
-       id="polygon20316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.49,477.54 974.46,479.46 974.42,480 "
-       id="polygon20318" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="963.52,477.01 974.59,478.93 974.46,479.46 "
-       id="polygon20320" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="969.74,487.34 973.15,488.45 973.85,488.6 "
-       id="polygon20322" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="970.13,484.35 981,487.87 981.34,487.64 "
-       id="polygon20324" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.82,484.71 980.7,488.23 981,487.87 "
-       id="polygon20326" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="984.02,492.78 973.16,492.22 973.49,492.32 "
-       id="polygon20328" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.57,485.18 980.7,488.23 976.34,487.37 "
-       id="polygon20330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="969.4,485.7 980.27,489.22 975.18,487.27 "
-       id="polygon20332" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.38,491.63 972.51,491.08 972.64,491.57 "
-       id="polygon20334" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="968.23,479.57 981.43,483.45 981.28,483.06 "
-       id="polygon20336" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.6,486.47 983.41,486.42 983.57,486.82 "
-       id="polygon20338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.59,485.45 983.4,485.4 983.36,485.93 "
-       id="polygon20340" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.6,486.47 984.54,486.26 984.59,486.74 "
-       id="polygon20342" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.59,485.45 984.73,485.2 984.59,485.72 "
-       id="polygon20344" />
-    <line
-       x1="983.89001"
-       y1="484.57001"
-       x2="983.90002"
-       y2="484.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20346" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="973.49,492.32 984.02,492.78 984.36,492.88 "
-       id="polygon20348" />
-    <line
-       x1="984"
-       y1="484.5"
-       x2="984.02002"
-       y2="484.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20350" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="973.16,492.22 983.73,492.52 984.02,492.78 "
-       id="polygon20352" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.87,491.96 983.51,492.12 983.73,492.52 "
-       id="polygon20354" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="983.78,489.75 983.54,490.11 986.31,489.65 "
-       id="polygon20356" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="972.56,490.01 983.61,490.09 983.43,490.57 "
-       id="polygon20358" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.39,482.73 974.49,480.48 974.66,480.88 "
-       id="polygon20360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.47,481.17 985.34,481.7 979.94,480.31 "
-       id="polygon20362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.19,483.73 985.32,481.7 985.3,482.23 "
-       id="polygon20364" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.31,482.23 974.41,480 974.49,480.48 "
-       id="polygon20366" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.34,481.7 974.44,479.46 974.41,480 "
-       id="polygon20368" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="985.65,488.83 981.3,487.63 981.64,487.57 "
-       id="polygon20370" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="985.54,488.7 985.65,488.83 981.64,487.57 "
-       id="polygon20372" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="981.62,483.19 981.69,483.72 981.45,483.46 "
-       id="polygon20374" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="985.71,488.91 985.51,489.04 981.3,487.63 "
-       id="polygon20376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="980.41,488.68 980.25,489.21 982.32,489.24 "
-       id="polygon20378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.59,487.91 984.96,484.73 984.72,485.2 "
-       id="polygon20380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.27,490.73 997.56,487.91 997.34,488.38 "
-       id="polygon20382" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.35,488.38 984.72,485.2 984.58,485.72 "
-       id="polygon20384" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.21,488.91 984.58,485.72 984.54,486.25 "
-       id="polygon20386" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="975.08,478.09 986.31,480.1 985.98,480.33 "
-       id="polygon20388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.93,487.82 994.64,485.38 994.78,484.85 "
-       id="polygon20390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.66,485.39 981.42,482.63 981.46,482.09 "
-       id="polygon20392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="981.46,482.09 994.66,485.39 994.8,484.86 "
-       id="polygon20394" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.66,480.88 985.39,482.73 985.57,483.13 "
-       id="polygon20396" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="974.79,478.46 985.98,480.33 985.69,480.7 "
-       id="polygon20398" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.49,480.48 985.31,482.23 985.39,482.73 "
-       id="polygon20400" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.57,478.93 985.69,480.7 985.47,481.17 "
-       id="polygon20402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.41,480 985.34,481.7 985.31,482.23 "
-       id="polygon20404" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="974.44,479.46 985.34,481.7 979.94,480.31 "
-       id="polygon20406" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="994.85,486.81 981.9,483.77 981.65,483.51 "
-       id="polygon20408" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="994.68,486.41 981.65,483.51 981.48,483.12 "
-       id="polygon20410" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.62,485.93 981.48,483.12 981.42,482.63 "
-       id="polygon20412" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="984.96,484.73 997.89,487.55 997.59,487.91 "
-       id="polygon20414" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="994.61,489.34 983.54,490.11 986.31,489.65 "
-       id="polygon20416" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="992.19,492.18 983.79,492.5 985.24,492.69 "
-       id="polygon20418" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="991.99,492.26 992.19,492.18 985.24,492.69 "
-       id="polygon20420" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="985.24,492.69 983.79,492.5 983.98,492.65 "
-       id="polygon20422" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="984.58,485.72 997.35,488.38 997.21,488.91 "
-       id="polygon20424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1002.57,493.59 991.44,491.35 995.65,491.93 "
-       id="polygon20426" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="991.74,490.98 1002.57,493.59 1002.9,493.37 "
-       id="polygon20428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.21,491.22 983.38,491.63 983.54,492.11 "
-       id="polygon20430" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.24,489.94 1009.88,492.27 1009.95,492.76 "
-       id="polygon20432" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.14,490.7 999.61,489.88 994.18,490.18 "
-       id="polygon20434" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.15,490.69 983.32,491.1 983.38,491.63 "
-       id="polygon20436" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="981.9,483.77 995.1,487.07 994.85,486.81 "
-       id="polygon20438" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="981.65,483.51 994.85,486.81 994.68,486.41 "
-       id="polygon20440" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="983.78,489.75 994.92,489.11 994.61,489.34 "
-       id="polygon20442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="981.48,483.12 994.68,486.41 994.62,485.93 "
-       id="polygon20444" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="981.42,482.63 994.62,485.93 994.66,485.39 "
-       id="polygon20446" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="989.98,492.38 994.62,492.09 994.93,492.35 "
-       id="polygon20448" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="990.74,492.45 989.98,492.38 994.93,492.35 "
-       id="polygon20450" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="988.81,492.56 987.95,492.51 994.93,492.35 "
-       id="polygon20452" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="985.7,492.7 985.24,492.69 991.37,492.48 "
-       id="polygon20454" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="991.37,492.48 985.24,492.69 991.41,492.47 "
-       id="polygon20456" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="983.54,490.11 994.61,489.34 994.36,489.7 "
-       id="polygon20458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.25,484.76 985.39,482.73 985.57,483.13 "
-       id="polygon20460" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.38,490.58 994.36,489.7 992,490.25 "
-       id="polygon20462" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1002.66,496.75 992.18,494.08 991.83,494.14 "
-       id="polygon20464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.16,484.27 985.3,482.23 985.39,482.73 "
-       id="polygon20466" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1018.37,485.87 1007.59,484.19 1007.3,484.56 "
-       id="polygon20468" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.32,484.56 996.5,482.72 996.29,483.19 "
-       id="polygon20470" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.31,483.2 985.45,481.16 985.32,481.7 "
-       id="polygon20472" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.54,492.11 994.21,491.22 994.37,491.7 "
-       id="polygon20474" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.32,491.1 994.21,490.17 994.15,490.69 "
-       id="polygon20476" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="983.38,491.63 994.15,490.69 994.21,491.22 "
-       id="polygon20478" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1011.03,493.9 998.36,491.27 998.66,490.9 "
-       id="polygon20480" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1001.92,495.99 991.26,493.77 991.09,493.38 "
-       id="polygon20482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.73,494.27 998.13,491.74 998.36,491.27 "
-       id="polygon20484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.85,495.5 991.09,493.38 991.02,492.89 "
-       id="polygon20486" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="985.95,480.32 997.15,482.13 996.82,482.35 "
-       id="polygon20488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.57,483.13 996.25,484.76 996.43,485.16 "
-       id="polygon20490" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="985.66,480.69 996.82,482.35 996.53,482.72 "
-       id="polygon20492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.39,482.73 996.16,484.27 996.25,484.76 "
-       id="polygon20494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.45,481.16 996.53,482.72 996.31,483.2 "
-       id="polygon20496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.3,482.23 996.19,483.73 996.16,484.27 "
-       id="polygon20498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.16,484.26 996.17,483.72 1000.87,484.83 "
-       id="polygon20500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="985.32,481.7 996.31,483.2 996.19,483.73 "
-       id="polygon20502" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="991.52,494.04 1002.35,496.65 1002.09,496.38 "
-       id="polygon20504" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="991.26,493.77 1002.09,496.38 1001.92,495.99 "
-       id="polygon20506" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="998.66,490.9 1011.03,493.9 1011.36,493.68 "
-       id="polygon20508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.09,493.38 1001.92,495.99 1001.85,495.5 "
-       id="polygon20510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="991.02,492.89 1001.85,495.5 1001.89,494.96 "
-       id="polygon20512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="998.36,491.27 1010.73,494.27 1011.03,493.9 "
-       id="polygon20514" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.66,492.07 999.97,491.32 994.39,491.69 "
-       id="polygon20516" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="997.68,490.6 1010.13,493.16 1010.38,493.42 "
-       id="polygon20518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.39,491.69 999.75,490.89 994.22,491.21 "
-       id="polygon20520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="997.42,490.34 1009.95,492.76 1010.13,493.16 "
-       id="polygon20522" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.22,491.21 999.63,490.39 994.14,490.7 "
-       id="polygon20524" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1007.83,489.39 1002.57,488.34 1003.13,488.32 "
-       id="polygon20526" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1002.57,488.34 1008,489.79 1007.83,489.39 "
-       id="polygon20528" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1001.76,488.37 1008,489.79 1002.57,488.34 "
-       id="polygon20530" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="1002.55,488.4 1005.66,488.02 1002.14,488.38 "
-       id="polygon20532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.75,488.89 994.68,486.41 994.61,485.92 "
-       id="polygon20534" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1008,489.78 1007.82,489.38 1013.96,490.96 "
-       id="polygon20536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.68,486.41 1007.83,489.39 1007.75,488.89 "
-       id="polygon20538" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.82,489.38 1007.74,488.89 1013.48,490.45 "
-       id="polygon20540" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.61,485.92 1007.75,488.89 1007.79,488.36 "
-       id="polygon20542" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.36,488.24 1004,488.47 1003.81,488.45 "
-       id="polygon20544" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.36,488.24 1005.12,488.6 1004,488.47 "
-       id="polygon20546" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1020.65,489.76 1008.14,487.35 1008.45,486.98 "
-       id="polygon20548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1020.35,490.12 1007.91,487.82 1008.14,487.35 "
-       id="polygon20550" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1008.14,487.35 1020.35,490.12 1020.65,489.76 "
-       id="polygon20552" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.49,490.94 1006.35,490.79 1005.37,490.78 "
-       id="polygon20554" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1006.58,490.79 1005.49,490.94 1006.35,490.79 "
-       id="polygon20556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.77,488.35 1019.98,491.13 1020.12,490.59 "
-       id="polygon20558" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1008.28,488.96 1012.95,488.09 1007.21,488.8 "
-       id="polygon20560" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1008.28,488.96 1012.95,488.09 1008.82,489.04 "
-       id="polygon20562" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1012.93,488.47 1008.82,489.04 1012.95,488.09 "
-       id="polygon20564" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1008,489.79 995.11,487.07 994.86,486.81 "
-       id="polygon20566" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.32,489.72 999.7,489.39 999.77,489.16 "
-       id="polygon20568" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1002.52,496.33 1002.73,496.76 1002.41,496.66 "
-       id="polygon20570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1000.11,491.51 994.66,492.07 999.97,491.32 "
-       id="polygon20572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="999.62,489.62 994.18,490.18 999.7,489.39 "
-       id="polygon20574" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1002.57,488.34 994.86,486.81 994.68,486.41 "
-       id="polygon20576" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1003.13,488.32 1002.57,488.34 994.68,486.41 "
-       id="polygon20578" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.39,491.69 999.97,491.32 999.84,491.13 "
-       id="polygon20580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="999.59,490.13 994.14,490.7 999.61,489.88 "
-       id="polygon20582" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.14,490.7 999.63,490.39 999.59,490.13 "
-       id="polygon20584" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="999.66,490.65 994.22,491.21 999.63,490.39 "
-       id="polygon20586" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="997.56,487.91 1010.57,490.36 1010.27,490.73 "
-       id="polygon20588" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.79,488.36 994.61,485.92 994.64,485.38 "
-       id="polygon20590" />
-    <polygon
-       style="opacity:1;fill:#0024d4"
-       points="1001.28,491.68 1006.49,491.24 1001.13,491.79 "
-       id="polygon20592" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.07,486.6 996.25,484.76 996.44,485.16 "
-       id="polygon20594" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="1000.15,488.69 1002.55,488.4 1000.3,488.57 "
-       id="polygon20596" />
-    <polygon
-       style="opacity:1;fill:#001684"
-       points="1000.3,488.57 1002.55,488.4 1002.14,488.38 "
-       id="polygon20598" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1006.98,486.11 996.16,484.26 996.25,484.76 "
-       id="polygon20600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.11,485.04 996.29,483.19 996.17,483.72 "
-       id="polygon20602" />
-    <polygon
-       style="opacity:1;fill:#0000d9"
-       points="1013.59,498.7 1003.07,496.7 1002.73,496.76 "
-       id="polygon20604" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.32,484.56 1007.11,485.04 1002.54,483.97 "
-       id="polygon20606" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="1017.73,486.53 1016.13,486.76 1018.38,486.4 "
-       id="polygon20608" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1017.87,486.71 1007.09,485.03 1006.97,485.57 "
-       id="polygon20610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1006.99,485.57 996.17,483.72 1000.87,484.83 "
-       id="polygon20612" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004,488.47 999.77,489.16 999.88,488.98 "
-       id="polygon20614" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1003.81,488.45 1004,488.47 999.88,488.98 "
-       id="polygon20616" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1013.69,495.29 1002.5,493.59 1005.72,493.87 "
-       id="polygon20618" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1005.46,490.96 1000.43,491.76 1000.27,491.63 "
-       id="polygon20620" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1000.27,491.63 1005.46,490.96 1000.11,491.51 "
-       id="polygon20622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.64,485.38 1007.79,488.36 1007.93,487.82 "
-       id="polygon20624" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="994.78,484.85 1007.93,487.82 1008.16,487.35 "
-       id="polygon20626" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1008.45,486.98 1020.65,489.76 1021,489.53 "
-       id="polygon20628" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1011.34,487.56 1013.26,487.24 1010.84,487.55 "
-       id="polygon20630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1017.84,488.28 1012.43,487.44 1010.98,487.45 "
-       id="polygon20632" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.16,484.26 1006.99,485.57 1006.98,486.11 "
-       id="polygon20634" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1017.75,487.25 1006.97,485.57 1006.96,486.11 "
-       id="polygon20636" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1006.97,485.57 1017.87,486.71 1017.75,487.25 "
-       id="polygon20638" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1006.96,486.11 1017.75,487.25 1017.74,487.79 "
-       id="polygon20640" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1017.85,486.71 1024.43,487.35 1018.06,486.23 "
-       id="polygon20642" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.86,485.73 1015.9,487.11 1020.55,486.7 "
-       id="polygon20644" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.86,485.73 1025.73,486.15 1020.55,486.7 "
-       id="polygon20646" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1017.74,487.79 1006.96,486.11 1007.06,486.6 "
-       id="polygon20648" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.9,487.11 1013.05,487.63 1013.94,487.68 "
-       id="polygon20650" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1013.94,487.68 1015.9,487.11 1014.68,487.72 "
-       id="polygon20652" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.77,487.57 1014.68,487.72 1015.9,487.11 "
-       id="polygon20654" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1018.04,488.68 1007.26,487 1007.54,487.27 "
-       id="polygon20656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.26,487 1017.84,488.28 1018.04,488.68 "
-       id="polygon20658" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.97,489.07 1013.05,487.63 1005.1,488.62 "
-       id="polygon20660" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="999.61,489.88 1004.98,489.06 999.62,489.62 "
-       id="polygon20662" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.98,489.06 999.59,490.13 999.61,489.88 "
-       id="polygon20664" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.02,490.1 999.84,491.13 999.75,490.89 "
-       id="polygon20666" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="999.75,490.89 1005.02,490.1 999.66,490.65 "
-       id="polygon20668" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="994.86,486.81 1001.76,488.37 1002.57,488.34 "
-       id="polygon20670" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1012.8,497.92 1002.14,496.39 1001.95,495.99 "
-       id="polygon20672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.71,497.43 1001.95,495.99 1001.85,495.5 "
-       id="polygon20674" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.73,497.49 1012.71,496.89 1012.81,496.36 "
-       id="polygon20676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.73,496.89 1001.85,495.5 1001.87,494.96 "
-       id="polygon20678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.26,495.72 1010.64,494.26 1013.17,494.22 "
-       id="polygon20680" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="999.77,489.16 1005.12,488.6 1004,488.47 "
-       id="polygon20682" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1005.79,491.21 1000.43,491.76 1005.46,490.96 "
-       id="polygon20684" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.98,489.06 999.62,489.62 1005.12,488.6 "
-       id="polygon20686" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="996.79,482.35 1007.95,483.96 1007.61,484.19 "
-       id="polygon20688" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.95,489.58 999.59,490.13 1004.98,489.06 "
-       id="polygon20690" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.2,490.57 999.84,491.13 1005.02,490.1 "
-       id="polygon20692" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.02,490.1 999.66,490.65 1004.95,489.58 "
-       id="polygon20694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.09,485.03 1007.3,484.56 1011.51,485.52 "
-       id="polygon20696" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="996.5,482.72 1007.61,484.19 1007.32,484.56 "
-       id="polygon20698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.44,485.16 1007.07,486.6 1007.26,487 "
-       id="polygon20700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.29,483.19 1007.11,485.04 1002.54,483.97 "
-       id="polygon20702" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.25,484.76 1006.98,486.11 1007.07,486.6 "
-       id="polygon20704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="996.17,483.72 1007.11,485.04 1006.99,485.57 "
-       id="polygon20706" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1002.5,493.59 1013.36,495.51 1013.69,495.29 "
-       id="polygon20708" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1002.41,496.66 1013.26,498.59 1012.99,498.32 "
-       id="polygon20710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1002.21,493.95 1013.36,495.51 1011,495.51 "
-       id="polygon20712" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1002.14,496.39 1012.99,498.32 1012.8,497.92 "
-       id="polygon20714" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1010.92,493.89 1023.26,495.72 1023.59,495.5 "
-       id="polygon20716" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1021.69,495.34 1010.15,493.16 1010.41,493.43 "
-       id="polygon20718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.99,494.43 1013.07,495.88 1010.45,495.93 "
-       id="polygon20720" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.95,495.99 1012.8,497.92 1012.71,497.43 "
-       id="polygon20722" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1021.5,494.94 1009.97,492.76 1010.15,493.16 "
-       id="polygon20724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.87,494.96 1012.85,496.36 1009.7,496.35 "
-       id="polygon20726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1001.85,495.5 1012.71,497.43 1012.73,496.89 "
-       id="polygon20728" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1021.79,492.9 1010.25,490.72 1010.03,491.2 "
-       id="polygon20730" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1021.42,494.45 1009.88,492.27 1009.97,492.76 "
-       id="polygon20732" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1021.57,493.38 1010.03,491.2 1009.91,491.73 "
-       id="polygon20734" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1021.44,493.91 1009.91,491.73 1009.88,492.27 "
-       id="polygon20736" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.64,494.26 1022.97,496.09 1023.26,495.72 "
-       id="polygon20738" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.1,488.62 1011.34,487.56 1005.33,488.26 "
-       id="polygon20740" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.33,488.26 1011.34,487.56 1010.84,487.55 "
-       id="polygon20742" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1014.46,491.49 1008.93,490.09 1008.58,490.16 "
-       id="polygon20744" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1015.18,491.59 1008.93,490.09 1014.46,491.49 "
-       id="polygon20746" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1013.24,490.97 1008.26,490.05 1008,489.78 "
-       id="polygon20748" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1013.39,491.13 1008.26,490.05 1013.24,490.97 "
-       id="polygon20750" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1020.02,492.16 1007.82,489.38 1013.96,490.96 "
-       id="polygon20752" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1019.95,491.67 1007.74,488.89 1013.48,490.45 "
-       id="polygon20754" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1008.26,490.05 1013.51,491.24 1013.39,491.13 "
-       id="polygon20756" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1008,489.78 1020.2,492.56 1020.02,492.16 "
-       id="polygon20758" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.03,491.2 1021.79,492.9 1021.57,493.38 "
-       id="polygon20760" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1020.79,492.93 1015.18,491.59 1014.46,491.49 "
-       id="polygon20762" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1013.51,491.24 1020.46,492.83 1020.2,492.56 "
-       id="polygon20764" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1037.85,495.24 1045.96,494.39 1038,494.78 "
-       id="polygon20766" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1037.93,495.21 1025.56,494.02 1025.46,494.55 "
-       id="polygon20768" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1031.25,495.1 1020.18,492.55 1020.01,492.16 "
-       id="polygon20770" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.82,489.38 1020.02,492.16 1019.95,491.67 "
-       id="polygon20772" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.74,488.89 1019.95,491.67 1019.98,491.13 "
-       id="polygon20774" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1005.82,491.19 1013.56,489.9 1005.49,490.94 "
-       id="polygon20776" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1013.43,498.26 1013.66,498.7 1013.33,498.59 "
-       id="polygon20778" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1006.35,490.79 1013.28,489.55 1005.21,490.57 "
-       id="polygon20780" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.37,490.78 1006.35,490.79 1005.21,490.57 "
-       id="polygon20782" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.94,489.58 1008.28,488.96 1004.97,489.07 "
-       id="polygon20784" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.97,489.07 1008.28,488.96 1007.21,488.8 "
-       id="polygon20786" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.21,490.57 1013.07,489.11 1005.03,490.1 "
-       id="polygon20788" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.03,490.1 1012.95,488.61 1004.94,489.58 "
-       id="polygon20790" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1010.41,493.43 1021.69,495.34 1021.95,495.61 "
-       id="polygon20792" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.15,493.16 1021.5,494.94 1021.69,495.34 "
-       id="polygon20794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1009.97,492.76 1021.42,494.45 1021.5,494.94 "
-       id="polygon20796" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1009.88,492.27 1021.44,493.91 1021.42,494.45 "
-       id="polygon20798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1009.91,491.73 1021.57,493.38 1021.44,493.91 "
-       id="polygon20800" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1020.2,492.56 1013.39,491.13 1013.24,490.97 "
-       id="polygon20802" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1013.8,490.08 1005.82,491.19 1013.56,489.9 "
-       id="polygon20804" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.43,487.44 1007.06,486.6 1007.26,487 "
-       id="polygon20806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1010.98,487.45 1012.43,487.44 1007.26,487 "
-       id="polygon20808" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1018.08,486.24 1007.3,484.56 1011.51,485.52 "
-       id="polygon20810" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1012.95,487.96 1004.97,489.07 1013.05,487.63 "
-       id="polygon20812" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1013.48,489.83 1006.58,490.79 1013.28,489.55 "
-       id="polygon20814" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1013.28,489.55 1006.58,490.79 1006.35,490.79 "
-       id="polygon20816" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1004.97,489.07 1012.95,488.09 1012.95,487.96 "
-       id="polygon20818" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1008.82,489.04 1004.94,489.58 1008.28,488.96 "
-       id="polygon20820" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1013.2,489.46 1005.21,490.57 1013.07,489.11 "
-       id="polygon20822" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1013.02,488.99 1005.03,490.1 1012.95,488.61 "
-       id="polygon20824" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1005.03,490.1 1013.07,489.11 1013.02,488.99 "
-       id="polygon20826" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="1024.59,499.83 1014.01,498.63 1013.66,498.7 "
-       id="polygon20828" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1023.97,499.46 1013.33,498.59 1013.05,498.32 "
-       id="polygon20830" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1023.76,499.06 1013.05,498.32 1012.84,497.93 "
-       id="polygon20832" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.63,498.02 1012.72,497.43 1012.71,496.89 "
-       id="polygon20834" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1021.97,495.61 1022.56,495.48 1022.83,495.75 "
-       id="polygon20836" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1022.28,494.59 1021.42,494.45 1021.51,494.94 "
-       id="polygon20838" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1013.39,491.13 1013.51,491.24 1020.2,492.56 "
-       id="polygon20840" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1007.59,484.19 1018.7,485.64 1018.37,485.87 "
-       id="polygon20842" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1007.3,484.56 1018.37,485.87 1018.08,486.24 "
-       id="polygon20844" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1007.09,485.03 1018.08,486.24 1017.87,486.71 "
-       id="polygon20846" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1013.05,487.63 1015.9,487.11 1013.09,487.5 "
-       id="polygon20848" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1012.95,487.96 1013.05,487.63 1013.94,487.68 "
-       id="polygon20850" />
-    <line
-       x1="1022.94"
-       y1="493.53"
-       x2="1022.94"
-       y2="493.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20852" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1025.57,495.59 1022.37,495.08 1022.57,495.48 "
-       id="polygon20854" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1016.02,489.07 1013.48,489.83 1013.28,489.55 "
-       id="polygon20856" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1013.28,489.55 1016.02,489.07 1013.2,489.46 "
-       id="polygon20858" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1012.95,488.61 1015.75,488.08 1012.93,488.47 "
-       id="polygon20860" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1025.49,494.55 1022.29,494.05 1022.27,494.59 "
-       id="polygon20862" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1013.28,495.52 1024.2,496.64 1024.53,496.42 "
-       id="polygon20864" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1013.33,498.59 1024.25,499.73 1023.97,499.46 "
-       id="polygon20866" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1014.68,487.72 1012.95,487.96 1013.94,487.68 "
-       id="polygon20868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1013,495.88 1023.93,497.02 1024.2,496.64 "
-       id="polygon20870" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1016.29,489.44 1013.48,489.83 1016.02,489.07 "
-       id="polygon20872" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1013.05,498.32 1023.97,499.46 1023.76,499.06 "
-       id="polygon20874" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1022.37,495.08 1025.48,495.09 1025.57,495.59 "
-       id="polygon20876" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.83,488.59 1013.02,488.99 1015.75,488.08 "
-       id="polygon20878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.81,496.36 1023.73,497.49 1023.93,497.02 "
-       id="polygon20880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.84,497.93 1023.76,499.06 1023.64,498.57 "
-       id="polygon20882" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.71,496.89 1023.63,498.02 1023.73,497.49 "
-       id="polygon20884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1012.72,497.43 1023.64,498.57 1023.63,498.02 "
-       id="polygon20886" />
-    <polygon
-       style="opacity:1;fill:#0038a4"
-       points="1016.41,489.18 1016.29,489.44 1016.63,489.69 "
-       id="polygon20888" />
-    <line
-       x1="1025.66"
-       y1="496.17001"
-       x2="1025.66"
-       y2="496.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line20890" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1024.53,496.42 1024.31,496.93 1024.57,496.75 "
-       id="polygon20892" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1021.97,489.47 1018.32,488.95 1021.87,489.38 "
-       id="polygon20894" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1018.04,488.68 1021.76,489.27 1021.71,489.21 "
-       id="polygon20896" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1024.18,488.59 1017.73,487.78 1024.18,488.39 "
-       id="polygon20898" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.73,488.65 1017.73,487.78 1024.18,488.59 "
-       id="polygon20900" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1025.16,488.48 1024.18,488.59 1024.18,488.39 "
-       id="polygon20902" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1025.8,488.4 1024.19,488.17 1025.16,488.48 "
-       id="polygon20904" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1024.18,488.39 1025.16,488.48 1024.19,488.17 "
-       id="polygon20906" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1029.45,488.06 1027.59,488.21 1027.77,488.27 "
-       id="polygon20908" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1027.77,488.27 1029.45,488.06 1030.25,487.99 "
-       id="polygon20910" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1024.19,488.17 1028.59,488.25 1025.8,488.4 "
-       id="polygon20912" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1016.63,489.69 1026.29,488.05 1016.29,489.44 "
-       id="polygon20914" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.77,487.57 1015.9,487.11 1020.55,486.7 "
-       id="polygon20916" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1016.29,489.44 1026.01,487.68 1016.02,489.06 "
-       id="polygon20918" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.74,488.08 1025.73,486.2 1015.77,487.57 "
-       id="polygon20920" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1038.18,497.19 1025.81,495.98 1026.1,496.25 "
-       id="polygon20922" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1016.02,489.06 1025.81,487.22 1015.83,488.59 "
-       id="polygon20924" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.83,488.59 1025.72,486.71 1015.74,488.08 "
-       id="polygon20926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1037.96,496.79 1025.59,495.58 1025.81,495.98 "
-       id="polygon20928" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1031.93,492.7 1032.28,492.47 1029.86,492.16 "
-       id="polygon20930" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="1032.29,492.81 1032.28,492.47 1032.63,492.41 "
-       id="polygon20932" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1045.86,494.69 1037.85,495.24 1045.96,494.39 "
-       id="polygon20934" />
-    <polygon
-       style="opacity:1;fill:#0000ac"
-       points="1032.87,492.51 1044.17,494.57 1044.44,494.84 "
-       id="polygon20936" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1043.84,494.46 1032.19,492.46 1032.54,492.4 "
-       id="polygon20938" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1032.28,492.47 1020.69,489.76 1021.03,489.54 "
-       id="polygon20940" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1037.84,496.29 1025.48,495.09 1025.59,495.58 "
-       id="polygon20942" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1025.48,495.09 1037.83,495.75 1037.84,496.29 "
-       id="polygon20944" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1031.42,495.5 1020.43,492.82 1020.18,492.55 "
-       id="polygon20946" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.63,493.07 1031.93,492.7 1029.57,492.53 "
-       id="polygon20948" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1043.49,494.52 1031.85,492.69 1032.19,492.46 "
-       id="polygon20950" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.93,492.7 1020.38,490.13 1020.69,489.76 "
-       id="polygon20952" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1024.77,489.88 1021.97,489.47 1024.6,489.72 "
-       id="polygon20954" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1024.6,489.72 1021.97,489.47 1021.87,489.38 "
-       id="polygon20956" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.38,493.54 1031.63,493.07 1029.15,492.96 "
-       id="polygon20958" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.86,495.12 1043.16,494.75 1040.67,494.72 "
-       id="polygon20960" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.23,494.38 1045.81,495.21 1045.84,494.87 "
-       id="polygon20962" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1056.02,495.28 1053.14,495.34 1053.29,495.7 "
-       id="polygon20964" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="1056.46,494.49 1050.89,496.21 1056.62,494.48 "
-       id="polygon20966" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="1051.24,496.43 1056.62,494.48 1050.89,496.21 "
-       id="polygon20968" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.89,496.21 1057.13,493.91 1050.59,495.87 "
-       id="polygon20970" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.35,495.44 1056.66,493.08 1050.21,494.96 "
-       id="polygon20972" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="1056.02,495.28 1053.36,495.79 1056.3,495.65 "
-       id="polygon20974" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1056.95,493.71 1050.59,495.87 1056.85,493.53 "
-       id="polygon20976" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.35,495.44 1056.85,493.53 1056.71,493.28 "
-       id="polygon20978" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1054.75,495.79 1043.08,494.75 1043.41,494.52 "
-       id="polygon20980" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1043.16,494.75 1031.56,493.06 1031.85,492.69 "
-       id="polygon20982" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.63,493.07 1020.14,490.6 1020.38,490.13 "
-       id="polygon20984" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.19,494.61 1020.01,492.16 1019.95,491.67 "
-       id="polygon20986" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1021.76,489.27 1024.6,489.72 1024.49,489.61 "
-       id="polygon20988" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1021.71,489.21 1021.76,489.27 1024.49,489.61 "
-       id="polygon20990" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.23,494.07 1031.38,493.54 1028.35,493.31 "
-       id="polygon20992" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.64,495.59 1042.86,495.12 1040.32,495.17 "
-       id="polygon20994" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1054.42,496.02 1042.8,495.12 1043.08,494.75 "
-       id="polygon20996" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.86,495.12 1031.34,493.53 1031.56,493.06 "
-       id="polygon20998" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.38,493.54 1019.99,491.13 1020.14,490.6 "
-       id="polygon21000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.52,496.13 1042.64,495.59 1039.63,495.61 "
-       id="polygon21002" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.94,496.87 1054.14,496.39 1051.17,496.56 "
-       id="polygon21004" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1054.36,496.03 1063.4,496.54 1054.09,496.4 "
-       id="polygon21006" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1054.14,496.39 1042.6,495.6 1042.8,495.12 "
-       id="polygon21008" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.64,495.59 1031.21,494.07 1031.34,493.53 "
-       id="polygon21010" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.23,494.07 1019.95,491.67 1019.99,491.13 "
-       id="polygon21012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1024.18,488.71 1023.73,488.65 1024.18,488.59 "
-       id="polygon21014" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="1026.09,485.34 1017.73,486.53 1026.38,485.13 "
-       id="polygon21016" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="1026.38,485.13 1017.73,486.53 1018.38,486.4 "
-       id="polygon21018" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="1036.54,499.89 1024.32,499.72 1024.02,499.45 "
-       id="polygon21020" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.87,485.7 1015.9,487.11 1026.08,485.37 "
-       id="polygon21022" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.77,487.57 1025.73,486.15 1020.55,486.7 "
-       id="polygon21024" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1026.26,488.03 1016.29,489.44 1026.01,487.68 "
-       id="polygon21026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1036.14,498.47 1023.66,498.57 1023.63,498.03 "
-       id="polygon21028" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.77,487.57 1025.73,486.2 1025.73,486.15 "
-       id="polygon21030" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.71,486.66 1015.74,488.08 1025.73,486.2 "
-       id="polygon21032" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.99,487.65 1016.02,489.06 1025.81,487.22 "
-       id="polygon21034" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1025.8,487.18 1015.83,488.59 1025.72,486.71 "
-       id="polygon21036" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1015.83,488.59 1025.81,487.22 1025.8,487.18 "
-       id="polygon21038" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1020.69,489.76 1032.28,492.47 1029.86,492.16 "
-       id="polygon21040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1025.81,495.98 1037.96,496.79 1038.18,497.19 "
-       id="polygon21042" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1020.18,492.55 1031.42,495.5 1031.25,495.1 "
-       id="polygon21044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1020.38,490.13 1031.93,492.7 1029.57,492.53 "
-       id="polygon21046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1020.01,492.16 1031.25,495.1 1031.19,494.61 "
-       id="polygon21048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1020.14,490.6 1031.63,493.07 1029.15,492.96 "
-       id="polygon21050" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1019.95,491.67 1031.19,494.61 1031.23,494.07 "
-       id="polygon21052" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1019.99,491.13 1031.38,493.54 1028.35,493.31 "
-       id="polygon21054" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.57,489.83 1024.49,489.61 1024.37,489.37 "
-       id="polygon21056" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.47,488.79 1024.18,488.71 1025.16,488.48 "
-       id="polygon21058" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1025.16,488.48 1024.18,488.71 1024.18,488.59 "
-       id="polygon21060" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1025.16,488.48 1028.47,488.79 1025.8,488.4 "
-       id="polygon21062" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.57,489.83 1024.29,489.21 1028.46,489.33 "
-       id="polygon21064" />
-    <polygon
-       style="opacity:1;fill:#001eae"
-       points="1029.44,490.26 1029.4,490.61 1029.76,490.55 "
-       id="polygon21066" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.47,488.79 1028.59,488.25 1025.8,488.4 "
-       id="polygon21068" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.72,485.57 1025.87,485.7 1026.95,485.22 "
-       id="polygon21070" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1024.02,499.45 1036.54,499.89 1036.31,499.5 "
-       id="polygon21072" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.7,497.5 1036.21,497.93 1036.39,497.46 "
-       id="polygon21074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1023.66,498.57 1036.17,499 1036.14,498.47 "
-       id="polygon21076" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.57,486.54 1025.71,486.66 1026.59,486.03 "
-       id="polygon21078" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.84,487.53 1025.99,487.65 1026.65,487.06 "
-       id="polygon21080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1041.62,497.65 1036.2,497.94 1040.95,497.51 "
-       id="polygon21082" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1036.36,497.46 1040.95,497.51 1036.2,497.94 "
-       id="polygon21084" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1040.47,497.38 1036.36,497.46 1040.95,497.51 "
-       id="polygon21086" />
-    <polygon
-       style="opacity:1;fill:#0000d9"
-       points="1043.38,497.95 1032.43,495.82 1032.08,495.88 "
-       id="polygon21088" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="1050.77,490.03 1040.1,488.64 1039.76,488.86 "
-       id="polygon21090" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="1039.77,488.86 1029.07,487.41 1028.78,487.78 "
-       id="polygon21092" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="1050.43,490.25 1039.76,488.86 1039.46,489.23 "
-       id="polygon21094" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.48,489.23 1028.78,487.78 1028.57,488.25 "
-       id="polygon21096" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="1029.41,487.19 1034.86,487.87 1034.34,487.85 "
-       id="polygon21098" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="1029.07,487.41 1033.3,487.88 1032.64,487.89 "
-       id="polygon21100" />
-    <polygon
-       style="opacity:1;fill:#001477"
-       points="1028.78,487.78 1039.77,488.86 1039.48,489.23 "
-       id="polygon21102" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1038.29,486.96 1027.42,488.17 1029.45,488.06 "
-       id="polygon21104" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1029.45,488.06 1027.42,488.17 1027.59,488.21 "
-       id="polygon21106" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.84,483.98 1026.98,485.2 1026.74,485.56 "
-       id="polygon21108" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="1039.47,491.68 1028.77,490.23 1029.06,490.5 "
-       id="polygon21110" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1027.42,488.17 1037.96,486.7 1038.29,486.96 "
-       id="polygon21112" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.91,486.72 1040.21,486.52 1037.66,486.33 "
-       id="polygon21114" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1037.96,486.7 1027.09,487.91 1027.42,488.17 "
-       id="polygon21116" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.61,484.35 1026.74,485.56 1026.6,486.02 "
-       id="polygon21118" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1040.95,497.51 1043.88,497.53 1041.62,497.65 "
-       id="polygon21120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1044.04,497.31 1040.47,497.38 1043.88,497.53 "
-       id="polygon21122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1043.88,497.53 1040.47,497.38 1040.95,497.51 "
-       id="polygon21124" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1042.78,497.57 1031.75,495.77 1031.48,495.5 "
-       id="polygon21126" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.27,491.28 1028.57,489.82 1028.77,490.23 "
-       id="polygon21128" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.69,486.32 1026.83,487.53 1027.09,487.91 "
-       id="polygon21130" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.46,484.81 1026.6,486.02 1026.57,486.54 "
-       id="polygon21132" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.16,490.78 1028.46,489.33 1028.57,489.82 "
-       id="polygon21134" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.27,489.7 1028.57,488.25 1028.46,488.79 "
-       id="polygon21136" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.51,485.84 1026.64,487.06 1026.83,487.53 "
-       id="polygon21138" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.43,485.32 1026.57,486.54 1026.64,487.06 "
-       id="polygon21140" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1042.59,497.17 1031.48,495.5 1031.29,495.11 "
-       id="polygon21142" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.16,490.23 1028.46,488.79 1028.46,489.33 "
-       id="polygon21144" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.5,496.67 1031.29,495.11 1031.2,494.61 "
-       id="polygon21146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1054.09,496.4 1063.13,496.91 1053.9,496.87 "
-       id="polygon21148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.94,496.87 1042.5,496.13 1042.6,495.6 "
-       id="polygon21150" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.52,496.13 1031.2,494.61 1031.21,494.07 "
-       id="polygon21152" />
-    <polygon
-       style="opacity:1;fill:#0056a5"
-       points="1027.63,484.91 1038.84,483.79 1038.49,483.7 "
-       id="polygon21154" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1036.32,499.49 1043.83,499.56 1036.55,499.89 "
-       id="polygon21156" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1036.13,498.47 1043.64,498.54 1036.17,499 "
-       id="polygon21158" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="1034.86,487.87 1040.46,488.57 1040.11,488.63 "
-       id="polygon21160" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="1034.34,487.85 1034.86,487.87 1040.11,488.63 "
-       id="polygon21162" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="1033.3,487.88 1040.11,488.63 1039.77,488.86 "
-       id="polygon21164" />
-    <polygon
-       style="opacity:1;fill:#00188c"
-       points="1032.64,487.89 1033.3,487.88 1039.77,488.86 "
-       id="polygon21166" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="1026.98,485.2 1038.14,483.76 1037.84,483.98 "
-       id="polygon21168" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="1029.06,490.5 1039.47,491.68 1039.76,491.95 "
-       id="polygon21170" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1029.45,488.06 1038.29,486.96 1038.64,487.05 "
-       id="polygon21172" />
-    <polygon
-       style="opacity:1;fill:#00519c"
-       points="1030.25,487.99 1029.45,488.06 1038.64,487.05 "
-       id="polygon21174" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1031.85,492.69 1043.16,494.75 1043.49,494.52 "
-       id="polygon21176" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.74,485.56 1037.84,483.98 1037.61,484.35 "
-       id="polygon21178" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.77,490.23 1039.27,491.28 1039.47,491.68 "
-       id="polygon21180" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.57,488.25 1039.48,489.23 1039.27,489.7 "
-       id="polygon21182" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.57,489.82 1039.16,490.78 1039.27,491.28 "
-       id="polygon21184" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.6,486.02 1037.61,484.35 1037.46,484.81 "
-       id="polygon21186" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.56,493.06 1043.16,494.75 1040.67,494.72 "
-       id="polygon21188" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1031.48,495.5 1042.78,497.57 1042.59,497.17 "
-       id="polygon21190" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1027.09,487.91 1037.69,486.32 1037.96,486.7 "
-       id="polygon21192" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.46,488.79 1039.27,489.7 1039.16,490.23 "
-       id="polygon21194" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1028.46,489.33 1039.16,490.23 1039.16,490.78 "
-       id="polygon21196" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.57,486.54 1037.46,484.81 1037.43,485.32 "
-       id="polygon21198" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.83,487.53 1037.51,485.84 1037.69,486.32 "
-       id="polygon21200" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1026.64,487.06 1037.43,485.32 1037.51,485.84 "
-       id="polygon21202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.34,493.53 1042.86,495.12 1040.32,495.17 "
-       id="polygon21204" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.29,495.11 1042.59,497.17 1042.5,496.67 "
-       id="polygon21206" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.21,494.07 1042.64,495.59 1039.63,495.61 "
-       id="polygon21208" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1031.2,494.61 1042.5,496.67 1042.52,496.13 "
-       id="polygon21210" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1043.75,499.27 1036.32,499.49 1043.83,499.56 "
-       id="polygon21212" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1043.69,498.21 1036.13,498.47 1043.64,498.54 "
-       id="polygon21214" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="1046.45,493.71 1050.94,493.33 1046.56,493.63 "
-       id="polygon21216" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.38,493.92 1045.86,494.69 1045.96,494.39 "
-       id="polygon21218" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="1050.63,493.55 1046.25,493.86 1050.94,493.33 "
-       id="polygon21220" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.23,494.38 1045.86,494.69 1050.38,493.92 "
-       id="polygon21222" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.49,484.79 1039.87,484.57 1037.64,484.32 "
-       id="polygon21224" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.5,485.84 1039.83,485.61 1037.44,485.32 "
-       id="polygon21226" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1048.81,499.61 1043.75,499.27 1043.83,499.56 "
-       id="polygon21228" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.64,484.32 1039.87,484.57 1039.99,484.2 "
-       id="polygon21230" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1048.62,498.58 1043.69,498.21 1043.64,498.54 "
-       id="polygon21232" />
-    <line
-       x1="1462.87"
-       y1="536.64001"
-       x2="1456.54"
-       y2="520.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21234" />
-    <line
-       x1="1463.63"
-       y1="536.78998"
-       x2="1463.63"
-       y2="536.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21236" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1462.76,539.62 1464.78,536.72 1465.3,536.92 "
-       id="polygon21238" />
-    <line
-       x1="1485.51"
-       y1="541.21997"
-       x2="1464.97"
-       y2="537.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21240" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1461.7,539.4 1463.72,536.84 1464.23,536.7 "
-       id="polygon21242" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1037.44,485.32 1039.83,485.61 1039.78,485.2 "
-       id="polygon21244" />
-    <polygon
-       style="opacity:1;fill:#0021c0"
-       points="1050.77,493.46 1040.1,492.06 1040.46,492 "
-       id="polygon21246" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="1051.13,489.97 1040.46,488.57 1040.1,488.64 "
-       id="polygon21248" />
-    <line
-       x1="1436.46"
-       y1="475.23999"
-       x2="1437.72"
-       y2="474.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21250" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="1050.14,493.07 1039.47,491.68 1039.76,491.95 "
-       id="polygon21252" />
-    <line
-       x1="1431.8101"
-       y1="479.60001"
-       x2="1432.89"
-       y2="478.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21254" />
-    <line
-       x1="1437.72"
-       y1="474.26001"
-       x2="1439.02"
-       y2="473.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21256" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1048.69,498.05 1043.69,498.21 1048.62,498.58 "
-       id="polygon21258" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1048.66,499.12 1043.75,499.27 1048.81,499.61 "
-       id="polygon21260" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.93,492.67 1039.26,491.27 1039.47,491.68 "
-       id="polygon21262" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.14,490.62 1039.46,489.23 1039.25,489.7 "
-       id="polygon21264" />
-    <line
-       x1="1430.79"
-       y1="480.78"
-       x2="1431.8101"
-       y2="479.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21266" />
-    <line
-       x1="1439.02"
-       y1="473.32999"
-       x2="1440.3199"
-       y2="472.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21268" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.82,492.17 1039.15,490.78 1039.26,491.27 "
-       id="polygon21270" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.93,491.09 1039.25,489.7 1039.14,490.23 "
-       id="polygon21272" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.82,491.63 1039.14,490.23 1039.15,490.78 "
-       id="polygon21274" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1060.13,498.52 1048.61,498.57 1048.69,498.04 "
-       id="polygon21276" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1053.96,498.45 1042.83,497.57 1042.62,497.17 "
-       id="polygon21278" />
-    <polygon
-       style="opacity:1;fill:#0073a6"
-       points="1049.82,483.21 1040.89,483.55 1040.97,483.57 "
-       id="polygon21280" />
-    <line
-       x1="1429.84"
-       y1="481.98999"
-       x2="1430.79"
-       y2="480.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21282" />
-    <polygon
-       style="opacity:1;fill:#0094d5"
-       points="1049.86,486.46 1041.59,486.67 1041.52,486.72 "
-       id="polygon21284" />
-    <line
-       x1="1440.3199"
-       y1="472.45999"
-       x2="1441.63"
-       y2="471.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21286" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.84,497.95 1042.62,497.17 1042.5,496.67 "
-       id="polygon21288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.84,497.4 1042.5,496.67 1042.5,496.13 "
-       id="polygon21290" />
-    <polygon
-       style="opacity:1;fill:#001785"
-       points="1056.62,494.48 1057.46,494.18 1056.46,494.49 "
-       id="polygon21292" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.21,494.96 1056.56,492.6 1050.18,494.49 "
-       id="polygon21294" />
-    <line
-       x1="1428.98"
-       y1="483.22"
-       x2="1429.84"
-       y2="481.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21296" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="1040.3,483.79 1049.13,483.18 1040.55,483.61 "
-       id="polygon21298" />
-    <line
-       x1="1458.51"
-       y1="515.40002"
-       x2="1458.89"
-       y2="514.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21300" />
-    <line
-       x1="1441.63"
-       y1="471.64001"
-       x2="1442.9399"
-       y2="470.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21302" />
-    <line
-       x1="1458.89"
-       y1="514.70001"
-       x2="1459.29"
-       y2="514.03003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21304" />
-    <line
-       x1="1457.8101"
-       y1="516.82001"
-       x2="1458.15"
-       y2="516.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21306" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="1049.13,483.18 1040.23,483.84 1040.3,483.79 "
-       id="polygon21308" />
-    <line
-       x1="1457.5"
-       y1="517.54999"
-       x2="1457.8101"
-       y2="516.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21310" />
-    <line
-       x1="1459.71"
-       y1="513.35999"
-       x2="1460.14"
-       y2="512.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21312" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="1040.04,484.13 1048.82,483.4 1040.23,483.84 "
-       id="polygon21314" />
-    <line
-       x1="1456.95"
-       y1="519.02002"
-       x2="1457.21"
-       y2="518.28003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21316" />
-    <polygon
-       style="opacity:1;fill:#005a81"
-       points="1048.84,486.17 1040.58,486.86 1040.51,486.8 "
-       id="polygon21318" />
-    <line
-       x1="1428.2"
-       y1="484.45999"
-       x2="1428.98"
-       y2="483.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21320" />
-    <line
-       x1="1456.73"
-       y1="519.77002"
-       x2="1456.95"
-       y2="519.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21322" />
-    <line
-       x1="1460.58"
-       y1="512.08002"
-       x2="1461.03"
-       y2="511.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21324" />
-    <polygon
-       style="opacity:1;fill:#005a81"
-       points="1040.51,486.8 1048.84,486.17 1040.26,486.6 "
-       id="polygon21326" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1039.87,484.57 1048.57,483.77 1039.99,484.2 "
-       id="polygon21328" />
-    <line
-       x1="1442.9399"
-       y1="470.89001"
-       x2="1444.24"
-       y2="470.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21330" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.59,485.77 1040.26,486.6 1040.21,486.52 "
-       id="polygon21332" />
-    <line
-       x1="1456.54"
-       y1="520.52002"
-       x2="1456.73"
-       y2="519.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21334" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1039.79,485.08 1048.41,484.23 1039.83,484.67 "
-       id="polygon21336" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1039.97,486.11 1048.43,485.29 1039.84,485.73 "
-       id="polygon21338" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1039.83,485.61 1048.37,484.76 1039.78,485.2 "
-       id="polygon21340" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.37,484.76 1039.84,485.73 1039.83,485.61 "
-       id="polygon21342" />
-    <line
-       x1="1461.48"
-       y1="510.88"
-       x2="1461.9399"
-       y2="510.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21344" />
-    <line
-       x1="1427.51"
-       y1="485.72"
-       x2="1428.2"
-       y2="484.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21346" />
-    <line
-       x1="1444.24"
-       y1="470.20001"
-       x2="1445.52"
-       y2="469.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21348" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="1039.76,488.86 1050.77,490.03 1050.43,490.25 "
-       id="polygon21350" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="1039.76,491.95 1050.14,493.07 1050.43,493.34 "
-       id="polygon21352" />
-    <line
-       x1="1462.4"
-       y1="509.75"
-       x2="1462.86"
-       y2="509.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21354" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="1039.46,489.23 1050.43,490.25 1050.14,490.62 "
-       id="polygon21356" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1056.58,492.8 1050.21,494.96 1056.56,492.6 "
-       id="polygon21358" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.47,491.68 1049.93,492.67 1050.14,493.07 "
-       id="polygon21360" />
-    <line
-       x1="1426.91"
-       y1="486.98001"
-       x2="1427.51"
-       y2="485.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21362" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1043.08,494.75 1054.42,496.02 1054.75,495.79 "
-       id="polygon21364" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.25,489.7 1050.14,490.62 1049.93,491.09 "
-       id="polygon21366" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1464.23,536.7 1461.7,539.4 1462.24,539.43 "
-       id="polygon21368" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.26,491.27 1049.82,492.17 1049.93,492.67 "
-       id="polygon21370" />
-    <polygon
-       style="opacity:1;fill:#0027e5"
-       points="1061.46,500.8 1050.34,500.09 1050.02,500.31 "
-       id="polygon21372" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.14,490.23 1049.93,491.09 1049.82,491.63 "
-       id="polygon21374" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1039.15,490.78 1049.82,491.63 1049.82,492.17 "
-       id="polygon21376" />
-    <line
-       x1="1445.52"
-       y1="469.57001"
-       x2="1446.77"
-       y2="469.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21378" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.8,495.12 1054.14,496.39 1054.42,496.02 "
-       id="polygon21380" />
-    <line
-       x1="1463.3199"
-       y1="508.70999"
-       x2="1463.76"
-       y2="508.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21382" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1042.83,497.57 1054.17,498.85 1053.96,498.45 "
-       id="polygon21384" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.6,495.6 1054.14,496.39 1051.17,496.56 "
-       id="polygon21386" />
-    <polygon
-       style="opacity:1;fill:#005d86"
-       points="1048.82,483.4 1040.23,483.84 1049.13,483.18 "
-       id="polygon21388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.62,497.17 1053.96,498.45 1053.84,497.95 "
-       id="polygon21390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.5,496.13 1053.84,497.4 1053.94,496.87 "
-       id="polygon21392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1042.5,496.67 1053.84,497.95 1053.84,497.4 "
-       id="polygon21394" />
-    <line
-       x1="1426.42"
-       y1="488.25"
-       x2="1426.91"
-       y2="486.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21396" />
-    <polygon
-       style="opacity:1;fill:#0020be"
-       points="1060.76,500.75 1049.66,500.38 1049.31,500.27 "
-       id="polygon21398" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="1048.57,483.77 1039.99,484.2 1048.82,483.4 "
-       id="polygon21400" />
-    <polygon
-       style="opacity:1;fill:#005a81"
-       points="1049.16,486.43 1040.58,486.86 1048.84,486.17 "
-       id="polygon21402" />
-    <line
-       x1="1446.77"
-       y1="469.01999"
-       x2="1447.99"
-       y2="468.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21404" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.41,484.23 1039.83,484.67 1048.57,483.77 "
-       id="polygon21406" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.84,486.17 1040.26,486.6 1048.59,485.77 "
-       id="polygon21408" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.37,484.76 1039.78,485.2 1048.41,484.23 "
-       id="polygon21410" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.59,485.77 1040.01,486.21 1048.43,485.29 "
-       id="polygon21412" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.43,485.29 1039.84,485.73 1048.37,484.76 "
-       id="polygon21414" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1060.08,499.59 1048.78,499.61 1048.64,499.11 "
-       id="polygon21416" />
-    <line
-       x1="1426.04"
-       y1="489.5"
-       x2="1426.42"
-       y2="488.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21418" />
-    <polygon
-       style="opacity:1;fill:#0040bb"
-       points="1056.64,495.9 1066.48,494.39 1056.99,495.99 "
-       id="polygon21420" />
-    <line
-       x1="1464.63"
-       y1="507.32999"
-       x2="1465.04"
-       y2="506.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21422" />
-    <polygon
-       style="opacity:1;fill:#00369c"
-       points="1056.3,495.65 1066.15,494.14 1056.64,495.9 "
-       id="polygon21424" />
-    <line
-       x1="1447.99"
-       y1="468.51999"
-       x2="1449.16"
-       y2="468.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21426" />
-    <polygon
-       style="opacity:1;fill:#002d83"
-       points="1056.03,495.28 1065.87,493.77 1056.3,495.65 "
-       id="polygon21428" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1055.84,494.81 1065.68,493.3 1056.03,495.28 "
-       id="polygon21430" />
-    <line
-       x1="1425.75"
-       y1="490.75"
-       x2="1426.04"
-       y2="489.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21432" />
-    <line
-       x1="1465.4301"
-       y1="506.53"
-       x2="1465.8101"
-       y2="506.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21434" />
-    <polygon
-       style="opacity:1;fill:#0072a5"
-       points="1049.51,486.19 1049.16,486.43 1049.51,486.53 "
-       id="polygon21436" />
-    <line
-       x1="1449.16"
-       y1="468.10001"
-       x2="1450.27"
-       y2="467.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21438" />
-    <polygon
-       style="opacity:1;fill:#002a7b"
-       points="1056.92,491.46 1065.95,488.31 1057.08,491.33 "
-       id="polygon21440" />
-    <line
-       x1="1425.59"
-       y1="491.98001"
-       x2="1425.75"
-       y2="490.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21442" />
-    <polygon
-       style="opacity:1;fill:#001b9e"
-       points="1049.31,500.27 1060.76,500.75 1060.46,500.48 "
-       id="polygon21444" />
-    <line
-       x1="1450.27"
-       y1="467.75"
-       x2="1451.3199"
-       y2="467.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21446" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.6,492.84 1055.84,494.81 1065.68,493.3 "
-       id="polygon21448" />
-    <polygon
-       style="opacity:1;fill:#0021bf"
-       points="1051.13,493.39 1059.04,494.5 1050.77,493.45 "
-       id="polygon21450" />
-    <line
-       x1="1466.5"
-       y1="505.5"
-       x2="1466.8"
-       y2="505.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21452" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1056.66,493.08 1065.45,489.79 1056.58,492.8 "
-       id="polygon21454" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1057.13,493.91 1065.82,490.7 1056.95,493.71 "
-       id="polygon21456" />
-    <line
-       x1="1425.53"
-       y1="493.20001"
-       x2="1425.59"
-       y2="491.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21458" />
-    <polygon
-       style="opacity:1;fill:#002a7b"
-       points="1065.68,488.54 1056.81,491.55 1065.95,488.31 "
-       id="polygon21460" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.5,488.88 1056.63,491.89 1065.68,488.54 "
-       id="polygon21462" />
-    <polygon
-       style="opacity:1;fill:#003aa8"
-       points="1065.67,489.79 1065.45,489.79 1065.49,489.44 "
-       id="polygon21464" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1065.44,489.41 1071.95,485.42 1065.47,489.02 "
-       id="polygon21466" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.42,489.31 1056.55,492.32 1065.5,488.88 "
-       id="polygon21468" />
-    <polygon
-       style="opacity:1;fill:#001fb7"
-       points="1059.65,491.14 1051.47,490.08 1059.88,491.35 "
-       id="polygon21470" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="1050.42,490.25 1058.86,491.14 1050.76,490.03 "
-       id="polygon21472" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1048.64,499.11 1060.08,499.59 1060.05,499.05 "
-       id="polygon21474" />
-    <polygon
-       style="opacity:1;fill:#002e85"
-       points="1066.47,491.26 1057.6,494.27 1066.13,491.04 "
-       id="polygon21476" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1066.13,491.04 1057.25,494.05 1065.82,490.7 "
-       id="polygon21478" />
-    <polygon
-       style="opacity:1;fill:#00157e"
-       points="1050.43,493.34 1058.38,494.2 1050.13,493.07 "
-       id="polygon21480" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="1050.13,490.62 1058.53,491.39 1050.42,490.25 "
-       id="polygon21482" />
-    <polygon
-       style="opacity:1;fill:#0095d7"
-       points="1050.09,486.26 1060.37,486.86 1049.77,486.49 "
-       id="polygon21484" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.82,490.7 1056.95,493.71 1065.59,490.27 "
-       id="polygon21486" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.13,493.07 1058.15,493.82 1049.92,492.66 "
-       id="polygon21488" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.92,491.09 1058.26,491.79 1050.13,490.62 "
-       id="polygon21490" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.59,490.27 1056.71,493.28 1065.45,489.79 "
-       id="polygon21492" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.92,492.66 1058.02,493.34 1049.81,492.17 "
-       id="polygon21494" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.45,489.79 1056.58,492.8 1065.42,489.31 "
-       id="polygon21496" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.8,491.63 1058.07,492.27 1049.92,491.09 "
-       id="polygon21498" />
-    <line
-       x1="1451.3199"
-       y1="467.45999"
-       x2="1452.3"
-       y2="467.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21500" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.81,492.17 1057.99,492.81 1049.8,491.63 "
-       id="polygon21502" />
-    <line
-       x1="1425.59"
-       y1="494.38"
-       x2="1425.53"
-       y2="493.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21504" />
-    <polygon
-       style="opacity:1;fill:#0075a8"
-       points="1060.15,483.45 1049.57,483.08 1060.48,483.55 "
-       id="polygon21506" />
-    <polygon
-       style="opacity:1;fill:#005f89"
-       points="1048.9,483.37 1059.79,483.52 1049.22,483.14 "
-       id="polygon21508" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1053.98,498.44 1063.02,498.95 1054.21,498.84 "
-       id="polygon21510" />
-    <polygon
-       style="opacity:1;fill:#005074"
-       points="1048.64,483.74 1059.47,483.76 1048.9,483.37 "
-       id="polygon21512" />
-    <polygon
-       style="opacity:1;fill:#005980"
-       points="1049.08,486.45 1059.38,486.57 1048.78,486.18 "
-       id="polygon21514" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.82,497.41 1062.86,497.91 1053.84,497.95 "
-       id="polygon21516" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.38,484.75 1059.04,484.61 1048.46,484.21 "
-       id="polygon21518" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.55,485.79 1059,485.68 1048.41,485.29 "
-       id="polygon21520" />
-    <line
-       x1="1452.3"
-       y1="467.23999"
-       x2="1453.21"
-       y2="467.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21522" />
-    <line
-       x1="1425.77"
-       y1="495.54001"
-       x2="1425.59"
-       y2="494.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21524" />
-    <polygon
-       style="opacity:1;fill:#00188b"
-       points="1058.6,491.31 1050.42,490.25 1058.86,491.14 "
-       id="polygon21526" />
-    <polygon
-       style="opacity:1;fill:#001ca4"
-       points="1060.84,500.43 1060.76,500.75 1060.46,500.48 "
-       id="polygon21528" />
-    <polygon
-       style="opacity:1;fill:#001476"
-       points="1058.31,491.68 1050.13,490.62 1058.53,491.39 "
-       id="polygon21530" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1058.32,494.13 1050.13,493.07 1058.15,493.82 "
-       id="polygon21532" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1050.13,490.62 1058.26,491.79 1058.31,491.68 "
-       id="polygon21534" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1058.1,492.15 1049.92,491.09 1058.26,491.79 "
-       id="polygon21536" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1058.1,493.73 1049.92,492.66 1058.02,493.34 "
-       id="polygon21538" />
-    <line
-       x1="1467.73"
-       y1="504.25"
-       x2="1467.88"
-       y2="504.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21540" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1057.99,492.68 1049.8,491.63 1058.07,492.27 "
-       id="polygon21542" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1057.99,493.23 1049.81,492.17 1057.99,492.81 "
-       id="polygon21544" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1049.8,491.63 1057.99,492.81 1057.99,492.68 "
-       id="polygon21546" />
-    <line
-       x1="1426.05"
-       y1="496.64999"
-       x2="1425.77"
-       y2="495.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21548" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1067.26,491.25 1065.93,491.49 1067.04,491.61 "
-       id="polygon21550" />
-    <line
-       x1="1453.21"
-       y1="467.09"
-       x2="1454.04"
-       y2="467"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21552" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1054.09,496.4 1063.4,496.54 1063.34,496.61 "
-       id="polygon21554" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1063.34,496.61 1054.09,496.4 1063.13,496.91 "
-       id="polygon21556" />
-    <line
-       x1="1421.88"
-       y1="446.42999"
-       x2="1423.0699"
-       y2="445.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21558" />
-    <line
-       x1="1420.73"
-       y1="447.54999"
-       x2="1421.88"
-       y2="446.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1062.91,498.56 1053.98,498.44 1063.02,498.95 "
-       id="polygon21562" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1053.98,498.44 1062.88,498.46 1062.91,498.56 "
-       id="polygon21564" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1062.92,497.49 1053.82,497.41 1062.86,497.91 "
-       id="polygon21566" />
-    <line
-       x1="1419.65"
-       y1="448.70001"
-       x2="1420.73"
-       y2="447.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21568" />
-    <polygon
-       style="opacity:1;fill:#005f89"
-       points="1059.48,483.74 1048.9,483.37 1059.79,483.52 "
-       id="polygon21570" />
-    <line
-       x1="1425.58"
-       y1="443.34"
-       x2="1426.87"
-       y2="442.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21572" />
-    <polygon
-       style="opacity:1;fill:#005074"
-       points="1048.9,483.37 1059.47,483.76 1059.48,483.74 "
-       id="polygon21574" />
-    <polygon
-       style="opacity:1;fill:#005980"
-       points="1059.67,486.82 1049.08,486.45 1059.38,486.57 "
-       id="polygon21576" />
-    <line
-       x1="1418.63"
-       y1="449.88"
-       x2="1419.65"
-       y2="448.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21578" />
-    <line
-       x1="1426.87"
-       y1="442.41"
-       x2="1428.1801"
-       y2="441.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21580" />
-    <line
-       x1="1426.46"
-       y1="497.73001"
-       x2="1426.05"
-       y2="496.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21582" />
-    <polygon
-       style="opacity:1;fill:#005980"
-       points="1048.78,486.18 1059.38,486.57 1059.37,486.56 "
-       id="polygon21584" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1059.37,486.56 1048.78,486.18 1059.15,486.18 "
-       id="polygon21586" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1059.04,484.59 1048.46,484.21 1059.21,484.13 "
-       id="polygon21588" />
-    <line
-       x1="1454.04"
-       y1="467"
-       x2="1454.77"
-       y2="466.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21590" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1048.46,484.21 1059.04,484.61 1059.04,484.59 "
-       id="polygon21592" />
-    <line
-       x1="1417.6801"
-       y1="451.09"
-       x2="1418.63"
-       y2="449.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21594" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1060.04,499.04 1065.22,499.44 1060.06,499.58 "
-       id="polygon21596" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1059,485.66 1048.41,485.29 1058.97,485.14 "
-       id="polygon21598" />
-    <line
-       x1="1428.1801"
-       y1="441.53"
-       x2="1429.49"
-       y2="440.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21600" />
-    <line
-       x1="1067.41"
-       y1="491.07001"
-       x2="1067.41"
-       y2="491.07001"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21602" />
-    <polygon
-       style="opacity:1;fill:#003aa8"
-       points="1065.42,489.31 1065.45,489.79 1065.49,489.44 "
-       id="polygon21604" />
-    <line
-       x1="1416.8"
-       y1="452.31"
-       x2="1417.6801"
-       y2="451.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21606" />
-    <line
-       x1="1429.49"
-       y1="440.70999"
-       x2="1430.8"
-       y2="439.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21608" />
-    <line
-       x1="1426.98"
-       y1="498.76999"
-       x2="1426.46"
-       y2="497.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21610" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="1061.07,491.63 1058.31,491.68 1058.53,491.39 "
-       id="polygon21612" />
-    <line
-       x1="1416.02"
-       y1="453.56"
-       x2="1416.8"
-       y2="452.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21614" />
-    <line
-       x1="1430.8"
-       y1="439.95001"
-       x2="1432.11"
-       y2="439.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21616" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="1060.41,500.48 1065.38,500.48 1065.5,500.7 "
-       id="polygon21618" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.46,493.55 1058.1,493.73 1058.02,493.34 "
-       id="polygon21620" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.57,492.47 1057.99,492.68 1058.07,492.27 "
-       id="polygon21622" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1061.07,491.63 1058.6,491.31 1061.41,491.4 "
-       id="polygon21624" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1060.06,499.58 1065.22,499.44 1065.23,499.73 "
-       id="polygon21626" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="1061.08,494.73 1058.61,494.41 1060.78,494.45 "
-       id="polygon21628" />
-    <line
-       x1="1415.33"
-       y1="454.81"
-       x2="1416.02"
-       y2="453.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21630" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1077.14,490 1067.05,491.6 1067.28,491.23 "
-       id="polygon21632" />
-    <polygon
-       style="opacity:1;fill:#001474"
-       points="1065.7,496.67 1063.66,496.36 1063.4,496.54 "
-       id="polygon21634" />
-    <polygon
-       style="opacity:1;fill:#003bab"
-       points="1061.41,491.4 1061.74,491.7 1061.45,491.74 "
-       id="polygon21636" />
-    <line
-       x1="1468.11"
-       y1="503.51001"
-       x2="1468.0699"
-       y2="503.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21638" />
-    <line
-       x1="1432.11"
-       y1="439.26001"
-       x2="1433.39"
-       y2="438.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21640" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.91,490.36 1066.92,492.06 1067.05,491.6 "
-       id="polygon21642" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.45,493 1057.99,492.68 1060.57,492.47 "
-       id="polygon21644" />
-    <line
-       x1="1427.61"
-       y1="499.75"
-       x2="1426.98"
-       y2="498.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21646" />
-    <polygon
-       style="opacity:1;fill:#00a6c0"
-       points="1067.4,487.91 1060.32,486.96 1060.66,486.89 "
-       id="polygon21648" />
-    <polygon
-       style="opacity:1;fill:#00a6c0"
-       points="1067.17,487.92 1060.32,486.96 1067.4,487.91 "
-       id="polygon21650" />
-    <polygon
-       style="opacity:1;fill:#0053a0"
-       points="1066.98,491.15 1073.24,487.39 1066.64,491.1 "
-       id="polygon21652" />
-    <polygon
-       style="opacity:1;fill:#009ab1"
-       points="1060.65,483.8 1060.69,483.45 1060.34,483.52 "
-       id="polygon21654" />
-    <line
-       x1="1464.97"
-       y1="537.06"
-       x2="1463.63"
-       y2="536.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21656" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.78,490.82 1066.89,492.58 1066.92,492.06 "
-       id="polygon21658" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1065.52,489.84 1071.95,485.82 1065.44,489.41 "
-       id="polygon21660" />
-    <polygon
-       style="opacity:1;fill:#001474"
-       points="1066.03,496.44 1063.66,496.36 1065.7,496.67 "
-       id="polygon21662" />
-    <polygon
-       style="opacity:1;fill:#004687"
-       points="1066.64,491.1 1072.89,487.25 1066.29,490.92 "
-       id="polygon21664" />
-    <polygon
-       style="opacity:1;fill:#001ca3"
-       points="1066.36,496.73 1066.38,496.38 1066.73,496.48 "
-       id="polygon21666" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.84,491.86 1067.16,493.57 1066.98,493.1 "
-       id="polygon21668" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.75,491.34 1066.98,493.1 1066.89,492.58 "
-       id="polygon21670" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1062.94,497.38 1065.25,497.51 1062.92,497.49 "
-       id="polygon21672" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1065.7,490.26 1072.06,486.25 1065.52,489.84 "
-       id="polygon21674" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1066.29,490.92 1072.55,487 1065.96,490.63 "
-       id="polygon21676" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1062.88,498.46 1065.19,498.59 1062.91,498.56 "
-       id="polygon21678" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1065.19,498.59 1062.86,498.02 1062.88,498.46 "
-       id="polygon21680" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1065.96,490.63 1072.27,486.65 1065.7,490.26 "
-       id="polygon21682" />
-    <line
-       x1="1414.73"
-       y1="456.07001"
-       x2="1415.33"
-       y2="454.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21684" />
-    <line
-       x1="1433.39"
-       y1="438.63"
-       x2="1434.64"
-       y2="438.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21686" />
-    <line
-       x1="1455.41"
-       y1="467.01999"
-       x2="1455.96"
-       y2="467.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21688" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.79,486.57 1059.37,486.56 1059.56,486.17 "
-       id="polygon21690" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.47,484.6 1059.04,484.59 1059.64,484.13 "
-       id="polygon21692" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1065.25,497.51 1062.92,497.49 1065.16,498.05 "
-       id="polygon21694" />
-    <line
-       x1="1428.34"
-       y1="500.69"
-       x2="1427.61"
-       y2="499.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21696" />
-    <line
-       x1="1414.23"
-       y1="457.32999"
-       x2="1414.73"
-       y2="456.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21698" />
-    <polygon
-       style="opacity:1;fill:#004e95"
-       points="1067.92,490.94 1077.78,489.7 1078.13,489.8 "
-       id="polygon21700" />
-    <polygon
-       style="opacity:1;fill:#004ad7"
-       points="1066.25,501.26 1072.41,501.73 1066.45,501.23 "
-       id="polygon21702" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1072.06,501.62 1065.77,501.03 1065.91,501.15 "
-       id="polygon21704" />
-    <line
-       x1="1413.84"
-       y1="458.59"
-       x2="1414.23"
-       y2="457.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21706" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1067.28,491.23 1077.14,490 1077.44,489.77 "
-       id="polygon21708" />
-    <line
-       x1="1429.1801"
-       y1="501.57001"
-       x2="1428.34"
-       y2="500.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21710" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1072.78,487.2 1066.29,490.92 1072.55,487 "
-       id="polygon21712" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1072.18,486.54 1065.7,490.26 1072.06,486.25 "
-       id="polygon21714" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1072.45,486.91 1065.96,490.63 1072.27,486.65 "
-       id="polygon21716" />
-    <polygon
-       style="opacity:1;fill:#002b7f"
-       points="1065.38,500.48 1071.53,500.95 1065.5,500.7 "
-       id="polygon21718" />
-    <line
-       x1="1435.85"
-       y1="437.56"
-       x2="1437.02"
-       y2="437.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21720" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1067.05,491.6 1076.91,490.36 1077.14,490 "
-       id="polygon21722" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.4,500.45 1065.31,500.25 1071.53,500.95 "
-       id="polygon21724" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="1082.79,502.12 1071.73,501.35 1071.51,500.95 "
-       id="polygon21726" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.53,500.95 1065.31,500.25 1065.38,500.48 "
-       id="polygon21728" />
-    <polygon
-       style="opacity:1;fill:#0042bf"
-       points="1072.06,496.25 1061.42,494.84 1061.78,494.78 "
-       id="polygon21730" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1066.92,492.06 1076.78,490.82 1076.91,490.36 "
-       id="polygon21732" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1066.89,492.58 1076.75,491.34 1076.78,490.82 "
-       id="polygon21734" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1067.16,493.57 1077.02,492.34 1076.84,491.86 "
-       id="polygon21736" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1066.98,493.1 1076.84,491.86 1076.75,491.34 "
-       id="polygon21738" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1072.42,492.75 1061.78,491.34 1061.41,491.4 "
-       id="polygon21740" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.38,499.91 1065.27,499.2 1065.22,499.44 "
-       id="polygon21742" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1065.22,499.44 1071.38,499.91 1065.23,499.73 "
-       id="polygon21744" />
-    <polygon
-       style="opacity:1;fill:#00a6c0"
-       points="1071.42,488.51 1067.17,487.92 1067.4,487.91 "
-       id="polygon21746" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1067.43,493.95 1077.29,492.72 1077.02,492.34 "
-       id="polygon21748" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1072.05,492.81 1061.41,491.4 1061.07,491.63 "
-       id="polygon21750" />
-    <line
-       x1="1413.5601"
-       y1="459.82999"
-       x2="1413.84"
-       y2="458.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21752" />
-    <line
-       x1="1467.52"
-       y1="503.14999"
-       x2="1467.29"
-       y2="503.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21754" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="1071.42,495.86 1060.78,494.45 1061.07,494.72 "
-       id="polygon21756" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="1071.71,493.04 1061.07,491.63 1060.77,491.99 "
-       id="polygon21758" />
-    <polygon
-       style="opacity:1;fill:#001a9a"
-       points="1078.02,496.68 1066.34,496.39 1066.7,496.5 "
-       id="polygon21760" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.2,495.46 1060.56,494.05 1060.78,494.45 "
-       id="polygon21762" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.41,493.4 1060.77,491.99 1060.56,492.47 "
-       id="polygon21764" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.8,490.57 1070.59,487.73 1070.75,488.13 "
-       id="polygon21766" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="1070.82,488.13 1059.72,486.58 1059.99,486.85 "
-       id="polygon21768" />
-    <polygon
-       style="opacity:1;fill:#006777"
-       points="1071.13,485.29 1060.02,483.75 1059.74,484.12 "
-       id="polygon21770" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.09,494.96 1060.45,493.55 1060.56,494.05 "
-       id="polygon21772" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.2,493.88 1060.56,492.47 1060.45,493 "
-       id="polygon21774" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.09,494.41 1060.45,493 1060.45,493.55 "
-       id="polygon21776" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.63,487.73 1059.52,486.18 1059.72,486.58 "
-       id="polygon21778" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.84,485.66 1059.74,484.12 1059.53,484.6 "
-       id="polygon21780" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1071.76,501.35 1065.77,501.03 1072.06,501.62 "
-       id="polygon21782" />
-    <polygon
-       style="opacity:1;fill:#001a9a"
-       points="1066.34,496.39 1077.66,496.57 1078.02,496.68 "
-       id="polygon21784" />
-    <polygon
-       style="opacity:1;fill:#001373"
-       points="1077.31,496.64 1065.66,496.68 1065.99,496.45 "
-       id="polygon21786" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.52,487.23 1059.42,485.68 1059.52,486.18 "
-       id="polygon21788" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.64,486.14 1059.53,484.6 1059.42,485.14 "
-       id="polygon21790" />
-    <line
-       x1="1413.39"
-       y1="461.06"
-       x2="1413.5601"
-       y2="459.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21792" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.53,486.68 1059.42,485.14 1059.42,485.68 "
-       id="polygon21794" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.72,497.23 1065.22,497.52 1065.4,497.04 "
-       id="polygon21796" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.47,498.23 1065.19,498.59 1065.15,498.05 "
-       id="polygon21798" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1074.9,483.6 1071.92,485.69 1071.95,485.42 "
-       id="polygon21800" />
-    <line
-       x1="1466.7"
-       y1="503.04999"
-       x2="1466.34"
-       y2="503.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21802" />
-    <line
-       x1="1456.73"
-       y1="467.48001"
-       x2="1456.95"
-       y2="467.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21804" />
-    <line
-       x1="1413.34"
-       y1="462.26999"
-       x2="1413.39"
-       y2="461.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21806" />
-    <polygon
-       style="opacity:1;fill:#009fb8"
-       points="1061.01,483.56 1072.39,485.38 1072.12,485.11 "
-       id="polygon21808" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1061.07,491.63 1072.05,492.81 1071.71,493.04 "
-       id="polygon21810" />
-    <line
-       x1="1413.39"
-       y1="463.45001"
-       x2="1413.34"
-       y2="462.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21812" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="1061.07,494.72 1071.42,495.86 1071.71,496.14 "
-       id="polygon21814" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1074.95,484.42 1072,486.11 1074.87,483.99 "
-       id="polygon21816" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.93,490.35 1079.42,490.12 1076.79,490.81 "
-       id="polygon21818" />
-    <polygon
-       style="opacity:1;fill:#00798c"
-       points="1060.02,483.75 1071.45,485.06 1071.13,485.29 "
-       id="polygon21820" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075.73,485.51 1072.78,487.2 1075.4,485.21 "
-       id="polygon21822" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075.4,485.21 1072.45,486.91 1075.13,484.84 "
-       id="polygon21824" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1077,492.34 1079.49,492.11 1077.27,492.73 "
-       id="polygon21826" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="1060.77,491.99 1071.71,493.04 1071.41,493.4 "
-       id="polygon21828" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.78,494.45 1071.2,495.46 1071.42,495.86 "
-       id="polygon21830" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.75,491.34 1079.24,491.11 1076.82,491.86 "
-       id="polygon21832" />
-    <polygon
-       style="opacity:1;fill:#006777"
-       points="1059.74,484.12 1071.13,485.29 1070.84,485.66 "
-       id="polygon21834" />
-    <line
-       x1="1433.49"
-       y1="504.48001"
-       x2="1432.28"
-       y2="503.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21836" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.72,486.58 1070.63,487.73 1070.82,488.13 "
-       id="polygon21838" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.56,492.47 1071.41,493.4 1071.2,493.88 "
-       id="polygon21840" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="1076.39,485.38 1076.48,485.63 1076.77,485.54 "
-       id="polygon21842" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.56,494.05 1071.09,494.96 1071.2,495.46 "
-       id="polygon21844" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.45,493 1071.2,493.88 1071.09,494.41 "
-       id="polygon21846" />
-    <line
-       x1="1465.52"
-       y1="502.98999"
-       x2="1465.05"
-       y2="502.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21848" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1060.45,493.55 1071.09,494.41 1071.09,494.96 "
-       id="polygon21850" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.53,484.6 1070.84,485.66 1070.64,486.14 "
-       id="polygon21852" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.52,486.18 1070.52,487.23 1070.63,487.73 "
-       id="polygon21854" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.42,485.14 1070.64,486.14 1070.53,486.68 "
-       id="polygon21856" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1059.42,485.68 1070.53,486.68 1070.52,487.23 "
-       id="polygon21858" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.79,490.81 1079.42,490.12 1079.31,490.46 "
-       id="polygon21860" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1079.69,492.4 1077.27,492.73 1079.75,492.5 "
-       id="polygon21862" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1077.27,492.73 1079.49,492.11 1079.69,492.4 "
-       id="polygon21864" />
-    <line
-       x1="1440.17"
-       y1="436.25"
-       x2="1441.08"
-       y2="436.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21866" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1076.82,491.86 1079.24,491.11 1079.3,491.5 "
-       id="polygon21868" />
-    <line
-       x1="1413.5601"
-       y1="464.60001"
-       x2="1413.39"
-       y2="463.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21870" />
-    <line
-       x1="1434.77"
-       y1="505.04001"
-       x2="1433.49"
-       y2="504.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21872" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1074.9,483.69 1077.98,481.42 1075.02,483.39 "
-       id="polygon21874" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.48,499.37 1082.76,500.54 1082.96,500.06 "
-       id="polygon21876" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1065.57,499.48 1076.89,499.67 1076.65,499.27 "
-       id="polygon21878" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1065.22,497.52 1076.54,497.7 1076.72,497.23 "
-       id="polygon21880" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1074.89,484.06 1077.94,481.76 1074.9,483.69 "
-       id="polygon21882" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1065.19,498.59 1076.51,498.78 1076.47,498.23 "
-       id="polygon21884" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075,484.45 1078,482.14 1074.89,484.06 "
-       id="polygon21886" />
-    <polygon
-       style="opacity:1;fill:#005e88"
-       points="1076.15,485.59 1079.08,483.36 1075.8,485.44 "
-       id="polygon21888" />
-    <polygon
-       style="opacity:1;fill:#009ee4"
-       points="1076.98,485.33 1080.1,482.95 1080.02,483.15 "
-       id="polygon21890" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075.19,484.84 1078.17,482.54 1075,484.45 "
-       id="polygon21892" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075.47,485.18 1078.42,482.89 1075.19,484.84 "
-       id="polygon21894" />
-    <line
-       x1="1436.13"
-       y1="505.54001"
-       x2="1434.77"
-       y2="505.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21896" />
-    <line
-       x1="1413.85"
-       y1="465.70999"
-       x2="1413.5601"
-       y2="464.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21898" />
-    <line
-       x1="1464.0699"
-       y1="503.45999"
-       x2="1462.98"
-       y2="503.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21900" />
-    <line
-       x1="1441.08"
-       y1="436.09"
-       x2="1441.9"
-       y2="435.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21902" />
-    <polygon
-       style="opacity:1;fill:#009de3"
-       points="1080.77,492.79 1088.15,492.11 1081,492.62 "
-       id="polygon21904" />
-    <line
-       x1="1409.66"
-       y1="415.37"
-       x2="1410.86"
-       y2="414.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21906" />
-    <line
-       x1="1410.86"
-       y1="414.29001"
-       x2="1412.1"
-       y2="413.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21908" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1083.01,502.52 1072.03,501.62 1071.73,501.35 "
-       id="polygon21910" />
-    <line
-       x1="1408.52"
-       y1="416.48999"
-       x2="1409.66"
-       y2="415.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21912" />
-    <line
-       x1="1412.1"
-       y1="413.26001"
-       x2="1413.37"
-       y2="412.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21914" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075,484.45 1078.17,482.54 1078.04,482.27 "
-       id="polygon21916" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1078.84,483.26 1075.8,485.44 1078.74,483.18 "
-       id="polygon21918" />
-    <line
-       x1="1407.4301"
-       y1="417.64001"
-       x2="1408.52"
-       y2="416.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21920" />
-    <line
-       x1="1413.37"
-       y1="412.26999"
-       x2="1414.66"
-       y2="411.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21922" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1075.47,485.18 1078.74,483.18 1078.51,483 "
-       id="polygon21924" />
-    <line
-       x1="1437.55"
-       y1="505.95999"
-       x2="1436.13"
-       y2="505.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21926" />
-    <line
-       x1="1462.98"
-       y1="503.95001"
-       x2="1461.8101"
-       y2="504.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21928" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.66,501.62 1071.51,500.95 1071.38,500.45 "
-       id="polygon21930" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.66,501.07 1071.38,500.45 1071.38,499.9 "
-       id="polygon21932" />
-    <line
-       x1="1457.05"
-       y1="468.37"
-       x2="1456.9301"
-       y2="468.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21934" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="1087.46,492.08 1080,492.69 1080.08,492.75 "
-       id="polygon21936" />
-    <line
-       x1="1406.4"
-       y1="418.82001"
-       x2="1407.4301"
-       y2="417.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21938" />
-    <line
-       x1="1414.66"
-       y1="411.34"
-       x2="1415.98"
-       y2="410.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21940" />
-    <line
-       x1="1414.25"
-       y1="466.79001"
-       x2="1413.85"
-       y2="465.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21942" />
-    <polygon
-       style="opacity:1;fill:#006c9c"
-       points="1079.75,492.5 1087.13,491.82 1080,492.69 "
-       id="polygon21944" />
-    <line
-       x1="1441.9"
-       y1="435.98999"
-       x2="1442.63"
-       y2="435.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21946" />
-    <line
-       x1="1405.45"
-       y1="420.03"
-       x2="1406.4"
-       y2="418.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21948" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1079.32,491.63 1086.7,490.95 1079.45,491.99 "
-       id="polygon21950" />
-    <line
-       x1="1415.98"
-       y1="410.45001"
-       x2="1417.29"
-       y2="409.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21952" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1086.7,490.95 1079.3,491.5 1079.32,491.63 "
-       id="polygon21954" />
-    <line
-       x1="1439.03"
-       y1="506.32001"
-       x2="1437.55"
-       y2="505.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21956" />
-    <line
-       x1="1461.8101"
-       y1="504.41"
-       x2="1460.5601"
-       y2="504.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21958" />
-    <line
-       x1="1404.5699"
-       y1="421.26001"
-       x2="1405.45"
-       y2="420.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21960" />
-    <line
-       x1="1417.29"
-       y1="409.63"
-       x2="1418.61"
-       y2="408.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21962" />
-    <polygon
-       style="opacity:1;fill:#009fb7"
-       points="1083.68,488.22 1072.47,485.38 1072.23,485.12 "
-       id="polygon21964" />
-    <line
-       x1="1440.55"
-       y1="506.60001"
-       x2="1439.03"
-       y2="506.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21966" />
-    <line
-       x1="1414.77"
-       y1="467.82001"
-       x2="1414.25"
-       y2="466.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21968" />
-    <line
-       x1="1460.5601"
-       y1="504.85001"
-       x2="1459.24"
-       y2="505.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21970" />
-    <line
-       x1="1442.11"
-       y1="506.82001"
-       x2="1440.55"
-       y2="506.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21972" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1077.98,481.42 1083.63,477.24 1078.06,481.21 "
-       id="polygon21974" />
-    <line
-       x1="1459.24"
-       y1="505.26999"
-       x2="1457.85"
-       y2="505.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21976" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1077.94,481.76 1083.52,477.55 1077.94,481.51 "
-       id="polygon21978" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1083.07,494.23 1072.43,492.75 1072.06,492.81 "
-       id="polygon21980" />
-    <polygon
-       style="opacity:1;fill:#009fb7"
-       points="1072.23,485.12 1083.68,488.22 1083.44,487.95 "
-       id="polygon21982" />
-    <polygon
-       style="opacity:1;fill:#007c8f"
-       points="1082.8,487.91 1071.59,485.08 1071.26,485.31 "
-       id="polygon21984" />
-    <polygon
-       style="opacity:1;fill:#008ba1"
-       points="1079.42,483.44 1084.8,479.42 1079.19,483.41 "
-       id="polygon21986" />
-    <line
-       x1="1443.7"
-       y1="506.97"
-       x2="1442.11"
-       y2="506.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21988" />
-    <line
-       x1="1419.91"
-       y1="408.16"
-       x2="1421.1899"
-       y2="407.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21990" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1078,482.14 1083.52,477.91 1077.93,481.88 "
-       id="polygon21992" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1083.52,477.91 1078.04,482.27 1078,482.14 "
-       id="polygon21994" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1081.96,490.97 1070.75,488.13 1070.99,488.39 "
-       id="polygon21996" />
-    <line
-       x1="1457.85"
-       y1="505.64999"
-       x2="1456.4"
-       y2="506"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line21998" />
-    <line
-       x1="1415.39"
-       y1="468.79999"
-       x2="1414.77"
-       y2="467.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22000" />
-    <polygon
-       style="opacity:1;fill:#007688"
-       points="1079.08,483.36 1084.45,479.28 1078.84,483.26 "
-       id="polygon22002" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1078.17,482.54 1083.63,478.31 1078.04,482.27 "
-       id="polygon22004" />
-    <polygon
-       style="opacity:1;fill:#00308c"
-       points="1082.7,494.29 1072.06,492.81 1071.71,493.03 "
-       id="polygon22006" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1078.74,483.18 1084.12,479.02 1078.51,483 "
-       id="polygon22008" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1078.42,482.89 1083.84,478.69 1078.23,482.66 "
-       id="polygon22010" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1082.47,488.14 1071.26,485.31 1070.96,485.68 "
-       id="polygon22012" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1072.03,501.62 1083.31,502.8 1083.01,502.52 "
-       id="polygon22014" />
-    <line
-       x1="1445.3101"
-       y1="507.04999"
-       x2="1443.7"
-       y2="506.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22016" />
-    <line
-       x1="1456.4"
-       y1="506"
-       x2="1454.89"
-       y2="506.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22018" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.7,497.23 1082.31,497.2 1076.52,497.71 "
-       id="polygon22020" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.52,497.71 1082.31,497.2 1082.23,497.44 "
-       id="polygon22022" />
-    <polygon
-       style="opacity:1;fill:#002b7d"
-       points="1082.05,497.35 1071.41,495.86 1071.7,496.14 "
-       id="polygon22024" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1082.18,488.52 1070.96,485.68 1070.73,486.16 "
-       id="polygon22026" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="1082.36,494.51 1071.71,493.03 1071.41,493.4 "
-       id="polygon22028" />
-    <polygon
-       style="opacity:1;fill:#002b7e"
-       points="1071.73,501.35 1083.01,502.52 1082.79,502.12 "
-       id="polygon22030" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.74,490.07 1070.53,487.23 1070.59,487.73 "
-       id="polygon22032" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.94,489 1070.73,486.16 1070.58,486.69 "
-       id="polygon22034" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.79,489.53 1070.58,486.69 1070.53,487.23 "
-       id="polygon22036" />
-    <line
-       x1="1446.9301"
-       y1="507.07999"
-       x2="1445.3101"
-       y2="507.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22038" />
-    <polygon
-       style="opacity:1;fill:#002b7d"
-       points="1082.77,502.11 1090.85,503.11 1082.99,502.52 "
-       id="polygon22040" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.51,500.95 1082.79,502.12 1082.66,501.62 "
-       id="polygon22042" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.84,496.94 1071.2,495.46 1071.41,495.86 "
-       id="polygon22044" />
-    <line
-       x1="1454.89"
-       y1="506.29999"
-       x2="1453.35"
-       y2="506.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22046" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.06,494.88 1071.41,493.4 1071.2,493.88 "
-       id="polygon22048" />
-    <line
-       x1="1421.1899"
-       y1="407.53"
-       x2="1422.45"
-       y2="406.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22050" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.38,499.9 1082.66,501.07 1082.76,500.54 "
-       id="polygon22052" />
-    <line
-       x1="1443.27"
-       y1="435.98999"
-       x2="1443.8199"
-       y2="436.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22054" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.65,501.61 1090.73,502.61 1082.77,502.11 "
-       id="polygon22056" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.38,500.45 1082.66,501.62 1082.66,501.07 "
-       id="polygon22058" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1076.66,499.26 1082.27,499.23 1076.9,499.66 "
-       id="polygon22060" />
-    <line
-       x1="1448.55"
-       y1="507.04001"
-       x2="1446.9301"
-       y2="507.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22062" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.73,496.44 1071.08,494.96 1071.2,495.46 "
-       id="polygon22064" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.84,495.36 1071.2,493.88 1071.09,494.41 "
-       id="polygon22066" />
-    <line
-       x1="1453.35"
-       y1="506.56"
-       x2="1451.77"
-       y2="506.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22068" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.73,495.89 1071.09,494.41 1071.08,494.96 "
-       id="polygon22070" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.45,498.23 1082.07,498.2 1076.5,498.77 "
-       id="polygon22072" />
-    <line
-       x1="1450.17"
-       y1="506.92999"
-       x2="1448.55"
-       y2="507.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22074" />
-    <line
-       x1="1451.77"
-       y1="506.76999"
-       x2="1450.17"
-       y2="506.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22076" />
-    <line
-       x1="1416.13"
-       y1="469.73001"
-       x2="1415.39"
-       y2="468.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22078" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1083.52,477.51 1077.94,481.51 1083.63,477.24 "
-       id="polygon22080" />
-    <line
-       x1="1422.45"
-       y1="406.95001"
-       x2="1423.66"
-       y2="406.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22082" />
-    <polygon
-       style="opacity:1;fill:#008ba1"
-       points="1085.11,479.45 1079.53,483.45 1084.8,479.42 "
-       id="polygon22084" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1083.51,477.88 1077.93,481.88 1083.52,477.55 "
-       id="polygon22086" />
-    <line
-       x1="1456.34"
-       y1="469.59"
-       x2="1455.88"
-       y2="470.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22088" />
-    <polygon
-       style="opacity:1;fill:#007688"
-       points="1084.77,479.42 1079.19,483.41 1084.45,479.28 "
-       id="polygon22090" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1083.61,478.27 1078.04,482.27 1083.52,477.91 "
-       id="polygon22092" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1084.42,479.26 1078.84,483.26 1084.12,479.02 "
-       id="polygon22094" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1083.81,478.66 1078.23,482.66 1083.63,478.31 "
-       id="polygon22096" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1084.09,479 1078.51,483 1083.84,478.69 "
-       id="polygon22098" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1082.4,499.43 1076.9,499.66 1082.52,499.63 "
-       id="polygon22100" />
-    <line
-       x1="1416.97"
-       y1="470.60999"
-       x2="1416.13"
-       y2="469.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22102" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1076.9,499.66 1082.27,499.23 1082.4,499.43 "
-       id="polygon22104" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1076.5,498.77 1082.07,498.2 1082.1,498.47 "
-       id="polygon22106" />
-    <line
-       x1="1423.66"
-       y1="406.45001"
-       x2="1424.83"
-       y2="406.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22108" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1070.99,488.39 1081.96,490.97 1082.2,491.23 "
-       id="polygon22110" />
-    <polygon
-       style="opacity:1;fill:#007c8f"
-       points="1071.26,485.31 1082.8,487.91 1082.47,488.14 "
-       id="polygon22112" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1082.1,491.2 1081.89,490.94 1084.88,492.18 "
-       id="polygon22114" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.75,488.13 1081.8,490.57 1081.96,490.97 "
-       id="polygon22116" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1070.96,485.68 1082.47,488.14 1082.18,488.52 "
-       id="polygon22118" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.1,494.72 1081.77,490.56 1081.89,490.94 "
-       id="polygon22120" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.59,487.73 1081.74,490.07 1081.8,490.57 "
-       id="polygon22122" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.73,486.16 1082.18,488.52 1081.94,489 "
-       id="polygon22124" />
-    <polygon
-       style="opacity:1;fill:#00308c"
-       points="1071.71,493.03 1082.7,494.29 1082.36,494.51 "
-       id="polygon22126" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.53,487.23 1081.79,489.53 1081.74,490.07 "
-       id="polygon22128" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1070.58,486.69 1081.94,489 1081.79,489.53 "
-       id="polygon22130" />
-    <polygon
-       style="opacity:1;fill:#002b7d"
-       points="1071.7,496.14 1082.05,497.35 1082.35,497.62 "
-       id="polygon22132" />
-    <line
-       x1="1417.91"
-       y1="471.42001"
-       x2="1416.97"
-       y2="470.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22134" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="1087.38,488.82 1095.6,488.38 1087.06,489.05 "
-       id="polygon22136" />
-    <polygon
-       style="opacity:1;fill:#002976"
-       points="1071.41,493.4 1082.36,494.51 1082.06,494.88 "
-       id="polygon22138" />
-    <line
-       x1="1424.83"
-       y1="406.01001"
-       x2="1425.9399"
-       y2="405.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22140" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.41,495.86 1081.84,496.94 1082.05,497.35 "
-       id="polygon22142" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.2,493.88 1082.06,494.88 1081.84,495.36 "
-       id="polygon22144" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.2,495.46 1081.73,496.44 1081.84,496.94 "
-       id="polygon22146" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.09,494.41 1081.84,495.36 1081.73,495.89 "
-       id="polygon22148" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1071.08,494.96 1081.73,495.89 1081.73,496.44 "
-       id="polygon22150" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="1087.1,491.83 1095.33,491.39 1087.42,492.09 "
-       id="polygon22152" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1086.82,489.42 1095.05,488.98 1086.67,489.89 "
-       id="polygon22154" />
-    <line
-       x1="1455.3"
-       y1="470.51999"
-       x2="1454.61"
-       y2="471.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22156" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.95,478.38 1084.09,479 1084.68,478.04 "
-       id="polygon22158" />
-    <polygon
-       style="opacity:1;fill:#00b9b0"
-       points="1084.68,477.64 1084.38,477.26 1084.48,477.66 "
-       id="polygon22160" />
-    <line
-       x1="1418.9399"
-       y1="472.17999"
-       x2="1417.91"
-       y2="471.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22162" />
-    <line
-       x1="1425.9399"
-       y1="405.64001"
-       x2="1426.99"
-       y2="405.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22164" />
-    <polygon
-       style="opacity:1;fill:#004ad8"
-       points="1083.64,502.91 1091.72,503.9 1084.01,502.85 "
-       id="polygon22166" />
-    <line
-       x1="1454.61"
-       y1="471.01001"
-       x2="1453.8199"
-       y2="471.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22168" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="1088.18,499.6 1082.4,499.43 1082.52,499.63 "
-       id="polygon22170" />
-    <line
-       x1="1420.0699"
-       y1="472.87"
-       x2="1418.9399"
-       y2="472.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22172" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.39,477.29 1088.79,473.65 1084.39,476.94 "
-       id="polygon22174" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1087.78,498.71 1082.1,498.47 1082.12,498.74 "
-       id="polygon22176" />
-    <polygon
-       style="opacity:1;fill:#00a19a"
-       points="1085.99,478.78 1090.24,475.29 1085.66,478.75 "
-       id="polygon22178" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1083.27,499.69 1091.34,500.68 1082.97,500.06 "
-       id="polygon22180" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.5,477.67 1088.84,474.02 1084.39,477.29 "
-       id="polygon22182" />
-    <polygon
-       style="opacity:1;fill:#004e71"
-       points="1095.55,488.42 1087.06,489.05 1095.29,488.61 "
-       id="polygon22184" />
-    <line
-       x1="1426.99"
-       y1="405.34"
-       x2="1427.98"
-       y2="405.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22186" />
-    <polygon
-       style="opacity:1;fill:#008982"
-       points="1085.66,478.75 1089.9,475.21 1085.32,478.61 "
-       id="polygon22188" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.71,478.04 1089.01,474.39 1084.5,477.67 "
-       id="polygon22190" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1085.32,478.61 1089.56,475.02 1084.99,478.36 "
-       id="polygon22192" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.97,500.06 1091.05,501.05 1082.76,500.54 "
-       id="polygon22194" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.99,478.36 1089.25,474.74 1084.71,478.04 "
-       id="polygon22196" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1082.35,497.62 1082.45,497.29 1082.73,497.38 "
-       id="polygon22198" />
-    <polygon
-       style="opacity:1;fill:#003bab"
-       points="1082.75,494.63 1082.71,494.29 1082.36,494.51 "
-       id="polygon22200" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.76,500.54 1090.84,501.53 1082.65,501.07 "
-       id="polygon22202" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="1087.42,492.09 1095.33,491.39 1095.39,491.43 "
-       id="polygon22204" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.65,501.07 1090.73,502.06 1082.65,501.61 "
-       id="polygon22206" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1086.67,489.89 1095.05,488.98 1095.02,489.05 "
-       id="polygon22208" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1095.02,489.05 1086.67,489.89 1094.9,489.45 "
-       id="polygon22210" />
-    <line
-       x1="1453.8199"
-       y1="471.5"
-       x2="1452.92"
-       y2="471.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22212" />
-    <line
-       x1="1444.8"
-       y1="436.67001"
-       x2="1444.91"
-       y2="436.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22214" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1086.62,490.42 1094.9,489.45 1094.89,489.54 "
-       id="polygon22216" />
-    <line
-       x1="1421.28"
-       y1="473.5"
-       x2="1420.0699"
-       y2="472.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22218" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1086.68,490.95 1094.85,489.98 1094.86,490.07 "
-       id="polygon22220" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1094.86,490.07 1086.68,490.95 1094.91,490.51 "
-       id="polygon22222" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.49,476.65 1088.83,473.33 1088.89,473.17 "
-       id="polygon22224" />
-    <polygon
-       style="opacity:1;fill:#00b5ac"
-       points="1090.67,475.21 1086.27,478.68 1090.54,475.25 "
-       id="polygon22226" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.39,476.94 1088.79,473.65 1088.78,473.46 "
-       id="polygon22228" />
-    <line
-       x1="1427.98"
-       y1="405.10999"
-       x2="1428.88"
-       y2="404.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22230" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="1087.93,499.2 1082.4,499.43 1088.18,499.6 "
-       id="polygon22232" />
-    <polygon
-       style="opacity:1;fill:#008982"
-       points="1090.06,475.27 1085.66,478.75 1089.9,475.21 "
-       id="polygon22234" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1087.73,498.17 1082.1,498.47 1087.78,498.71 "
-       id="polygon22236" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1088.89,474.2 1084.5,477.67 1088.84,474.02 "
-       id="polygon22238" />
-    <polygon
-       style="opacity:1;fill:#008982"
-       points="1085.32,478.61 1089.9,475.21 1089.71,475.13 "
-       id="polygon22240" />
-    <line
-       x1="1452.92"
-       y1="471.98999"
-       x2="1451.9301"
-       y2="472.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22242" />
-    <polygon
-       style="opacity:1;fill:#008ea4"
-       points="1094.59,492.05 1083.27,487.89 1082.95,487.96 "
-       id="polygon22244" />
-    <line
-       x1="1422.5699"
-       y1="474.04999"
-       x2="1421.28"
-       y2="473.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22246" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1084.99,478.36 1089.56,475.02 1089.39,474.89 "
-       id="polygon22248" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1089.39,474.89 1084.99,478.36 1089.25,474.74 "
-       id="polygon22250" />
-    <polygon
-       style="opacity:1;fill:#00369e"
-       points="1082.71,494.29 1089.95,495.3 1083.08,494.23 "
-       id="polygon22252" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1093.21,495.11 1081.89,490.94 1084.88,492.18 "
-       id="polygon22254" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="1083.27,499.69 1091.69,500.46 1091.59,500.52 "
-       id="polygon22256" />
-    <polygon
-       style="opacity:1;fill:#007f93"
-       points="1094.27,492.13 1082.95,487.96 1082.61,488.19 "
-       id="polygon22258" />
-    <polygon
-       style="opacity:1;fill:#002876"
-       points="1091.59,500.52 1083.27,499.69 1091.34,500.68 "
-       id="polygon22260" />
-    <polygon
-       style="opacity:1;fill:#00369f"
-       points="1091.15,503.59 1083.29,502.8 1091.37,503.79 "
-       id="polygon22262" />
-    <polygon
-       style="opacity:1;fill:#00369f"
-       points="1083.29,502.8 1091.07,503.52 1091.15,503.59 "
-       id="polygon22264" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.97,500.06 1091.34,500.68 1091.26,500.79 "
-       id="polygon22266" />
-    <polygon
-       style="opacity:1;fill:#00308c"
-       points="1082.36,494.51 1089.59,495.41 1082.71,494.29 "
-       id="polygon22268" />
-    <polygon
-       style="opacity:1;fill:#006d7e"
-       points="1093.94,492.36 1082.61,488.19 1082.3,488.56 "
-       id="polygon22270" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1091.26,500.79 1082.97,500.06 1091.05,501.05 "
-       id="polygon22272" />
-    <line
-       x1="1423.92"
-       y1="474.54001"
-       x2="1422.5699"
-       y2="474.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22274" />
-    <line
-       x1="1401.59"
-       y1="434.63"
-       x2="1401.3"
-       y2="433.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22276" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.09,494.24 1081.76,490.08 1081.77,490.56 "
-       id="polygon22278" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.63,492.72 1082.3,488.56 1082.04,489.03 "
-       id="polygon22280" />
-    <line
-       x1="1451.9301"
-       y1="472.48001"
-       x2="1450.84"
-       y2="472.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22282" />
-    <line
-       x1="1428.88"
-       y1="404.92999"
-       x2="1429.7"
-       y2="404.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22284" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1090.77,502.75 1082.77,502.11 1090.85,503.11 "
-       id="polygon22286" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.77,502.11 1090.73,502.61 1090.77,502.75 "
-       id="polygon22288" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.18,493.71 1081.85,489.55 1081.76,490.08 "
-       id="polygon22290" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.65,501.07 1090.84,501.53 1090.8,501.68 "
-       id="polygon22292" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.36,493.19 1082.04,489.03 1081.85,489.55 "
-       id="polygon22294" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1090.8,501.68 1082.65,501.07 1090.73,502.06 "
-       id="polygon22296" />
-    <polygon
-       style="opacity:1;fill:#006271"
-       points="1096.95,488.52 1095.55,488.42 1095.29,488.61 "
-       id="polygon22298" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1090.73,502.21 1082.65,501.61 1090.73,502.61 "
-       id="polygon22300" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1082.04,497.35 1088.9,498.13 1081.83,496.94 "
-       id="polygon22302" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.85,495.36 1088.98,496.09 1082.07,494.88 "
-       id="polygon22304" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.83,496.94 1088.76,497.66 1081.72,496.44 "
-       id="polygon22306" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.73,495.89 1088.8,496.59 1081.85,495.36 "
-       id="polygon22308" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1097.31,491.56 1095.39,491.43 1095.65,491.65 "
-       id="polygon22310" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.72,496.44 1088.72,497.13 1081.73,495.89 "
-       id="polygon22312" />
-    <line
-       x1="1484.3101"
-       y1="542.52002"
-       x2="1484.9301"
-       y2="541.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22314" />
-    <line
-       x1="1425.34"
-       y1="474.95999"
-       x2="1423.92"
-       y2="474.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22316" />
-    <line
-       x1="1450.84"
-       y1="472.95001"
-       x2="1449.66"
-       y2="473.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22318" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1094.91,490.51 1096.57,490.42 1094.94,490.59 "
-       id="polygon22320" />
-    <polygon
-       style="opacity:1;fill:#008fa5"
-       points="1097.65,491.32 1097.66,491.66 1097.31,491.56 "
-       id="polygon22322" />
-    <line
-       x1="1401.99"
-       y1="435.70001"
-       x2="1401.59"
-       y2="434.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22324" />
-    <polygon
-       style="opacity:1;fill:#00e4b2"
-       points="1090.93,474.85 1095.99,470.96 1090.87,475.01 "
-       id="polygon22326" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1096.56,489.36 1094.89,489.54 1096.51,489.89 "
-       id="polygon22328" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1096.57,490.42 1094.94,490.59 1096.74,490.91 "
-       id="polygon22330" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="1455.07,548.85 1457.97,545.78 1457.97,546.32 "
-       id="polygon22332" />
-    <line
-       x1="1426.8199"
-       y1="475.32001"
-       x2="1425.34"
-       y2="474.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22334" />
-    <line
-       x1="1449.66"
-       y1="473.41"
-       x2="1448.41"
-       y2="473.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22336" />
-    <polygon
-       style="opacity:1;fill:#002b7d"
-       points="1089.33,498.67 1082.34,497.62 1089.14,498.49 "
-       id="polygon22338" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1082.1,491.2 1093.21,495.11 1093.42,495.36 "
-       id="polygon22340" />
-    <polygon
-       style="opacity:1;fill:#00a17e"
-       points="1095.18,471.23 1090.39,475.3 1090.24,475.29 "
-       id="polygon22342" />
-    <polygon
-       style="opacity:1;fill:#002977"
-       points="1082.36,494.51 1089.26,495.68 1089.36,495.55 "
-       id="polygon22344" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1088.84,474.02 1093.9,469.77 1088.79,473.81 "
-       id="polygon22346" />
-    <polygon
-       style="opacity:1;fill:#00896b"
-       points="1094.85,469.09 1089.88,473.2 1095.13,469.21 "
-       id="polygon22348" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1093.9,469.77 1088.89,474.2 1088.84,474.02 "
-       id="polygon22350" />
-    <polygon
-       style="opacity:1;fill:#002977"
-       points="1089.06,495.93 1082.07,494.88 1089.26,495.68 "
-       id="polygon22352" />
-    <polygon
-       style="opacity:1;fill:#007f93"
-       points="1082.61,488.19 1094.27,492.13 1093.94,492.36 "
-       id="polygon22354" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.01,470.14 1089.1,474.56 1089.01,474.39 "
-       id="polygon22356" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.89,490.94 1093.1,494.72 1093.21,495.11 "
-       id="polygon22358" />
-    <line
-       x1="1428.34"
-       y1="475.60001"
-       x2="1426.8199"
-       y2="475.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22360" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1095.78,469.96 1090.71,474.17 1095.87,470.26 "
-       id="polygon22362" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.5,470.84 1089.71,475.13 1089.56,475.02 "
-       id="polygon22364" />
-    <line
-       x1="1089.88"
-       y1="474.09"
-       x2="1095"
-       y2="470.04001"
-       style="stroke:#00ffc7;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22366" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1089.25,474.74 1094.22,470.52 1089.1,474.56 "
-       id="polygon22368" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1089.56,475.02 1094.5,470.84 1089.39,474.89 "
-       id="polygon22370" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.83,496.94 1088.9,498.13 1088.83,497.99 "
-       id="polygon22372" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1088.83,497.99 1081.83,496.94 1088.76,497.66 "
-       id="polygon22374" />
-    <line
-       x1="1448.41"
-       y1="473.85001"
-       x2="1447.08"
-       y2="474.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22376" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.85,495.36 1088.8,496.59 1088.84,496.4 "
-       id="polygon22378" />
-    <line
-       x1="1444.77"
-       y1="437.66"
-       x2="1444.53"
-       y2="438.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22380" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.72,496.44 1088.76,497.66 1088.72,497.48 "
-       id="polygon22382" />
-    <polygon
-       style="opacity:1;fill:#006d7e"
-       points="1082.3,488.56 1093.94,492.36 1093.63,492.72 "
-       id="polygon22384" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1088.73,496.94 1081.73,495.89 1088.8,496.59 "
-       id="polygon22386" />
-    <polygon
-       style="opacity:1;fill:#00488b"
-       points="1094.87,500.85 1091.95,500.42 1091.69,500.46 "
-       id="polygon22388" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1081.73,495.89 1088.72,497.13 1088.73,496.94 "
-       id="polygon22390" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.16,495.07 1097,496.77 1093.08,494.7 "
-       id="polygon22392" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.77,490.56 1093.09,494.24 1093.1,494.72 "
-       id="polygon22394" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1082.04,489.03 1093.63,492.72 1093.36,493.19 "
-       id="polygon22396" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.76,490.08 1093.18,493.71 1093.09,494.24 "
-       id="polygon22398" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1081.85,489.55 1093.36,493.19 1093.18,493.71 "
-       id="polygon22400" />
-    <polygon
-       style="opacity:1;fill:#008a6b"
-       points="1094.2,468.92 1089.09,472.97 1094.48,468.83 "
-       id="polygon22402" />
-    <line
-       x1="1430.4399"
-       y1="404.79001"
-       x2="1431.0699"
-       y2="404.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22404" />
-    <line
-       x1="1429.91"
-       y1="475.82001"
-       x2="1428.34"
-       y2="475.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22406" />
-    <line
-       x1="1447.08"
-       y1="474.26001"
-       x2="1445.6801"
-       y2="474.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22408" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1094.25,503.91 1090.91,503.22 1091.07,503.52 "
-       id="polygon22410" />
-    <line
-       x1="1096.27"
-       y1="491.75"
-       x2="1096.25"
-       y2="491.78"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22412" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1094.02,501.92 1090.99,501.18 1090.84,501.53 "
-       id="polygon22414" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1093.9,469.41 1088.78,473.46 1094,469.12 "
-       id="polygon22416" />
-    <line
-       x1="1431.5"
-       y1="475.95999"
-       x2="1429.91"
-       y2="475.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22418" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1093.91,503 1090.73,502.21 1090.73,502.61 "
-       id="polygon22420" />
-    <line
-       x1="1445.6801"
-       y1="474.64001"
-       x2="1444.23"
-       y2="474.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22422" />
-    <line
-       x1="1483.02"
-       y1="543.46002"
-       x2="1483.6801"
-       y2="543.03003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22424" />
-    <polygon
-       style="opacity:1;fill:#00c6e5"
-       points="1109.32,491.48 1098.27,491.38 1097.96,491.61 "
-       id="polygon22426" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1093.9,469.77 1088.79,473.81 1093.9,469.41 "
-       id="polygon22428" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="1099.13,499.09 1088.17,499.59 1087.92,499.2 "
-       id="polygon22430" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.01,470.14 1088.89,474.2 1093.9,469.77 "
-       id="polygon22432" />
-    <polygon
-       style="opacity:1;fill:#00896b"
-       points="1095.18,471.23 1090.06,475.27 1094.83,471.08 "
-       id="polygon22434" />
-    <line
-       x1="1444.23"
-       y1="474.98999"
-       x2="1442.72"
-       y2="475.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22436" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.22,470.52 1089.1,474.56 1094.01,470.14 "
-       id="polygon22438" />
-    <polygon
-       style="opacity:1;fill:#00bc93"
-       points="1095.77,469.57 1095.62,469.66 1095.39,469.41 "
-       id="polygon22440" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.83,471.08 1089.71,475.13 1094.5,470.84 "
-       id="polygon22442" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1094.5,470.84 1089.39,474.89 1094.22,470.52 "
-       id="polygon22444" />
-    <line
-       x1="1095.34"
-       y1="492.81"
-       x2="1095.3101"
-       y2="492.84"
-       style="stroke:#00ddff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22446" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1094.03,503.5 1090.91,503.22 1094.25,503.91 "
-       id="polygon22448" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1094.23,501.44 1090.99,501.18 1094.02,501.92 "
-       id="polygon22450" />
-    <line
-       x1="1442.72"
-       y1="475.29001"
-       x2="1441.1801"
-       y2="475.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22452" />
-    <polygon
-       style="opacity:1;fill:#00529e"
-       points="1089.95,495.3 1093.75,495.82 1090.07,495.27 "
-       id="polygon22454" />
-    <line
-       x1="1441.1801"
-       y1="475.54999"
-       x2="1439.59"
-       y2="475.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22456" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1093.91,502.45 1090.73,502.21 1093.91,503 "
-       id="polygon22458" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1108.35,488.37 1096.74,488.87 1096.99,488.5 "
-       id="polygon22460" />
-    <line
-       x1="1437.99"
-       y1="475.92001"
-       x2="1436.37"
-       y2="476.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22462" />
-    <line
-       x1="1439.59"
-       y1="475.76001"
-       x2="1437.99"
-       y2="475.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22464" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1108.32,491.18 1097.27,491.57 1096.96,491.31 "
-       id="polygon22466" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1089.59,495.41 1093.38,495.88 1089.71,495.33 "
-       id="polygon22468" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1093.38,495.88 1089.36,495.55 1089.59,495.41 "
-       id="polygon22470" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1107.93,489.21 1096.51,489.88 1096.57,489.35 "
-       id="polygon22472" />
-    <line
-       x1="1482.35"
-       y1="543.78998"
-       x2="1483.02"
-       y2="543.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22474" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1107.92,490.29 1096.71,490.91 1096.56,490.42 "
-       id="polygon22476" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1089.14,498.49 1092.71,498.95 1089.04,498.39 "
-       id="polygon22478" />
-    <line
-       x1="1444.1801"
-       y1="438.48999"
-       x2="1443.7"
-       y2="438.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22480" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="1457.97,546.32 1455.07,548.85 1454.9,549.36 "
-       id="polygon22482" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="1094.07,492.43 1098.05,494.17 1094.4,492.2 "
-       id="polygon22484" />
-    <line
-       x1="1431.61"
-       y1="404.89001"
-       x2="1432.05"
-       y2="405.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22486" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1093.74,492.79 1097.72,494.48 1094.07,492.43 "
-       id="polygon22488" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.08,494.7 1096.96,496.37 1093.11,494.25 "
-       id="polygon22490" />
-    <polygon
-       style="opacity:1;fill:#0090a6"
-       points="1094.71,492.13 1098.37,494 1098.57,493.95 "
-       id="polygon22492" />
-    <line
-       x1="1094.5601"
-       y1="501.04001"
-       x2="1094.5601"
-       y2="501.04001"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22494" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.46,493.24 1097.42,494.91 1093.74,492.79 "
-       id="polygon22496" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.11,494.25 1097.02,495.89 1093.24,493.74 "
-       id="polygon22498" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.24,493.74 1097.18,495.39 1093.46,493.24 "
-       id="polygon22500" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.71,498.95 1089.04,498.39 1092.5,498.54 "
-       id="polygon22502" />
-    <line
-       x1="1094.3199"
-       y1="500.19"
-       x2="1094.3101"
-       y2="500.16"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22504" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.51,496.95 1088.84,496.4 1092.73,496.47 "
-       id="polygon22506" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="1097.93,494.25 1094.07,492.43 1098.05,494.17 "
-       id="polygon22508" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.39,498.04 1088.72,497.48 1092.39,497.49 "
-       id="polygon22510" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="1088.17,499.59 1099.38,499.49 1099.13,499.09 "
-       id="polygon22512" />
-    <line
-       x1="1094.1"
-       y1="499.39001"
-       x2="1094.1"
-       y2="499.39001"
-       style="stroke:#0085ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22514" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1097.61,494.61 1093.74,492.79 1097.72,494.48 "
-       id="polygon22516" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.11,494.25 1096.96,496.37 1096.97,496.07 "
-       id="polygon22518" />
-    <polygon
-       style="opacity:1;fill:#0070d8"
-       points="1104.45,505.56 1095.26,504.24 1094.89,504.3 "
-       id="polygon22520" />
-    <polygon
-       style="opacity:1;fill:#00488b"
-       points="1104.81,502.05 1094.88,500.85 1095.25,500.79 "
-       id="polygon22522" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1093.24,493.74 1097.02,495.89 1097.1,495.57 "
-       id="polygon22524" />
-    <polygon
-       style="opacity:1;fill:#00a4be"
-       points="1097.61,491.68 1108.97,491.55 1108.63,491.45 "
-       id="polygon22526" />
-    <polygon
-       style="opacity:1;fill:#003d76"
-       points="1104.45,502.11 1094.53,501.07 1094.88,500.85 "
-       id="polygon22528" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1097.27,491.57 1108.63,491.45 1108.32,491.18 "
-       id="polygon22530" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1096.74,488.87 1108.1,488.74 1108.35,488.37 "
-       id="polygon22532" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1103.8,505.17 1094.54,504.18 1094.24,503.91 "
-       id="polygon22534" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1104.09,502.34 1094.23,501.44 1094.53,501.07 "
-       id="polygon22536" />
-    <line
-       x1="1443.12"
-       y1="439.41"
-       x2="1442.4301"
-       y2="439.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22538" />
-    <line
-       x1="1480.99"
-       y1="544.16998"
-       x2="1481.67"
-       y2="544.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22540" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1103.59,504.77 1094.24,503.91 1094.02,503.5 "
-       id="polygon22542" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.8,502.7 1094.02,501.91 1094.23,501.44 "
-       id="polygon22544" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1096.71,490.91 1108.07,490.78 1107.92,490.29 "
-       id="polygon22546" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1096.51,489.88 1107.87,489.75 1107.93,489.21 "
-       id="polygon22548" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.47,504.26 1094.02,503.5 1093.9,503 "
-       id="polygon22550" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.58,503.18 1093.9,502.45 1094.02,501.91 "
-       id="polygon22552" />
-    <line
-       x1="1406.67"
-       y1="441.04999"
-       x2="1405.64"
-       y2="440.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22554" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.47,503.71 1093.9,503 1093.9,502.45 "
-       id="polygon22556" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1101.11,496.42 1100.46,496.41 1101.03,496.42 "
-       id="polygon22558" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1097.42,494.91 1104.74,497.98 1097.61,494.61 "
-       id="polygon22560" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1104.74,497.98 1097.32,495.06 1097.42,494.91 "
-       id="polygon22562" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1097.18,495.39 1104.46,498.44 1097.32,495.06 "
-       id="polygon22564" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1104.46,498.44 1097.1,495.57 1097.18,495.39 "
-       id="polygon22566" />
-    <polygon
-       style="opacity:1;fill:#005980"
-       points="1104.74,497.98 1097.61,494.61 1105.07,497.63 "
-       id="polygon22568" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1104.46,498.44 1097.32,495.06 1104.74,497.98 "
-       id="polygon22570" />
-    <polygon
-       style="opacity:1;fill:#003c73"
-       points="1101.81,496.65 1099.75,496.68 1101.84,496.48 "
-       id="polygon22572" />
-    <polygon
-       style="opacity:1;fill:#003c73"
-       points="1100.08,496.47 1101.84,496.48 1099.75,496.68 "
-       id="polygon22574" />
-    <polygon
-       style="opacity:1;fill:#005980"
-       points="1097.72,494.48 1105.07,497.63 1097.93,494.25 "
-       id="polygon22576" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1102.29,496.44 1101.11,496.42 1102.22,496.43 "
-       id="polygon22578" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1102.19,496.42 1101.11,496.42 1101.03,496.42 "
-       id="polygon22580" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1102.22,496.43 1101.11,496.42 1102.19,496.42 "
-       id="polygon22582" />
-    <polygon
-       style="opacity:1;fill:#0073a6"
-       points="1098.37,494 1105.71,497.32 1098.57,493.95 "
-       id="polygon22584" />
-    <line
-       x1="1442.4301"
-       y1="439.88"
-       x2="1441.63"
-       y2="440.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22586" />
-    <line
-       x1="1407.8"
-       y1="441.73999"
-       x2="1406.67"
-       y2="441.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22588" />
-    <line
-       x1="1480.3199"
-       y1="544.21997"
-       x2="1480.99"
-       y2="544.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22590" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1096.96,496.37 1104.11,499.45 1096.97,496.07 "
-       id="polygon22592" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1097.02,495.89 1104.24,498.95 1097.1,495.57 "
-       id="polygon22594" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1101.61,497.16 1093.39,495.88 1093.04,496.11 "
-       id="polygon22596" />
-    <polygon
-       style="opacity:1;fill:#0000e6"
-       points="1454.58,549.79 1454.59,549.19 1454.33,549.53 "
-       id="polygon22598" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1100.93,500.23 1092.7,498.95 1093,499.22 "
-       id="polygon22600" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1101.26,497.39 1093.04,496.11 1092.73,496.47 "
-       id="polygon22602" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.71,499.82 1092.5,498.54 1092.7,498.95 "
-       id="polygon22604" />
-    <polygon
-       style="opacity:1;fill:#0073a6"
-       points="1098.54,494.15 1105.71,497.32 1098.56,494.17 "
-       id="polygon22606" />
-    <polygon
-       style="opacity:1;fill:#0073a6"
-       points="1105.4,497.4 1098.56,494.17 1105.71,497.32 "
-       id="polygon22608" />
-    <polygon
-       style="opacity:1;fill:#006795"
-       points="1098.9,494.66 1105.4,497.4 1098.95,494.73 "
-       id="polygon22610" />
-    <polygon
-       style="opacity:1;fill:#006795"
-       points="1105.07,497.63 1098.95,494.73 1105.4,497.4 "
-       id="polygon22612" />
-    <polygon
-       style="opacity:1;fill:#0074a8"
-       points="1105.5,497.48 1116.89,503.61 1116.6,503.7 "
-       id="polygon22614" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.3,497.11 1099.29,497.51 1110.12,497.57 "
-       id="polygon22616" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.96,497.75 1092.73,496.47 1092.52,496.95 "
-       id="polygon22618" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.61,499.32 1092.39,498.03 1092.5,498.54 "
-       id="polygon22620" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.73,498.23 1092.52,496.95 1092.39,497.48 "
-       id="polygon22622" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="1116.27,503.92 1105.17,497.71 1104.84,498.05 "
-       id="polygon22624" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1115.94,504.27 1104.84,498.05 1104.54,498.49 "
-       id="polygon22626" />
-    <polygon
-       style="opacity:1;fill:#003d76"
-       points="1104.45,502.11 1104.1,502.33 1105.63,502.27 "
-       id="polygon22628" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1115.18,506.1 1104.08,499.88 1104.13,500.23 "
-       id="polygon22630" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1115.24,505.67 1104.14,499.45 1104.08,499.88 "
-       id="polygon22632" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1104.13,500.23 1115.18,506.1 1115.22,506.45 "
-       id="polygon22634" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="1105.17,502.17 1109.3,502.74 1110.16,502.98 "
-       id="polygon22636" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1115.64,504.71 1104.54,498.49 1104.3,498.97 "
-       id="polygon22638" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.05,498.11 1099.25,498.58 1110.09,498.64 "
-       id="polygon22640" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.61,498.77 1092.39,497.48 1092.39,498.03 "
-       id="polygon22642" />
-    <polygon
-       style="opacity:1;fill:#0073a6"
-       points="1098.56,494.17 1098.26,494.03 1098.54,494.15 "
-       id="polygon22644" />
-    <line
-       x1="1441.63"
-       y1="440.37"
-       x2="1440.73"
-       y2="440.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22646" />
-    <line
-       x1="1409.01"
-       y1="442.35999"
-       x2="1407.8"
-       y2="441.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22648" />
-    <polygon
-       style="opacity:1;fill:#003d76"
-       points="1094.53,501.07 1104.09,502.34 1104.45,502.11 "
-       id="polygon22650" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1094.54,504.18 1104.1,505.45 1103.8,505.17 "
-       id="polygon22652" />
-    <polygon
-       style="opacity:1;fill:#006795"
-       points="1098.95,494.73 1097.93,494.25 1098.9,494.66 "
-       id="polygon22654" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1094.23,501.44 1103.8,502.7 1104.09,502.34 "
-       id="polygon22656" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1094.24,503.91 1103.8,505.17 1103.59,504.77 "
-       id="polygon22658" />
-    <line
-       x1="1479.64"
-       y1="544.17999"
-       x2="1480.3199"
-       y2="544.21997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22660" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1094.02,501.91 1103.58,503.18 1103.8,502.7 "
-       id="polygon22662" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1094.02,503.5 1103.59,504.77 1103.47,504.26 "
-       id="polygon22664" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1093.9,502.45 1103.47,503.71 1103.58,503.18 "
-       id="polygon22666" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1093.9,503 1103.47,504.26 1103.47,503.71 "
-       id="polygon22668" />
-    <line
-       x1="1440.73"
-       y1="440.85001"
-       x2="1439.73"
-       y2="441.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22670" />
-    <line
-       x1="1410.29"
-       y1="442.92001"
-       x2="1409.01"
-       y2="442.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22672" />
-    <polygon
-       style="opacity:1;fill:#00c7e6"
-       points="1109.27,491.5 1115.79,491.7 1109.59,491.27 "
-       id="polygon22674" />
-    <line
-       x1="1432.6899"
-       y1="405.73001"
-       x2="1432.6801"
-       y2="406.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22676" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1092.73,496.47 1101.26,497.39 1100.96,497.75 "
-       id="polygon22678" />
-    <line
-       x1="1411.65"
-       y1="443.39999"
-       x2="1410.29"
-       y2="442.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22680" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.7,498.95 1100.71,499.82 1100.93,500.23 "
-       id="polygon22682" />
-    <line
-       x1="1439.73"
-       y1="441.32999"
-       x2="1438.64"
-       y2="441.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22684" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.52,496.95 1100.96,497.75 1100.73,498.23 "
-       id="polygon22686" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.5,498.54 1100.61,499.32 1100.71,499.82 "
-       id="polygon22688" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.39,497.48 1100.73,498.23 1100.61,498.77 "
-       id="polygon22690" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1092.39,498.03 1100.61,498.77 1100.61,499.32 "
-       id="polygon22692" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1108.39,488.36 1114.9,488.56 1108.13,488.73 "
-       id="polygon22694" />
-    <polygon
-       style="opacity:1;fill:#0055a3"
-       points="1104.45,505.56 1104.79,505.17 1104.49,505.21 "
-       id="polygon22696" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1107.95,489.21 1114.47,489.41 1107.88,489.75 "
-       id="polygon22698" />
-    <line
-       x1="1413.0699"
-       y1="443.82001"
-       x2="1411.65"
-       y2="443.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22700" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1107.91,490.29 1114.43,490.49 1108.05,490.79 "
-       id="polygon22702" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1111.64,496.57 1102.29,496.44 1111.28,496.46 "
-       id="polygon22704" />
-    <polygon
-       style="opacity:1;fill:#003c73"
-       points="1101.84,496.48 1110.91,496.52 1101.81,496.65 "
-       id="polygon22706" />
-    <line
-       x1="1478.35"
-       y1="543.79999"
-       x2="1478.99"
-       y2="544.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22708" />
-    <line
-       x1="1414.55"
-       y1="444.17001"
-       x2="1413.0699"
-       y2="443.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22710" />
-    <polygon
-       style="opacity:1;fill:#0059ab"
-       points="1101.56,500.62 1101.33,500.18 1101.61,500.27 "
-       id="polygon22712" />
-    <polygon
-       style="opacity:1;fill:#006474"
-       points="1115.09,488.43 1108.39,488.36 1114.9,488.56 "
-       id="polygon22714" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="1114.93,491.5 1108.59,491.46 1115.1,491.66 "
-       id="polygon22716" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="1108.59,491.46 1114.8,491.39 1114.93,491.5 "
-       id="polygon22718" />
-    <line
-       x1="1416.08"
-       y1="444.45001"
-       x2="1414.55"
-       y2="444.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22720" />
-    <line
-       x1="1432.55"
-       y1="406.42001"
-       x2="1432.3"
-       y2="406.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22722" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1107.88,489.75 1114.47,489.41 1114.43,489.64 "
-       id="polygon22724" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1115.39,505.19 1104.3,498.97 1104.14,499.45 "
-       id="polygon22726" />
-    <line
-       x1="1477.73"
-       y1="543.47998"
-       x2="1478.35"
-       y2="543.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22728" />
-    <line
-       x1="1434.86"
-       y1="443.10999"
-       x2="1433.46"
-       y2="443.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22730" />
-    <line
-       x1="1419.24"
-       y1="444.81"
-       x2="1417.64"
-       y2="444.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22732" />
-    <line
-       x1="1433.46"
-       y1="443.48001"
-       x2="1432"
-       y2="443.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22734" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="1109.3,502.74 1114.77,503.5 1115.06,503.78 "
-       id="polygon22736" />
-    <polygon
-       style="opacity:1;fill:#0059ac"
-       points="1110.16,502.98 1109.3,502.74 1115.06,503.78 "
-       id="polygon22738" />
-    <polygon
-       style="opacity:1;fill:#003d76"
-       points="1114.05,503.45 1104.1,502.33 1105.63,502.27 "
-       id="polygon22740" />
-    <line
-       x1="1420.86"
-       y1="444.89001"
-       x2="1419.24"
-       y2="444.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22742" />
-    <line
-       x1="1432"
-       y1="443.82001"
-       x2="1430.49"
-       y2="444.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22744" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1111.28,496.46 1102.29,496.44 1102.22,496.43 "
-       id="polygon22746" />
-    <polygon
-       style="opacity:1;fill:#00509a"
-       points="1111.28,496.46 1102.22,496.43 1102.19,496.42 "
-       id="polygon22748" />
-    <polygon
-       style="opacity:1;fill:#0070d8"
-       points="1104.82,505.51 1114.41,506.84 1114.04,506.9 "
-       id="polygon22750" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1113.39,506.51 1104.1,505.45 1103.8,505.17 "
-       id="polygon22752" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.7,503.67 1103.8,502.7 1104.1,502.33 "
-       id="polygon22754" />
-    <line
-       x1="1422.48"
-       y1="444.91"
-       x2="1420.86"
-       y2="444.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22756" />
-    <line
-       x1="1430.49"
-       y1="444.13"
-       x2="1428.9399"
-       y2="444.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22758" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1113.18,506.1 1103.8,505.17 1103.58,504.77 "
-       id="polygon22760" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.4,504.04 1103.59,503.18 1103.8,502.7 "
-       id="polygon22762" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1109.84,498.44 1101.61,497.16 1101.25,497.39 "
-       id="polygon22764" />
-    <line
-       x1="1424.12"
-       y1="444.85999"
-       x2="1422.48"
-       y2="444.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22766" />
-    <line
-       x1="1428.9399"
-       y1="444.39001"
-       x2="1427.35"
-       y2="444.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22768" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.06,505.6 1103.58,504.77 1103.47,504.26 "
-       id="polygon22770" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.18,504.51 1103.47,503.71 1103.59,503.18 "
-       id="polygon22772" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.07,505.05 1103.47,504.26 1103.47,503.71 "
-       id="polygon22774" />
-    <line
-       x1="1425.74"
-       y1="444.76001"
-       x2="1424.12"
-       y2="444.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22776" />
-    <line
-       x1="1427.35"
-       y1="444.60001"
-       x2="1425.74"
-       y2="444.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22778" />
-    <polygon
-       style="opacity:1;fill:#0064c0"
-       points="1101.93,500.56 1109.8,501.9 1110.16,501.84 "
-       id="polygon22780" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1109.16,501.51 1100.92,500.23 1101.21,500.5 "
-       id="polygon22782" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1109.49,498.66 1101.25,497.39 1100.95,497.75 "
-       id="polygon22784" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.95,501.1 1100.71,499.82 1100.92,500.23 "
-       id="polygon22786" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1109.19,499.03 1100.95,497.75 1100.73,498.23 "
-       id="polygon22788" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.84,500.6 1100.61,499.32 1100.71,499.82 "
-       id="polygon22790" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.97,499.51 1100.73,498.23 1100.61,498.77 "
-       id="polygon22792" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.85,500.05 1100.61,498.77 1100.61,499.32 "
-       id="polygon22794" />
-    <polygon
-       style="opacity:1;fill:#00746e"
-       points="1119.79,488.71 1115.09,488.43 1114.9,488.56 "
-       id="polygon22796" />
-    <polygon
-       style="opacity:1;fill:#009e96"
-       points="1114.8,491.39 1119.69,491.54 1114.93,491.5 "
-       id="polygon22798" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="1119.69,491.54 1114.66,491.16 1114.8,491.39 "
-       id="polygon22800" />
-    <line
-       x1="1476.59"
-       y1="542.56"
-       x2="1477.15"
-       y2="543.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22802" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.36,489.56 1114.57,489.13 1114.47,489.41 "
-       id="polygon22804" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1114.47,489.41 1119.36,489.56 1114.43,489.64 "
-       id="polygon22806" />
-    <line
-       x1="1404.99"
-       y1="391.57001"
-       x2="1405.12"
-       y2="390.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22808" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1114.43,490.49 1119.32,490.64 1114.49,490.7 "
-       id="polygon22810" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.32,490.64 1114.41,490.18 1114.43,490.49 "
-       id="polygon22812" />
-    <polygon
-       style="opacity:1;fill:#0000d9"
-       points="1455.08,548.85 1452.28,551.61 1452.11,552.12 "
-       id="polygon22814" />
-    <polygon
-       style="opacity:1;fill:#0000ba"
-       points="1454.91,547.77 1452.11,550.52 1452.28,551.05 "
-       id="polygon22816" />
-    <line
-       x1="1404.84"
-       y1="393.07001"
-       x2="1404.9"
-       y2="392.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22818" />
-    <polygon
-       style="opacity:1;fill:#00746e"
-       points="1120.11,488.48 1115.09,488.43 1119.79,488.71 "
-       id="polygon22820" />
-    <line
-       x1="1431.47"
-       y1="407.67999"
-       x2="1430.88"
-       y2="408.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22822" />
-    <line
-       x1="1404.8199"
-       y1="393.82001"
-       x2="1404.84"
-       y2="393.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22824" />
-    <polygon
-       style="opacity:1;fill:#003d76"
-       points="1104.1,502.33 1113.7,503.67 1114.05,503.45 "
-       id="polygon22826" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1104.1,505.45 1113.69,506.79 1113.39,506.51 "
-       id="polygon22828" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1101.25,497.39 1109.84,498.44 1109.49,498.66 "
-       id="polygon22830" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1101.21,500.5 1109.16,501.51 1109.45,501.79 "
-       id="polygon22832" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="1119.46,491.14 1114.66,491.16 1119.69,491.54 "
-       id="polygon22834" />
-    <line
-       x1="1404.85"
-       y1="394.54999"
-       x2="1404.8199"
-       y2="393.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22836" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.8,502.7 1113.4,504.04 1113.7,503.67 "
-       id="polygon22838" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1103.8,505.17 1113.39,506.51 1113.18,506.1 "
-       id="polygon22840" />
-    <polygon
-       style="opacity:1;fill:#00aea5"
-       points="1120.5,488.41 1120.48,488.76 1120.75,488.84 "
-       id="polygon22842" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1100.95,497.75 1109.49,498.66 1109.19,499.03 "
-       id="polygon22844" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.28,490.1 1114.41,490.18 1119.32,490.64 "
-       id="polygon22846" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.59,503.18 1113.18,504.51 1113.4,504.04 "
-       id="polygon22848" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.58,504.77 1113.18,506.1 1113.06,505.6 "
-       id="polygon22850" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.47,503.71 1113.07,505.05 1113.18,504.51 "
-       id="polygon22852" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1103.47,504.26 1113.06,505.6 1113.07,505.05 "
-       id="polygon22854" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.73,498.23 1109.19,499.03 1108.97,499.51 "
-       id="polygon22856" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.71,499.82 1108.84,500.6 1108.95,501.1 "
-       id="polygon22858" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.61,498.77 1108.97,499.51 1108.85,500.05 "
-       id="polygon22860" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1100.61,499.32 1108.85,500.05 1108.84,500.6 "
-       id="polygon22862" />
-    <line
-       x1="1405.01"
-       y1="396.01001"
-       x2="1404.91"
-       y2="395.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22864" />
-    <line
-       x1="1405.15"
-       y1="396.72"
-       x2="1405.01"
-       y2="396.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22866" />
-    <line
-       x1="1475.61"
-       y1="541.31"
-       x2="1476.08"
-       y2="541.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22868" />
-    <line
-       x1="1405.33"
-       y1="397.42001"
-       x2="1405.15"
-       y2="396.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22870" />
-    <polygon
-       style="opacity:1;fill:#0063bf"
-       points="1117.89,507.92 1126.72,513.63 1117.67,507.99 "
-       id="polygon22872" />
-    <line
-       x1="1405.12"
-       y1="390.82001"
-       x2="1398.8"
-       y2="373.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22874" />
-    <polygon
-       style="opacity:1;fill:#0059aa"
-       points="1114.67,503.83 1114.43,503.39 1114.78,503.5 "
-       id="polygon22876" />
-    <line
-       x1="1405.55"
-       y1="398.10001"
-       x2="1405.33"
-       y2="397.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22878" />
-    <line
-       x1="1430.1801"
-       y1="408.60999"
-       x2="1429.38"
-       y2="409.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22880" />
-    <polygon
-       style="opacity:1;fill:#00519b"
-       points="1111.67,496.57 1118.19,496.76 1111.31,496.46 "
-       id="polygon22882" />
-    <line
-       x1="1406.12"
-       y1="399.42999"
-       x2="1405.8199"
-       y2="398.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22884" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1451.54,552.29 1451.79,552.55 1451.34,552.85 "
-       id="polygon22886" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1117.32,507.67 1126.36,513.04 1117.3,507.41 "
-       id="polygon22888" />
-    <polygon
-       style="opacity:1;fill:#007bec"
-       points="1126.57,512.86 1117.57,506.96 1126.63,512.53 "
-       id="polygon22890" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.44,512.63 1117.3,507.41 1117.32,507.33 "
-       id="polygon22892" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="1118.19,505.58 1127.52,510.94 1118.46,505.3 "
-       id="polygon22894" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1117.32,507.33 1126.44,512.63 1117.38,506.99 "
-       id="polygon22896" />
-    <line
-       x1="1406.46"
-       y1="400.07001"
-       x2="1406.12"
-       y2="399.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22898" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1117.88,505.99 1127.18,511.28 1118.13,505.64 "
-       id="polygon22900" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1117.42,506.91 1126.61,512.17 1117.56,506.53 "
-       id="polygon22902" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1117.61,506.45 1126.87,511.7 1117.82,506.07 "
-       id="polygon22904" />
-    <polygon
-       style="opacity:1;fill:#008a83"
-       points="1131.95,489.23 1120.16,488.47 1120.5,488.41 "
-       id="polygon22906" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.31,497.1 1116.82,497.29 1110.12,497.57 "
-       id="polygon22908" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.04,498.1 1116.55,498.29 1110.07,498.64 "
-       id="polygon22910" />
-    <line
-       x1="1407.25"
-       y1="401.29001"
-       x2="1406.84"
-       y2="400.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22912" />
-    <line
-       x1="1428.47"
-       y1="409.57001"
-       x2="1427.97"
-       y2="409.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22914" />
-    <polygon
-       style="opacity:1;fill:#0058a9"
-       points="1127.84,510.71 1118.79,505.08 1128.12,510.63 "
-       id="polygon22916" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1131.01,489.9 1119.38,489.55 1119.57,489.07 "
-       id="polygon22918" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="1130.88,491.98 1119.65,491.55 1119.43,491.14 "
-       id="polygon22920" />
-    <polygon
-       style="opacity:1;fill:#00519b"
-       points="1118.06,496.72 1111.31,496.46 1117.82,496.64 "
-       id="polygon22922" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.38,513.36 1117.32,507.73 1126.36,513.04 "
-       id="polygon22924" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1130.73,490.93 1119.31,490.64 1119.29,490.09 "
-       id="polygon22926" />
-    <polygon
-       style="opacity:1;fill:#004f98"
-       points="1127.52,510.94 1118.46,505.3 1127.84,510.71 "
-       id="polygon22928" />
-    <line
-       x1="1408.1899"
-       y1="402.44"
-       x2="1407.7"
-       y2="401.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22930" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.61,512.17 1117.56,506.53 1126.87,511.7 "
-       id="polygon22932" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1113.18,506.11 1119.36,507.04 1113.39,506.52 "
-       id="polygon22934" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.36,513.04 1117.3,507.41 1126.44,512.63 "
-       id="polygon22936" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.41,504.04 1119.6,504.97 1113.19,504.52 "
-       id="polygon22938" />
-    <polygon
-       style="opacity:1;fill:#004483"
-       points="1127.18,511.28 1118.13,505.64 1127.52,510.94 "
-       id="polygon22940" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.07,505.05 1119.26,505.99 1113.07,505.6 "
-       id="polygon22942" />
-    <line
-       x1="1427.4301"
-       y1="409.5"
-       x2="1426.86"
-       y2="409.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22944" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.44,512.63 1117.38,506.99 1126.61,512.17 "
-       id="polygon22946" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.87,511.7 1117.82,506.07 1127.18,511.28 "
-       id="polygon22948" />
-    <line
-       x1="1409.26"
-       y1="403.5"
-       x2="1408.71"
-       y2="402.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22950" />
-    <polygon
-       style="opacity:1;fill:#00427e"
-       points="1116.81,499.46 1110.46,499.54 1116.98,499.73 "
-       id="polygon22952" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.12,497.57 1116.82,497.29 1116.76,497.45 "
-       id="polygon22954" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1116.76,497.45 1110.12,497.57 1116.63,497.76 "
-       id="polygon22956" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1120.23,503.14 1109.16,501.51 1109.46,501.79 "
-       id="polygon22958" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1120.55,500.29 1109.48,498.66 1109.18,499.03 "
-       id="polygon22960" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1110.07,498.64 1116.55,498.29 1116.56,498.47 "
-       id="polygon22962" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1116.56,498.47 1110.07,498.64 1116.58,498.83 "
-       id="polygon22964" />
-    <polygon
-       style="opacity:1;fill:#004a8f"
-       points="1126.69,513.28 1126.38,513.36 1126.5,513.57 "
-       id="polygon22966" />
-    <line
-       x1="1426.27"
-       y1="409.42001"
-       x2="1425.64"
-       y2="409.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22968" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1120.02,502.73 1108.95,501.1 1109.16,501.51 "
-       id="polygon22970" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1120.25,500.66 1109.18,499.03 1108.96,499.51 "
-       id="polygon22972" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1119.91,502.23 1108.84,500.59 1108.95,501.1 "
-       id="polygon22974" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1120.03,501.14 1108.96,499.51 1108.85,500.05 "
-       id="polygon22976" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1119.91,501.68 1108.85,500.05 1108.84,500.59 "
-       id="polygon22978" />
-    <line
-       x1="1410.45"
-       y1="404.47"
-       x2="1409.84"
-       y2="403.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22980" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1119.68,507.55 1113.68,506.79 1119.87,507.73 "
-       id="polygon22982" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1120.12,504.46 1113.71,503.67 1119.9,504.61 "
-       id="polygon22984" />
-    <line
-       x1="1425.64"
-       y1="409.37"
-       x2="1424.99"
-       y2="409.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line22986" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1113.68,506.79 1119.57,507.45 1119.68,507.55 "
-       id="polygon22988" />
-    <polygon
-       style="opacity:1;fill:#0060b9"
-       points="1128.36,510.72 1134.21,514.61 1128.47,510.91 "
-       id="polygon22990" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.41,504.04 1119.9,504.61 1119.79,504.73 "
-       id="polygon22992" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1119.79,504.73 1113.41,504.04 1119.6,504.97 "
-       id="polygon22994" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1119.29,506.72 1113.18,506.11 1119.36,507.04 "
-       id="polygon22996" />
-    <polygon
-       style="opacity:1;fill:#00a29b"
-       points="1131.39,492.65 1131.75,492.41 1131.48,492.32 "
-       id="polygon22998" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="1131.07,492.38 1131.35,492.66 1135.44,492.88 "
-       id="polygon23000" />
-    <polygon
-       style="opacity:1;fill:#00bfb6"
-       points="1120.28,491.93 1131.73,492.76 1131.39,492.65 "
-       id="polygon23002" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.18,506.11 1119.25,506.54 1119.29,506.72 "
-       id="polygon23004" />
-    <line
-       x1="1411.75"
-       y1="405.34"
-       x2="1411.09"
-       y2="404.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23006" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1113.07,505.05 1119.38,505.45 1119.34,505.64 "
-       id="polygon23008" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1119.34,505.64 1113.07,505.05 1119.26,505.99 "
-       id="polygon23010" />
-    <line
-       x1="1424.3199"
-       y1="409.23001"
-       x2="1423.63"
-       y2="409.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23012" />
-    <line
-       x1="1412.4301"
-       y1="405.75"
-       x2="1411.75"
-       y2="405.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23014" />
-    <polygon
-       style="opacity:1;fill:#009e97"
-       points="1119.95,491.82 1131.39,492.65 1131.1,492.38 "
-       id="polygon23016" />
-    <line
-       x1="1423.63"
-       y1="409.14999"
-       x2="1422.91"
-       y2="409.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23018" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.57,489.07 1131.01,489.9 1131.28,489.53 "
-       id="polygon23020" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.37,513.34 1132.16,516.98 1126.36,513.03 "
-       id="polygon23022" />
-    <line
-       x1="1422.91"
-       y1="409.04999"
-       x2="1422.1801"
-       y2="408.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23024" />
-    <line
-       x1="1413.85"
-       y1="406.48001"
-       x2="1413.13"
-       y2="406.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23026" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.56,383.41 1397.33,372.91 1397.8,372.7 "
-       id="polygon23028" />
-    <polygon
-       style="opacity:1;fill:#004f98"
-       points="1127.55,510.97 1133.51,514.65 1127.87,510.75 "
-       id="polygon23030" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.43,491.14 1130.88,491.98 1130.75,491.47 "
-       id="polygon23032" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1119.29,490.09 1130.73,490.93 1130.82,490.38 "
-       id="polygon23034" />
-    <line
-       x1="1414.58"
-       y1="406.82001"
-       x2="1413.85"
-       y2="406.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23036" />
-    <line
-       x1="1398.8"
-       y1="373.57001"
-       x2="1398.72"
-       y2="373.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23038" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.11,383.3 1397.8,372.7 1398.34,372.59 "
-       id="polygon23040" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.36,513.03 1132.2,516.62 1126.45,512.63 "
-       id="polygon23042" />
-    <line
-       x1="1421.4399"
-       y1="408.82001"
-       x2="1420.6899"
-       y2="408.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23044" />
-    <polygon
-       style="opacity:1;fill:#004484"
-       points="1127.21,511.31 1133.18,514.93 1127.55,510.97 "
-       id="polygon23046" />
-    <line
-       x1="1420.6899"
-       y1="408.67999"
-       x2="1419.9301"
-       y2="408.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23048" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.45,512.63 1132.34,516.19 1126.64,512.18 "
-       id="polygon23050" />
-    <line
-       x1="1416.85"
-       y1="407.67999"
-       x2="1416.09"
-       y2="407.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23052" />
-    <line
-       x1="1419.9301"
-       y1="408.51999"
-       x2="1419.16"
-       y2="408.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23054" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.9,511.72 1132.86,515.3 1127.21,511.31 "
-       id="polygon23056" />
-    <polygon
-       style="opacity:1;fill:#003f79"
-       points="1132.28,517.33 1126.48,513.54 1132.22,517.23 "
-       id="polygon23058" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.64,512.18 1132.57,515.74 1126.9,511.72 "
-       id="polygon23060" />
-    <line
-       x1="1417.62"
-       y1="407.91"
-       x2="1416.85"
-       y2="407.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23062" />
-    <line
-       x1="1418.39"
-       y1="408.14001"
-       x2="1417.62"
-       y2="407.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23064" />
-    <polygon
-       style="opacity:1;fill:#004f98"
-       points="1127.87,510.75 1133.51,514.65 1133.66,514.54 "
-       id="polygon23066" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.36,513.03 1132.16,516.98 1132.15,516.82 "
-       id="polygon23068" />
-    <polygon
-       style="opacity:1;fill:#006d9e"
-       points="1129.43,501.14 1132.33,501.51 1129.06,501.07 "
-       id="polygon23070" />
-    <polygon
-       style="opacity:1;fill:#009ee4"
-       points="1131.21,500.72 1121.71,499.95 1121.36,500.17 "
-       id="polygon23072" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="1120.62,500.11 1130.46,500.66 1130.14,500.39 "
-       id="polygon23074" />
-    <polygon
-       style="opacity:1;fill:#00498c"
-       points="1109.48,498.66 1120.9,500.06 1120.55,500.29 "
-       id="polygon23076" />
-    <polygon
-       style="opacity:1;fill:#00417d"
-       points="1109.46,501.79 1120.23,503.14 1120.53,503.42 "
-       id="polygon23078" />
-    <polygon
-       style="opacity:1;fill:#004f98"
-       points="1133.34,514.77 1127.55,510.97 1133.51,514.65 "
-       id="polygon23080" />
-    <polygon
-       style="opacity:1;fill:#005277"
-       points="1120.25,504.38 1123.71,504.9 1120.12,504.46 "
-       id="polygon23082" />
-    <polygon
-       style="opacity:1;fill:#003e77"
-       points="1109.18,499.03 1120.55,500.29 1120.25,500.66 "
-       id="polygon23084" />
-    <line
-       x1="1473.9"
-       y1="535.76001"
-       x2="1474.03"
-       y2="536.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23086" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1132.24,516.42 1126.45,512.63 1132.34,516.19 "
-       id="polygon23088" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1109.16,501.51 1120.02,502.73 1120.23,503.14 "
-       id="polygon23090" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1127.21,511.31 1132.86,515.3 1133.01,515.1 "
-       id="polygon23092" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.64,512.18 1132.34,516.19 1132.43,515.97 "
-       id="polygon23094" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1132.43,515.97 1126.64,512.18 1132.57,515.74 "
-       id="polygon23096" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1132.7,515.52 1126.9,511.72 1132.86,515.3 "
-       id="polygon23098" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1126.9,511.72 1132.57,515.74 1132.7,515.52 "
-       id="polygon23100" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.96,499.51 1120.25,500.66 1120.03,501.14 "
-       id="polygon23102" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.95,501.1 1119.91,502.23 1120.02,502.73 "
-       id="polygon23104" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1123.04,507.98 1119.44,507.19 1119.57,507.45 "
-       id="polygon23106" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.85,500.05 1120.03,501.14 1119.91,501.68 "
-       id="polygon23108" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1108.84,500.59 1119.91,501.68 1119.91,502.23 "
-       id="polygon23110" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.83,507.57 1119.29,506.72 1119.36,507.04 "
-       id="polygon23112" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.84,505.98 1119.52,505.14 1119.38,505.45 "
-       id="polygon23114" />
-    <polygon
-       style="opacity:1;fill:#00618c"
-       points="1124.08,504.84 1120.48,504.34 1123.71,504.9 "
-       id="polygon23116" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1119.38,505.45 1122.84,505.98 1119.34,505.64 "
-       id="polygon23118" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.72,507.07 1119.26,506.19 1119.25,506.54 "
-       id="polygon23120" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.17,497.38 1116.76,497.45 1119.98,497.86 "
-       id="polygon23122" />
-    <polygon
-       style="opacity:1;fill:#00577e"
-       points="1120.08,499.43 1116.81,499.46 1120.32,499.83 "
-       id="polygon23124" />
-    <polygon
-       style="opacity:1;fill:#004fe5"
-       points="1138.86,520.3 1133.42,516.74 1138.52,520.63 "
-       id="polygon23126" />
-    <polygon
-       style="opacity:1;fill:#00afa7"
-       points="1131.69,489.63 1131.32,489.52 1131.65,489.29 "
-       id="polygon23128" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1119.9,498.39 1116.56,498.47 1119.93,498.93 "
-       id="polygon23130" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1139.07,519.8 1133.51,516.4 1138.82,520.13 "
-       id="polygon23132" />
-    <polygon
-       style="opacity:1;fill:#0051ec"
-       points="1139.71,518.57 1134.28,515.02 1139.62,518.98 "
-       id="polygon23134" />
-    <line
-       x1="1473.84"
-       y1="534.62"
-       x2="1473.9"
-       y2="535.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23136" />
-    <polygon
-       style="opacity:1;fill:#003aa9"
-       points="1133.81,514.5 1139.38,518.02 1133.95,514.46 "
-       id="polygon23138" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1122.83,507.57 1119.44,507.19 1123.04,507.98 "
-       id="polygon23140" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1123.06,505.5 1119.52,505.14 1122.84,505.98 "
-       id="polygon23142" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.73,506.52 1119.26,506.19 1122.72,507.07 "
-       id="polygon23144" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.59,520.38 1132.16,517.14 1132.16,516.98 "
-       id="polygon23146" />
-    <polygon
-       style="opacity:1;fill:#003498"
-       points="1139.11,518.1 1133.34,514.77 1133.51,514.65 "
-       id="polygon23148" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.68,519.98 1132.15,516.82 1132.2,516.62 "
-       id="polygon23150" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="1133.18,514.93 1138.78,518.32 1133.34,514.77 "
-       id="polygon23152" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.87,519.53 1132.24,516.42 1132.34,516.19 "
-       id="polygon23154" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1132.86,515.3 1138.45,518.66 1133.01,515.1 "
-       id="polygon23156" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1138.45,518.66 1132.7,515.52 1132.86,515.3 "
-       id="polygon23158" />
-    <line
-       x1="1473.85"
-       y1="533.42999"
-       x2="1473.84"
-       y2="534.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23160" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1138.13,519.08 1132.43,515.97 1132.57,515.74 "
-       id="polygon23162" />
-    <polygon
-       style="opacity:1;fill:#003aa9"
-       points="1139.11,518.1 1133.66,514.54 1139.38,518.02 "
-       id="polygon23164" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.6,520.7 1132.16,517.14 1137.59,520.38 "
-       id="polygon23166" />
-    <polygon
-       style="opacity:1;fill:#003498"
-       points="1138.78,518.32 1133.34,514.77 1139.11,518.1 "
-       id="polygon23168" />
-    <polygon
-       style="opacity:1;fill:#0055a3"
-       points="1120.55,500.29 1120.65,500.59 1120.41,500.88 "
-       id="polygon23170" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.59,520.38 1132.15,516.82 1137.68,519.98 "
-       id="polygon23172" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="1138.45,518.66 1133.01,515.1 1138.78,518.32 "
-       id="polygon23174" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.68,519.98 1132.24,516.42 1137.87,519.53 "
-       id="polygon23176" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1138.13,519.08 1132.7,515.52 1138.45,518.66 "
-       id="polygon23178" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1137.87,519.53 1132.43,515.97 1138.13,519.08 "
-       id="polygon23180" />
-    <line
-       x1="1473.9301"
-       y1="532.20001"
-       x2="1473.85"
-       y2="533.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23182" />
-    <polygon
-       style="opacity:1;fill:#00aba2"
-       points="1144.07,490.91 1132.33,489.34 1143.79,490.64 "
-       id="polygon23184" />
-    <polygon
-       style="opacity:1;fill:#007671"
-       points="1131.65,489.29 1143.11,490.59 1131.32,489.52 "
-       id="polygon23186" />
-    <polygon
-       style="opacity:1;fill:#0096d9"
-       points="1133.4,510 1124.03,508.31 1123.66,508.37 "
-       id="polygon23188" />
-    <polygon
-       style="opacity:1;fill:#00d9ce"
-       points="1132.03,492.7 1143.14,494.07 1143.14,494.07 "
-       id="polygon23190" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="1142.53,493.69 1131.35,492.66 1135.44,492.88 "
-       id="polygon23192" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1131.32,489.52 1142.79,490.82 1131.05,489.89 "
-       id="polygon23194" />
-    <line
-       x1="1474.09"
-       y1="530.92999"
-       x2="1473.9301"
-       y2="532.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23196" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1130.32,497.56 1120.18,497.38 1120.47,497.01 "
-       id="polygon23198" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1130.86,491.98 1142.32,493.28 1131.07,492.38 "
-       id="polygon23200" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1131.05,489.89 1142.51,491.2 1130.85,490.38 "
-       id="polygon23202" />
-    <polygon
-       style="opacity:1;fill:#0077ac"
-       points="1124.44,504.96 1134.18,506.59 1134.46,506.86 "
-       id="polygon23204" />
-    <polygon
-       style="opacity:1;fill:#005377"
-       points="1133.47,506.53 1123.38,505.13 1123.73,504.9 "
-       id="polygon23206" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1130.75,491.47 1142.21,492.78 1130.86,491.98 "
-       id="polygon23208" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1130.85,490.38 1142.31,491.68 1130.75,490.92 "
-       id="polygon23210" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1130.75,490.92 1142.21,492.23 1130.75,491.47 "
-       id="polygon23212" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1130.03,497.92 1119.98,497.85 1120.18,497.38 "
-       id="polygon23214" />
-    <polygon
-       style="opacity:1;fill:#00577e"
-       points="1129.91,499.98 1120.3,499.83 1120.06,499.43 "
-       id="polygon23216" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1132.77,509.61 1123.32,508.26 1123.04,507.98 "
-       id="polygon23218" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.12,506.75 1123.08,505.5 1123.38,505.13 "
-       id="polygon23220" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1129.74,498.93 1119.92,498.93 1119.89,498.38 "
-       id="polygon23222" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1132.57,509.2 1123.04,507.98 1122.83,507.57 "
-       id="polygon23224" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1132.82,507.13 1122.86,505.98 1123.08,505.5 "
-       id="polygon23226" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1132.46,508.7 1122.83,507.57 1122.73,507.07 "
-       id="polygon23228" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1132.6,507.61 1122.74,506.52 1122.86,505.98 "
-       id="polygon23230" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1132.47,508.15 1122.73,507.07 1122.74,506.52 "
-       id="polygon23232" />
-    <line
-       x1="1474.33"
-       y1="529.63"
-       x2="1474.09"
-       y2="530.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23234" />
-    <polygon
-       style="opacity:1;fill:#0083be"
-       points="1120.98,500.22 1125.65,500.49 1124.74,500.4 "
-       id="polygon23236" />
-    <polygon
-       style="opacity:1;fill:#006d9e"
-       points="1121.27,500.11 1129.43,501.14 1121.63,500.06 "
-       id="polygon23238" />
-    <polygon
-       style="opacity:1;fill:#006d9e"
-       points="1121.63,500.06 1129.43,501.14 1129.06,501.07 "
-       id="polygon23240" />
-    <polygon
-       style="opacity:1;fill:#00618b"
-       points="1120.92,500.33 1131.96,501.56 1121.26,500.11 "
-       id="polygon23242" />
-    <line
-       x1="1474.65"
-       y1="528.29999"
-       x2="1474.33"
-       y2="529.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23244" />
-    <polygon
-       style="opacity:1;fill:#0085bf"
-       points="1132.33,504.98 1121.63,503.52 1131.96,505.04 "
-       id="polygon23246" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1120.9,503.46 1131.32,504.64 1120.61,503.19 "
-       id="polygon23248" />
-    <polygon
-       style="opacity:1;fill:#005276"
-       points="1120.62,500.7 1131.62,501.79 1120.91,500.34 "
-       id="polygon23250" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.6,503.18 1131.1,504.23 1120.39,502.78 "
-       id="polygon23252" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.4,501.17 1131.32,502.16 1120.61,500.71 "
-       id="polygon23254" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.39,502.76 1130.99,503.73 1120.28,502.27 "
-       id="polygon23256" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.09,502.64 1131.86,502.23 1131.65,502.71 "
-       id="polygon23258" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.29,501.71 1131.1,502.64 1120.39,501.19 "
-       id="polygon23260" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.1,502.64 1120.28,501.73 1120.29,501.71 "
-       id="polygon23262" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.28,502.26 1130.99,503.18 1120.28,501.73 "
-       id="polygon23264" />
-    <polygon
-       style="opacity:1;fill:#007671"
-       points="1143.11,490.59 1131.32,489.52 1142.79,490.82 "
-       id="polygon23266" />
-    <polygon
-       style="opacity:1;fill:#009f97"
-       points="1142.53,493.69 1131.35,492.66 1142.82,493.96 "
-       id="polygon23268" />
-    <polygon
-       style="opacity:1;fill:#0083be"
-       points="1125.65,500.49 1130.83,500.78 1130.46,500.66 "
-       id="polygon23270" />
-    <polygon
-       style="opacity:1;fill:#0083be"
-       points="1124.74,500.4 1125.65,500.49 1130.46,500.66 "
-       id="polygon23272" />
-    <polygon
-       style="opacity:1;fill:#005074"
-       points="1120.47,497.01 1130.32,497.56 1130.67,497.34 "
-       id="polygon23274" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1142.79,490.82 1131.05,489.89 1142.51,491.2 "
-       id="polygon23276" />
-    <line
-       x1="1475.05"
-       y1="526.96002"
-       x2="1474.65"
-       y2="528.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23278" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1142.33,493.29 1131.07,492.38 1142.53,493.69 "
-       id="polygon23280" />
-    <line
-       x1="1604.62"
-       y1="602.65002"
-       x2="1603.83"
-       y2="601.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23282" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1596.6,600.64 1605.13,600.46 1605.57,600.56 "
-       id="polygon23284" />
-    <polygon
-       style="opacity:1;fill:#005377"
-       points="1123.38,505.13 1133.12,506.75 1133.47,506.53 "
-       id="polygon23286" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1123.32,508.26 1133.06,509.89 1132.77,509.61 "
-       id="polygon23288" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1142.51,491.2 1130.85,490.38 1142.31,491.68 "
-       id="polygon23290" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.18,497.38 1130.03,497.92 1130.32,497.56 "
-       id="polygon23292" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1142.21,492.78 1130.86,491.98 1142.32,493.28 "
-       id="polygon23294" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1142.31,491.68 1130.75,490.92 1142.21,492.23 "
-       id="polygon23296" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1142.21,492.23 1130.75,491.47 1142.21,492.78 "
-       id="polygon23298" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1123.08,505.5 1132.82,507.13 1133.12,506.75 "
-       id="polygon23300" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1123.04,507.98 1132.77,509.61 1132.57,509.2 "
-       id="polygon23302" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1120.06,499.43 1129.91,499.98 1129.77,499.48 "
-       id="polygon23304" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1119.89,498.38 1129.74,498.93 1129.83,498.4 "
-       id="polygon23306" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.86,505.98 1132.6,507.61 1132.82,507.13 "
-       id="polygon23308" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.83,507.57 1132.57,509.2 1132.46,508.7 "
-       id="polygon23310" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.74,506.52 1132.47,508.15 1132.6,507.61 "
-       id="polygon23312" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1122.73,507.07 1132.46,508.7 1132.47,508.15 "
-       id="polygon23314" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.92,394.03 1398.56,383.41 1399.11,383.3 "
-       id="polygon23316" />
-    <line
-       x1="1475.53"
-       y1="525.59998"
-       x2="1475.05"
-       y2="526.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23318" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1597.51,601.84 1606.28,601.24 1606.48,601.75 "
-       id="polygon23320" />
-    <line
-       x1="1603.45"
-       y1="600.94"
-       x2="1603.45"
-       y2="600.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23322" />
-    <line
-       x1="1476.09"
-       y1="524.23999"
-       x2="1475.53"
-       y2="525.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23324" />
-    <polygon
-       style="opacity:1;fill:#00618b"
-       points="1131.62,501.79 1120.91,500.34 1131.96,501.56 "
-       id="polygon23326" />
-    <line
-       x1="1396.36"
-       y1="368.51001"
-       x2="1398.72"
-       y2="373.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23328" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1131.61,504.92 1120.91,503.46 1131.32,504.64 "
-       id="polygon23330" />
-    <polygon
-       style="opacity:1;fill:#005276"
-       points="1131.32,502.16 1120.61,500.71 1131.62,501.79 "
-       id="polygon23332" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.32,504.64 1120.61,503.19 1131.1,504.23 "
-       id="polygon23334" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.1,502.64 1120.39,501.19 1131.32,502.16 "
-       id="polygon23336" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.1,504.23 1120.39,502.78 1130.99,503.73 "
-       id="polygon23338" />
-    <line
-       x1="1476.73"
-       y1="522.88"
-       x2="1476.09"
-       y2="524.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23340" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1130.99,503.18 1120.28,501.73 1131.1,502.64 "
-       id="polygon23342" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1130.99,503.73 1120.28,502.27 1130.99,503.18 "
-       id="polygon23344" />
-    <polygon
-       style="opacity:1;fill:#0072a5"
-       points="1130.75,497.67 1130.34,497.55 1130.7,497.33 "
-       id="polygon23346" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1605.13,600.46 1596.16,600.54 1596.6,600.64 "
-       id="polygon23348" />
-    <polygon
-       style="opacity:1;fill:#0073a5"
-       points="1130.56,500.33 1130.46,500.66 1130.14,500.39 "
-       id="polygon23350" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1397.53,384.29 1398.34,395.01 1398.54,394.66 "
-       id="polygon23352" />
-    <line
-       x1="1477.46"
-       y1="521.52002"
-       x2="1476.73"
-       y2="522.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23354" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1397.73,383.93 1398.54,394.66 1398.9,394.36 "
-       id="polygon23356" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.05,508.25 1132.47,508.7 1132.48,508.15 "
-       id="polygon23358" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1400.63,383.64 1401.44,394.37 1401.74,394.68 "
-       id="polygon23360" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1606.28,601.24 1597.31,601.32 1597.51,601.84 "
-       id="polygon23362" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1606.28,603.36 1597.31,603.45 1597,603.83 "
-       id="polygon23364" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.56,383.41 1399.37,394.14 1399.92,394.03 "
-       id="polygon23366" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1399.67,383.3 1400.48,394.03 1401,394.15 "
-       id="polygon23368" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1399.11,383.3 1399.92,394.03 1400.48,394.03 "
-       id="polygon23370" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1606.55,602.3 1597.58,602.39 1597.51,602.95 "
-       id="polygon23372" />
-    <line
-       x1="1478.26"
-       y1="520.16998"
-       x2="1477.46"
-       y2="521.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23374" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.24,509.24 1133.19,507.71 1133.41,507.23 "
-       id="polygon23376" />
-    <line
-       x1="1133.91"
-       y1="507.39999"
-       x2="1133.91"
-       y2="507.39999"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23378" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="1130.7,497.33 1136.88,497.87 1130.34,497.55 "
-       id="polygon23380" />
-    <line
-       x1="1132.79"
-       y1="505.31"
-       x2="1132.78"
-       y2="505.26999"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23382" />
-    <line
-       x1="1479.15"
-       y1="518.84003"
-       x2="1478.26"
-       y2="520.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23384" />
-    <line
-       x1="1133.52"
-       y1="505.98999"
-       x2="1133.52"
-       y2="505.98999"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23386" />
-    <polygon
-       style="opacity:1;fill:#008c6d"
-       points="1155.07,492.31 1143.19,490.59 1143.54,490.53 "
-       id="polygon23388" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1129.89,499.98 1136.07,500.52 1130.12,500.39 "
-       id="polygon23390" />
-    <line
-       x1="1133.29"
-       y1="505.17001"
-       x2="1133.29"
-       y2="505.17001"
-       style="stroke:#00b1ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23392" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1129.84,498.39 1136.02,498.93 1129.74,498.93 "
-       id="polygon23394" />
-    <polygon
-       style="opacity:1;fill:#00785d"
-       points="1154.73,492.38 1142.86,490.82 1143.19,490.59 "
-       id="polygon23396" />
-    <line
-       x1="1480.11"
-       y1="517.53998"
-       x2="1479.15"
-       y2="518.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23398" />
-    <polygon
-       style="opacity:1;fill:#0097d9"
-       points="1144.78,512.12 1134.31,510.04 1133.95,510.11 "
-       id="polygon23400" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1398.66,395.35 1398.45,395.75 1398.3,395.39 "
-       id="polygon23402" />
-    <polygon
-       style="opacity:1;fill:#00d9a9"
-       points="1143.47,494.01 1155,495.8 1154.66,495.86 "
-       id="polygon23404" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="1142.8,493.97 1154.34,495.75 1154.07,495.48 "
-       id="polygon23406" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1165.44,497.33 1154.04,495.48 1153.86,495.07 "
-       id="polygon23408" />
-    <polygon
-       style="opacity:1;fill:#009f7c"
-       points="1154.07,495.48 1142.8,493.97 1142.53,493.7 "
-       id="polygon23410" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.32,504.64 1131.66,504.3 1131.88,504.71 "
-       id="polygon23412" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1154.4,492.61 1142.57,491.2 1142.86,490.82 "
-       id="polygon23414" />
-    <line
-       x1="1551.03"
-       y1="515.71997"
-       x2="1548.41"
-       y2="513.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23416" />
-    <line
-       x1="1548.41"
-       y1="513.20001"
-       x2="1545.62"
-       y2="510.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23418" />
-    <line
-       x1="1553.48"
-       y1="518.42999"
-       x2="1551.03"
-       y2="515.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23420" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1153.87,495.07 1142.53,493.7 1142.34,493.29 "
-       id="polygon23422" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1130.98,503.73 1131.54,503.25 1131.54,503.8 "
-       id="polygon23424" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1154.11,492.98 1142.36,491.68 1142.57,491.2 "
-       id="polygon23426" />
-    <polygon
-       style="opacity:1;fill:#006d9d"
-       points="1137.48,497.89 1131.07,497.28 1137.26,497.81 "
-       id="polygon23428" />
-    <line
-       x1="1545.62"
-       y1="510.88"
-       x2="1542.6801"
-       y2="508.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23430" />
-    <line
-       x1="1555.75"
-       y1="521.31"
-       x2="1553.48"
-       y2="518.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23432" />
-    <polygon
-       style="opacity:1;fill:#0078ad"
-       points="1134.76,506.68 1145.59,508.69 1145.87,508.96 "
-       id="polygon23434" />
-    <polygon
-       style="opacity:1;fill:#005378"
-       points="1144.89,508.64 1133.72,506.86 1134.06,506.63 "
-       id="polygon23436" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.77,494.57 1142.34,493.29 1142.24,492.78 "
-       id="polygon23438" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.9,493.47 1142.25,492.23 1142.36,491.68 "
-       id="polygon23440" />
-    <line
-       x1="1481.15"
-       y1="516.26001"
-       x2="1480.11"
-       y2="517.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23442" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.79,494.01 1142.24,492.78 1142.25,492.23 "
-       id="polygon23444" />
-    <line
-       x1="1542.6801"
-       y1="508.78"
-       x2="1539.61"
-       y2="506.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23446" />
-    <line
-       x1="1557.8199"
-       y1="524.35999"
-       x2="1555.75"
-       y2="521.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23448" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1144.16,511.73 1133.61,509.99 1133.33,509.72 "
-       id="polygon23450" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.54,508.87 1133.41,507.23 1133.72,506.86 "
-       id="polygon23452" />
-    <line
-       x1="1539.61"
-       y1="506.91"
-       x2="1536.41"
-       y2="505.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23454" />
-    <line
-       x1="1559.6899"
-       y1="527.53003"
-       x2="1557.8199"
-       y2="524.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23456" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1143.96,511.32 1133.33,509.72 1133.14,509.31 "
-       id="polygon23458" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1401.17,394.54 1401.44,394.37 1401.74,394.68 "
-       id="polygon23460" />
-    <line
-       x1="1536.41"
-       y1="505.26999"
-       x2="1533.12"
-       y2="503.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23462" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.87,510.82 1133.14,509.31 1133.04,508.8 "
-       id="polygon23464" />
-    <line
-       x1="1482.26"
-       y1="515.02002"
-       x2="1481.15"
-       y2="516.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23466" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.02,509.72 1133.06,508.25 1133.19,507.71 "
-       id="polygon23468" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1446.61,552.99 1444.11,556.32 1444.55,556.02 "
-       id="polygon23470" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.89,510.27 1133.04,508.8 1133.06,508.25 "
-       id="polygon23472" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1597.23,602.83 1597.57,602.39 1597.5,602.95 "
-       id="polygon23474" />
-    <line
-       x1="1561.34"
-       y1="530.83002"
-       x2="1559.6899"
-       y2="527.53003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23476" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1136.16,500.67 1130.12,500.39 1136.3,500.93 "
-       id="polygon23478" />
-    <line
-       x1="1533.12"
-       y1="503.89001"
-       x2="1529.74"
-       y2="502.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23480" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1130.12,500.39 1136.07,500.52 1136.16,500.67 "
-       id="polygon23482" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1129.84,498.39 1136.23,498.45 1136.15,498.63 "
-       id="polygon23484" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1136.15,498.63 1129.84,498.39 1136.02,498.93 "
-       id="polygon23486" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1135.93,499.67 1129.75,499.48 1135.94,500.01 "
-       id="polygon23488" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1129.75,499.48 1135.92,499.46 1135.93,499.67 "
-       id="polygon23490" />
-    <line
-       x1="1483.45"
-       y1="513.82001"
-       x2="1482.26"
-       y2="515.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23492" />
-    <line
-       x1="1529.74"
-       y1="502.76999"
-       x2="1526.3"
-       y2="501.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23494" />
-    <line
-       x1="1562.77"
-       y1="534.22998"
-       x2="1561.34"
-       y2="530.83002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23496" />
-    <line
-       x1="1526.3"
-       y1="501.92001"
-       x2="1522.8"
-       y2="501.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23498" />
-    <line
-       x1="1484.7"
-       y1="512.67999"
-       x2="1483.45"
-       y2="513.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23500" />
-    <line
-       x1="1563.98"
-       y1="537.70001"
-       x2="1562.77"
-       y2="534.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23502" />
-    <line
-       x1="1522.8"
-       y1="501.32999"
-       x2="1519.27"
-       y2="501.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23504" />
-    <polygon
-       style="opacity:1;fill:#00785d"
-       points="1142.86,490.82 1154.4,492.61 1154.73,492.38 "
-       id="polygon23506" />
-    <line
-       x1="1486.02"
-       y1="511.57999"
-       x2="1484.7"
-       y2="512.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23508" />
-    <polygon
-       style="opacity:1;fill:#0084bf"
-       points="1144.91,506.43 1132.55,505.1 1132.93,505.04 "
-       id="polygon23510" />
-    <line
-       x1="1519.27"
-       y1="501.01999"
-       x2="1515.72"
-       y2="500.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23512" />
-    <line
-       x1="1564.96"
-       y1="541.23999"
-       x2="1563.98"
-       y2="537.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23514" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1142.57,491.2 1154.11,492.98 1154.4,492.61 "
-       id="polygon23516" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1142.53,493.7 1154.07,495.48 1153.87,495.07 "
-       id="polygon23518" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1399.15,406.13 1398.45,395.75 1398.3,395.39 "
-       id="polygon23520" />
-    <line
-       x1="1487.41"
-       y1="510.54001"
-       x2="1486.02"
-       y2="511.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23522" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1142.36,491.68 1153.9,493.47 1154.11,492.98 "
-       id="polygon23524" />
-    <polygon
-       style="opacity:1;fill:#00608b"
-       points="1144.86,502.96 1132.49,501.64 1132.14,501.86 "
-       id="polygon23526" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1142.34,493.29 1153.87,495.07 1153.77,494.57 "
-       id="polygon23528" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1142.25,492.23 1153.79,494.01 1153.9,493.47 "
-       id="polygon23530" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1142.24,492.78 1153.77,494.57 1153.79,494.01 "
-       id="polygon23532" />
-    <polygon
-       style="opacity:1;fill:#005378"
-       points="1133.72,506.86 1144.54,508.87 1144.89,508.64 "
-       id="polygon23534" />
-    <line
-       x1="1515.72"
-       y1="500.98001"
-       x2="1512.1801"
-       y2="501.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23536" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1133.61,509.99 1144.44,512.01 1144.16,511.73 "
-       id="polygon23538" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="1144.5,503.18 1132.14,501.86 1131.84,502.23 "
-       id="polygon23540" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1144.25,506.04 1131.89,504.71 1132.2,504.98 "
-       id="polygon23542" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.41,507.23 1144.24,509.24 1144.54,508.87 "
-       id="polygon23544" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1133.33,509.72 1144.16,511.73 1143.96,511.32 "
-       id="polygon23546" />
-    <line
-       x1="1488.86"
-       y1="509.56"
-       x2="1487.41"
-       y2="510.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23548" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1399.39,405.4 1398.34,395.02 1398.54,394.66 "
-       id="polygon23550" />
-    <line
-       x1="1565.7"
-       y1="544.81"
-       x2="1564.96"
-       y2="541.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23552" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="1144.18,503.55 1145.73,503.63 1144.48,503.18 "
-       id="polygon23554" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.21,503.55 1131.84,502.23 1131.63,502.7 "
-       id="polygon23556" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.02,505.62 1131.66,504.3 1131.89,504.71 "
-       id="polygon23558" />
-    <line
-       x1="1512.1801"
-       y1="501.20999"
-       x2="1508.65"
-       y2="501.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23560" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.19,507.71 1144.02,509.72 1144.24,509.24 "
-       id="polygon23562" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.14,509.31 1143.96,511.32 1143.87,510.82 "
-       id="polygon23564" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1587.91,603.99 1597.3,603.45 1596.99,603.83 "
-       id="polygon23566" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144,504.03 1131.63,502.7 1131.53,503.24 "
-       id="polygon23568" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.9,505.12 1131.54,503.79 1131.66,504.3 "
-       id="polygon23570" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.06,508.25 1143.89,510.27 1144.02,509.72 "
-       id="polygon23572" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1133.04,508.8 1143.87,510.82 1143.89,510.27 "
-       id="polygon23574" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1588.42,601.98 1597.3,601.32 1597.5,601.84 "
-       id="polygon23576" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.89,504.57 1131.53,503.24 1131.54,503.79 "
-       id="polygon23578" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1402.59,405.42 1401.44,394.37 1401.74,394.67 "
-       id="polygon23580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.75,405.1 1398.54,394.66 1398.9,394.36 "
-       id="polygon23582" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1588.22,603.6 1597.5,602.95 1597.3,603.45 "
-       id="polygon23584" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1588.49,602.55 1597.5,601.84 1597.57,602.39 "
-       id="polygon23586" />
-    <line
-       x1="1490.36"
-       y1="508.64999"
-       x2="1488.86"
-       y2="509.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23588" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1588.42,603.1 1597.57,602.39 1597.5,602.95 "
-       id="polygon23590" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.91,498.77 1136.42,498.22 1136.23,498.45 "
-       id="polygon23592" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1402.29,405.11 1401,394.14 1401.44,394.37 "
-       id="polygon23594" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.22,404.88 1398.9,394.36 1399.37,394.14 "
-       id="polygon23596" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1136.23,498.45 1139.91,498.77 1136.15,498.63 "
-       id="polygon23598" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1401.85,404.89 1400.48,394.03 1401,394.14 "
-       id="polygon23600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.77,404.77 1399.37,394.14 1399.92,394.03 "
-       id="polygon23602" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.75,500.84 1135.99,500.2 1136.07,500.52 "
-       id="polygon23604" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1401.33,404.77 1399.92,394.03 1400.48,394.03 "
-       id="polygon23606" />
-    <polygon
-       style="opacity:1;fill:#00b38b"
-       points="1155.53,492.97 1155.43,492.42 1155.7,492.7 "
-       id="polygon23608" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.6,499.79 1135.98,499.13 1135.92,499.46 "
-       id="polygon23610" />
-    <line
-       x1="1491.91"
-       y1="507.81"
-       x2="1490.36"
-       y2="508.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23612" />
-    <line
-       x1="1566.21"
-       y1="548.40002"
-       x2="1565.7"
-       y2="544.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23614" />
-    <polygon
-       style="opacity:1;fill:#00a5be"
-       points="1140.3,501.52 1136.75,501.25 1140.66,501.64 "
-       id="polygon23616" />
-    <line
-       x1="1493.5"
-       y1="507.04999"
-       x2="1491.91"
-       y2="507.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23618" />
-    <line
-       x1="1501.75"
-       y1="503.53"
-       x2="1498.4"
-       y2="504.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23620" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1140.21,498.41 1136.42,498.22 1139.91,498.77 "
-       id="polygon23622" />
-    <line
-       x1="1495.15"
-       y1="506.37"
-       x2="1493.5"
-       y2="507.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23624" />
-    <line
-       x1="1498.4"
-       y1="504.82001"
-       x2="1495.15"
-       y2="506.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23626" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.62,500.33 1135.99,500.2 1139.75,500.84 "
-       id="polygon23628" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.7,499.25 1135.98,499.13 1139.6,499.79 "
-       id="polygon23630" />
-    <line
-       x1="1566.5"
-       y1="551.97998"
-       x2="1566.21"
-       y2="548.40002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23632" />
-    <polygon
-       style="opacity:1;fill:#008fa5"
-       points="1140.69,501.29 1140.66,501.64 1140.3,501.52 "
-       id="polygon23634" />
-    <line
-       x1="1566.54"
-       y1="555.53998"
-       x2="1566.5"
-       y2="551.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23636" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1597.3,601.32 1588.22,601.48 1588.42,601.98 "
-       id="polygon23638" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1597.3,603.45 1588.22,603.6 1587.91,603.99 "
-       id="polygon23640" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1401.74,394.67 1402.59,405.42 1402.73,405.77 "
-       id="polygon23642" />
-    <polygon
-       style="opacity:1;fill:#00608b"
-       points="1132.14,501.86 1144.86,502.96 1144.5,503.18 "
-       id="polygon23644" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1597.5,601.84 1588.42,601.98 1588.49,602.55 "
-       id="polygon23646" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1597.5,602.95 1588.42,603.1 1588.22,603.6 "
-       id="polygon23648" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.54,394.66 1399.39,405.4 1399.75,405.1 "
-       id="polygon23650" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1597.57,602.39 1588.49,602.55 1588.42,603.1 "
-       id="polygon23652" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1132.2,504.98 1144.25,506.04 1144.56,506.31 "
-       id="polygon23654" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="1131.84,502.23 1144.5,503.18 1144.21,503.55 "
-       id="polygon23656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.9,394.36 1399.75,405.1 1400.22,404.88 "
-       id="polygon23658" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.89,504.71 1144.02,505.62 1144.25,506.04 "
-       id="polygon23660" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1401,394.14 1401.85,404.89 1402.29,405.11 "
-       id="polygon23662" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.87,504.56 1145.39,504.63 1143.97,504.02 "
-       id="polygon23664" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.63,502.7 1144.21,503.55 1144,504.03 "
-       id="polygon23666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.37,394.14 1400.22,404.88 1400.77,404.77 "
-       id="polygon23668" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.66,504.3 1143.9,505.12 1144.02,505.62 "
-       id="polygon23670" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1400.48,394.03 1401.33,404.77 1401.85,404.89 "
-       id="polygon23672" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1399.92,394.03 1400.77,404.77 1401.33,404.77 "
-       id="polygon23674" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.53,503.24 1144,504.03 1143.89,504.57 "
-       id="polygon23676" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.02,505.61 1145.52,505.68 1143.89,505.11 "
-       id="polygon23678" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1131.54,503.79 1143.89,504.57 1143.9,505.12 "
-       id="polygon23680" />
-    <line
-       x1="1566.37"
-       y1="559.04999"
-       x2="1566.54"
-       y2="555.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23682" />
-    <polygon
-       style="opacity:1;fill:#00795e"
-       points="1166.36,494.63 1154.44,492.61 1154.78,492.38 "
-       id="polygon23684" />
-    <polygon
-       style="opacity:1;fill:#00788b"
-       points="1150.89,499.32 1140.6,498.18 1140.97,498.13 "
-       id="polygon23686" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1166.03,494.86 1154.15,492.98 1154.44,492.61 "
-       id="polygon23688" />
-    <polygon
-       style="opacity:1;fill:#006676"
-       points="1150.51,499.38 1140.24,498.4 1140.6,498.18 "
-       id="polygon23690" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.73,495.24 1153.93,493.47 1154.15,492.98 "
-       id="polygon23692" />
-    <polygon
-       style="opacity:1;fill:#0078ad"
-       points="1145.6,508.69 1156.55,510.91 1156.82,511.19 "
-       id="polygon23694" />
-    <polygon
-       style="opacity:1;fill:#005378"
-       points="1155.86,510.86 1144.57,508.87 1144.91,508.64 "
-       id="polygon23696" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.36,496.82 1153.86,495.07 1153.77,494.57 "
-       id="polygon23698" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.51,495.72 1153.8,494.02 1153.93,493.47 "
-       id="polygon23700" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.38,496.27 1153.77,494.57 1153.8,494.02 "
-       id="polygon23702" />
-    <line
-       x1="1565.96"
-       y1="562.5"
-       x2="1566.37"
-       y2="559.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23704" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1150.16,499.6 1139.94,498.77 1140.24,498.4 "
-       id="polygon23706" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1155.1,513.96 1144.43,512.01 1144.16,511.73 "
-       id="polygon23708" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="1140.27,501.53 1150.18,502.73 1149.88,502.46 "
-       id="polygon23710" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1159.64,503.63 1149.86,502.46 1149.64,502.05 "
-       id="polygon23712" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="1149.88,502.46 1140.27,501.53 1139.96,501.25 "
-       id="polygon23714" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1442.19,559.63 1444.1,556.34 1444.55,556.04 "
-       id="polygon23716" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1155.52,511.09 1144.27,509.24 1144.57,508.87 "
-       id="polygon23718" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1442.72,559.48 1444.55,556.04 1445.07,555.89 "
-       id="polygon23720" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.86,499.97 1139.72,499.24 1139.94,498.77 "
-       id="polygon23722" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1149.65,502.04 1139.96,501.25 1139.73,500.84 "
-       id="polygon23724" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1154.91,513.55 1144.16,511.73 1143.97,511.32 "
-       id="polygon23726" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1155.22,511.47 1144.04,509.73 1144.27,509.24 "
-       id="polygon23728" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.64,500.45 1139.61,499.79 1139.72,499.24 "
-       id="polygon23730" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.53,501.54 1139.73,500.84 1139.61,500.33 "
-       id="polygon23732" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.53,500.98 1139.61,500.33 1139.61,499.79 "
-       id="polygon23734" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.83,513.05 1143.97,511.32 1143.88,510.82 "
-       id="polygon23736" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.99,511.95 1143.91,510.27 1144.04,509.73 "
-       id="polygon23738" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.86,512.5 1143.88,510.82 1143.91,510.27 "
-       id="polygon23740" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1399.7,405.52 1399.18,405.76 1399.39,405.41 "
-       id="polygon23742" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1402.26,405.53 1402.59,405.42 1402.73,405.77 "
-       id="polygon23744" />
-    <line
-       x1="1395.9399"
-       y1="367.45001"
-       x2="1395.58"
-       y2="366.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23746" />
-    <line
-       x1="1395.58"
-       y1="366.37"
-       x2="1395.29"
-       y2="365.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23748" />
-    <line
-       x1="1565.35"
-       y1="565.84998"
-       x2="1565.96"
-       y2="562.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23750" />
-    <line
-       x1="1395.29"
-       y1="365.26999"
-       x2="1395.05"
-       y2="364.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23752" />
-    <line
-       x1="1395.05"
-       y1="364.16"
-       x2="1394.89"
-       y2="363.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23754" />
-    <polygon
-       style="opacity:1;fill:#00a07c"
-       points="1154.3,495.75 1165.88,498.01 1165.62,497.74 "
-       id="polygon23756" />
-    <polygon
-       style="opacity:1;fill:#00795e"
-       points="1154.44,492.61 1166.03,494.86 1166.36,494.63 "
-       id="polygon23758" />
-    <line
-       x1="1394.89"
-       y1="363.04001"
-       x2="1394.8"
-       y2="361.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23760" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1154.04,495.48 1165.62,497.74 1165.44,497.33 "
-       id="polygon23762" />
-    <polygon
-       style="opacity:1;fill:#005175"
-       points="1144.48,503.18 1145.73,503.63 1145.99,503.31 "
-       id="polygon23764" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1154.15,492.98 1165.73,495.24 1166.03,494.86 "
-       id="polygon23766" />
-    <line
-       x1="1594.9"
-       y1="588.46002"
-       x2="1603.45"
-       y2="600.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23768" />
-    <polygon
-       style="opacity:1;fill:#007d61"
-       points="1177.05,500.05 1165.59,497.73 1165.42,497.32 "
-       id="polygon23770" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.86,495.07 1165.44,497.33 1165.36,496.82 "
-       id="polygon23772" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.93,493.47 1165.51,495.72 1165.73,495.24 "
-       id="polygon23774" />
-    <polygon
-       style="opacity:1;fill:#006676"
-       points="1140.24,498.4 1150.16,499.6 1150.51,499.38 "
-       id="polygon23776" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.77,494.57 1165.36,496.82 1165.38,496.27 "
-       id="polygon23778" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1153.8,494.02 1165.38,496.27 1165.51,495.72 "
-       id="polygon23780" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1144.43,512.01 1155.38,514.24 1155.1,513.96 "
-       id="polygon23782" />
-    <polygon
-       style="opacity:1;fill:#005378"
-       points="1144.57,508.87 1155.52,511.09 1155.86,510.86 "
-       id="polygon23784" />
-    <line
-       x1="1394.8"
-       y1="361.91"
-       x2="1394.77"
-       y2="360.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23786" />
-    <line
-       x1="1564.52"
-       y1="569.09998"
-       x2="1565.35"
-       y2="565.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23788" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.94,498.77 1149.86,499.97 1150.16,499.6 "
-       id="polygon23790" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1144.16,511.73 1155.1,513.96 1154.91,513.55 "
-       id="polygon23792" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.27,509.24 1155.22,511.47 1155.52,511.09 "
-       id="polygon23794" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1139.96,501.25 1149.88,502.46 1149.65,502.04 "
-       id="polygon23796" />
-    <line
-       x1="1394.77"
-       y1="360.79001"
-       x2="1394.8101"
-       y2="359.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23798" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1579.03,601.68 1587.89,601.07 1588.21,601.48 "
-       id="polygon23800" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.72,499.24 1149.64,500.45 1149.86,499.97 "
-       id="polygon23802" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.97,511.32 1154.91,513.55 1154.83,513.05 "
-       id="polygon23804" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1144.04,509.73 1154.99,511.95 1155.22,511.47 "
-       id="polygon23806" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.73,500.84 1149.65,502.04 1149.53,501.54 "
-       id="polygon23808" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.61,499.79 1149.53,500.98 1149.64,500.45 "
-       id="polygon23810" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1139.61,500.33 1149.53,501.54 1149.53,500.98 "
-       id="polygon23812" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.88,510.82 1154.83,513.05 1154.86,512.5 "
-       id="polygon23814" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1143.91,510.27 1154.86,512.5 1154.99,511.95 "
-       id="polygon23816" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1579.04,603.8 1588.42,603.1 1588.22,603.6 "
-       id="polygon23818" />
-    <line
-       x1="1394.8101"
-       y1="359.66"
-       x2="1394.91"
-       y2="358.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23820" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1400.27,416.17 1399.18,405.76 1399.39,405.41 "
-       id="polygon23822" />
-    <line
-       x1="1394.91"
-       y1="358.54999"
-       x2="1395.08"
-       y2="357.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23824" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1403.48,416.18 1402.29,405.11 1402.59,405.41 "
-       id="polygon23826" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.63,415.87 1399.39,405.41 1399.75,405.1 "
-       id="polygon23828" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1444.55,556.04 1442.19,559.63 1442.72,559.48 "
-       id="polygon23830" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1403.17,415.88 1401.85,404.89 1402.29,405.11 "
-       id="polygon23832" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.1,415.65 1399.75,405.1 1400.22,404.88 "
-       id="polygon23834" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1445.07,555.89 1442.72,559.48 1443.28,559.51 "
-       id="polygon23836" />
-    <line
-       x1="1563.49"
-       y1="572.21002"
-       x2="1564.52"
-       y2="569.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23838" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1402.73,415.66 1401.33,404.77 1401.85,404.89 "
-       id="polygon23840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.64,415.54 1400.22,404.88 1400.77,404.77 "
-       id="polygon23842" />
-    <line
-       x1="1395.08"
-       y1="357.45001"
-       x2="1395.3101"
-       y2="356.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23844" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1402.21,415.54 1400.77,404.77 1401.33,404.77 "
-       id="polygon23846" />
-    <line
-       x1="1395.3101"
-       y1="356.35999"
-       x2="1395.61"
-       y2="355.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23848" />
-    <line
-       x1="1395.61"
-       y1="355.29001"
-       x2="1395.97"
-       y2="354.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23850" />
-    <polygon
-       style="opacity:1;fill:#0092a9"
-       points="1150.59,499.71 1150.2,499.6 1150.55,499.38 "
-       id="polygon23852" />
-    <polygon
-       style="opacity:1;fill:#00788a"
-       points="1146.04,503.29 1157.12,504.01 1146.34,503.09 "
-       id="polygon23854" />
-    <polygon
-       style="opacity:1;fill:#00899e"
-       points="1146.41,506.54 1156.86,507.36 1146.09,506.43 "
-       id="polygon23856" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1587.89,601.07 1578.71,601.27 1579.03,601.68 "
-       id="polygon23858" />
-    <line
-       x1="1562.27"
-       y1="575.19"
-       x2="1563.49"
-       y2="572.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23860" />
-    <polygon
-       style="opacity:1;fill:#006575"
-       points="1145.73,503.63 1156.76,504.23 1145.99,503.31 "
-       id="polygon23862" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1156.54,507.08 1146.09,506.43 1146.05,506.4 "
-       id="polygon23864" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1146.05,506.4 1156.54,507.08 1145.77,506.16 "
-       id="polygon23866" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1588.21,601.48 1579.03,601.68 1579.23,602.19 "
-       id="polygon23868" />
-    <polygon
-       style="opacity:1;fill:#006574"
-       points="1156.45,504.6 1165.75,505 1156.75,504.23 "
-       id="polygon23870" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1145.51,504.09 1156.47,504.59 1145.7,503.68 "
-       id="polygon23872" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1145.74,506.11 1156.31,506.66 1145.53,505.75 "
-       id="polygon23874" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1588.41,601.98 1579.23,602.19 1579.3,602.75 "
-       id="polygon23876" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1588.42,603.1 1579.24,603.31 1579.04,603.8 "
-       id="polygon23878" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1145.39,504.63 1156.26,505.07 1145.48,504.15 "
-       id="polygon23880" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1145.52,505.68 1156.18,506.16 1145.4,505.24 "
-       id="polygon23882" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.14,505.61 1165.3,505.88 1156.24,505.07 "
-       id="polygon23884" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1145.4,505.17 1156.16,505.61 1145.38,504.69 "
-       id="polygon23886" />
-    <line
-       x1="1396.39"
-       y1="353.23001"
-       x2="1396.87"
-       y2="352.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23888" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1399.18,405.76 1400.06,416.53 1400.27,416.17 "
-       id="polygon23890" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1402.59,405.41 1403.48,416.18 1403.62,416.54 "
-       id="polygon23892" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.39,405.41 1400.27,416.17 1400.63,415.87 "
-       id="polygon23894" />
-    <polygon
-       style="opacity:1;fill:#0097da"
-       points="1155.68,514.35 1164.79,516.37 1156.03,514.29 "
-       id="polygon23896" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1402.29,405.11 1403.17,415.88 1403.48,416.18 "
-       id="polygon23898" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.75,405.1 1400.63,415.87 1401.1,415.65 "
-       id="polygon23900" />
-    <polygon
-       style="opacity:1;fill:#0095ac"
-       points="1161.58,501.29 1151.28,499.44 1151.58,499.71 "
-       id="polygon23902" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1401.85,404.89 1402.73,415.66 1403.17,415.88 "
-       id="polygon23904" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.22,404.88 1401.1,415.65 1401.64,415.54 "
-       id="polygon23906" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1401.33,404.77 1402.21,415.54 1402.73,415.66 "
-       id="polygon23908" />
-    <line
-       x1="1397.4"
-       y1="351.29999"
-       x2="1397.98"
-       y2="350.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23910" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1400.77,404.77 1401.64,415.54 1402.21,415.54 "
-       id="polygon23912" />
-    <polygon
-       style="opacity:1;fill:#00ad87"
-       points="1167.05,494.68 1178.69,497.39 1178.94,497.66 "
-       id="polygon23914" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="1178.04,497.35 1166.07,494.87 1166.41,494.64 "
-       id="polygon23916" />
-    <line
-       x1="1560.86"
-       y1="578"
-       x2="1562.27"
-       y2="575.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23918" />
-    <polygon
-       style="opacity:1;fill:#0078ad"
-       points="1165.88,513.16 1156.56,510.91 1165.66,512.93 "
-       id="polygon23920" />
-    <polygon
-       style="opacity:1;fill:#005479"
-       points="1155.89,510.87 1165,512.88 1155.55,511.1 "
-       id="polygon23922" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1165.84,498 1177.47,500.73 1177.22,500.45 "
-       id="polygon23924" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="1188.72,503.22 1177.19,500.45 1177.04,500.04 "
-       id="polygon23926" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1177.22,500.45 1165.84,498 1165.59,497.73 "
-       id="polygon23928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.73,560.54 1441.25,560.88 1441.41,560.37 "
-       id="polygon23930" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.7,497.58 1165.77,495.24 1166.07,494.87 "
-       id="polygon23932" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1155.55,511.1 1164.65,513.12 1155.25,511.48 "
-       id="polygon23934" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.41,497.96 1165.54,495.73 1165.77,495.24 "
-       id="polygon23936" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1154.92,513.56 1164.02,515.58 1155.1,513.97 "
-       id="polygon23938" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1176.99,499.54 1165.42,497.32 1165.36,496.82 "
-       id="polygon23940" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1155.25,511.48 1164.35,513.49 1155.02,511.96 "
-       id="polygon23942" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.17,498.45 1165.4,496.27 1165.54,495.73 "
-       id="polygon23944" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.03,498.99 1165.36,496.82 1165.4,496.27 "
-       id="polygon23946" />
-    <polygon
-       style="opacity:1;fill:#006777"
-       points="1160.56,500.95 1150.2,499.6 1150.55,499.38 "
-       id="polygon23948" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.84,513.05 1163.95,515.07 1154.92,513.56 "
-       id="polygon23950" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1155.02,511.96 1164.12,513.98 1154.88,512.5 "
-       id="polygon23952" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.88,512.5 1163.98,514.52 1154.84,513.05 "
-       id="polygon23954" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1160.2,501.18 1149.89,499.96 1150.2,499.6 "
-       id="polygon23956" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1157.12,504.01 1146.34,503.09 1157.5,503.95 "
-       id="polygon23958" />
-    <line
-       x1="1398.62"
-       y1="349.54001"
-       x2="1399.3"
-       y2="348.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23960" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.89,501.54 1149.66,500.45 1149.89,499.96 "
-       id="polygon23962" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.54,503.12 1149.64,502.05 1149.54,501.54 "
-       id="polygon23964" />
-    <polygon
-       style="opacity:1;fill:#00788a"
-       points="1156.76,504.23 1145.99,503.31 1157.12,504.01 "
-       id="polygon23966" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.67,502.02 1149.54,500.99 1149.66,500.45 "
-       id="polygon23968" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.55,502.57 1149.54,501.54 1149.54,500.99 "
-       id="polygon23970" />
-    <polygon
-       style="opacity:1;fill:#006575"
-       points="1156.47,504.59 1145.7,503.68 1156.76,504.23 "
-       id="polygon23972" />
-    <line
-       x1="1399.3"
-       y1="348.72"
-       x2="1400.03"
-       y2="347.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23974" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.54,507.08 1145.77,506.16 1156.31,506.66 "
-       id="polygon23976" />
-    <line
-       x1="1559.29"
-       y1="580.62"
-       x2="1560.86"
-       y2="578"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23978" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.26,505.07 1145.48,504.15 1156.47,504.59 "
-       id="polygon23980" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.31,506.66 1145.53,505.75 1156.18,506.16 "
-       id="polygon23982" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.16,505.61 1145.38,504.69 1156.26,505.07 "
-       id="polygon23984" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.3,506.66 1165.28,506.96 1156.16,506.16 "
-       id="polygon23986" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.18,506.16 1145.4,505.24 1156.16,505.61 "
-       id="polygon23988" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1403.26,416.57 1403.48,416.18 1403.62,416.54 "
-       id="polygon23990" />
-    <line
-       x1="1400.03"
-       y1="347.95001"
-       x2="1400.8"
-       y2="347.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line23992" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1164.25,516.04 1155.36,514.24 1164.46,516.26 "
-       id="polygon23994" />
-    <polygon
-       style="opacity:1;fill:#005479"
-       points="1164.93,512.93 1155.55,511.1 1164.65,513.12 "
-       id="polygon23996" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1164.05,515.65 1155.1,513.97 1164.2,515.99 "
-       id="polygon23998" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1164.6,513.18 1155.25,511.48 1164.35,513.49 "
-       id="polygon24000" />
-    <polygon
-       style="opacity:1;fill:#00567d"
-       points="1155.1,513.97 1164.02,515.58 1164.05,515.65 "
-       id="polygon24002" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="1166.07,494.87 1177.7,497.58 1178.04,497.35 "
-       id="polygon24004" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1163.96,515.16 1154.92,513.56 1164.02,515.58 "
-       id="polygon24006" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1164.31,513.58 1155.02,511.96 1164.12,513.98 "
-       id="polygon24008" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.92,513.56 1163.95,515.07 1163.96,515.16 "
-       id="polygon24010" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1163.97,514.62 1154.84,513.05 1163.95,515.07 "
-       id="polygon24012" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1164.09,514.07 1154.88,512.5 1163.98,514.52 "
-       id="polygon24014" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1154.84,513.05 1163.98,514.52 1163.97,514.62 "
-       id="polygon24016" />
-    <polygon
-       style="opacity:1;fill:#007d61"
-       points="1165.59,497.73 1177.22,500.45 1177.05,500.05 "
-       id="polygon24018" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.77,495.24 1177.41,497.96 1177.7,497.58 "
-       id="polygon24020" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1568.21,604.66 1577.91,604.51 1577.48,604.41 "
-       id="polygon24022" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.42,497.32 1177.05,500.05 1176.99,499.54 "
-       id="polygon24024" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.54,495.73 1177.17,498.45 1177.41,497.96 "
-       id="polygon24026" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.36,496.82 1176.99,499.54 1177.03,498.99 "
-       id="polygon24028" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1165.4,496.27 1177.03,498.99 1177.17,498.45 "
-       id="polygon24030" />
-    <line
-       x1="1401.61"
-       y1="346.57001"
-       x2="1402.45"
-       y2="345.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24032" />
-    <polygon
-       style="opacity:1;fill:#006777"
-       points="1150.2,499.6 1160.2,501.18 1160.56,500.95 "
-       id="polygon24034" />
-    <line
-       x1="1557.5601"
-       y1="583.04999"
-       x2="1559.29"
-       y2="580.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24036" />
-    <polygon
-       style="opacity:1;fill:#008a9f"
-       points="1150.15,502.74 1160.16,504.32 1159.86,504.04 "
-       id="polygon24038" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1569.07,604.69 1578.73,604.2 1578.34,604.44 "
-       id="polygon24040" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.89,499.96 1159.89,501.54 1160.2,501.18 "
-       id="polygon24042" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1149.86,502.46 1159.86,504.04 1159.64,503.63 "
-       id="polygon24044" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1569.76,601.92 1578.71,601.27 1579.02,601.68 "
-       id="polygon24046" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.66,500.45 1159.67,502.02 1159.89,501.54 "
-       id="polygon24048" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.64,502.05 1159.64,503.63 1159.54,503.12 "
-       id="polygon24050" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.54,500.99 1159.55,502.57 1159.67,502.02 "
-       id="polygon24052" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1149.54,501.54 1159.54,503.12 1159.55,502.57 "
-       id="polygon24054" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1569.77,604.05 1579.23,603.31 1579.04,603.8 "
-       id="polygon24056" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1570.03,603 1579.23,602.19 1579.3,602.75 "
-       id="polygon24058" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1569.97,603.55 1579.3,602.75 1579.23,603.31 "
-       id="polygon24060" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1440.48,563.29 1442.19,559.64 1442.71,559.49 "
-       id="polygon24062" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1400.93,427.7 1400.17,417.27 1400.03,416.91 "
-       id="polygon24064" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1441.04,563.31 1442.71,559.49 1443.27,559.52 "
-       id="polygon24066" />
-    <line
-       x1="1403.3199"
-       y1="345.41"
-       x2="1404.22"
-       y2="344.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24068" />
-    <polygon
-       style="opacity:1;fill:#00bdda"
-       points="1166.75,516.81 1164.85,516.36 1167.1,516.74 "
-       id="polygon24070" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1401.17,426.97 1400.06,416.53 1400.27,416.18 "
-       id="polygon24072" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1166.32,513.93 1164.6,513.18 1164.35,513.49 "
-       id="polygon24074" />
-    <line
-       x1="1555.6801"
-       y1="585.27002"
-       x2="1557.5601"
-       y2="583.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24076" />
-    <polygon
-       style="opacity:1;fill:#006979"
-       points="1166.96,513.32 1164.93,512.93 1166.62,513.55 "
-       id="polygon24078" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1404.39,426.98 1403.17,415.88 1403.48,416.18 "
-       id="polygon24080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.53,426.67 1400.27,416.18 1400.63,415.87 "
-       id="polygon24082" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.99,516.02 1163.96,515.16 1164.02,515.58 "
-       id="polygon24084" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.95,514.96 1164.09,514.07 1163.98,514.52 "
-       id="polygon24086" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1404.08,426.67 1402.73,415.65 1403.17,415.88 "
-       id="polygon24088" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402,426.45 1400.63,415.87 1401.1,415.65 "
-       id="polygon24090" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1166.62,513.55 1164.6,513.18 1166.32,513.93 "
-       id="polygon24092" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1403.64,426.45 1402.21,415.54 1402.73,415.65 "
-       id="polygon24094" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.55,426.33 1401.1,415.65 1401.64,415.54 "
-       id="polygon24096" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1403.12,426.33 1401.64,415.54 1402.21,415.54 "
-       id="polygon24098" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.91,515.51 1163.96,515.16 1165.99,516.02 "
-       id="polygon24100" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1166.08,514.41 1164.09,514.07 1165.95,514.96 "
-       id="polygon24102" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1578.32,601 1569.05,601.24 1569.45,601.51 "
-       id="polygon24104" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1578.71,601.27 1569.45,601.51 1569.76,601.92 "
-       id="polygon24106" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1578.73,604.2 1569.46,604.45 1569.07,604.69 "
-       id="polygon24108" />
-    <polygon
-       style="opacity:1;fill:#0096ad"
-       points="1161.32,501.01 1164.52,501.86 1164.31,501.66 "
-       id="polygon24110" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1579.23,602.19 1569.96,602.44 1570.03,603 "
-       id="polygon24112" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1579.23,603.31 1569.97,603.55 1569.77,604.05 "
-       id="polygon24114" />
-    <polygon
-       style="opacity:1;fill:#00889e"
-       points="1157.23,507.47 1166.04,508.05 1156.86,507.35 "
-       id="polygon24116" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1579.3,602.75 1570.03,603 1569.97,603.55 "
-       id="polygon24118" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1160.25,501.18 1163.16,501.75 1159.93,501.55 "
-       id="polygon24120" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1156.86,507.35 1165.7,507.82 1156.54,507.07 "
-       id="polygon24122" />
-    <line
-       x1="1553.6801"
-       y1="587.26001"
-       x2="1555.6801"
-       y2="585.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24124" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.55,503.13 1162.46,503.7 1159.64,503.63 "
-       id="polygon24126" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1159.7,502.03 1162.62,502.6 1159.57,502.57 "
-       id="polygon24128" />
-    <polygon
-       style="opacity:1;fill:#009070"
-       points="1190.1,500.46 1178.09,497.36 1178.42,497.3 "
-       id="polygon24130" />
-    <line
-       x1="1407.02"
-       y1="343.84"
-       x2="1407.98"
-       y2="343.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24132" />
-    <polygon
-       style="opacity:1;fill:#006878"
-       points="1160.25,501.18 1163.52,501.52 1163.27,501.68 "
-       id="polygon24134" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1189.77,500.53 1177.75,497.59 1178.09,497.36 "
-       id="polygon24136" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1162.7,504.5 1159.84,504.05 1162.76,504.62 "
-       id="polygon24138" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1400.06,416.53 1400.96,427.33 1401.17,426.97 "
-       id="polygon24140" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1188.87,503.63 1177.43,500.72 1177.19,500.45 "
-       id="polygon24142" />
-    <polygon
-       style="opacity:1;fill:#0096ae"
-       points="1167.64,513.37 1178.83,516.05 1179.08,516.32 "
-       id="polygon24144" />
-    <polygon
-       style="opacity:1;fill:#007c8f"
-       points="1178.52,515.95 1166.99,513.32 1167.33,513.26 "
-       id="polygon24146" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1189.43,500.77 1177.45,497.97 1177.75,497.59 "
-       id="polygon24148" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1162.68,502.46 1159.7,502.03 1162.62,502.6 "
-       id="polygon24150" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1442.19,559.64 1439.95,563.43 1440.48,563.29 "
-       id="polygon24152" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.27,416.18 1401.17,426.97 1401.53,426.67 "
-       id="polygon24154" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1162.47,503.54 1159.55,503.13 1162.46,503.7 "
-       id="polygon24156" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1403.17,415.88 1404.08,426.67 1404.39,426.98 "
-       id="polygon24158" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1178.17,516.01 1166.65,513.55 1166.99,513.32 "
-       id="polygon24160" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1189.13,501.14 1177.2,498.45 1177.45,497.97 "
-       id="polygon24162" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.67,502.72 1177.04,500.04 1176.99,499.54 "
-       id="polygon24164" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.63,415.87 1401.53,426.67 1402,426.45 "
-       id="polygon24166" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.88,501.63 1177.04,499 1177.2,498.45 "
-       id="polygon24168" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1177.34,519.12 1166.41,516.7 1166.16,516.43 "
-       id="polygon24170" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.73,502.17 1176.99,499.54 1177.04,499 "
-       id="polygon24172" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1402.73,415.65 1403.64,426.45 1404.08,426.67 "
-       id="polygon24174" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.1,415.65 1402,426.45 1402.55,426.33 "
-       id="polygon24176" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.83,516.24 1166.34,513.93 1166.65,513.55 "
-       id="polygon24178" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1402.21,415.54 1403.12,426.33 1403.64,426.45 "
-       id="polygon24180" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1401.64,415.54 1402.55,426.33 1403.12,426.33 "
-       id="polygon24182" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1177.18,518.71 1166.16,516.43 1165.99,516.02 "
-       id="polygon24184" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.53,516.62 1166.11,514.42 1166.34,513.93 "
-       id="polygon24186" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.11,518.2 1165.99,516.02 1165.92,515.52 "
-       id="polygon24188" />
-    <line
-       x1="1408.95"
-       y1="343.45001"
-       x2="1409.91"
-       y2="343.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24190" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.3,517.11 1165.96,514.96 1166.11,514.42 "
-       id="polygon24192" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.15,517.65 1165.92,515.52 1165.96,514.96 "
-       id="polygon24194" />
-    <line
-       x1="1551.5699"
-       y1="589.02002"
-       x2="1553.6801"
-       y2="587.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24196" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1162.56,504.2 1169.77,505.62 1162.7,504.5 "
-       id="polygon24198" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.77,505.62 1162.53,504.06 1162.56,504.2 "
-       id="polygon24200" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.68,505.11 1162.53,504.06 1169.77,505.62 "
-       id="polygon24202" />
-    <polygon
-       style="opacity:1;fill:#00778a"
-       points="1165.83,504.9 1156.75,504.23 1166.09,504.74 "
-       id="polygon24204" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1165.94,508.02 1156.86,507.35 1165.7,507.82 "
-       id="polygon24206" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.62,507.75 1156.54,507.07 1165.44,507.44 "
-       id="polygon24208" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.32,505.74 1156.24,505.07 1165.48,505.39 "
-       id="polygon24210" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.24,505.07 1165.3,505.88 1165.32,505.74 "
-       id="polygon24212" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1156.16,506.16 1165.28,506.96 1165.24,506.83 "
-       id="polygon24214" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.24,506.83 1156.16,506.16 1165.23,506.42 "
-       id="polygon24216" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="1163.52,501.52 1170.73,502.93 1163.27,501.68 "
-       id="polygon24218" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1177.43,500.72 1189.11,503.89 1188.87,503.63 "
-       id="polygon24220" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1163.16,501.75 1170.38,503.16 1162.94,502.01 "
-       id="polygon24222" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1177.75,497.59 1189.43,500.77 1189.77,500.53 "
-       id="polygon24224" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1404.14,427.67 1404.53,427.33 1404.5,427.71 "
-       id="polygon24226" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1162.85,502.12 1170.07,503.53 1162.68,502.46 "
-       id="polygon24228" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1189.08,503.88 1188.85,503.62 1194.65,505.51 "
-       id="polygon24230" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="1177.19,500.45 1188.87,503.63 1188.72,503.22 "
-       id="polygon24232" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.45,497.97 1189.13,501.14 1189.43,500.77 "
-       id="polygon24234" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1162.46,503.7 1169.68,505.11 1162.53,504.06 "
-       id="polygon24236" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1162.62,502.6 1169.83,504.01 1162.52,502.98 "
-       id="polygon24238" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1162.48,503.14 1169.7,504.55 1162.47,503.54 "
-       id="polygon24240" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.7,504.55 1162.52,502.98 1162.48,503.14 "
-       id="polygon24242" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1200.44,506.84 1188.85,503.62 1188.71,503.21 "
-       id="polygon24244" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.04,500.04 1188.72,503.22 1188.67,502.72 "
-       id="polygon24246" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1166.41,516.7 1177.6,519.39 1177.34,519.12 "
-       id="polygon24248" />
-    <line
-       x1="1549.37"
-       y1="590.53003"
-       x2="1551.5699"
-       y2="589.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24250" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.2,498.45 1188.88,501.63 1189.13,501.14 "
-       id="polygon24252" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1166.65,513.55 1177.83,516.24 1178.17,516.01 "
-       id="polygon24254" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1176.99,499.54 1188.67,502.72 1188.73,502.17 "
-       id="polygon24256" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1177.04,499 1188.73,502.17 1188.88,501.63 "
-       id="polygon24258" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1166.16,516.43 1177.34,519.12 1177.18,518.71 "
-       id="polygon24260" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1166.34,513.93 1177.53,516.62 1177.83,516.24 "
-       id="polygon24262" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.99,516.02 1177.18,518.71 1177.11,518.2 "
-       id="polygon24264" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1166.11,514.42 1177.3,517.11 1177.53,516.62 "
-       id="polygon24266" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.92,515.52 1177.11,518.2 1177.15,517.65 "
-       id="polygon24268" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1165.96,514.96 1177.15,517.65 1177.3,517.11 "
-       id="polygon24270" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1560.11,601.79 1569.05,601.24 1569.44,601.51 "
-       id="polygon24272" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1559.74,604.97 1569.46,604.45 1569.08,604.69 "
-       id="polygon24274" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1560.13,604.72 1569.77,604.05 1569.46,604.45 "
-       id="polygon24276" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.54,563.64 1439.95,563.44 1440.48,563.29 "
-       id="polygon24278" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1560.62,602.71 1569.75,601.92 1569.96,602.44 "
-       id="polygon24280" />
-    <polygon
-       style="opacity:1;fill:#007872"
-       points="1170.73,502.93 1163.27,501.68 1170.38,503.16 "
-       id="polygon24282" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1560.69,603.28 1569.96,602.44 1570.03,603 "
-       id="polygon24284" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1560.63,603.84 1570.03,603 1569.96,603.55 "
-       id="polygon24286" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1170.38,503.16 1162.94,502.01 1170.07,503.53 "
-       id="polygon24288" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1170.07,503.53 1162.68,502.46 1169.83,504.01 "
-       id="polygon24290" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.83,504.01 1162.52,502.98 1169.7,504.55 "
-       id="polygon24292" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.7,504.55 1162.47,503.54 1169.68,505.11 "
-       id="polygon24294" />
-    <line
-       x1="1547.08"
-       y1="591.78998"
-       x2="1549.37"
-       y2="590.53003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24296" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.69,505.5 1165.32,505.74 1165.48,505.39 "
-       id="polygon24298" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.54,507.57 1165.62,507.75 1165.44,507.44 "
-       id="polygon24300" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1165.44,507.44 1168.54,507.57 1165.38,507.33 "
-       id="polygon24302" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.38,506.51 1165.24,506.83 1165.23,506.42 "
-       id="polygon24304" />
-    <line
-       x1="1594.33"
-       y1="586.57001"
-       x2="1593.86"
-       y2="584.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24306" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1402.09,437.8 1400.96,427.33 1401.17,426.97 "
-       id="polygon24308" />
-    <line
-       x1="1593.86"
-       y1="584.64001"
-       x2="1593.5"
-       y2="582.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24310" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1405.31,437.8 1404.08,426.67 1404.39,426.98 "
-       id="polygon24312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.45,437.5 1401.17,426.97 1401.53,426.67 "
-       id="polygon24314" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1569.05,601.24 1559.71,601.52 1560.11,601.79 "
-       id="polygon24316" />
-    <line
-       x1="1593.5"
-       y1="582.70001"
-       x2="1593.25"
-       y2="580.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24318" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1405.01,437.5 1403.64,426.45 1404.08,426.67 "
-       id="polygon24320" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.93,437.28 1401.53,426.67 1402,426.45 "
-       id="polygon24322" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.54,507.57 1165.38,507.33 1168.4,507.06 "
-       id="polygon24324" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1404.57,437.28 1403.12,426.33 1403.64,426.45 "
-       id="polygon24326" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.47,437.16 1402,426.45 1402.55,426.33 "
-       id="polygon24328" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1569.46,604.45 1560.13,604.72 1559.74,604.97 "
-       id="polygon24330" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1404.04,437.16 1402.55,426.33 1403.12,426.33 "
-       id="polygon24332" />
-    <line
-       x1="1593.25"
-       y1="580.75"
-       x2="1593.11"
-       y2="578.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24334" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1569.75,601.92 1560.42,602.2 1560.62,602.71 "
-       id="polygon24336" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1569.77,604.05 1560.43,604.34 1560.13,604.72 "
-       id="polygon24338" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1569.96,602.44 1560.62,602.71 1560.69,603.28 "
-       id="polygon24340" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1570.03,603 1560.69,603.28 1560.63,603.84 "
-       id="polygon24342" />
-    <line
-       x1="1544.73"
-       y1="592.78003"
-       x2="1547.08"
-       y2="591.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24344" />
-    <line
-       x1="1593.11"
-       y1="578.79999"
-       x2="1593.0699"
-       y2="576.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24346" />
-    <polygon
-       style="opacity:1;fill:#009171"
-       points="1201.88,504.09 1189.81,500.55 1190.14,500.48 "
-       id="polygon24348" />
-    <line
-       x1="1416.3199"
-       y1="344.44"
-       x2="1417.14"
-       y2="344.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24350" />
-    <polygon
-       style="opacity:1;fill:#00dacf"
-       points="1181.8,509.07 1170.91,506.37 1171.74,506.7 "
-       id="polygon24352" />
-    <polygon
-       style="opacity:1;fill:#00dacf"
-       points="1171.74,506.7 1170.91,506.37 1170.73,506.4 "
-       id="polygon24354" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1175.96,507.54 1170.33,507.52 1170.5,507.13 "
-       id="polygon24356" />
-    <line
-       x1="1593.0699"
-       y1="576.85999"
-       x2="1593.14"
-       y2="574.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24358" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1437.34,567.66 1439.18,564.17 1439.5,563.74 "
-       id="polygon24360" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="1201.54,504.16 1189.47,500.78 1189.81,500.55 "
-       id="polygon24362" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1200.58,507.24 1188.85,503.62 1194.65,505.51 "
-       id="polygon24364" />
-    <polygon
-       style="opacity:1;fill:#0097ae"
-       points="1178.85,516.05 1190.14,518.98 1190.39,519.25 "
-       id="polygon24366" />
-    <polygon
-       style="opacity:1;fill:#007c8f"
-       points="1189.84,518.88 1178.2,516.02 1178.54,515.95 "
-       id="polygon24368" />
-    <line
-       x1="1593.14"
-       y1="574.92999"
-       x2="1593.3101"
-       y2="573.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24370" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1438.32,567.2 1439.95,563.44 1440.48,563.29 "
-       id="polygon24372" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1201.2,504.39 1189.16,501.15 1189.47,500.78 "
-       id="polygon24374" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1189.5,518.94 1177.86,516.25 1178.2,516.02 "
-       id="polygon24376" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.89,504.77 1188.91,501.63 1189.16,501.15 "
-       id="polygon24378" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.4,506.34 1188.71,503.21 1188.67,502.72 "
-       id="polygon24380" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1188.63,522.05 1177.58,519.39 1177.34,519.12 "
-       id="polygon24382" />
-    <line
-       x1="1417.14"
-       y1="344.84"
-       x2="1417.92"
-       y2="345.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24384" />
-    <polygon
-       style="opacity:1;fill:#00dacf"
-       points="1171.74,506.7 1170.73,506.4 1170.55,506.43 "
-       id="polygon24386" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.64,505.25 1188.74,502.17 1188.91,501.63 "
-       id="polygon24388" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.47,505.79 1188.67,502.72 1188.74,502.17 "
-       id="polygon24390" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1189.16,519.18 1177.56,516.63 1177.86,516.25 "
-       id="polygon24392" />
-    <line
-       x1="1593.3101"
-       y1="573.01001"
-       x2="1593.59"
-       y2="571.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24394" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1188.48,521.64 1177.34,519.12 1177.18,518.71 "
-       id="polygon24396" />
-    <polygon
-       style="opacity:1;fill:#0000fe"
-       points="1559.29,601.77 1559.28,601.41 1559.71,601.52 "
-       id="polygon24398" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1180.95,507.76 1169.77,505.63 1169.7,505.12 "
-       id="polygon24400" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1180.98,507.2 1169.7,505.12 1169.73,504.56 "
-       id="polygon24402" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.7,505.12 1180.95,507.76 1180.98,507.2 "
-       id="polygon24404" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.73,504.56 1180.98,507.2 1181.13,506.66 "
-       id="polygon24406" />
-    <polygon
-       style="opacity:1;fill:#00746f"
-       points="1174.45,505.54 1168.98,505.13 1168.68,505.5 "
-       id="polygon24408" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.86,519.55 1177.32,517.11 1177.56,516.63 "
-       id="polygon24410" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.42,521.14 1177.18,518.71 1177.12,518.21 "
-       id="polygon24412" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1400.96,427.33 1401.88,438.16 1402.09,437.8 "
-       id="polygon24414" />
-    <polygon
-       style="opacity:1;fill:#00ddff"
-       points="1177.5,517.23 1188.68,520.6 1188.8,520.16 "
-       id="polygon24416" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.62,520.04 1177.17,517.66 1177.32,517.11 "
-       id="polygon24418" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.47,520.59 1177.12,518.21 1177.17,517.66 "
-       id="polygon24420" />
-    <polygon
-       style="opacity:1;fill:#00aea6"
-       points="1171.48,502.99 1182.73,505.63 1183,505.9 "
-       id="polygon24422" />
-    <polygon
-       style="opacity:1;fill:#007973"
-       points="1182.04,505.57 1170.43,503.16 1170.79,502.93 "
-       id="polygon24424" />
-    <line
-       x1="1593.59"
-       y1="571.12"
-       x2="1593.97"
-       y2="569.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24426" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1170.5,507.13 1175.96,507.54 1176.04,507.11 "
-       id="polygon24428" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1181.02,508.27 1169.95,506.04 1169.77,505.63 "
-       id="polygon24430" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1169.95,506.04 1181.21,508.68 1181.02,508.27 "
-       id="polygon24432" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.77,505.63 1181.02,508.27 1180.95,507.76 "
-       id="polygon24434" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1173.94,506.38 1168.47,505.97 1168.38,506.51 "
-       id="polygon24436" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1173.86,507.46 1168.39,507.06 1168.53,507.57 "
-       id="polygon24438" />
-    <line
-       x1="1542.34"
-       y1="593.5"
-       x2="1544.73"
-       y2="592.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24440" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.17,426.97 1402.09,437.8 1402.45,437.5 "
-       id="polygon24442" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.68,505.8 1170.12,503.54 1170.43,503.16 "
-       id="polygon24444" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1404.08,426.67 1405.01,437.5 1405.31,437.8 "
-       id="polygon24446" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.53,426.67 1402.45,437.5 1402.93,437.28 "
-       id="polygon24448" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.37,506.18 1169.88,504.02 1170.12,503.54 "
-       id="polygon24450" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1403.64,426.45 1404.57,437.28 1405.01,437.5 "
-       id="polygon24452" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.13,506.66 1169.73,504.56 1169.88,504.02 "
-       id="polygon24454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402,426.45 1402.93,437.28 1403.47,437.16 "
-       id="polygon24456" />
-    <line
-       x1="1593.97"
-       y1="569.26001"
-       x2="1594.45"
-       y2="567.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24458" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1403.12,426.33 1404.04,437.16 1404.57,437.28 "
-       id="polygon24460" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1402.55,426.33 1403.47,437.16 1404.04,437.16 "
-       id="polygon24462" />
-    <line
-       x1="1169.6"
-       y1="506.62"
-       x2="1175.0601"
-       y2="507.01999"
-       style="stroke:#00fff3;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24464" />
-    <line
-       x1="1418.66"
-       y1="345.81"
-       x2="1419.36"
-       y2="346.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24466" />
-    <polygon
-       style="opacity:1;fill:#009d96"
-       points="1169.47,508.38 1174.56,508.66 1174.93,508.78 "
-       id="polygon24468" />
-    <polygon
-       style="opacity:1;fill:#009171"
-       points="1189.81,500.55 1201.54,504.16 1201.88,504.09 "
-       id="polygon24470" />
-    <polygon
-       style="opacity:1;fill:#008a83"
-       points="1168.98,505.13 1174.81,505.31 1174.45,505.54 "
-       id="polygon24472" />
-    <line
-       x1="1594.45"
-       y1="567.44"
-       x2="1595.03"
-       y2="565.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24474" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1189.08,503.88 1200.8,507.5 1200.58,507.24 "
-       id="polygon24476" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="1169.1,508.26 1174.24,508.38 1174.56,508.66 "
-       id="polygon24478" />
-    <polygon
-       style="opacity:1;fill:#007c61"
-       points="1189.47,500.78 1201.2,504.39 1201.54,504.16 "
-       id="polygon24480" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1188.85,503.62 1200.58,507.24 1200.44,506.84 "
-       id="polygon24482" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.53,507.57 1173.86,507.46 1174,507.97 "
-       id="polygon24484" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1168.38,506.51 1173.94,506.38 1173.84,506.91 "
-       id="polygon24486" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1189.16,501.15 1200.89,504.77 1201.2,504.39 "
-       id="polygon24488" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1549.46,601.78 1558.46,601.73 1558.85,601.48 "
-       id="polygon24490" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1212.21,510.88 1200.55,507.23 1200.43,506.83 "
-       id="polygon24492" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.71,503.21 1200.44,506.84 1200.4,506.34 "
-       id="polygon24494" />
-    <line
-       x1="1595.03"
-       y1="565.65997"
-       x2="1595.7"
-       y2="563.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24496" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1177.86,516.25 1189.16,519.18 1189.5,518.94 "
-       id="polygon24498" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.91,501.63 1200.64,505.25 1200.89,504.77 "
-       id="polygon24500" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.67,502.72 1200.4,506.34 1200.47,505.79 "
-       id="polygon24502" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1188.74,502.17 1200.47,505.79 1200.64,505.25 "
-       id="polygon24504" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1177.34,519.12 1188.63,522.05 1188.48,521.64 "
-       id="polygon24506" />
-    <polygon
-       style="opacity:1;fill:#00a69e"
-       points="1175.55,508.21 1175.32,508.73 1175.68,508.51 "
-       id="polygon24508" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.56,516.63 1188.86,519.55 1189.16,519.18 "
-       id="polygon24510" />
-    <line
-       x1="1539.9301"
-       y1="593.95001"
-       x2="1542.34"
-       y2="593.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24512" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.18,518.71 1188.48,521.64 1188.42,521.14 "
-       id="polygon24514" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.32,517.11 1188.62,520.04 1188.86,519.55 "
-       id="polygon24516" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.12,518.21 1188.42,521.14 1188.47,520.59 "
-       id="polygon24518" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1177.17,517.66 1188.47,520.59 1188.62,520.04 "
-       id="polygon24520" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1550.32,601.81 1559.28,601.41 1559.71,601.52 "
-       id="polygon24522" />
-    <polygon
-       style="opacity:1;fill:#008e87"
-       points="1170.79,502.93 1182.04,505.57 1182.39,505.51 "
-       id="polygon24524" />
-    <line
-       x1="1595.7"
-       y1="563.92999"
-       x2="1596.46"
-       y2="562.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24526" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.5,563.74 1437.34,567.66 1437.79,567.35 "
-       id="polygon24528" />
-    <polygon
-       style="opacity:1;fill:#007973"
-       points="1170.43,503.16 1181.68,505.8 1182.04,505.57 "
-       id="polygon24530" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1439.95,563.44 1437.79,567.35 1438.32,567.2 "
-       id="polygon24532" />
-    <polygon
-       style="opacity:1;fill:#00a69e"
-       points="1174.66,508.33 1174.24,508.38 1174.56,508.66 "
-       id="polygon24534" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="1440.48,563.29 1438.32,567.2 1438.89,567.23 "
-       id="polygon24536" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1170.12,503.54 1181.37,506.18 1181.68,505.8 "
-       id="polygon24538" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1550.73,605.03 1560.43,604.34 1560.13,604.72 "
-       id="polygon24540" />
-    <line
-       x1="1596.46"
-       y1="562.27002"
-       x2="1597.3"
-       y2="560.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24542" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1169.88,504.02 1181.13,506.66 1181.37,506.18 "
-       id="polygon24544" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1551.22,603.01 1560.41,602.2 1560.62,602.71 "
-       id="polygon24546" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1551.04,604.64 1560.63,603.84 1560.43,604.34 "
-       id="polygon24548" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1551.29,603.58 1560.62,602.71 1560.69,603.28 "
-       id="polygon24550" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1551.23,604.14 1560.69,603.28 1560.63,603.84 "
-       id="polygon24552" />
-    <line
-       x1="1420.6"
-       y1="347.63"
-       x2="1421.15"
-       y2="348.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24554" />
-    <line
-       x1="1597.3"
-       y1="560.65997"
-       x2="1598.22"
-       y2="559.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24556" />
-    <line
-       x1="1537.51"
-       y1="594.12"
-       x2="1539.9301"
-       y2="593.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24558" />
-    <line
-       x1="1421.15"
-       y1="348.32001"
-       x2="1421.64"
-       y2="349.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24560" />
-    <line
-       x1="1598.22"
-       y1="559.12"
-       x2="1599.22"
-       y2="557.65002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24562" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1559.28,601.41 1549.89,601.71 1550.32,601.81 "
-       id="polygon24564" />
-    <line
-       x1="1421.64"
-       y1="349.04001"
-       x2="1422.0699"
-       y2="349.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24566" />
-    <line
-       x1="1599.22"
-       y1="557.65002"
-       x2="1600.29"
-       y2="556.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24568" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1406.39,449.03 1405.31,437.8 1405.46,438.16 "
-       id="polygon24570" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1401.99,438.89 1402.92,449.76 1402.78,449.41 "
-       id="polygon24572" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1403.02,448.67 1401.88,438.16 1402.09,437.8 "
-       id="polygon24574" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1560.41,602.2 1551.02,602.5 1551.22,603.01 "
-       id="polygon24576" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1560.43,604.34 1551.04,604.64 1550.73,605.03 "
-       id="polygon24578" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1406.25,448.68 1405.01,437.5 1405.31,437.8 "
-       id="polygon24580" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1560.62,602.71 1551.22,603.01 1551.29,603.58 "
-       id="polygon24582" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.38,448.37 1402.09,437.8 1402.45,437.5 "
-       id="polygon24584" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1560.63,603.84 1551.23,604.14 1551.04,604.64 "
-       id="polygon24586" />
-    <polygon
-       style="opacity:1;fill:#00bdda"
-       points="1200.57,525.59 1189.49,522.35 1189.16,522.42 "
-       id="polygon24588" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1560.69,603.28 1551.29,603.58 1551.23,604.14 "
-       id="polygon24590" />
-    <line
-       x1="1535.1"
-       y1="594.02002"
-       x2="1537.51"
-       y2="594.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24592" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1405.94,448.37 1404.57,437.28 1405.01,437.5 "
-       id="polygon24594" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.86,448.15 1402.45,437.5 1402.93,437.28 "
-       id="polygon24596" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1405.5,448.15 1404.04,437.16 1404.57,437.28 "
-       id="polygon24598" />
-    <polygon
-       style="opacity:1;fill:#007d61"
-       points="1213.37,508.22 1201.25,504.41 1201.59,504.18 "
-       id="polygon24600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.41,448.03 1402.93,437.28 1403.47,437.16 "
-       id="polygon24602" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1404.98,448.03 1403.47,437.16 1404.04,437.16 "
-       id="polygon24604" />
-    <line
-       x1="1600.29"
-       y1="556.26001"
-       x2="1601.42"
-       y2="554.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24606" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1213.03,508.45 1200.93,504.78 1201.25,504.41 "
-       id="polygon24608" />
-    <polygon
-       style="opacity:1;fill:#0097ae"
-       points="1190.16,518.98 1201.56,522.15 1201.8,522.42 "
-       id="polygon24610" />
-    <polygon
-       style="opacity:1;fill:#006b7b"
-       points="1200.93,522.12 1189.2,519.18 1189.53,518.95 "
-       id="polygon24612" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1200.03,525.22 1188.86,522.31 1188.63,522.05 "
-       id="polygon24614" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.19,510.39 1200.43,506.83 1200.41,506.34 "
-       id="polygon24616" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.71,508.83 1200.67,505.26 1200.93,504.78 "
-       id="polygon24618" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1200.6,522.36 1188.89,519.56 1189.2,519.18 "
-       id="polygon24620" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.27,509.84 1200.41,506.34 1200.49,505.8 "
-       id="polygon24622" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.45,509.3 1200.49,505.8 1200.67,505.26 "
-       id="polygon24624" />
-    <line
-       x1="1422.4399"
-       y1="350.60001"
-       x2="1423.25"
-       y2="352.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24626" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1199.88,524.82 1188.63,522.05 1188.48,521.64 "
-       id="polygon24628" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1200.3,522.73 1188.65,520.05 1188.89,519.56 "
-       id="polygon24630" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1199.84,524.32 1188.48,521.64 1188.43,521.14 "
-       id="polygon24632" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1200.05,523.22 1188.49,520.59 1188.65,520.05 "
-       id="polygon24634" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1199.89,523.77 1188.43,521.14 1188.49,520.59 "
-       id="polygon24636" />
-    <line
-       x1="1601.42"
-       y1="554.95001"
-       x2="1602.61"
-       y2="553.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24638" />
-    <line
-       x1="1532.72"
-       y1="593.64001"
-       x2="1535.1"
-       y2="594.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24640" />
-    <line
-       x1="1423.25"
-       y1="352.75"
-       x2="1423.88"
-       y2="354.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24642" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1193.21,508.92 1181.43,506.19 1181.74,505.81 "
-       id="polygon24644" />
-    <line
-       x1="1602.61"
-       y1="553.72998"
-       x2="1603.86"
-       y2="552.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24646" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1192.5,511.38 1181.2,508.68 1181.03,508.27 "
-       id="polygon24648" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1401.88,438.16 1402.81,449.03 1403.02,448.67 "
-       id="polygon24650" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.89,509.3 1181.18,506.67 1181.43,506.19 "
-       id="polygon24652" />
-    <polygon
-       style="opacity:1;fill:#009272"
-       points="1201.59,504.18 1213.37,508.22 1213.7,508.15 "
-       id="polygon24654" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.44,510.88 1181.03,508.27 1180.97,507.77 "
-       id="polygon24656" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.65,509.78 1181.02,507.21 1181.18,506.67 "
-       id="polygon24658" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.49,510.33 1180.97,507.77 1181.02,507.21 "
-       id="polygon24660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.09,437.8 1403.02,448.67 1403.38,448.37 "
-       id="polygon24662" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1405.01,437.5 1405.94,448.37 1406.25,448.68 "
-       id="polygon24664" />
-    <polygon
-       style="opacity:1;fill:#007d61"
-       points="1201.25,504.41 1213.03,508.45 1213.37,508.22 "
-       id="polygon24666" />
-    <polygon
-       style="opacity:1;fill:#00b991"
-       points="1212.5,510.99 1212.52,511.52 1212.31,511.27 "
-       id="polygon24668" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1212.52,511.52 1212.31,511.27 1218.66,513.74 "
-       id="polygon24670" />
-    <polygon
-       style="opacity:1;fill:#007b60"
-       points="1200.55,507.23 1212.33,511.28 1212.21,510.88 "
-       id="polygon24672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.45,437.5 1403.38,448.37 1403.86,448.15 "
-       id="polygon24674" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1404.57,437.28 1405.5,448.15 1405.94,448.37 "
-       id="polygon24676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.93,437.28 1403.86,448.15 1404.41,448.03 "
-       id="polygon24678" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.93,504.78 1212.71,508.83 1213.03,508.45 "
-       id="polygon24680" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1404.04,437.16 1404.98,448.03 1405.5,448.15 "
-       id="polygon24682" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="1224.03,515.33 1212.31,511.27 1212.2,510.88 "
-       id="polygon24684" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.43,506.83 1212.21,510.88 1212.19,510.39 "
-       id="polygon24686" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1403.47,437.16 1404.41,448.03 1404.98,448.03 "
-       id="polygon24688" />
-    <line
-       x1="1423.88"
-       y1="354.95001"
-       x2="1424.3101"
-       y2="357.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24690" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1200.63,525.24 1200.57,525.59 1200.27,525.49 "
-       id="polygon24692" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1211.53,528.64 1200.25,525.48 1200.02,525.22 "
-       id="polygon24694" />
-    <polygon
-       style="opacity:1;fill:#006c7c"
-       points="1188.63,522.05 1200.03,525.22 1199.88,524.82 "
-       id="polygon24696" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.67,505.26 1212.45,509.3 1212.71,508.83 "
-       id="polygon24698" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.41,506.34 1212.19,510.39 1212.27,509.84 "
-       id="polygon24700" />
-    <line
-       x1="1603.86"
-       y1="552.59003"
-       x2="1605.15"
-       y2="551.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24702" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1200.49,505.8 1212.27,509.84 1212.45,509.3 "
-       id="polygon24704" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.89,519.56 1200.3,522.73 1200.6,522.36 "
-       id="polygon24706" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.48,521.64 1199.88,524.82 1199.84,524.32 "
-       id="polygon24708" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.65,520.05 1200.05,523.22 1200.3,522.73 "
-       id="polygon24710" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.43,521.14 1199.84,524.32 1199.89,523.77 "
-       id="polygon24712" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1188.49,520.59 1199.89,523.77 1200.05,523.22 "
-       id="polygon24714" />
-    <polygon
-       style="opacity:1;fill:#00aea6"
-       points="1182.75,505.63 1194.22,508.73 1194.47,509.01 "
-       id="polygon24716" />
-    <line
-       x1="1530.39"
-       y1="592.98999"
-       x2="1532.72"
-       y2="593.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.67,571.29 1437.34,567.66 1437.79,567.35 "
-       id="polygon24720" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1436.2,571.14 1437.79,567.35 1438.32,567.21 "
-       id="polygon24722" />
-    <line
-       x1="1424.3101"
-       y1="357.20999"
-       x2="1424.5601"
-       y2="359.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24724" />
-    <polygon
-       style="opacity:1;fill:#008f89"
-       points="1182.09,505.58 1193.55,508.69 1193.91,508.63 "
-       id="polygon24726" />
-    <line
-       x1="1605.15"
-       y1="551.54999"
-       x2="1606.48"
-       y2="550.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24728" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1181.45,508.95 1192.91,512.07 1192.66,511.79 "
-       id="polygon24730" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1549.92,605.34 1540.48,605.66 1540.05,605.55 "
-       id="polygon24732" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1540.91,605.59 1550.73,605.03 1550.35,605.27 "
-       id="polygon24734" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1181.74,505.81 1193.21,508.92 1193.55,508.69 "
-       id="polygon24736" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1541.58,602.81 1550.71,602.09 1551.02,602.5 "
-       id="polygon24738" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1181.2,508.68 1192.66,511.79 1192.5,511.38 "
-       id="polygon24740" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.43,506.19 1192.89,509.3 1193.21,508.92 "
-       id="polygon24742" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.03,508.27 1192.5,511.38 1192.44,510.88 "
-       id="polygon24744" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1541.6,604.95 1551.23,604.14 1551.04,604.64 "
-       id="polygon24746" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.18,506.67 1192.65,509.78 1192.89,509.3 "
-       id="polygon24748" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1541.85,603.89 1551.22,603.01 1551.29,603.58 "
-       id="polygon24750" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1180.97,507.77 1192.44,510.88 1192.49,510.33 "
-       id="polygon24752" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1181.02,507.21 1192.49,510.33 1192.65,509.78 "
-       id="polygon24754" />
-    <line
-       x1="1424.5601"
-       y1="359.48999"
-       x2="1424.61"
-       y2="361.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24756" />
-    <line
-       x1="1606.48"
-       y1="550.60999"
-       x2="1607.84"
-       y2="549.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24758" />
-    <polygon
-       style="opacity:1;fill:#00889d"
-       points="1200.42,522.95 1200.3,522.73 1200.6,522.36 "
-       id="polygon24760" />
-    <line
-       x1="1528.13"
-       y1="592.07001"
-       x2="1530.39"
-       y2="592.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24762" />
-    <line
-       x1="1424.61"
-       y1="361.79999"
-       x2="1424.47"
-       y2="364.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24764" />
-    <line
-       x1="1607.84"
-       y1="549.76001"
-       x2="1609.23"
-       y2="549.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24766" />
-    <polygon
-       style="opacity:1;fill:#009272"
-       points="1225.57,512.62 1213.41,508.24 1213.73,508.17 "
-       id="polygon24768" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1550.73,605.03 1541.29,605.34 1540.91,605.59 "
-       id="polygon24770" />
-    <line
-       x1="1424.47"
-       y1="364.10001"
-       x2="1424.14"
-       y2="366.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24772" />
-    <polygon
-       style="opacity:1;fill:#007d91"
-       points="1212.8,525.47 1200.96,522.13 1201.29,522.06 "
-       id="polygon24774" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1224.14,515.73 1212.31,511.27 1218.66,513.74 "
-       id="polygon24776" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1225.24,512.69 1213.07,508.47 1213.41,508.24 "
-       id="polygon24778" />
-    <line
-       x1="1525.95"
-       y1="590.88"
-       x2="1528.13"
-       y2="592.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24780" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1551.22,603.01 1541.78,603.32 1541.85,603.89 "
-       id="polygon24782" />
-    <polygon
-       style="opacity:1;fill:#009e97"
-       points="1192.66,510.79 1192.44,510.88 1192.49,510.33 "
-       id="polygon24784" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1551.23,604.14 1541.79,604.45 1541.6,604.95 "
-       id="polygon24786" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1212.47,525.54 1200.63,522.36 1200.96,522.13 "
-       id="polygon24788" />
-    <line
-       x1="1609.23"
-       y1="549.02002"
-       x2="1610.64"
-       y2="548.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24790" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.9,512.93 1212.75,508.84 1213.07,508.47 "
-       id="polygon24792" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1212.14,525.78 1200.33,522.74 1200.63,522.36 "
-       id="polygon24794" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.02,514.84 1212.2,510.88 1212.19,510.39 "
-       id="polygon24796" />
-    <polygon
-       style="opacity:1;fill:#00ffc8"
-       points="1212.85,509.05 1224.47,513.89 1224.68,513.51 "
-       id="polygon24798" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.58,513.3 1212.48,509.32 1212.75,508.84 "
-       id="polygon24800" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1211.39,528.24 1200.02,525.22 1199.89,524.82 "
-       id="polygon24802" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1407.33,459.95 1406.25,448.68 1406.39,449.04 "
-       id="polygon24804" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1402.92,449.76 1403.86,460.68 1403.71,460.32 "
-       id="polygon24806" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1403.95,459.59 1402.81,449.03 1403.02,448.67 "
-       id="polygon24808" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.12,514.3 1212.19,510.39 1212.29,509.85 "
-       id="polygon24810" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.31,513.77 1212.29,509.85 1212.48,509.32 "
-       id="polygon24812" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.84,526.16 1200.08,523.23 1200.33,522.74 "
-       id="polygon24814" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.36,527.74 1199.89,524.82 1199.85,524.32 "
-       id="polygon24816" />
-    <line
-       x1="1424.14"
-       y1="366.39001"
-       x2="1423.61"
-       y2="368.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24818" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.59,526.64 1199.91,523.77 1200.08,523.23 "
-       id="polygon24820" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.43,527.19 1199.85,524.32 1199.91,523.77 "
-       id="polygon24822" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1407.19,459.59 1405.94,448.37 1406.25,448.68 "
-       id="polygon24824" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.31,459.28 1403.02,448.67 1403.38,448.37 "
-       id="polygon24826" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1406.88,459.29 1405.5,448.15 1405.94,448.37 "
-       id="polygon24828" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.79,459.06 1403.38,448.37 1403.86,448.15 "
-       id="polygon24830" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1406.44,459.06 1404.98,448.03 1405.5,448.15 "
-       id="polygon24832" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.34,458.95 1403.86,448.15 1404.41,448.03 "
-       id="polygon24834" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1405.91,458.95 1404.41,448.03 1404.98,448.03 "
-       id="polygon24836" />
-    <line
-       x1="1610.64"
-       y1="548.38"
-       x2="1612.0699"
-       y2="547.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24838" />
-    <line
-       x1="1423.61"
-       y1="368.66"
-       x2="1422.9"
-       y2="370.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24840" />
-    <polygon
-       style="opacity:1;fill:#00908a"
-       points="1205.61,512.17 1193.61,508.7 1193.95,508.64 "
-       id="polygon24842" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1540.47,605.29 1540.91,605.59 1540.48,605.66 "
-       id="polygon24844" />
-    <line
-       x1="1523.88"
-       y1="589.45001"
-       x2="1525.95"
-       y2="590.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24846" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1205.27,512.23 1193.26,508.94 1193.61,508.7 "
-       id="polygon24848" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1204.32,515.33 1192.89,512.06 1192.65,511.79 "
-       id="polygon24850" />
-    <polygon
-       style="opacity:1;fill:#009272"
-       points="1213.41,508.24 1225.24,512.69 1225.57,512.62 "
-       id="polygon24852" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1212.52,511.52 1224.35,515.98 1224.14,515.73 "
-       id="polygon24854" />
-    <polygon
-       style="opacity:1;fill:#007d91"
-       points="1200.96,522.13 1212.47,525.54 1212.8,525.47 "
-       id="polygon24856" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.93,512.47 1192.95,509.31 1193.26,508.94 "
-       id="polygon24858" />
-    <polygon
-       style="opacity:1;fill:#007b76"
-       points="1204.17,514.93 1192.65,511.79 1192.5,511.39 "
-       id="polygon24860" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1200.25,525.48 1211.76,528.91 1211.53,528.64 "
-       id="polygon24862" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1213.07,508.47 1224.9,512.93 1225.24,512.69 "
-       id="polygon24864" />
-    <polygon
-       style="opacity:1;fill:#00a07d"
-       points="1224.13,515.71 1231.41,518.69 1224.32,515.97 "
-       id="polygon24866" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="1212.31,511.27 1224.14,515.73 1224.03,515.33 "
-       id="polygon24868" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.62,512.85 1192.7,509.8 1192.95,509.31 "
-       id="polygon24870" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.13,514.42 1192.5,511.39 1192.46,510.89 "
-       id="polygon24872" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1200.63,522.36 1212.14,525.78 1212.47,525.54 "
-       id="polygon24874" />
-    <line
-       x1="1612.0699"
-       y1="547.84003"
-       x2="1613.5"
-       y2="547.40002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24876" />
-    <line
-       x1="1422.9"
-       y1="370.89001"
-       x2="1422"
-       y2="373.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24878" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.36,513.33 1192.53,510.34 1192.7,509.8 "
-       id="polygon24880" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.2,513.88 1192.46,510.89 1192.53,510.34 "
-       id="polygon24882" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.75,508.84 1224.58,513.3 1224.9,512.93 "
-       id="polygon24884" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1223.13,532.3 1211.74,528.9 1211.52,528.64 "
-       id="polygon24886" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1200.02,525.22 1211.53,528.64 1211.39,528.24 "
-       id="polygon24888" />
-    <polygon
-       style="opacity:1;fill:#007a5f"
-       points="1224.02,515.33 1231.31,518.3 1224.13,515.71 "
-       id="polygon24890" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.2,510.88 1224.03,515.33 1224.02,514.84 "
-       id="polygon24892" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1200.33,522.74 1211.84,526.16 1212.14,525.78 "
-       id="polygon24894" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.48,509.32 1224.31,513.77 1224.58,513.3 "
-       id="polygon24896" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.19,510.39 1224.02,514.84 1224.12,514.3 "
-       id="polygon24898" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1199.89,524.82 1211.39,528.24 1211.36,527.74 "
-       id="polygon24900" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1212.29,509.85 1224.12,514.3 1224.31,513.77 "
-       id="polygon24902" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1200.08,523.23 1211.59,526.64 1211.84,526.16 "
-       id="polygon24904" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1199.85,524.32 1211.36,527.74 1211.43,527.19 "
-       id="polygon24906" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1199.91,523.77 1211.43,527.19 1211.59,526.64 "
-       id="polygon24908" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1402.81,449.03 1403.74,459.94 1403.95,459.59 "
-       id="polygon24910" />
-    <line
-       x1="1422"
-       y1="373.04999"
-       x2="1420.92"
-       y2="375.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.02,448.67 1403.95,459.59 1404.31,459.28 "
-       id="polygon24914" />
-    <line
-       x1="1521.92"
-       y1="587.76001"
-       x2="1523.88"
-       y2="589.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24916" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1405.94,448.37 1406.88,459.29 1407.19,459.59 "
-       id="polygon24918" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.38,448.37 1404.31,459.28 1404.79,459.06 "
-       id="polygon24920" />
-    <polygon
-       style="opacity:1;fill:#0000dc"
-       points="1435.47,571.85 1435.21,571.59 1435.67,571.29 "
-       id="polygon24922" />
-    <line
-       x1="1613.5"
-       y1="547.40002"
-       x2="1614.9301"
-       y2="547.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24924" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1405.5,448.15 1406.44,459.06 1406.88,459.29 "
-       id="polygon24926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.86,448.15 1404.79,459.06 1405.34,458.95 "
-       id="polygon24928" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1404.98,448.03 1405.91,458.95 1406.44,459.06 "
-       id="polygon24930" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1404.41,448.03 1405.34,458.95 1405.91,458.95 "
-       id="polygon24932" />
-    <line
-       x1="1420.92"
-       y1="375.14999"
-       x2="1419.66"
-       y2="377.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24934" />
-    <polygon
-       style="opacity:1;fill:#007c76"
-       points="1193.26,508.94 1204.93,512.47 1205.27,512.23 "
-       id="polygon24936" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1531.43,605.9 1541.29,605.34 1540.91,605.59 "
-       id="polygon24938" />
-    <polygon
-       style="opacity:1;fill:#009c95"
-       points="1204.69,515.27 1204.55,515.6 1204.32,515.33 "
-       id="polygon24940" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1216.16,519.24 1204.53,515.59 1204.31,515.32 "
-       id="polygon24942" />
-    <polygon
-       style="opacity:1;fill:#007b76"
-       points="1192.65,511.79 1204.32,515.33 1204.17,514.93 "
-       id="polygon24944" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.95,509.31 1204.62,512.85 1204.93,512.47 "
-       id="polygon24946" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1531.82,605.66 1541.6,604.95 1541.29,605.34 "
-       id="polygon24948" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.5,511.39 1204.17,514.93 1204.13,514.42 "
-       id="polygon24950" />
-    <line
-       x1="1419.66"
-       y1="377.16"
-       x2="1418.25"
-       y2="379.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24952" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.7,509.8 1204.36,513.33 1204.62,512.85 "
-       id="polygon24954" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.46,510.89 1204.13,514.42 1204.2,513.88 "
-       id="polygon24956" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1192.53,510.34 1204.2,513.88 1204.36,513.33 "
-       id="polygon24958" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1532.13,605.26 1541.79,604.45 1541.6,604.95 "
-       id="polygon24960" />
-    <line
-       x1="1614.9301"
-       y1="547.07001"
-       x2="1616.35"
-       y2="546.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24962" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1532.32,604.76 1541.86,603.89 1541.79,604.45 "
-       id="polygon24964" />
-    <line
-       x1="1520.09"
-       y1="585.84003"
-       x2="1521.92"
-       y2="587.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24966" />
-    <line
-       x1="1418.25"
-       y1="379.07999"
-       x2="1416.67"
-       y2="380.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24968" />
-    <polygon
-       style="opacity:1;fill:#009373"
-       points="1225.6,512.64 1232.89,515.61 1225.28,512.71 "
-       id="polygon24970" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1225.28,512.71 1232.57,515.68 1224.94,512.95 "
-       id="polygon24972" />
-    <line
-       x1="1416.67"
-       y1="380.88"
-       x2="1414.9399"
-       y2="382.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24974" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.94,512.95 1232.23,515.91 1224.62,513.31 "
-       id="polygon24976" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.03,514.84 1231.32,517.82 1224.02,515.33 "
-       id="polygon24978" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.62,513.31 1231.91,516.29 1224.34,513.79 "
-       id="polygon24980" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.14,514.31 1231.43,517.29 1224.03,514.84 "
-       id="polygon24982" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.34,513.79 1231.63,516.76 1224.14,514.31 "
-       id="polygon24984" />
-    <line
-       x1="1518.42"
-       y1="583.70001"
-       x2="1520.09"
-       y2="585.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24986" />
-    <line
-       x1="1414.9399"
-       y1="382.57001"
-       x2="1413.08"
-       y2="384.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line24988" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1224.11,529.21 1212.17,525.79 1212.5,525.55 "
-       id="polygon24990" />
-    <polygon
-       style="opacity:1;fill:#009373"
-       points="1225.28,512.71 1232.89,515.61 1232.77,515.64 "
-       id="polygon24992" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1541.29,605.34 1531.82,605.66 1531.43,605.9 "
-       id="polygon24994" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.78,529.45 1211.87,526.17 1212.17,525.79 "
-       id="polygon24996" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1223,531.9 1211.52,528.64 1211.4,528.24 "
-       id="polygon24998" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1541.6,604.95 1532.13,605.26 1531.82,605.66 "
-       id="polygon25000" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.47,529.83 1211.62,526.66 1211.87,526.17 "
-       id="polygon25002" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1222.98,531.41 1211.4,528.24 1211.37,527.74 "
-       id="polygon25004" />
-    <line
-       x1="1413.08"
-       y1="384.10999"
-       x2="1411.09"
-       y2="385.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25006" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.22,530.32 1211.45,527.2 1211.62,526.66 "
-       id="polygon25008" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.05,530.86 1211.37,527.74 1211.45,527.2 "
-       id="polygon25010" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1541.79,604.45 1532.32,604.76 1532.13,605.26 "
-       id="polygon25012" />
-    <polygon
-       style="opacity:1;fill:#007e62"
-       points="1232.44,515.77 1224.94,512.95 1232.23,515.91 "
-       id="polygon25014" />
-    <line
-       x1="1617.75"
-       y1="546.72998"
-       x2="1619.13"
-       y2="546.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25016" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1231.32,518 1224.02,515.33 1231.31,518.3 "
-       id="polygon25018" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1232.11,516.06 1224.62,513.31 1231.91,516.29 "
-       id="polygon25020" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.02,515.33 1231.32,517.82 1231.32,518 "
-       id="polygon25022" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.34,513.79 1231.91,516.29 1231.8,516.47 "
-       id="polygon25024" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1231.38,517.49 1224.03,514.84 1231.32,517.82 "
-       id="polygon25026" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1231.8,516.47 1224.34,513.79 1231.63,516.76 "
-       id="polygon25028" />
-    <polygon
-       style="opacity:1;fill:#007057"
-       points="1224.14,514.31 1231.63,516.76 1231.55,516.96 "
-       id="polygon25030" />
-    <line
-       x1="1411.09"
-       y1="385.51999"
-       x2="1408.98"
-       y2="386.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25032" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1404.64,471.28 1403.86,460.68 1403.71,460.32 "
-       id="polygon25034" />
-    <line
-       x1="1516.91"
-       y1="581.34998"
-       x2="1518.42"
-       y2="583.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25036" />
-    <line
-       x1="1408.98"
-       y1="386.76999"
-       x2="1406.77"
-       y2="387.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25038" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1408.27,470.91 1407.19,459.59 1407.33,459.95 "
-       id="polygon25040" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1404.88,470.55 1403.74,459.94 1403.95,459.59 "
-       id="polygon25042" />
-    <polygon
-       style="opacity:1;fill:#00918b"
-       points="1217.5,516.09 1205.32,512.25 1205.64,512.18 "
-       id="polygon25044" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1408.12,470.55 1406.88,459.29 1407.19,459.59 "
-       id="polygon25046" />
-    <polygon
-       style="opacity:1;fill:#007e91"
-       points="1212.5,525.55 1224.11,529.21 1224.43,529.14 "
-       id="polygon25048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.24,470.25 1403.95,459.59 1404.31,459.28 "
-       id="polygon25050" />
-    <line
-       x1="1619.13"
-       y1="546.71002"
-       x2="1620.48"
-       y2="546.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25052" />
-    <line
-       x1="1406.77"
-       y1="387.85001"
-       x2="1404.47"
-       y2="388.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25054" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1407.82,470.25 1406.44,459.07 1406.88,459.29 "
-       id="polygon25056" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.72,470.03 1404.31,459.28 1404.79,459.06 "
-       id="polygon25058" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="1217.17,516.16 1204.98,512.48 1205.32,512.25 "
-       id="polygon25060" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1212.17,525.79 1223.78,529.45 1224.11,529.21 "
-       id="polygon25062" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1407.38,470.03 1405.91,458.95 1406.44,459.07 "
-       id="polygon25064" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.27,469.91 1404.79,459.06 1405.34,458.95 "
-       id="polygon25066" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1406.84,469.91 1405.34,458.95 1405.91,458.95 "
-       id="polygon25068" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1211.52,528.64 1223.13,532.3 1223,531.9 "
-       id="polygon25070" />
-    <line
-       x1="1404.47"
-       y1="388.76999"
-       x2="1402.1"
-       y2="389.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25072" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.83,516.4 1204.67,512.86 1204.98,512.48 "
-       id="polygon25074" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="1216.03,518.84 1204.31,515.32 1204.18,514.93 "
-       id="polygon25076" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.87,526.17 1223.47,529.83 1223.78,529.45 "
-       id="polygon25078" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.4,528.24 1223,531.9 1222.98,531.41 "
-       id="polygon25080" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.52,516.78 1204.41,513.34 1204.67,512.86 "
-       id="polygon25082" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.01,518.35 1204.18,514.93 1204.16,514.43 "
-       id="polygon25084" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="1232.57,515.68 1237.16,517.55 1232.44,515.77 "
-       id="polygon25086" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.62,526.66 1223.22,530.32 1223.47,529.83 "
-       id="polygon25088" />
-    <line
-       x1="1402.1"
-       y1="389.51001"
-       x2="1399.66"
-       y2="390.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25090" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.37,527.74 1222.98,531.41 1223.05,530.86 "
-       id="polygon25092" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.27,517.26 1204.23,513.89 1204.41,513.34 "
-       id="polygon25094" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.09,517.8 1204.16,514.43 1204.23,513.89 "
-       id="polygon25096" />
-    <line
-       x1="1515.5699"
-       y1="578.79999"
-       x2="1516.91"
-       y2="581.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25098" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1211.45,527.2 1223.05,530.86 1223.22,530.32 "
-       id="polygon25100" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1236.01,520.56 1231.35,518.45 1231.41,518.69 "
-       id="polygon25102" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1232.23,515.91 1236.83,517.79 1232.11,516.06 "
-       id="polygon25104" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1231.31,518.3 1235.91,520.18 1231.35,518.45 "
-       id="polygon25106" />
-    <line
-       x1="1399.66"
-       y1="390.07001"
-       x2="1397.1801"
-       y2="390.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25108" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.5,518.16 1232.11,516.06 1231.91,516.29 "
-       id="polygon25110" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.91,519.69 1231.38,517.49 1231.32,517.82 "
-       id="polygon25112" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.23,518.63 1231.8,516.47 1231.63,516.76 "
-       id="polygon25114" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1231.43,517.29 1236.02,519.16 1231.38,517.49 "
-       id="polygon25116" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.02,519.16 1231.55,516.96 1231.43,517.29 "
-       id="polygon25118" />
-    <line
-       x1="1397.1801"
-       y1="390.44"
-       x2="1394.67"
-       y2="390.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25120" />
-    <line
-       x1="1620.48"
-       y1="546.79999"
-       x2="1621.8"
-       y2="546.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25122" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1236.01,520.56 1231.49,518.79 1236.21,520.82 "
-       id="polygon25124" />
-    <line
-       x1="1394.67"
-       y1="390.63"
-       x2="1392.14"
-       y2="390.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25126" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="1237.16,517.55 1232.44,515.77 1236.83,517.79 "
-       id="polygon25128" />
-    <line
-       x1="1392.14"
-       y1="390.62"
-       x2="1389.61"
-       y2="390.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25130" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.83,517.79 1232.11,516.06 1236.5,518.16 "
-       id="polygon25132" />
-    <polygon
-       style="opacity:1;fill:#009891"
-       points="1237.39,517.82 1237.49,517.48 1237.76,517.57 "
-       id="polygon25134" />
-    <line
-       x1="1389.61"
-       y1="390.42001"
-       x2="1387.09"
-       y2="390.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25136" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1435.67,571.29 1433.53,575.16 1434.06,575.01 "
-       id="polygon25138" />
-    <polygon
-       style="opacity:1;fill:#00869b"
-       points="1223.71,532.31 1223.63,532.66 1223.35,532.56 "
-       id="polygon25140" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.91,519.69 1231.32,518 1235.91,520.18 "
-       id="polygon25142" />
-    <line
-       x1="1387.09"
-       y1="390.03"
-       x2="1384.61"
-       y2="389.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25144" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.5,518.16 1231.8,516.47 1236.23,518.63 "
-       id="polygon25146" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.02,519.16 1231.38,517.49 1235.91,519.69 "
-       id="polygon25148" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.23,518.63 1231.55,516.96 1236.02,519.16 "
-       id="polygon25150" />
-    <line
-       x1="1514.42"
-       y1="576.08002"
-       x2="1515.5699"
-       y2="578.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25152" />
-    <line
-       x1="1362.09"
-       y1="369.84"
-       x2="1361.17"
-       y2="367.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25154" />
-    <line
-       x1="1363.2"
-       y1="372.17001"
-       x2="1362.09"
-       y2="369.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25156" />
-    <line
-       x1="1361.17"
-       y1="367.44"
-       x2="1360.4301"
-       y2="364.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25158" />
-    <line
-       x1="1364.47"
-       y1="374.41"
-       x2="1363.2"
-       y2="372.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25160" />
-    <line
-       x1="1382.17"
-       y1="388.69"
-       x2="1379.79"
-       y2="387.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25162" />
-    <line
-       x1="1360.4301"
-       y1="364.97"
-       x2="1359.88"
-       y2="362.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25164" />
-    <line
-       x1="1365.91"
-       y1="376.54999"
-       x2="1364.47"
-       y2="374.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25166" />
-    <polygon
-       style="opacity:1;fill:#00918b"
-       points="1205.32,512.25 1217.17,516.16 1217.5,516.09 "
-       id="polygon25168" />
-    <line
-       x1="1367.51"
-       y1="378.57001"
-       x2="1365.91"
-       y2="376.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25170" />
-    <line
-       x1="1379.79"
-       y1="387.73999"
-       x2="1377.48"
-       y2="386.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25172" />
-    <line
-       x1="1359.88"
-       y1="362.45999"
-       x2="1359.52"
-       y2="359.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25174" />
-    <line
-       x1="1369.25"
-       y1="380.47"
-       x2="1367.51"
-       y2="378.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25176" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1403.74,459.94 1404.67,470.91 1404.88,470.55 "
-       id="polygon25178" />
-    <line
-       x1="1377.48"
-       y1="386.60999"
-       x2="1375.26"
-       y2="385.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25180" />
-    <line
-       x1="1371.13"
-       y1="382.23999"
-       x2="1369.25"
-       y2="380.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25182" />
-    <line
-       x1="1373.14"
-       y1="383.85999"
-       x2="1371.13"
-       y2="382.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25184" />
-    <line
-       x1="1375.26"
-       y1="385.32001"
-       x2="1373.14"
-       y2="383.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25186" />
-    <line
-       x1="1359.52"
-       y1="359.92001"
-       x2="1359.36"
-       y2="357.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25188" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1204.53,515.59 1216.38,519.51 1216.16,519.24 "
-       id="polygon25190" />
-    <line
-       x1="1359.36"
-       y1="357.35999"
-       x2="1359.38"
-       y2="354.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25192" />
-    <line
-       x1="1359.38"
-       y1="354.79999"
-       x2="1359.61"
-       y2="352.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.95,459.59 1404.88,470.55 1405.24,470.25 "
-       id="polygon25196" />
-    <polygon
-       style="opacity:1;fill:#007d77"
-       points="1204.98,512.48 1216.83,516.4 1217.17,516.16 "
-       id="polygon25198" />
-    <polygon
-       style="opacity:1;fill:#009b93"
-       points="1216.75,519.26 1216.66,519.61 1216.38,519.51 "
-       id="polygon25200" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1228.18,523.5 1216.36,519.5 1216.16,519.24 "
-       id="polygon25202" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="1204.31,515.32 1216.16,519.24 1216.03,518.84 "
-       id="polygon25204" />
-    <line
-       x1="1621.8"
-       y1="546.98999"
-       x2="1623.0699"
-       y2="547.28003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25206" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1406.88,459.29 1407.82,470.25 1408.12,470.55 "
-       id="polygon25208" />
-    <line
-       x1="1359.61"
-       y1="352.25"
-       x2="1360.02"
-       y2="349.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25210" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.31,459.28 1405.24,470.25 1405.72,470.03 "
-       id="polygon25212" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.67,512.86 1216.52,516.78 1216.83,516.4 "
-       id="polygon25214" />
-    <polygon
-       style="opacity:1;fill:#0098af"
-       points="1229.28,530.84 1224.73,529.25 1229.2,530.73 "
-       id="polygon25216" />
-    <polygon
-       style="opacity:1;fill:#007e92"
-       points="1224.45,529.15 1228.93,530.64 1224.14,529.22 "
-       id="polygon25218" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1406.44,459.07 1407.38,470.03 1407.82,470.25 "
-       id="polygon25220" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.18,514.93 1216.03,518.84 1216.01,518.35 "
-       id="polygon25222" />
-    <line
-       x1="1360.02"
-       y1="349.73001"
-       x2="1360.62"
-       y2="347.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25224" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.79,459.06 1405.72,470.03 1406.27,469.91 "
-       id="polygon25226" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.41,513.34 1216.27,517.26 1216.52,516.78 "
-       id="polygon25228" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1405.91,458.95 1406.84,469.91 1407.38,470.03 "
-       id="polygon25230" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1405.34,458.95 1406.27,469.91 1406.84,469.91 "
-       id="polygon25232" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.16,514.43 1216.01,518.35 1216.09,517.8 "
-       id="polygon25234" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1204.23,513.89 1216.09,517.8 1216.27,517.26 "
-       id="polygon25236" />
-    <line
-       x1="1360.62"
-       y1="347.26001"
-       x2="1361.41"
-       y2="344.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25238" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1224.14,529.22 1228.61,530.71 1223.81,529.46 "
-       id="polygon25240" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1522.33,605.96 1532.13,605.26 1531.82,605.66 "
-       id="polygon25242" />
-    <line
-       x1="1361.41"
-       y1="344.84"
-       x2="1362.37"
-       y2="342.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25244" />
-    <line
-       x1="1513.47"
-       y1="573.19"
-       x2="1514.42"
-       y2="576.08002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25246" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.81,529.46 1228.29,530.95 1223.5,529.84 "
-       id="polygon25248" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1223,531.9 1227.48,533.39 1223.13,532.3 "
-       id="polygon25250" />
-    <line
-       x1="1362.37"
-       y1="342.48999"
-       x2="1363.51"
-       y2="340.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25252" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.5,529.84 1227.98,531.33 1223.25,530.32 "
-       id="polygon25254" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.25,530.32 1227.72,531.82 1223.07,530.86 "
-       id="polygon25256" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.07,530.86 1227.55,532.36 1222.99,531.41 "
-       id="polygon25258" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1223.33,532.55 1227.6,533.79 1227.73,533.95 "
-       id="polygon25260" />
-    <line
-       x1="1363.51"
-       y1="340.23001"
-       x2="1364.8199"
-       y2="338.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25262" />
-    <line
-       x1="1623.0699"
-       y1="547.28003"
-       x2="1624.3"
-       y2="547.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25264" />
-    <polygon
-       style="opacity:1;fill:#006c7d"
-       points="1223.81,529.46 1228.61,530.71 1228.41,530.86 "
-       id="polygon25266" />
-    <polygon
-       style="opacity:1;fill:#006b7c"
-       points="1223.13,532.3 1227.48,533.39 1227.55,533.64 "
-       id="polygon25268" />
-    <polygon
-       style="opacity:1;fill:#00948d"
-       points="1249.46,522.71 1237.2,517.57 1237.52,517.5 "
-       id="polygon25270" />
-    <line
-       x1="1364.8199"
-       y1="338.07001"
-       x2="1366.28"
-       y2="336.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25272" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1228.09,531.19 1223.5,529.84 1227.98,531.33 "
-       id="polygon25274" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223,531.9 1227.46,532.9 1227.47,533.2 "
-       id="polygon25276" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.25,530.32 1227.98,531.33 1227.82,531.63 "
-       id="polygon25278" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1227.5,532.69 1222.99,531.41 1227.46,532.9 "
-       id="polygon25280" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1222.99,531.41 1227.55,532.36 1227.5,532.69 "
-       id="polygon25282" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1223.07,530.86 1227.72,531.82 1227.61,532.15 "
-       id="polygon25284" />
-    <line
-       x1="1512.73"
-       y1="570.15997"
-       x2="1513.47"
-       y2="573.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25286" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1249.14,522.78 1236.86,517.81 1237.2,517.57 "
-       id="polygon25288" />
-    <line
-       x1="1366.28"
-       y1="336.01001"
-       x2="1367.89"
-       y2="334.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25290" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1247.84,525.38 1236,520.55 1235.91,520.17 "
-       id="polygon25292" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1530.97,602.32 1521.48,602.62 1521.91,602.73 "
-       id="polygon25294" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248.8,523.02 1236.54,518.18 1236.86,517.81 "
-       id="polygon25296" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1247.86,524.9 1235.91,520.17 1235.92,519.69 "
-       id="polygon25298" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248.48,523.38 1236.25,518.64 1236.54,518.18 "
-       id="polygon25300" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1247.98,524.38 1235.92,519.69 1236.04,519.17 "
-       id="polygon25302" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248.2,523.85 1236.04,519.17 1236.25,518.64 "
-       id="polygon25304" />
-    <line
-       x1="1367.89"
-       y1="334.07999"
-       x2="1369.64"
-       y2="332.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25306" />
-    <line
-       x1="1624.3"
-       y1="547.65997"
-       x2="1625.46"
-       y2="548.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25308" />
-    <line
-       x1="1369.64"
-       y1="332.29001"
-       x2="1371.51"
-       y2="330.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25310" />
-    <line
-       x1="1512.21"
-       y1="567.02002"
-       x2="1512.73"
-       y2="570.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25312" />
-    <polygon
-       style="opacity:1;fill:#006592"
-       points="1228.93,530.64 1236.15,533.05 1228.73,530.68 "
-       id="polygon25314" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1227.6,533.79 1234.82,536.2 1227.73,533.95 "
-       id="polygon25316" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1228.29,530.95 1235.51,533.36 1228.09,531.19 "
-       id="polygon25318" />
-    <polygon
-       style="opacity:1;fill:#00567c"
-       points="1227.48,533.39 1234.71,535.8 1227.55,533.64 "
-       id="polygon25320" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1235.2,533.74 1228.09,531.19 1227.98,531.33 "
-       id="polygon25322" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1236.18,520.8 1248.12,526.01 1247.93,525.76 "
-       id="polygon25324" />
-    <polygon
-       style="opacity:1;fill:#00928b"
-       points="1229.55,520.36 1217.21,516.18 1217.53,516.11 "
-       id="polygon25326" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1227.46,532.9 1234.69,535.31 1227.47,533.2 "
-       id="polygon25328" />
-    <polygon
-       style="opacity:1;fill:#00948d"
-       points="1237.2,517.57 1249.14,522.78 1249.46,522.71 "
-       id="polygon25330" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.69,535.31 1227.5,532.69 1227.46,532.9 "
-       id="polygon25332" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1227.72,531.82 1234.95,534.23 1227.61,532.15 "
-       id="polygon25334" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1227.55,532.36 1234.77,534.77 1227.5,532.69 "
-       id="polygon25336" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.77,534.77 1227.61,532.15 1227.55,532.36 "
-       id="polygon25338" />
-    <line
-       x1="1511.91"
-       y1="563.77002"
-       x2="1512.21"
-       y2="567.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25340" />
-    <line
-       x1="1625.46"
-       y1="548.14001"
-       x2="1626.5699"
-       y2="548.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25342" />
-    <line
-       x1="1373.5"
-       y1="329.13"
-       x2="1375.59"
-       y2="327.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25344" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1248.1,526 1247.92,525.75 1255.26,529.21 "
-       id="polygon25346" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1236,520.55 1247.93,525.76 1247.84,525.38 "
-       id="polygon25348" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1236.86,517.81 1248.8,523.02 1249.14,522.78 "
-       id="polygon25350" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="1229.23,520.44 1216.88,516.42 1217.21,516.18 "
-       id="polygon25352" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1259.84,530.92 1247.92,525.75 1247.84,525.38 "
-       id="polygon25354" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.91,520.17 1247.84,525.38 1247.86,524.9 "
-       id="polygon25356" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.54,518.18 1248.48,523.38 1248.8,523.02 "
-       id="polygon25358" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="1228.07,523.11 1216.16,519.24 1216.04,518.84 "
-       id="polygon25360" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.91,520.68 1216.57,516.8 1216.88,516.42 "
-       id="polygon25362" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.92,519.69 1247.86,524.9 1247.98,524.38 "
-       id="polygon25364" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.25,518.64 1248.2,523.85 1248.48,523.38 "
-       id="polygon25366" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1236.04,519.17 1247.98,524.38 1248.2,523.85 "
-       id="polygon25368" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1234.82,536.2 1227.73,533.95 1235.03,536.46 "
-       id="polygon25370" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.05,522.61 1216.04,518.84 1216.03,518.35 "
-       id="polygon25372" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.59,521.05 1216.31,517.28 1216.57,516.8 "
-       id="polygon25374" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.15,522.07 1216.03,518.35 1216.13,517.81 "
-       id="polygon25376" />
-    <polygon
-       style="opacity:1;fill:#00577d"
-       points="1235.84,533.12 1228.41,530.86 1235.51,533.36 "
-       id="polygon25378" />
-    <line
-       x1="1597.53"
-       y1="522.84003"
-       x2="1594.87"
-       y2="520.28003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25380" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.33,521.54 1216.13,517.81 1216.31,517.28 "
-       id="polygon25382" />
-    <line
-       x1="1375.59"
-       y1="327.79001"
-       x2="1377.78"
-       y2="326.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25384" />
-    <line
-       x1="1594.87"
-       y1="520.28003"
-       x2="1592.04"
-       y2="517.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25386" />
-    <line
-       x1="1600.02"
-       y1="525.59003"
-       x2="1597.53"
-       y2="522.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25388" />
-    <line
-       x1="1592.04"
-       y1="517.92999"
-       x2="1589.0601"
-       y2="515.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25390" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1409.19,481.94 1408.12,470.56 1408.27,470.91 "
-       id="polygon25392" />
-    <line
-       x1="1602.3199"
-       y1="528.52002"
-       x2="1600.02"
-       y2="525.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25394" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1404.78,471.64 1405.7,482.66 1405.55,482.3 "
-       id="polygon25396" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1405.79,481.57 1404.67,470.91 1404.88,470.55 "
-       id="polygon25398" />
-    <polygon
-       style="opacity:1;fill:#00567c"
-       points="1234.71,535.8 1227.55,533.64 1234.82,536.2 "
-       id="polygon25400" />
-    <line
-       x1="1511.84"
-       y1="560.42999"
-       x2="1511.91"
-       y2="563.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25402" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1235.51,533.36 1228.09,531.19 1235.2,533.74 "
-       id="polygon25404" />
-    <line
-       x1="1589.0601"
-       y1="515.79999"
-       x2="1585.95"
-       y2="513.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25406" />
-    <line
-       x1="1604.4301"
-       y1="531.59998"
-       x2="1602.3199"
-       y2="528.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25408" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.69,535.31 1227.47,533.2 1234.71,535.8 "
-       id="polygon25410" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1409.04,481.58 1407.82,470.25 1408.12,470.56 "
-       id="polygon25412" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.16,481.27 1404.88,470.55 1405.24,470.25 "
-       id="polygon25414" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1235.2,533.74 1227.82,531.63 1234.95,534.23 "
-       id="polygon25416" />
-    <line
-       x1="1585.95"
-       y1="513.90002"
-       x2="1582.71"
-       y2="512.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25418" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.77,534.77 1227.5,532.69 1234.69,535.31 "
-       id="polygon25420" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.95,534.23 1227.61,532.15 1234.77,534.77 "
-       id="polygon25422" />
-    <line
-       x1="1606.3199"
-       y1="534.82001"
-       x2="1604.4301"
-       y2="531.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25424" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1408.73,481.27 1407.38,470.03 1407.82,470.25 "
-       id="polygon25426" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.64,481.05 1405.24,470.25 1405.72,470.03 "
-       id="polygon25428" />
-    <line
-       x1="1377.78"
-       y1="326.62"
-       x2="1380.04"
-       y2="325.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25430" />
-    <line
-       x1="1582.71"
-       y1="512.25"
-       x2="1579.37"
-       y2="510.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25432" />
-    <line
-       x1="1626.5699"
-       y1="548.70001"
-       x2="1627.61"
-       y2="549.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25434" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1408.29,481.05 1406.84,469.91 1407.38,470.03 "
-       id="polygon25436" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.19,480.93 1405.72,470.03 1406.27,469.91 "
-       id="polygon25438" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1407.76,480.93 1406.27,469.91 1406.84,469.91 "
-       id="polygon25440" />
-    <line
-       x1="1608"
-       y1="538.16998"
-       x2="1606.3199"
-       y2="534.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25442" />
-    <line
-       x1="1579.37"
-       y1="510.85001"
-       x2="1575.95"
-       y2="509.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25444" />
-    <line
-       x1="1512.01"
-       y1="557.03998"
-       x2="1511.84"
-       y2="560.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25446" />
-    <line
-       x1="1575.95"
-       y1="509.70999"
-       x2="1572.45"
-       y2="508.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25448" />
-    <line
-       x1="1609.46"
-       y1="541.62"
-       x2="1608"
-       y2="538.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25450" />
-    <line
-       x1="1380.04"
-       y1="325.63"
-       x2="1382.35"
-       y2="324.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25452" />
-    <line
-       x1="1572.45"
-       y1="508.84"
-       x2="1568.91"
-       y2="508.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25454" />
-    <polygon
-       style="opacity:1;fill:#007e78"
-       points="1216.88,516.42 1228.91,520.68 1229.23,520.44 "
-       id="polygon25456" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1228.18,523.49 1235.16,526.11 1228.36,523.75 "
-       id="polygon25458" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="1216.16,519.24 1228.18,523.5 1228.07,523.11 "
-       id="polygon25460" />
-    <line
-       x1="1610.6899"
-       y1="545.14001"
-       x2="1609.46"
-       y2="541.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25462" />
-    <line
-       x1="1512.41"
-       y1="553.59998"
-       x2="1512.01"
-       y2="557.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25464" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.57,516.8 1228.59,521.05 1228.91,520.68 "
-       id="polygon25466" />
-    <line
-       x1="1568.91"
-       y1="508.25"
-       x2="1565.33"
-       y2="507.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25468" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.04,518.84 1228.07,523.11 1228.05,522.61 "
-       id="polygon25470" />
-    <line
-       x1="1627.61"
-       y1="549.34998"
-       x2="1628.58"
-       y2="550.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25472" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.31,517.28 1228.33,521.54 1228.59,521.05 "
-       id="polygon25474" />
-    <line
-       x1="1382.35"
-       y1="324.82001"
-       x2="1384.72"
-       y2="324.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25476" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.03,518.35 1228.05,522.61 1228.15,522.07 "
-       id="polygon25478" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1216.13,517.81 1228.15,522.07 1228.33,521.54 "
-       id="polygon25480" />
-    <line
-       x1="1565.33"
-       y1="507.92999"
-       x2="1561.73"
-       y2="507.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25482" />
-    <line
-       x1="1611.6899"
-       y1="548.72998"
-       x2="1610.6899"
-       y2="545.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.53,402.16 1594.73,392.05 1595.12,392.13 "
-       id="polygon25486" />
-    <line
-       x1="1513.05"
-       y1="550.15002"
-       x2="1512.41"
-       y2="553.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25488" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1404.67,470.91 1405.59,481.93 1405.79,481.57 "
-       id="polygon25490" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1588.64,404.21 1597.1,393.82 1597.23,394.19 "
-       id="polygon25492" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1513.13,603.7 1522.31,603 1522.62,603.42 "
-       id="polygon25494" />
-    <line
-       x1="1384.72"
-       y1="324.19"
-       x2="1387.12"
-       y2="323.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.88,470.55 1405.79,481.57 1406.16,481.27 "
-       id="polygon25498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1587.45,402.66 1595.57,392.33 1596.04,392.63 "
-       id="polygon25500" />
-    <line
-       x1="1612.45"
-       y1="552.35999"
-       x2="1611.6899"
-       y2="548.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25502" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1407.82,470.25 1408.73,481.27 1409.04,481.58 "
-       id="polygon25504" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.24,470.25 1406.16,481.27 1406.64,481.05 "
-       id="polygon25506" />
-    <line
-       x1="1513.9301"
-       y1="546.71002"
-       x2="1513.05"
-       y2="550.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25508" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1407.38,470.03 1408.29,481.05 1408.73,481.27 "
-       id="polygon25510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.72,470.03 1406.64,481.05 1407.19,480.93 "
-       id="polygon25512" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1246.61,540.33 1235.02,536.45 1234.82,536.2 "
-       id="polygon25514" />
-    <polygon
-       style="opacity:1;fill:#00577e"
-       points="1247.65,537.26 1235.54,533.37 1235.86,533.13 "
-       id="polygon25516" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1406.84,469.91 1407.76,480.93 1408.29,481.05 "
-       id="polygon25518" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1406.27,469.91 1407.19,480.93 1407.76,480.93 "
-       id="polygon25520" />
-    <line
-       x1="1554.58"
-       y1="508.64001"
-       x2="1551.05"
-       y2="509.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25522" />
-    <polygon
-       style="opacity:1;fill:#00bdb4"
-       points="1229.48,520.72 1229.27,520.45 1229.58,520.38 "
-       id="polygon25524" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1259.92,531.3 1247.92,525.75 1255.26,529.21 "
-       id="polygon25526" />
-    <line
-       x1="1628.58"
-       y1="550.09003"
-       x2="1629.47"
-       y2="550.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25528" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1246.5,539.94 1234.82,536.2 1234.71,535.8 "
-       id="polygon25530" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1247.33,537.5 1235.23,533.75 1235.54,533.37 "
-       id="polygon25532" />
-    <polygon
-       style="opacity:1;fill:#008079"
-       points="1261.17,528.34 1248.84,523.04 1249.18,522.8 "
-       id="polygon25534" />
-    <line
-       x1="1515.04"
-       y1="543.28998"
-       x2="1513.9301"
-       y2="546.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.73,392.05 1586.14,402.08 1586.53,402.16 "
-       id="polygon25538" />
-    <line
-       x1="1387.12"
-       y1="323.75"
-       x2="1389.53"
-       y2="323.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25540" />
-    <line
-       x1="1612.98"
-       y1="556"
-       x2="1612.45"
-       y2="552.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25542" />
-    <line
-       x1="1551.05"
-       y1="509.42999"
-       x2="1547.58"
-       y2="510.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25544" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.49,539.45 1234.71,535.8 1234.7,535.31 "
-       id="polygon25546" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1247.02,537.88 1234.98,534.23 1235.23,533.75 "
-       id="polygon25548" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.58,538.91 1234.7,535.31 1234.79,534.77 "
-       id="polygon25550" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.77,538.37 1234.79,534.77 1234.98,534.23 "
-       id="polygon25552" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.83,528.58 1248.51,523.4 1248.84,523.04 "
-       id="polygon25554" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1259.86,530.45 1247.84,525.38 1247.87,524.9 "
-       id="polygon25556" />
-    <line
-       x1="1547.58"
-       y1="510.48001"
-       x2="1544.1899"
-       y2="511.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25558" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.5,528.95 1248.22,523.87 1248.51,523.4 "
-       id="polygon25560" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260,529.93 1247.87,524.9 1248,524.38 "
-       id="polygon25562" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.21,529.41 1248,524.38 1248.22,523.87 "
-       id="polygon25564" />
-    <line
-       x1="1516.39"
-       y1="539.91998"
-       x2="1515.04"
-       y2="543.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25566" />
-    <line
-       x1="1544.1899"
-       y1="511.79999"
-       x2="1540.89"
-       y2="513.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25568" />
-    <line
-       x1="1640.0699"
-       y1="449.51001"
-       x2="1640.0699"
-       y2="449.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1629.38,454.78 1639.81,447.34 1640.13,447.38 "
-       id="polygon25572" />
-    <line
-       x1="1613.28"
-       y1="559.64001"
-       x2="1612.98"
-       y2="556"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25574" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.08,575.46 1430.88,579.17 1431.33,578.87 "
-       id="polygon25576" />
-    <line
-       x1="1389.53"
-       y1="323.5"
-       x2="1391.95"
-       y2="323.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25578" />
-    <line
-       x1="1540.89"
-       y1="513.35999"
-       x2="1537.7"
-       y2="515.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25580" />
-    <polygon
-       style="opacity:1;fill:#00938c"
-       points="1229.58,520.38 1236.57,523 1229.27,520.45 "
-       id="polygon25582" />
-    <line
-       x1="1537.7"
-       y1="515.16998"
-       x2="1534.64"
-       y2="517.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25584" />
-    <line
-       x1="1629.47"
-       y1="550.89001"
-       x2="1630.28"
-       y2="551.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25586" />
-    <polygon
-       style="opacity:1;fill:#00b2a9"
-       points="1249.75,522.81 1261.74,528.36 1261.92,528.6 "
-       id="polygon25588" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1229.27,520.45 1236.26,523.07 1228.95,520.7 "
-       id="polygon25590" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1630.15,455.29 1640.51,447.57 1640.9,447.89 "
-       id="polygon25592" />
-    <line
-       x1="1521.76"
-       y1="530.32001"
-       x2="1519.75"
-       y2="533.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25594" />
-    <line
-       x1="1534.64"
-       y1="517.20001"
-       x2="1531.73"
-       y2="519.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25596" />
-    <line
-       x1="1531.73"
-       y1="519.46002"
-       x2="1528.96"
-       y2="521.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25598" />
-    <line
-       x1="1523.97"
-       y1="527.35999"
-       x2="1521.76"
-       y2="530.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25600" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1522.31,603 1512.81,603.28 1513.13,603.7 "
-       id="polygon25602" />
-    <polygon
-       style="opacity:1;fill:#006592"
-       points="1235.86,533.13 1247.65,537.26 1247.96,537.19 "
-       id="polygon25604" />
-    <line
-       x1="1528.96"
-       y1="521.90997"
-       x2="1526.38"
-       y2="524.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25606" />
-    <line
-       x1="1526.38"
-       y1="524.54999"
-       x2="1523.97"
-       y2="527.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25608" />
-    <polygon
-       style="opacity:1;fill:#007b75"
-       points="1228.08,523.11 1235.07,525.73 1228.18,523.49 "
-       id="polygon25610" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.95,520.7 1235.94,523.31 1228.64,521.07 "
-       id="polygon25612" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1630.84,456.2 1641.27,448.31 1641.59,448.79 "
-       id="polygon25614" />
-    <line
-       x1="1639.05"
-       y1="449.54999"
-       x2="1640.0699"
-       y2="449.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25616" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.08,522.62 1235.07,525.24 1228.08,523.11 "
-       id="polygon25618" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.64,521.07 1235.63,523.69 1228.38,521.55 "
-       id="polygon25620" />
-    <polygon
-       style="opacity:1;fill:#00577e"
-       points="1235.54,533.37 1247.33,537.5 1247.65,537.26 "
-       id="polygon25622" />
-    <line
-       x1="1613.34"
-       y1="563.25"
-       x2="1613.28"
-       y2="559.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25624" />
-    <line
-       x1="1391.95"
-       y1="323.45001"
-       x2="1394.35"
-       y2="323.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25626" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.18,522.08 1235.17,524.7 1228.08,522.62 "
-       id="polygon25628" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.38,521.55 1235.36,524.17 1228.18,522.08 "
-       id="polygon25630" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1258.47,544.68 1246.79,540.58 1246.6,540.33 "
-       id="polygon25632" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1234.82,536.2 1246.61,540.33 1246.5,539.94 "
-       id="polygon25634" />
-    <polygon
-       style="opacity:1;fill:#00948d"
-       points="1249.18,522.8 1261.17,528.34 1261.48,528.27 "
-       id="polygon25636" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1235.23,533.75 1247.02,537.88 1247.33,537.5 "
-       id="polygon25638" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.71,535.8 1246.5,539.94 1246.49,539.45 "
-       id="polygon25640" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1247.92,525.75 1259.92,531.3 1259.84,530.92 "
-       id="polygon25642" />
-    <polygon
-       style="opacity:1;fill:#008079"
-       points="1248.84,523.04 1260.83,528.58 1261.17,528.34 "
-       id="polygon25644" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.98,534.23 1246.77,538.37 1247.02,537.88 "
-       id="polygon25646" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.7,535.31 1246.49,539.45 1246.58,538.91 "
-       id="polygon25648" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1234.79,534.77 1246.58,538.91 1246.77,538.37 "
-       id="polygon25650" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1640.13,447.38 1629.38,454.78 1629.75,454.97 "
-       id="polygon25652" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1259.84,530.92 1264.44,533.15 1259.91,531.29 "
-       id="polygon25654" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1247.84,525.38 1259.84,530.92 1259.86,530.45 "
-       id="polygon25656" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248.51,523.4 1260.5,528.95 1260.83,528.58 "
-       id="polygon25658" />
-    <polygon
-       style="opacity:1;fill:#00a099"
-       points="1228.36,523.75 1235.16,526.11 1235.24,526.22 "
-       id="polygon25660" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1247.87,524.9 1259.86,530.45 1260,529.93 "
-       id="polygon25662" />
-    <polygon
-       style="opacity:1;fill:#007f79"
-       points="1228.95,520.7 1236.26,523.07 1236.12,523.18 "
-       id="polygon25664" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248.22,523.87 1260.21,529.41 1260.5,528.95 "
-       id="polygon25666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1577.58,412.21 1585.85,402.14 1586.13,402.09 "
-       id="polygon25668" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1248,524.38 1260,529.93 1260.21,529.41 "
-       id="polygon25670" />
-    <line
-       x1="1630.28"
-       y1="551.77002"
-       x2="1631"
-       y2="552.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25672" />
-    <line
-       x1="1394.35"
-       y1="323.59"
-       x2="1396.72"
-       y2="323.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25674" />
-    <line
-       x1="1613.17"
-       y1="566.82001"
-       x2="1613.34"
-       y2="563.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25676" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1580.07,414.62 1588.64,404.21 1588.63,404.49 "
-       id="polygon25678" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.07,525.45 1228.08,523.11 1235.07,525.73 "
-       id="polygon25680" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.8,523.47 1228.64,521.07 1235.63,523.69 "
-       id="polygon25682" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.08,523.11 1235.07,525.24 1235.07,525.45 "
-       id="polygon25684" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1577.96,412.29 1586.13,402.09 1586.52,402.16 "
-       id="polygon25686" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.38,521.55 1235.63,523.69 1235.52,523.89 "
-       id="polygon25688" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.13,524.93 1228.08,522.62 1235.07,525.24 "
-       id="polygon25690" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1228.18,522.08 1235.36,524.17 1235.28,524.39 "
-       id="polygon25692" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1235.28,524.39 1228.18,522.08 1235.17,524.7 "
-       id="polygon25694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1578.42,412.49 1586.52,402.16 1586.97,402.36 "
-       id="polygon25696" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1579.96,413.98 1588.25,403.45 1588.51,403.85 "
-       id="polygon25698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1578.88,412.79 1586.97,402.36 1587.44,402.66 "
-       id="polygon25700" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1579.7,413.57 1587.88,403.04 1588.25,403.45 "
-       id="polygon25702" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1579.32,413.16 1587.44,402.66 1587.88,403.04 "
-       id="polygon25704" />
-    <line
-       x1="1396.72"
-       y1="323.91"
-       x2="1399.05"
-       y2="324.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25706" />
-    <polygon
-       style="opacity:1;fill:#00bdb4"
-       points="1261.51,528.29 1261.39,528.62 1261.59,528.69 "
-       id="polygon25708" />
-    <line
-       x1="1612.78"
-       y1="570.31"
-       x2="1613.17"
-       y2="566.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25710" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1618.08,462.36 1628.7,455.11 1628.82,454.85 "
-       id="polygon25712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.13,402.09 1577.58,412.21 1577.96,412.29 "
-       id="polygon25714" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1410.09,493.02 1409.04,481.58 1409.19,481.94 "
-       id="polygon25716" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1406.69,492.65 1405.58,481.93 1405.79,481.57 "
-       id="polygon25718" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1588.64,404.21 1580.09,414.34 1580.07,414.62 "
-       id="polygon25720" />
-    <polygon
-       style="opacity:1;fill:#007f93"
-       points="1241.46,525.02 1236.44,523.03 1236.26,523.07 "
-       id="polygon25722" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1409.94,492.66 1408.73,481.28 1409.04,481.58 "
-       id="polygon25724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.52,402.16 1577.96,412.29 1578.42,412.49 "
-       id="polygon25726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.05,492.35 1405.79,481.57 1406.16,481.27 "
-       id="polygon25728" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1588.51,403.85 1579.96,413.98 1580.09,414.34 "
-       id="polygon25730" />
-    <line
-       x1="1399.05"
-       y1="324.42001"
-       x2="1401.3199"
-       y2="325.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25732" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1409.63,492.36 1408.29,481.05 1408.73,481.28 "
-       id="polygon25734" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1618.63,462.29 1629.05,454.74 1629.37,454.79 "
-       id="polygon25736" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1240.36,528.06 1235.11,525.89 1235.16,526.11 "
-       id="polygon25738" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.53,492.13 1406.16,481.27 1406.64,481.05 "
-       id="polygon25740" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="1241.13,525.26 1236.12,523.18 1235.94,523.31 "
-       id="polygon25742" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.97,402.36 1578.42,412.49 1578.88,412.79 "
-       id="polygon25744" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1588.25,403.45 1579.7,413.57 1579.96,413.98 "
-       id="polygon25746" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1409.19,492.14 1407.76,480.94 1408.29,481.05 "
-       id="polygon25748" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.09,492.02 1406.64,481.05 1407.19,480.94 "
-       id="polygon25750" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1408.66,492.02 1407.19,480.94 1407.76,480.94 "
-       id="polygon25752" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1587.44,402.66 1578.88,412.79 1579.32,413.16 "
-       id="polygon25754" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1587.88,403.04 1579.32,413.16 1579.7,413.57 "
-       id="polygon25756" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.26,527.67 1235.07,525.45 1235.07,525.73 "
-       id="polygon25758" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.82,525.64 1235.8,523.47 1235.63,523.69 "
-       id="polygon25760" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="1261.2,528.36 1265.8,530.6 1260.86,528.6 "
-       id="polygon25762" />
-    <line
-       x1="1612.16"
-       y1="573.71002"
-       x2="1612.78"
-       y2="570.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25764" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1235.63,523.69 1240.82,525.64 1235.52,523.89 "
-       id="polygon25766" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1619,462.48 1629.37,454.79 1629.75,454.98 "
-       id="polygon25768" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1235.07,525.24 1240.26,527.19 1235.07,525.45 "
-       id="polygon25770" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.26,527.19 1235.13,524.93 1235.07,525.24 "
-       id="polygon25772" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.56,526.11 1235.52,523.89 1235.36,524.17 "
-       id="polygon25774" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.37,526.65 1235.28,524.39 1235.17,524.7 "
-       id="polygon25776" />
-    <polygon
-       style="opacity:1;fill:#007f93"
-       points="1241.76,524.94 1236.44,523.03 1241.46,525.02 "
-       id="polygon25778" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.86,528.6 1265.47,530.83 1260.53,528.96 "
-       id="polygon25780" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1619.39,462.8 1629.75,454.98 1630.14,455.3 "
-       id="polygon25782" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1259.87,530.45 1264.48,532.69 1259.84,530.92 "
-       id="polygon25784" />
-    <line
-       x1="1631.62"
-       y1="553.72998"
-       x2="1632.15"
-       y2="554.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25786" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1240.36,528.06 1235.24,526.22 1240.55,528.32 "
-       id="polygon25788" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1620.45,464.65 1631.07,456.69 1631.2,457.14 "
-       id="polygon25790" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.53,528.96 1265.14,531.2 1260.24,529.42 "
-       id="polygon25792" />
-    <polygon
-       style="opacity:1;fill:#006693"
-       points="1259.86,541.55 1247.68,537.27 1247.98,537.2 "
-       id="polygon25794" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.01,529.94 1264.62,532.17 1259.87,530.45 "
-       id="polygon25796" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.24,529.42 1264.84,531.66 1260.01,529.94 "
-       id="polygon25798" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1619.77,463.23 1630.14,455.3 1630.52,455.72 "
-       id="polygon25800" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="1241.46,525.02 1236.12,523.18 1241.13,525.26 "
-       id="polygon25802" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1620.32,464.2 1630.84,456.2 1631.07,456.69 "
-       id="polygon25804" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1620.09,463.71 1630.52,455.72 1630.84,456.2 "
-       id="polygon25806" />
-    <line
-       x1="1401.3199"
-       y1="325.12"
-       x2="1403.52"
-       y2="325.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25808" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1240.26,527.67 1235.11,525.89 1240.36,528.06 "
-       id="polygon25810" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1241.13,525.26 1235.8,523.47 1240.82,525.64 "
-       id="polygon25812" />
-    <polygon
-       style="opacity:1;fill:#007a75"
-       points="1264.48,533.38 1259.91,531.29 1264.51,533.52 "
-       id="polygon25814" />
-    <polygon
-       style="opacity:1;fill:#00587e"
-       points="1259.55,541.63 1247.36,537.52 1247.68,537.27 "
-       id="polygon25816" />
-    <polygon
-       style="opacity:1;fill:#00807a"
-       points="1260.86,528.6 1265.8,530.6 1265.6,530.74 "
-       id="polygon25818" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1629.05,454.74 1618.31,462.25 1618.63,462.29 "
-       id="polygon25820" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.82,525.64 1235.52,523.89 1240.56,526.11 "
-       id="polygon25822" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.37,526.65 1235.13,524.93 1240.26,527.19 "
-       id="polygon25824" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1258.38,544.3 1246.6,540.33 1246.5,539.94 "
-       id="polygon25826" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.56,526.11 1235.28,524.39 1240.37,526.65 "
-       id="polygon25828" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1259.23,541.87 1247.05,537.89 1247.36,537.52 "
-       id="polygon25830" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.53,528.96 1265.47,530.83 1265.27,531.05 "
-       id="polygon25832" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1259.84,530.92 1264.48,532.69 1264.46,532.97 "
-       id="polygon25834" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1264.53,532.49 1259.87,530.45 1264.48,532.69 "
-       id="polygon25836" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.38,543.81 1246.5,539.94 1246.5,539.45 "
-       id="polygon25838" />
-    <line
-       x1="1611.34"
-       y1="577.01001"
-       x2="1612.16"
-       y2="573.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25840" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.93,542.25 1246.79,538.38 1247.05,537.89 "
-       id="polygon25842" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1259.87,530.45 1264.62,532.17 1264.53,532.49 "
-       id="polygon25844" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1629.37,454.79 1618.63,462.29 1619,462.48 "
-       id="polygon25846" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1631.2,457.51 1620.45,465.02 1620.33,465.27 "
-       id="polygon25848" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1264.96,531.48 1260.24,529.42 1264.84,531.66 "
-       id="polygon25850" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1260.01,529.94 1264.84,531.66 1264.7,531.98 "
-       id="polygon25852" />
-    <polygon
-       style="opacity:1;fill:#00706a"
-       points="1264.7,531.98 1260.01,529.94 1264.62,532.17 "
-       id="polygon25854" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1503.64,603.95 1512.82,603.28 1513.13,603.7 "
-       id="polygon25856" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.48,543.27 1246.5,539.45 1246.6,538.91 "
-       id="polygon25858" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.66,542.73 1246.6,538.91 1246.79,538.38 "
-       id="polygon25860" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1629.75,454.98 1619,462.48 1619.39,462.8 "
-       id="polygon25862" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1631.2,457.14 1620.45,464.65 1620.45,465.02 "
-       id="polygon25864" />
-    <line
-       x1="1403.52"
-       y1="325.98999"
-       x2="1405.64"
-       y2="327.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25866" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.05,422.42 1577.29,412.27 1577.57,412.22 "
-       id="polygon25868" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1405.58,481.93 1406.48,493.01 1406.69,492.65 "
-       id="polygon25870" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1630.14,455.3 1619.39,462.8 1619.77,463.23 "
-       id="polygon25872" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1631.07,456.69 1620.32,464.2 1620.45,464.65 "
-       id="polygon25874" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1630.52,455.72 1619.77,463.23 1620.09,463.71 "
-       id="polygon25876" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1630.84,456.2 1620.09,463.71 1620.32,464.2 "
-       id="polygon25878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.79,481.57 1406.69,492.65 1407.05,492.35 "
-       id="polygon25880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.43,422.5 1577.57,412.22 1577.96,412.3 "
-       id="polygon25882" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1408.73,481.28 1409.63,492.36 1409.94,492.66 "
-       id="polygon25884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.16,481.27 1407.05,492.35 1407.53,492.13 "
-       id="polygon25886" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1571.57,424.54 1579.96,413.97 1580.09,414.33 "
-       id="polygon25888" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1408.29,481.05 1409.19,492.14 1409.63,492.36 "
-       id="polygon25890" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.89,422.7 1577.96,412.3 1578.41,412.49 "
-       id="polygon25892" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.64,481.05 1407.53,492.13 1408.09,492.02 "
-       id="polygon25894" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1407.76,480.94 1408.66,492.02 1409.19,492.14 "
-       id="polygon25896" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1407.19,480.94 1408.09,492.02 1408.66,492.02 "
-       id="polygon25898" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1571.43,424.18 1579.7,413.57 1579.96,413.97 "
-       id="polygon25900" />
-    <line
-       x1="1610.3101"
-       y1="580.17999"
-       x2="1611.34"
-       y2="577.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25902" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1570.36,423 1578.41,412.49 1578.88,412.79 "
-       id="polygon25904" />
-    <polygon
-       style="opacity:1;fill:#006693"
-       points="1247.68,537.27 1259.55,541.63 1259.86,541.55 "
-       id="polygon25906" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1571.17,423.78 1579.32,413.16 1579.7,413.57 "
-       id="polygon25908" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1570.8,423.37 1578.88,412.79 1579.32,413.16 "
-       id="polygon25910" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1246.79,540.58 1258.66,544.94 1258.47,544.68 "
-       id="polygon25912" />
-    <line
-       x1="1405.64"
-       y1="327.04001"
-       x2="1407.65"
-       y2="328.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25914" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1264.51,533.52 1271.96,537.14 1264.62,533.67 "
-       id="polygon25916" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1265.8,530.6 1273.25,534.21 1265.6,530.74 "
-       id="polygon25918" />
-    <polygon
-       style="opacity:1;fill:#00587e"
-       points="1247.36,537.52 1259.23,541.87 1259.55,541.63 "
-       id="polygon25920" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1607.33,469.96 1617.96,462.61 1618.07,462.36 "
-       id="polygon25922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1577.29,412.27 1568.76,422.47 1569.05,422.42 "
-       id="polygon25924" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1270.42,549.25 1258.65,544.93 1258.46,544.68 "
-       id="polygon25926" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1246.6,540.33 1258.47,544.68 1258.38,544.3 "
-       id="polygon25928" />
-    <line
-       x1="1632.59"
-       y1="555.90997"
-       x2="1632.92"
-       y2="557.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25930" />
-    <polygon
-       style="opacity:1;fill:#008094"
-       points="1254.12,529.79 1241.49,525.04 1241.79,524.96 "
-       id="polygon25932" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.47,530.83 1272.91,534.44 1265.27,531.05 "
-       id="polygon25934" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1247.05,537.89 1258.93,542.25 1259.23,541.87 "
-       id="polygon25936" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.5,539.94 1258.38,544.3 1258.38,543.81 "
-       id="polygon25938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1577.57,412.22 1569.05,422.42 1569.43,422.5 "
-       id="polygon25940" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.14,531.2 1272.59,534.8 1264.96,531.48 "
-       id="polygon25942" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.79,538.38 1258.66,542.73 1258.93,542.25 "
-       id="polygon25944" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.5,539.45 1258.38,543.81 1258.48,543.27 "
-       id="polygon25946" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1512.43,603 1502.93,603.25 1503.33,603.53 "
-       id="polygon25948" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1252.69,532.9 1240.53,528.3 1240.36,528.05 "
-       id="polygon25950" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1246.6,538.91 1258.48,543.27 1258.66,542.73 "
-       id="polygon25952" />
-    <line
-       x1="1640.87"
-       y1="449.48999"
-       x2="1647.65"
-       y2="461.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25954" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1264.84,531.66 1272.29,535.27 1264.7,531.98 "
-       id="polygon25956" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.06,535.79 1264.7,531.98 1264.62,532.17 "
-       id="polygon25958" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1580.09,414.33 1571.57,424.54 1571.55,424.82 "
-       id="polygon25960" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="1253.82,529.87 1241.17,525.27 1241.49,525.04 "
-       id="polygon25962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1577.96,412.3 1569.43,422.5 1569.89,422.7 "
-       id="polygon25964" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1493.87,603.73 1502.94,603.25 1503.34,603.53 "
-       id="polygon25966" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1512.82,603.28 1503.33,603.53 1503.64,603.95 "
-       id="polygon25968" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1252.6,532.51 1240.36,528.05 1240.27,527.67 "
-       id="polygon25970" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1253.5,530.11 1240.86,525.65 1241.17,525.27 "
-       id="polygon25972" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1579.96,413.97 1571.43,424.18 1571.57,424.54 "
-       id="polygon25974" />
-    <line
-       x1="1407.65"
-       y1="328.25"
-       x2="1409.55"
-       y2="329.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25976" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1609.59,472.87 1620.46,465.02 1620.34,465.27 "
-       id="polygon25978" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1406.92,493.63 1406.59,493.74 1406.44,493.38 "
-       id="polygon25980" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1578.41,412.49 1569.89,422.7 1570.36,423 "
-       id="polygon25982" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.62,532.03 1240.27,527.67 1240.29,527.19 "
-       id="polygon25984" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1253.2,530.49 1240.6,526.13 1240.86,525.65 "
-       id="polygon25986" />
-    <line
-       x1="1609.09"
-       y1="583.20001"
-       x2="1610.3101"
-       y2="580.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line25988" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1579.7,413.57 1571.17,423.78 1571.43,424.18 "
-       id="polygon25990" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1271.96,537.14 1264.62,533.67 1272.13,537.38 "
-       id="polygon25992" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.73,531.5 1240.29,527.19 1240.4,526.66 "
-       id="polygon25994" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.93,530.97 1240.4,526.66 1240.6,526.13 "
-       id="polygon25996" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1578.88,412.79 1570.36,423 1570.8,423.37 "
-       id="polygon25998" />
-    <polygon
-       style="opacity:1;fill:#00009b"
-       points="1513.33,604.21 1503.84,604.46 1503.91,605.03 "
-       id="polygon26000" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1579.32,413.16 1570.8,423.37 1571.17,423.78 "
-       id="polygon26002" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1608.24,470.09 1618.62,462.3 1618.99,462.49 "
-       id="polygon26004" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1609.71,472.61 1620.45,464.64 1620.46,465.02 "
-       id="polygon26006" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1273.25,534.21 1265.6,530.74 1272.91,534.44 "
-       id="polygon26008" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1608.64,470.41 1618.99,462.49 1619.38,462.81 "
-       id="polygon26010" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1609.7,472.25 1620.32,464.2 1620.45,464.64 "
-       id="polygon26012" />
-    <line
-       x1="1632.92"
-       y1="557.07001"
-       x2="1633.14"
-       y2="558.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26014" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.91,534.44 1265.27,531.05 1272.59,534.8 "
-       id="polygon26016" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1271.93,536.3 1264.46,532.97 1271.89,536.77 "
-       id="polygon26018" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1609.02,470.83 1619.38,462.81 1619.76,463.23 "
-       id="polygon26020" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1609.57,471.8 1620.09,463.71 1620.32,464.2 "
-       id="polygon26022" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1609.34,471.31 1619.76,463.23 1620.09,463.71 "
-       id="polygon26024" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.59,534.8 1264.96,531.48 1272.29,535.27 "
-       id="polygon26026" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.06,535.79 1264.53,532.49 1271.93,536.3 "
-       id="polygon26028" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.29,535.27 1264.7,531.98 1272.06,535.79 "
-       id="polygon26030" />
-    <line
-       x1="1409.55"
-       y1="329.60999"
-       x2="1411.3199"
-       y2="331.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26032" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1618.3,462.25 1607.55,469.85 1607.87,469.89 "
-       id="polygon26034" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1618.62,462.3 1607.87,469.89 1608.24,470.09 "
-       id="polygon26036" />
-    <polygon
-       style="opacity:1;fill:#008094"
-       points="1241.49,525.04 1253.82,529.87 1254.12,529.79 "
-       id="polygon26038" />
-    <polygon
-       style="opacity:1;fill:#008ba0"
-       points="1240.53,528.3 1252.86,533.14 1252.69,532.9 "
-       id="polygon26040" />
-    <line
-       x1="1607.6801"
-       y1="586.04999"
-       x2="1609.09"
-       y2="583.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26042" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1620.45,464.64 1609.7,472.25 1609.71,472.61 "
-       id="polygon26044" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1618.99,462.49 1608.24,470.09 1608.64,470.41 "
-       id="polygon26046" />
-    <polygon
-       style="opacity:1;fill:#006e7f"
-       points="1241.17,525.27 1253.5,530.11 1253.82,529.87 "
-       id="polygon26048" />
-    <polygon
-       style="opacity:1;fill:#008aa0"
-       points="1265.15,537.97 1252.85,533.13 1252.68,532.89 "
-       id="polygon26050" />
-    <polygon
-       style="opacity:1;fill:#006a7b"
-       points="1240.36,528.05 1252.69,532.9 1252.6,532.51 "
-       id="polygon26052" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1619.38,462.81 1608.64,470.41 1609.02,470.83 "
-       id="polygon26054" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1620.32,464.2 1609.57,471.8 1609.7,472.25 "
-       id="polygon26056" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1560.54,432.7 1568.76,422.48 1569.04,422.43 "
-       id="polygon26058" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.86,525.65 1253.2,530.49 1253.5,530.11 "
-       id="polygon26060" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.27,527.67 1252.6,532.51 1252.62,532.03 "
-       id="polygon26062" />
-    <line
-       x1="1411.3199"
-       y1="331.13"
-       x2="1412.96"
-       y2="332.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26064" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1619.76,463.23 1609.02,470.83 1609.34,471.31 "
-       id="polygon26066" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1620.09,463.71 1609.34,471.31 1609.57,471.8 "
-       id="polygon26068" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.6,526.13 1252.93,530.97 1253.2,530.49 "
-       id="polygon26070" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.29,527.19 1252.62,532.03 1252.73,531.5 "
-       id="polygon26072" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1563.05,435.09 1571.57,424.54 1571.56,424.81 "
-       id="polygon26074" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1240.4,526.66 1252.73,531.5 1252.93,530.97 "
-       id="polygon26076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1560.92,432.78 1569.04,422.43 1569.43,422.51 "
-       id="polygon26078" />
-    <line
-       x1="1633.14"
-       y1="558.26001"
-       x2="1633.73"
-       y2="561.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26080" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1563.07,434.81 1571.44,424.18 1571.57,424.54 "
-       id="polygon26082" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.38,432.98 1569.43,422.51 1569.88,422.7 "
-       id="polygon26084" />
-    <polygon
-       style="opacity:1;fill:#006693"
-       points="1271.83,546.13 1259.58,541.64 1259.88,541.56 "
-       id="polygon26086" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1562.93,434.46 1571.17,423.78 1571.44,424.18 "
-       id="polygon26088" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.84,433.28 1569.88,422.7 1570.35,423 "
-       id="polygon26090" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1562.66,434.05 1570.8,423.38 1571.17,423.78 "
-       id="polygon26092" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1562.29,433.65 1570.35,423 1570.8,423.38 "
-       id="polygon26094" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="1271.53,546.2 1259.26,541.88 1259.58,541.64 "
-       id="polygon26096" />
-    <line
-       x1="1412.96"
-       y1="332.78"
-       x2="1414.45"
-       y2="334.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26098" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1410.05,493.39 1410.92,504.54 1410.71,504.9 "
-       id="polygon26100" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1410.96,504.17 1409.94,492.67 1410.09,493.02 "
-       id="polygon26102" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1568.76,422.48 1560.25,432.75 1560.54,432.7 "
-       id="polygon26104" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1270.33,548.86 1258.46,544.68 1258.38,544.29 "
-       id="polygon26106" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1271.21,546.45 1258.95,542.26 1259.26,541.88 "
-       id="polygon26108" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1410.81,503.82 1409.63,492.36 1409.94,492.67 "
-       id="polygon26110" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.91,503.5 1406.68,492.65 1407.05,492.35 "
-       id="polygon26112" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.34,548.38 1258.38,544.29 1258.38,543.81 "
-       id="polygon26114" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.9,546.83 1258.69,542.74 1258.95,542.26 "
-       id="polygon26116" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.04,422.43 1560.54,432.7 1560.92,432.78 "
-       id="polygon26118" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.45,547.84 1258.38,543.81 1258.49,543.27 "
-       id="polygon26120" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.64,547.31 1258.49,543.27 1258.69,542.74 "
-       id="polygon26122" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1410.5,503.51 1409.19,492.14 1409.63,492.36 "
-       id="polygon26124" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.4,503.28 1407.05,492.35 1407.53,492.13 "
-       id="polygon26126" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1571.57,424.54 1563.07,434.81 1563.05,435.09 "
-       id="polygon26128" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1285.39,540.33 1272.94,534.46 1273.28,534.22 "
-       id="polygon26130" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1410.06,503.29 1408.66,492.02 1409.19,492.14 "
-       id="polygon26132" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.95,503.17 1407.53,492.13 1408.09,492.02 "
-       id="polygon26134" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1597.11,477.57 1607.55,469.86 1607.86,469.9 "
-       id="polygon26136" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1409.53,503.17 1408.09,492.02 1408.66,492.02 "
-       id="polygon26138" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.43,422.51 1560.92,432.78 1561.38,432.98 "
-       id="polygon26140" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1598.85,480.54 1609.71,472.61 1609.6,472.86 "
-       id="polygon26142" />
-    <line
-       x1="1626.11"
-       y1="449.98001"
-       x2="1639.05"
-       y2="449.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26144" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1571.44,424.18 1562.93,434.46 1563.07,434.81 "
-       id="polygon26146" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1285.05,540.57 1272.61,534.82 1272.94,534.46 "
-       id="polygon26148" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.04,542.41 1271.89,536.76 1271.93,536.3 "
-       id="polygon26150" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1569.88,422.7 1561.38,432.98 1561.84,433.28 "
-       id="polygon26152" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1597.48,477.77 1607.86,469.9 1608.23,470.09 "
-       id="polygon26154" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.72,540.93 1272.31,535.28 1272.61,534.82 "
-       id="polygon26156" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1571.17,423.78 1562.66,434.05 1562.93,434.46 "
-       id="polygon26158" />
-    <line
-       x1="1414.45"
-       y1="334.56"
-       x2="1415.79"
-       y2="336.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26160" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.19,541.9 1271.93,536.3 1272.08,535.79 "
-       id="polygon26162" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.42,541.39 1272.08,535.79 1272.31,535.28 "
-       id="polygon26164" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1598.96,480.29 1609.7,472.25 1609.71,472.61 "
-       id="polygon26166" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1570.35,423 1561.84,433.28 1562.29,433.65 "
-       id="polygon26168" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1570.8,423.38 1562.29,433.65 1562.66,434.05 "
-       id="polygon26170" />
-    <line
-       x1="1633.73"
-       y1="561.70001"
-       x2="1634"
-       y2="565.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26172" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1597.88,478.09 1608.23,470.09 1608.63,470.41 "
-       id="polygon26174" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1598.96,479.92 1609.57,471.8 1609.7,472.25 "
-       id="polygon26176" />
-    <line
-       x1="1604.36"
-       y1="591.17999"
-       x2="1606.1"
-       y2="588.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26178" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1598.26,478.51 1608.63,470.41 1609.01,470.84 "
-       id="polygon26180" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1598.82,479.47 1609.34,471.31 1609.57,471.8 "
-       id="polygon26182" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1598.59,478.98 1609.01,470.84 1609.34,471.31 "
-       id="polygon26184" />
-    <polygon
-       style="opacity:1;fill:#006693"
-       points="1259.58,541.64 1271.53,546.2 1271.83,546.13 "
-       id="polygon26186" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1494.38,604.67 1503.65,603.95 1503.85,604.46 "
-       id="polygon26188" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1258.65,544.93 1270.6,549.5 1270.42,549.25 "
-       id="polygon26190" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1494.45,605.24 1503.85,604.46 1503.92,605.03 "
-       id="polygon26192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1607.55,469.86 1596.8,477.53 1597.11,477.57 "
-       id="polygon26194" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="1259.26,541.88 1271.21,546.45 1271.53,546.2 "
-       id="polygon26196" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1270.41,549.24 1278.96,552.63 1270.59,549.49 "
-       id="polygon26198" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1258.46,544.68 1270.42,549.25 1270.33,548.86 "
-       id="polygon26200" />
-    <line
-       x1="1415.79"
-       y1="336.45999"
-       x2="1416.95"
-       y2="338.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26202" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1609.71,472.61 1598.96,480.29 1598.85,480.54 "
-       id="polygon26204" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1607.86,469.9 1597.11,477.57 1597.48,477.77 "
-       id="polygon26206" />
-    <polygon
-       style="opacity:1;fill:#008194"
-       points="1266.61,534.88 1253.85,529.89 1254.14,529.8 "
-       id="polygon26208" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.95,542.26 1270.9,546.83 1271.21,546.45 "
-       id="polygon26210" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.38,544.29 1270.33,548.86 1270.34,548.38 "
-       id="polygon26212" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.69,542.74 1270.64,547.31 1270.9,546.83 "
-       id="polygon26214" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.38,543.81 1270.34,548.38 1270.45,547.84 "
-       id="polygon26216" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1258.49,543.27 1270.45,547.84 1270.64,547.31 "
-       id="polygon26218" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1609.7,472.25 1598.96,479.92 1598.96,480.29 "
-       id="polygon26220" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1608.23,470.09 1597.48,477.77 1597.88,478.09 "
-       id="polygon26222" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1406.48,493 1407.34,504.15 1407.55,503.8 "
-       id="polygon26224" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1266.31,534.96 1253.54,530.13 1253.85,529.89 "
-       id="polygon26226" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1609.57,471.8 1598.82,479.47 1598.96,479.92 "
-       id="polygon26228" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1608.63,470.41 1597.88,478.09 1598.26,478.51 "
-       id="polygon26230" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1265.08,537.59 1252.68,532.89 1252.61,532.51 "
-       id="polygon26232" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1272.94,534.46 1285.05,540.57 1285.39,540.33 "
-       id="polygon26234" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.68,492.65 1407.55,503.8 1407.91,503.5 "
-       id="polygon26236" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1266,535.2 1253.23,530.5 1253.54,530.13 "
-       id="polygon26238" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1609.34,471.31 1598.59,478.98 1598.82,479.47 "
-       id="polygon26240" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1609.01,470.84 1598.26,478.51 1598.59,478.98 "
-       id="polygon26242" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.04,443.04 1560.25,432.75 1560.53,432.71 "
-       id="polygon26244" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1409.63,492.36 1410.5,503.51 1410.81,503.82 "
-       id="polygon26246" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1271.89,536.76 1284,542.87 1284.04,542.41 "
-       id="polygon26248" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.1,537.11 1252.61,532.51 1252.64,532.04 "
-       id="polygon26250" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.61,534.82 1284.72,540.93 1285.05,540.57 "
-       id="polygon26252" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.7,535.58 1252.96,530.98 1253.23,530.5 "
-       id="polygon26254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.05,492.35 1407.91,503.5 1408.4,503.28 "
-       id="polygon26256" />
-    <line
-       x1="1602.48"
-       y1="593.44"
-       x2="1604.36"
-       y2="591.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26258" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.22,536.59 1252.64,532.04 1252.76,531.51 "
-       id="polygon26260" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.43,536.06 1252.76,531.51 1252.96,530.98 "
-       id="polygon26262" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1271.93,536.3 1284.04,542.41 1284.19,541.9 "
-       id="polygon26264" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1409.19,492.14 1410.06,503.29 1410.5,503.51 "
-       id="polygon26266" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.31,535.28 1284.42,541.39 1284.72,540.93 "
-       id="polygon26268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.53,492.13 1408.4,503.28 1408.95,503.17 "
-       id="polygon26270" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.08,535.79 1284.19,541.9 1284.42,541.39 "
-       id="polygon26272" />
-    <line
-       x1="1416.95"
-       y1="338.45999"
-       x2="1417.95"
-       y2="340.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26274" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1408.66,492.02 1409.53,503.17 1410.06,503.29 "
-       id="polygon26276" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1408.09,492.02 1408.95,503.17 1409.53,503.17 "
-       id="polygon26278" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.42,443.12 1560.53,432.71 1560.92,432.79 "
-       id="polygon26280" />
-    <line
-       x1="1634"
-       y1="565.20001"
-       x2="1633.96"
-       y2="568.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26282" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1554.57,445.14 1562.93,434.46 1563.07,434.81 "
-       id="polygon26284" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.88,443.32 1560.92,432.79 1561.37,432.98 "
-       id="polygon26286" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1502.94,603.25 1493.47,603.46 1493.87,603.73 "
-       id="polygon26288" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1554.44,444.79 1562.66,434.05 1562.93,434.46 "
-       id="polygon26290" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1553.35,443.62 1561.37,432.98 1561.84,433.28 "
-       id="polygon26292" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1554.17,444.39 1562.29,433.65 1562.66,434.05 "
-       id="polygon26294" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1553.79,443.98 1561.84,433.28 1562.29,433.65 "
-       id="polygon26296" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1503.65,603.95 1494.18,604.15 1494.38,604.67 "
-       id="polygon26298" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1503.85,604.46 1494.38,604.67 1494.45,605.24 "
-       id="polygon26300" />
-    <line
-       x1="1417.95"
-       y1="340.54999"
-       x2="1418.76"
-       y2="342.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26302" />
-    <polygon
-       style="opacity:1;fill:#008194"
-       points="1253.85,529.89 1266.31,534.96 1266.61,534.88 "
-       id="polygon26304" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1560.53,432.71 1552.04,443.04 1552.42,443.12 "
-       id="polygon26306" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.35,485.31 1596.79,477.53 1597.11,477.57 "
-       id="polygon26308" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1563.07,434.81 1554.57,445.14 1554.56,445.42 "
-       id="polygon26310" />
-    <polygon
-       style="opacity:1;fill:#006f80"
-       points="1253.54,530.13 1266,535.2 1266.31,534.96 "
-       id="polygon26312" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1252.68,532.89 1265.15,537.97 1265.08,537.59 "
-       id="polygon26314" />
-    <line
-       x1="1600.47"
-       y1="595.46002"
-       x2="1602.48"
-       y2="593.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26316" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1588.1,488.27 1598.97,480.29 1598.86,480.54 "
-       id="polygon26318" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1560.92,432.79 1552.42,443.12 1552.88,443.32 "
-       id="polygon26320" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1407.67,504.49 1407.3,504.52 1407.34,504.15 "
-       id="polygon26322" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1253.23,530.5 1265.7,535.58 1266,535.2 "
-       id="polygon26324" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.61,532.51 1265.08,537.59 1265.1,537.11 "
-       id="polygon26326" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1562.93,434.46 1554.44,444.79 1554.57,445.14 "
-       id="polygon26328" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1586.72,485.5 1597.11,477.57 1597.48,477.77 "
-       id="polygon26330" />
-    <polygon
-       style="opacity:1;fill:#006794"
-       points="1271.85,546.13 1280.39,549.52 1271.55,546.21 "
-       id="polygon26332" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.96,530.98 1265.43,536.06 1265.7,535.58 "
-       id="polygon26334" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1588.21,488.02 1598.96,479.92 1598.97,480.29 "
-       id="polygon26336" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.64,532.04 1265.1,537.11 1265.22,536.59 "
-       id="polygon26338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.37,432.98 1552.88,443.32 1553.35,443.62 "
-       id="polygon26340" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1252.76,531.51 1265.22,536.59 1265.43,536.06 "
-       id="polygon26342" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1562.66,434.05 1554.17,444.39 1554.44,444.79 "
-       id="polygon26344" />
-    <line
-       x1="1633.96"
-       y1="568.72998"
-       x2="1633.61"
-       y2="572.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26346" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1561.84,433.28 1553.35,443.62 1553.79,443.98 "
-       id="polygon26348" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1562.29,433.65 1553.79,443.98 1554.17,444.39 "
-       id="polygon26350" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1587.12,485.82 1597.48,477.77 1597.88,478.09 "
-       id="polygon26352" />
-    <line
-       x1="1418.76"
-       y1="342.70999"
-       x2="1419.39"
-       y2="344.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26354" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1588.2,487.66 1598.82,479.47 1598.96,479.92 "
-       id="polygon26356" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="1271.55,546.21 1280.1,549.6 1271.23,546.46 "
-       id="polygon26358" />
-    <line
-       x1="1647.65"
-       y1="461.76999"
-       x2="1646.98"
-       y2="462.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26360" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1587.5,486.25 1597.88,478.09 1598.26,478.51 "
-       id="polygon26362" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1588.07,487.21 1598.58,478.99 1598.82,479.47 "
-       id="polygon26364" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1587.82,486.72 1598.26,478.51 1598.58,478.99 "
-       id="polygon26366" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1270.33,548.86 1278.88,552.24 1270.41,549.24 "
-       id="polygon26368" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1271.23,546.46 1279.78,549.84 1270.93,546.84 "
-       id="polygon26370" />
-    <polygon
-       style="opacity:1;fill:#007081"
-       points="1285.41,540.35 1290.93,543.21 1285.07,540.58 "
-       id="polygon26372" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.34,548.38 1278.89,551.76 1270.33,548.86 "
-       id="polygon26374" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.93,546.84 1279.47,550.22 1270.66,547.32 "
-       id="polygon26376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1596.79,477.53 1586.04,485.26 1586.35,485.31 "
-       id="polygon26378" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.46,547.85 1279.01,551.23 1270.34,548.38 "
-       id="polygon26380" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.66,547.32 1279.21,550.7 1270.46,547.85 "
-       id="polygon26382" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1285.07,540.58 1290.59,543.45 1284.74,540.94 "
-       id="polygon26384" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1493.39,603.8 1493.47,603.46 1493.87,603.73 "
-       id="polygon26386" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.74,540.94 1290.26,543.81 1284.44,541.4 "
-       id="polygon26388" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1598.97,480.29 1588.21,488.02 1588.1,488.27 "
-       id="polygon26390" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1597.11,477.57 1586.35,485.31 1586.72,485.5 "
-       id="polygon26392" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.44,541.4 1289.96,544.27 1284.2,541.91 "
-       id="polygon26394" />
-    <line
-       x1="1419.39"
-       y1="344.94"
-       x2="1419.84"
-       y2="347.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26396" />
-    <line
-       x1="1646.3101"
-       y1="462.42999"
-       x2="1645.65"
-       y2="462.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26398" />
-    <line
-       x1="1598.35"
-       y1="597.25"
-       x2="1600.47"
-       y2="595.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26400" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1598.96,479.92 1588.2,487.66 1588.21,488.02 "
-       id="polygon26402" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1597.48,477.77 1586.72,485.5 1587.12,485.82 "
-       id="polygon26404" />
-    <polygon
-       style="opacity:1;fill:#006794"
-       points="1280.31,549.54 1271.55,546.21 1280.1,549.6 "
-       id="polygon26406" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1270.59,549.49 1278.96,552.63 1279.01,552.7 "
-       id="polygon26408" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1598.82,479.47 1588.07,487.21 1588.2,487.66 "
-       id="polygon26410" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1597.88,478.09 1587.12,485.82 1587.5,486.25 "
-       id="polygon26412" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1598.58,478.99 1587.82,486.72 1588.07,487.21 "
-       id="polygon26414" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1598.26,478.51 1587.5,486.25 1587.82,486.72 "
-       id="polygon26416" />
-    <polygon
-       style="opacity:1;fill:#00557b"
-       points="1278.9,552.36 1270.41,549.24 1278.96,552.63 "
-       id="polygon26418" />
-    <polygon
-       style="opacity:1;fill:#00587f"
-       points="1280.01,549.67 1271.23,546.46 1279.78,549.84 "
-       id="polygon26420" />
-    <line
-       x1="1645.65"
-       y1="462.67999"
-       x2="1645"
-       y2="462.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26422" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.74,540.94 1290.59,543.45 1290.41,543.65 "
-       id="polygon26424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1543.54,453.41 1551.75,443.09 1552.04,443.04 "
-       id="polygon26426" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.93,546.84 1279.78,549.84 1279.69,549.95 "
-       id="polygon26428" />
-    <line
-       x1="1633.61"
-       y1="572.28998"
-       x2="1632.9399"
-       y2="575.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26430" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.44,541.4 1290.26,543.81 1290.09,544.06 "
-       id="polygon26432" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.89,551.9 1270.33,548.86 1278.88,552.24 "
-       id="polygon26434" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1279.69,549.95 1270.93,546.84 1279.47,550.22 "
-       id="polygon26436" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1290.09,544.06 1284.44,541.4 1289.96,544.27 "
-       id="polygon26438" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1289.83,544.55 1284.2,541.91 1289.72,544.78 "
-       id="polygon26440" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1284.2,541.91 1289.96,544.27 1289.83,544.55 "
-       id="polygon26442" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1408.14,515.74 1407.45,504.88 1407.3,504.52 "
-       id="polygon26444" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.97,551.38 1270.34,548.38 1278.89,551.76 "
-       id="polygon26446" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1546.07,455.8 1554.57,445.14 1554.57,445.42 "
-       id="polygon26448" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1279.4,550.36 1270.66,547.32 1279.21,550.7 "
-       id="polygon26450" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.34,548.38 1279.01,551.23 1278.97,551.38 "
-       id="polygon26452" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1270.46,547.85 1279.21,550.7 1279.15,550.85 "
-       id="polygon26454" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1279.15,550.85 1270.46,547.85 1279.01,551.23 "
-       id="polygon26456" />
-    <line
-       x1="1419.84"
-       y1="347.20999"
-       x2="1420.08"
-       y2="349.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1543.93,453.5 1552.04,443.04 1552.42,443.12 "
-       id="polygon26460" />
-    <line
-       x1="1645"
-       y1="462.88"
-       x2="1644.37"
-       y2="463.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26462" />
-    <polygon
-       style="opacity:1;fill:#006f81"
-       points="1266.34,534.98 1272.74,537.66 1266.03,535.22 "
-       id="polygon26464" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1546.08,455.52 1554.44,444.79 1554.57,445.14 "
-       id="polygon26466" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1483.17,603.58 1492.21,603.67 1492.61,603.43 "
-       id="polygon26468" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1544.38,453.7 1552.42,443.12 1552.87,443.32 "
-       id="polygon26470" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1265.09,537.59 1271.49,540.28 1265.15,537.96 "
-       id="polygon26472" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1575.04,493.14 1585.7,485.61 1585.81,485.37 "
-       id="polygon26474" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1545.94,455.17 1554.17,444.39 1554.44,444.79 "
-       id="polygon26476" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1408.38,515.02 1407.34,504.15 1407.55,503.8 "
-       id="polygon26478" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1266.03,535.22 1272.43,537.91 1265.73,535.6 "
-       id="polygon26480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1544.85,454 1552.87,443.32 1553.34,443.62 "
-       id="polygon26482" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1545.67,454.77 1553.79,443.99 1554.17,444.39 "
-       id="polygon26484" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.12,537.12 1271.52,539.81 1265.09,537.59 "
-       id="polygon26486" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1545.3,454.37 1553.34,443.62 1553.79,443.99 "
-       id="polygon26488" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.73,535.6 1272.13,538.29 1265.46,536.07 "
-       id="polygon26490" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1410.93,504.55 1411.76,515.77 1411.55,516.12 "
-       id="polygon26492" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1411.65,515.04 1410.5,503.52 1410.82,503.82 "
-       id="polygon26494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.75,514.72 1407.55,503.8 1407.91,503.5 "
-       id="polygon26496" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.25,536.59 1271.65,539.28 1265.12,537.12 "
-       id="polygon26498" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.46,536.07 1271.86,538.76 1265.25,536.59 "
-       id="polygon26500" />
-    <line
-       x1="1596.13"
-       y1="598.78998"
-       x2="1598.35"
-       y2="597.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1551.75,443.09 1543.25,453.46 1543.54,453.41 "
-       id="polygon26504" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1411.34,514.74 1410.06,503.3 1410.5,503.52 "
-       id="polygon26506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.23,514.5 1407.91,503.5 1408.4,503.28 "
-       id="polygon26508" />
-    <line
-       x1="1420.08"
-       y1="349.51999"
-       x2="1420.13"
-       y2="351.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26510" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1410.9,514.52 1409.53,503.18 1410.06,503.3 "
-       id="polygon26512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.79,514.39 1408.4,503.28 1408.95,503.17 "
-       id="polygon26514" />
-    <polygon
-       style="opacity:1;fill:#008195"
-       points="1272.88,537.62 1266.34,534.98 1272.74,537.66 "
-       id="polygon26516" />
-    <polygon
-       style="opacity:1;fill:#008aa0"
-       points="1265.3,538.2 1271.55,540.65 1271.63,540.77 "
-       id="polygon26518" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1410.36,514.39 1408.95,503.17 1409.53,503.18 "
-       id="polygon26520" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1484.44,603.88 1493.48,603.46 1493.88,603.73 "
-       id="polygon26522" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1575.57,493.09 1586.04,485.26 1586.35,485.31 "
-       id="polygon26524" />
-    <line
-       x1="1643.76"
-       y1="463.14001"
-       x2="1643.17"
-       y2="463.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26526" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1297.58,546.67 1291.06,543.18 1290.93,543.21 "
-       id="polygon26528" />
-    <polygon
-       style="opacity:1;fill:#006f81"
-       points="1266.03,535.22 1272.74,537.66 1272.59,537.78 "
-       id="polygon26530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.04,443.04 1543.54,453.41 1543.93,453.5 "
-       id="polygon26532" />
-    <polygon
-       style="opacity:1;fill:#006a7a"
-       points="1271.52,540.46 1265.15,537.96 1271.55,540.65 "
-       id="polygon26534" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1577.33,496.05 1588.21,488.02 1588.1,488.27 "
-       id="polygon26536" />
-    <polygon
-       style="opacity:1;fill:#006f81"
-       points="1272.59,537.78 1266.03,535.22 1272.43,537.91 "
-       id="polygon26538" />
-    <polygon
-       style="opacity:1;fill:#005981"
-       points="1297.25,546.91 1290.75,543.34 1290.59,543.45 "
-       id="polygon26540" />
-    <polygon
-       style="opacity:1;fill:#00427f"
-       points="1283.26,551.21 1280.01,549.67 1279.78,549.84 "
-       id="polygon26542" />
-    <line
-       x1="1632.9399"
-       y1="575.84003"
-       x2="1631.95"
-       y2="579.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26544" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1575.95,493.28 1586.35,485.31 1586.72,485.5 "
-       id="polygon26546" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.59,543.45 1297.25,546.91 1290.41,543.65 "
-       id="polygon26548" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272.28,538.09 1265.73,535.6 1272.13,538.29 "
-       id="polygon26550" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.09,537.59 1271.52,539.81 1271.5,540.04 "
-       id="polygon26552" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.42,443.12 1543.93,453.5 1544.38,453.7 "
-       id="polygon26554" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1484.96,604.82 1494.19,604.15 1494.39,604.67 "
-       id="polygon26556" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1577.44,495.8 1588.2,487.66 1588.21,488.02 "
-       id="polygon26558" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="1278.88,552.24 1282.36,553.62 1278.9,552.36 "
-       id="polygon26560" />
-    <polygon
-       style="opacity:1;fill:#004d94"
-       points="1283.88,550.89 1280.31,549.54 1283.58,550.97 "
-       id="polygon26562" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1554.44,444.79 1545.94,455.17 1546.08,455.52 "
-       id="polygon26564" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.46,536.07 1272.13,538.29 1272,538.52 "
-       id="polygon26566" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1271.59,539.54 1265.12,537.12 1271.52,539.81 "
-       id="polygon26568" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1296.91,547.27 1290.41,543.65 1290.26,543.81 "
-       id="polygon26570" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.12,537.12 1271.65,539.28 1271.59,539.54 "
-       id="polygon26572" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1272,538.52 1265.46,536.07 1271.86,538.76 "
-       id="polygon26574" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.95,551.59 1279.69,549.95 1279.47,550.22 "
-       id="polygon26576" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.26,543.81 1296.91,547.27 1290.09,544.06 "
-       id="polygon26578" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1265.25,536.59 1271.86,538.76 1271.75,539.02 "
-       id="polygon26580" />
-    <polygon
-       style="opacity:1;fill:#006170"
-       points="1271.75,539.02 1265.25,536.59 1271.65,539.28 "
-       id="polygon26582" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1296.61,547.73 1290.09,544.06 1289.96,544.27 "
-       id="polygon26584" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1552.87,443.32 1544.38,453.7 1544.85,454 "
-       id="polygon26586" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1576.34,493.61 1586.72,485.5 1587.11,485.83 "
-       id="polygon26588" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1554.17,444.39 1545.67,454.77 1545.94,455.17 "
-       id="polygon26590" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.69,552.07 1279.4,550.36 1279.21,550.7 "
-       id="polygon26592" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1577.43,495.43 1588.07,487.21 1588.2,487.66 "
-       id="polygon26594" />
-    <line
-       x1="1420.13"
-       y1="351.85001"
-       x2="1419.99"
-       y2="354.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26596" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1279.01,551.23 1282.48,552.61 1278.97,551.38 "
-       id="polygon26598" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1553.34,443.62 1544.85,454 1545.3,454.37 "
-       id="polygon26600" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1553.79,443.99 1545.3,454.37 1545.67,454.77 "
-       id="polygon26602" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1428.59,582.65 1426.19,585.89 1426.65,585.59 "
-       id="polygon26604" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1576.72,494.03 1587.11,485.83 1587.5,486.25 "
-       id="polygon26606" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1577.29,494.99 1587.82,486.72 1588.07,487.21 "
-       id="polygon26608" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1577.05,494.5 1587.5,486.25 1587.82,486.72 "
-       id="polygon26610" />
-    <polygon
-       style="opacity:1;fill:#00407b"
-       points="1282.36,553.62 1278.9,552.36 1282.44,554 "
-       id="polygon26612" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1297.88,546.59 1291.06,543.18 1297.58,546.67 "
-       id="polygon26614" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.37,553.14 1278.89,551.9 1282.36,553.62 "
-       id="polygon26616" />
-    <line
-       x1="1642.6"
-       y1="463.20999"
-       x2="1642.0601"
-       y2="463.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26618" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1586.04,485.26 1575.26,493.04 1575.57,493.09 "
-       id="polygon26620" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.95,551.59 1279.4,550.36 1282.69,552.07 "
-       id="polygon26622" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.48,552.61 1278.97,551.38 1282.37,553.14 "
-       id="polygon26624" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.69,552.07 1279.15,550.85 1282.48,552.61 "
-       id="polygon26626" />
-    <line
-       x1="1593.84"
-       y1="600.06"
-       x2="1596.13"
-       y2="598.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26628" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1586.35,485.31 1575.57,493.09 1575.95,493.28 "
-       id="polygon26630" />
-    <line
-       x1="1419.99"
-       y1="354.17999"
-       x2="1419.65"
-       y2="356.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26632" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1296.91,547.27 1290.09,544.06 1296.61,547.73 "
-       id="polygon26634" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1534.6,464.04 1543.09,453.91 1543.1,453.63 "
-       id="polygon26636" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1588.2,487.66 1577.43,495.43 1577.44,495.8 "
-       id="polygon26638" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1586.72,485.5 1575.95,493.28 1576.34,493.61 "
-       id="polygon26640" />
-    <polygon
-       style="opacity:1;fill:#005981"
-       points="1272.74,537.66 1278.93,540.26 1272.59,537.78 "
-       id="polygon26642" />
-    <polygon
-       style="opacity:1;fill:#006fa0"
-       points="1271.55,540.65 1277.73,543.25 1271.63,540.77 "
-       id="polygon26644" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1493.04,603.35 1483.61,603.5 1484.05,603.61 "
-       id="polygon26646" />
-    <line
-       x1="1631.95"
-       y1="579.35999"
-       x2="1630.66"
-       y2="582.83002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26648" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.55,503.8 1408.38,515.02 1408.75,514.72 "
-       id="polygon26650" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1588.07,487.21 1577.29,494.99 1577.43,495.43 "
-       id="polygon26652" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1587.11,485.83 1576.34,493.61 1576.72,494.03 "
-       id="polygon26654" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1410.5,503.52 1411.34,514.74 1411.65,515.04 "
-       id="polygon26656" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1587.82,486.72 1577.05,494.5 1577.29,494.99 "
-       id="polygon26658" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1272.43,537.91 1278.62,540.5 1272.28,538.09 "
-       id="polygon26660" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1587.5,486.25 1576.72,494.03 1577.05,494.5 "
-       id="polygon26662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.91,503.5 1408.75,514.72 1409.23,514.5 "
-       id="polygon26664" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.67,542.88 1271.5,540.04 1271.49,540.28 "
-       id="polygon26666" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1493.48,603.46 1484.05,603.61 1484.44,603.88 "
-       id="polygon26668" />
-    <line
-       x1="1523.63"
-       y1="542.27002"
-       x2="1524.77"
-       y2="538.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26670" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1410.06,503.3 1410.9,514.52 1411.34,514.74 "
-       id="polygon26672" />
-    <line
-       x1="1522.8"
-       y1="546.42999"
-       x2="1523.63"
-       y2="542.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26674" />
-    <line
-       x1="1641.55"
-       y1="463.10999"
-       x2="1641.0699"
-       y2="462.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26676" />
-    <line
-       x1="1524.77"
-       y1="538.20001"
-       x2="1526.2"
-       y2="534.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.4,503.28 1409.23,514.5 1409.79,514.39 "
-       id="polygon26680" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1272.13,538.29 1278.31,540.88 1272,538.52 "
-       id="polygon26682" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1271.52,539.81 1277.71,542.41 1271.5,540.04 "
-       id="polygon26684" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.71,542.41 1271.59,539.54 1271.52,539.81 "
-       id="polygon26686" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1409.53,503.18 1410.36,514.39 1410.9,514.52 "
-       id="polygon26688" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1408.95,503.17 1409.79,514.39 1410.36,514.39 "
-       id="polygon26690" />
-    <line
-       x1="1522.27"
-       y1="550.64001"
-       x2="1522.8"
-       y2="546.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26692" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1271.86,538.76 1278.04,541.36 1271.75,539.02 "
-       id="polygon26694" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1271.65,539.28 1277.84,541.88 1271.59,539.54 "
-       id="polygon26696" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.84,541.88 1271.75,539.02 1271.65,539.28 "
-       id="polygon26698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.03,463.83 1543.25,453.46 1543.54,453.42 "
-       id="polygon26700" />
-    <line
-       x1="1526.2"
-       y1="534.22998"
-       x2="1527.91"
-       y2="530.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26702" />
-    <line
-       x1="1419.65"
-       y1="356.48999"
-       x2="1419.12"
-       y2="358.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26704" />
-    <polygon
-       style="opacity:1;fill:#006795"
-       points="1279.21,540.18 1272.88,537.62 1278.93,540.26 "
-       id="polygon26706" />
-    <line
-       x1="1522.04"
-       y1="554.89001"
-       x2="1522.27"
-       y2="550.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26708" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1494.19,604.15 1484.75,604.3 1484.96,604.82 "
-       id="polygon26710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.42,463.91 1543.54,453.42 1543.93,453.5 "
-       id="polygon26712" />
-    <polygon
-       style="opacity:1;fill:#005981"
-       points="1278.93,540.26 1272.59,537.78 1278.62,540.5 "
-       id="polygon26714" />
-    <polygon
-       style="opacity:1;fill:#004d94"
-       points="1295.98,555.83 1283.59,550.98 1283.89,550.9 "
-       id="polygon26716" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1494.46,605.24 1485.02,605.39 1484.96,605.96 "
-       id="polygon26718" />
-    <line
-       x1="1522.14"
-       y1="559.15997"
-       x2="1522.04"
-       y2="554.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26720" />
-    <polygon
-       style="opacity:1;fill:#00557a"
-       points="1277.67,542.88 1271.52,540.46 1277.73,543.25 "
-       id="polygon26722" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1537.58,465.93 1545.95,455.17 1546.08,455.52 "
-       id="polygon26724" />
-    <line
-       x1="1591.48"
-       y1="601.07001"
-       x2="1593.84"
-       y2="600.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.87,464.11 1543.93,453.5 1544.38,453.7 "
-       id="polygon26728" />
-    <line
-       x1="1529.88"
-       y1="526.67999"
-       x2="1532.11"
-       y2="523.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26730" />
-    <polygon
-       style="opacity:1;fill:#0053a0"
-       points="1294.52,558.93 1282.6,554.24 1282.43,554 "
-       id="polygon26732" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.62,540.5 1272.28,538.09 1278.31,540.88 "
-       id="polygon26734" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="1295.69,555.91 1283.28,551.23 1283.59,550.98 "
-       id="polygon26736" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.71,542.41 1271.5,540.04 1277.67,542.88 "
-       id="polygon26738" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1537.44,465.58 1545.67,454.77 1545.95,455.17 "
-       id="polygon26740" />
-    <line
-       x1="1522.54"
-       y1="563.40997"
-       x2="1522.14"
-       y2="559.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26742" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.31,540.88 1272,538.52 1278.04,541.36 "
-       id="polygon26744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1536.34,464.41 1544.38,453.7 1544.85,454 "
-       id="polygon26746" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.84,541.88 1271.59,539.54 1277.71,542.41 "
-       id="polygon26748" />
-    <line
-       x1="1419.12"
-       y1="358.78"
-       x2="1418.4"
-       y2="361.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26750" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.04,541.36 1271.75,539.02 1277.84,541.88 "
-       id="polygon26752" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1537.17,465.18 1545.3,454.37 1545.67,454.77 "
-       id="polygon26754" />
-    <polygon
-       style="opacity:1;fill:#00407a"
-       points="1294.45,558.55 1282.43,554 1282.36,553.62 "
-       id="polygon26756" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1536.79,464.78 1544.85,454 1545.3,454.37 "
-       id="polygon26758" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1295.38,556.16 1282.97,551.61 1283.28,551.23 "
-       id="polygon26760" />
-    <line
-       x1="1630.66"
-       y1="582.83002"
-       x2="1629.0601"
-       y2="586.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26762" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.47,558.07 1282.36,553.62 1282.38,553.14 "
-       id="polygon26764" />
-    <line
-       x1="1532.11"
-       y1="523.15002"
-       x2="1534.58"
-       y2="519.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26766" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1295.07,556.54 1282.7,552.08 1282.97,551.61 "
-       id="polygon26768" />
-    <line
-       x1="1523.26"
-       y1="567.62"
-       x2="1522.54"
-       y2="563.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26770" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.59,557.55 1282.38,553.14 1282.5,552.61 "
-       id="polygon26772" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.8,557.02 1282.5,552.61 1282.7,552.08 "
-       id="polygon26774" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1564.79,500.89 1575.26,493.04 1575.57,493.09 "
-       id="polygon26776" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1566.55,503.86 1577.44,495.8 1577.33,496.05 "
-       id="polygon26778" />
-    <polygon
-       style="opacity:1;fill:#007cb3"
-       points="1298.13,546.68 1310.36,553.18 1310.51,553.4 "
-       id="polygon26780" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1310.13,553.1 1297.59,546.69 1297.89,546.6 "
-       id="polygon26782" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1543.54,453.42 1535.03,463.83 1535.42,463.91 "
-       id="polygon26784" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1565.16,501.09 1575.57,493.09 1575.95,493.28 "
-       id="polygon26786" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1546.08,455.52 1537.58,465.93 1537.57,466.21 "
-       id="polygon26788" />
-    <line
-       x1="1640.24"
-       y1="462.63"
-       x2="1639.88"
-       y2="462.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26790" />
-    <line
-       x1="1418.4"
-       y1="361.03"
-       x2="1417.49"
-       y2="363.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26792" />
-    <line
-       x1="1524.29"
-       y1="571.77002"
-       x2="1523.26"
-       y2="567.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26794" />
-    <line
-       x1="1534.58"
-       y1="519.79999"
-       x2="1537.27"
-       y2="516.66998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26796" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1566.66,503.61 1577.43,495.43 1577.44,495.8 "
-       id="polygon26798" />
-    <polygon
-       style="opacity:1;fill:#005981"
-       points="1309.83,553.18 1297.26,546.92 1297.59,546.69 "
-       id="polygon26800" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1543.93,453.5 1535.42,463.91 1535.87,464.11 "
-       id="polygon26802" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1565.55,501.41 1575.95,493.28 1576.34,493.61 "
-       id="polygon26804" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1545.95,455.17 1537.44,465.58 1537.58,465.93 "
-       id="polygon26806" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1566.64,503.25 1577.29,494.99 1577.43,495.43 "
-       id="polygon26808" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1309.5,553.42 1296.93,547.28 1297.26,546.92 "
-       id="polygon26810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1544.38,453.7 1535.87,464.11 1536.34,464.41 "
-       id="polygon26812" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1565.93,501.84 1576.34,493.61 1576.72,494.03 "
-       id="polygon26814" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1545.67,454.77 1537.17,465.18 1537.44,465.58 "
-       id="polygon26816" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1566.5,502.8 1577.05,494.5 1577.29,494.99 "
-       id="polygon26818" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1566.26,502.31 1576.72,494.03 1577.05,494.5 "
-       id="polygon26820" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1544.85,454 1536.34,464.41 1536.79,464.78 "
-       id="polygon26822" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1309.16,553.78 1296.63,547.74 1296.93,547.28 "
-       id="polygon26824" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1545.3,454.37 1536.79,464.78 1537.17,465.18 "
-       id="polygon26826" />
-    <line
-       x1="1525.63"
-       y1="575.84003"
-       x2="1524.29"
-       y2="571.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26828" />
-    <line
-       x1="1589.0699"
-       y1="601.81"
-       x2="1591.48"
-       y2="601.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26830" />
-    <polygon
-       style="opacity:1;fill:#004d94"
-       points="1283.59,550.98 1295.69,555.91 1295.98,555.83 "
-       id="polygon26832" />
-    <line
-       x1="1537.27"
-       y1="516.66998"
-       x2="1540.1801"
-       y2="513.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26834" />
-    <line
-       x1="1629.0601"
-       y1="586.21002"
-       x2="1627.17"
-       y2="589.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26836" />
-    <line
-       x1="1417.49"
-       y1="363.22"
-       x2="1416.39"
-       y2="365.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26838" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1575.26,493.04 1564.47,500.84 1564.79,500.89 "
-       id="polygon26840" />
-    <polygon
-       style="opacity:1;fill:#004280"
-       points="1283.28,551.23 1295.38,556.16 1295.69,555.91 "
-       id="polygon26842" />
-    <polygon
-       style="opacity:1;fill:#0053a0"
-       points="1306.67,564.02 1294.68,559.17 1294.52,558.93 "
-       id="polygon26844" />
-    <polygon
-       style="opacity:1;fill:#00407a"
-       points="1282.43,554 1294.52,558.93 1294.45,558.55 "
-       id="polygon26846" />
-    <line
-       x1="1624.6"
-       y1="450.38"
-       x2="1626.11"
-       y2="449.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26848" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1575.57,493.09 1564.79,500.89 1565.16,501.09 "
-       id="polygon26850" />
-    <polygon
-       style="opacity:1;fill:#006895"
-       points="1291.91,545.64 1278.95,540.27 1279.22,540.19 "
-       id="polygon26852" />
-    <line
-       x1="1527.27"
-       y1="579.79999"
-       x2="1525.63"
-       y2="575.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26854" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.97,551.61 1295.07,556.54 1295.38,556.16 "
-       id="polygon26856" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.36,553.62 1294.45,558.55 1294.47,558.07 "
-       id="polygon26858" />
-    <line
-       x1="1623.0601"
-       y1="450.70001"
-       x2="1624.6"
-       y2="450.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26860" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1290.43,548.71 1277.88,543.48 1277.73,543.25 "
-       id="polygon26862" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.7,552.08 1294.8,557.02 1295.07,556.54 "
-       id="polygon26864" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1577.43,495.43 1566.64,503.25 1566.66,503.61 "
-       id="polygon26866" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.38,553.14 1294.47,558.07 1294.59,557.55 "
-       id="polygon26868" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1575.95,493.28 1565.16,501.09 1565.55,501.41 "
-       id="polygon26870" />
-    <polygon
-       style="opacity:1;fill:#005a81"
-       points="1291.64,545.73 1278.64,540.52 1278.95,540.27 "
-       id="polygon26872" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1282.5,552.61 1294.59,557.55 1294.8,557.02 "
-       id="polygon26874" />
-    <line
-       x1="1621.51"
-       y1="450.94"
-       x2="1623.0601"
-       y2="450.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26876" />
-    <line
-       x1="1416.39"
-       y1="365.34"
-       x2="1415.13"
-       y2="367.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26878" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1526.07,474.46 1534.59,464.31 1534.6,464.04 "
-       id="polygon26880" />
-    <line
-       x1="1540.1801"
-       y1="513.75"
-       x2="1543.26"
-       y2="511.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26882" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1577.29,494.99 1566.5,502.8 1566.64,503.25 "
-       id="polygon26884" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1576.34,493.61 1565.55,501.41 1565.93,501.84 "
-       id="polygon26886" />
-    <polygon
-       style="opacity:1;fill:#00557a"
-       points="1290.38,548.34 1277.73,543.25 1277.68,542.88 "
-       id="polygon26888" />
-    <line
-       x1="1619.9399"
-       y1="451.09"
-       x2="1621.51"
-       y2="450.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26890" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1291.34,545.97 1278.34,540.89 1278.64,540.52 "
-       id="polygon26892" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1577.05,494.5 1566.26,502.31 1566.5,502.8 "
-       id="polygon26894" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1576.72,494.03 1565.93,501.84 1566.26,502.31 "
-       id="polygon26896" />
-    <line
-       x1="1529.2"
-       y1="583.63"
-       x2="1527.27"
-       y2="579.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26898" />
-    <line
-       x1="1618.37"
-       y1="451.16"
-       x2="1619.9399"
-       y2="451.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26900" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.42,547.87 1277.68,542.88 1277.72,542.41 "
-       id="polygon26902" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1291.04,546.35 1278.07,541.36 1278.34,540.89 "
-       id="polygon26904" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.55,547.34 1277.72,542.41 1277.86,541.89 "
-       id="polygon26906" />
-    <line
-       x1="1616.79"
-       y1="451.14001"
-       x2="1618.37"
-       y2="451.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26908" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.76,546.82 1277.86,541.89 1278.07,541.36 "
-       id="polygon26910" />
-    <line
-       x1="1627.17"
-       y1="589.48999"
-       x2="1624.99"
-       y2="592.65002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26912" />
-    <line
-       x1="1615.21"
-       y1="451.03"
-       x2="1616.79"
-       y2="451.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26914" />
-    <line
-       x1="1415.13"
-       y1="367.37"
-       x2="1413.6899"
-       y2="369.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26916" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1526.51,474.26 1534.75,463.87 1535.03,463.83 "
-       id="polygon26918" />
-    <line
-       x1="1613.65"
-       y1="450.84"
-       x2="1615.21"
-       y2="451.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26920" />
-    <line
-       x1="1586.64"
-       y1="602.27002"
-       x2="1589.0699"
-       y2="601.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26922" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1296.93,547.28 1309.16,553.78 1309.5,553.42 "
-       id="polygon26924" />
-    <line
-       x1="1531.41"
-       y1="587.31"
-       x2="1529.2"
-       y2="583.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26926" />
-    <line
-       x1="1612.09"
-       y1="450.56"
-       x2="1613.65"
-       y2="450.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26928" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1529.05,476.64 1537.58,465.93 1537.57,466.21 "
-       id="polygon26930" />
-    <line
-       x1="1639.08"
-       y1="461.5"
-       x2="1638.91"
-       y2="461.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26932" />
-    <line
-       x1="1543.26"
-       y1="511.07001"
-       x2="1546.51"
-       y2="508.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26934" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1412.59,526.7 1411.65,515.05 1411.8,515.4 "
-       id="polygon26936" />
-    <line
-       x1="1610.5601"
-       y1="450.20001"
-       x2="1612.09"
-       y2="450.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26938" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1553.45,508.77 1564.14,501.2 1564.25,500.95 "
-       id="polygon26940" />
-    <line
-       x1="1609.05"
-       y1="449.75"
-       x2="1610.5601"
-       y2="450.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26942" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1529.06,476.37 1537.44,465.58 1537.58,465.93 "
-       id="polygon26944" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1412.45,526.34 1411.34,514.74 1411.65,515.05 "
-       id="polygon26946" />
-    <line
-       x1="1413.6899"
-       y1="369.29999"
-       x2="1412.1"
-       y2="371.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26948" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.53,526.01 1408.38,515.02 1408.75,514.72 "
-       id="polygon26950" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1527.35,474.54 1535.42,463.91 1535.87,464.11 "
-       id="polygon26952" />
-    <line
-       x1="1607.5699"
-       y1="449.22"
-       x2="1609.05"
-       y2="449.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26954" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1528.92,476.02 1537.17,465.18 1537.44,465.58 "
-       id="polygon26956" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1412.13,526.04 1410.9,514.52 1411.34,514.74 "
-       id="polygon26958" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.02,525.8 1408.75,514.72 1409.23,514.5 "
-       id="polygon26960" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1527.82,474.84 1535.87,464.11 1536.34,464.41 "
-       id="polygon26962" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1277.88,543.48 1290.57,548.94 1290.43,548.71 "
-       id="polygon26964" />
-    <line
-       x1="1533.88"
-       y1="590.82001"
-       x2="1531.41"
-       y2="587.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26966" />
-    <polygon
-       style="opacity:1;fill:#006895"
-       points="1278.95,540.27 1291.64,545.73 1291.91,545.64 "
-       id="polygon26968" />
-    <line
-       x1="1606.12"
-       y1="448.62"
-       x2="1607.5699"
-       y2="449.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26970" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1528.64,475.62 1536.79,464.78 1537.17,465.18 "
-       id="polygon26972" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1411.69,525.82 1410.36,514.4 1410.9,514.52 "
-       id="polygon26974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.58,525.69 1409.23,514.5 1409.79,514.39 "
-       id="polygon26976" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1528.27,475.21 1536.34,464.41 1536.79,464.78 "
-       id="polygon26978" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1411.15,525.7 1409.79,514.39 1410.36,514.4 "
-       id="polygon26980" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1475.58,604.91 1484.77,604.3 1484.96,604.82 "
-       id="polygon26982" />
-    <line
-       x1="1604.71"
-       y1="447.94"
-       x2="1606.12"
-       y2="448.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26984" />
-    <line
-       x1="1624.99"
-       y1="592.65002"
-       x2="1622.54"
-       y2="595.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26986" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1553.98,508.71 1564.48,500.84 1564.79,500.89 "
-       id="polygon26988" />
-    <polygon
-       style="opacity:1;fill:#00557a"
-       points="1277.73,543.25 1290.43,548.71 1290.38,548.34 "
-       id="polygon26990" />
-    <polygon
-       style="opacity:1;fill:#005a81"
-       points="1278.64,540.52 1291.34,545.97 1291.64,545.73 "
-       id="polygon26992" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1475.58,606.05 1485.04,605.39 1484.96,605.96 "
-       id="polygon26994" />
-    <line
-       x1="1603.34"
-       y1="447.17999"
-       x2="1604.71"
-       y2="447.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26996" />
-    <line
-       x1="1412.1"
-       y1="371.12"
-       x2="1410.35"
-       y2="372.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line26998" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1555.74,511.68 1566.66,503.61 1566.55,503.86 "
-       id="polygon27000" />
-    <line
-       x1="1546.51"
-       y1="508.64001"
-       x2="1549.91"
-       y2="506.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27002" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.68,542.88 1290.38,548.34 1290.42,547.87 "
-       id="polygon27004" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.34,540.89 1291.04,546.35 1291.34,545.97 "
-       id="polygon27006" />
-    <line
-       x1="1602.02"
-       y1="446.35999"
-       x2="1603.34"
-       y2="447.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27008" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1554.35,508.91 1564.79,500.89 1565.16,501.09 "
-       id="polygon27010" />
-    <line
-       x1="1536.62"
-       y1="594.14001"
-       x2="1533.88"
-       y2="590.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27012" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.72,542.41 1290.42,547.87 1290.55,547.34 "
-       id="polygon27014" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1278.07,541.36 1290.76,546.82 1291.04,546.35 "
-       id="polygon27016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.03,463.83 1526.51,474.26 1526.9,474.34 "
-       id="polygon27018" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1555.85,511.43 1566.64,503.25 1566.66,503.61 "
-       id="polygon27020" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1277.86,541.89 1290.55,547.34 1290.76,546.82 "
-       id="polygon27022" />
-    <line
-       x1="1600.75"
-       y1="445.47"
-       x2="1602.02"
-       y2="446.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27024" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1537.58,465.93 1529.06,476.37 1529.05,476.64 "
-       id="polygon27026" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1554.74,509.24 1565.16,501.09 1565.55,501.41 "
-       id="polygon27028" />
-    <line
-       x1="1410.35"
-       y1="372.82001"
-       x2="1408.47"
-       y2="374.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27030" />
-    <line
-       x1="1584.21"
-       y1="602.45001"
-       x2="1586.64"
-       y2="602.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27032" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1555.83,511.07 1566.5,502.8 1566.64,503.25 "
-       id="polygon27034" />
-    <line
-       x1="1599.55"
-       y1="444.51999"
-       x2="1600.75"
-       y2="445.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27036" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.42,463.91 1526.9,474.34 1527.35,474.54 "
-       id="polygon27038" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1537.44,465.58 1528.92,476.02 1529.06,476.37 "
-       id="polygon27040" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1555.12,509.66 1565.55,501.41 1565.93,501.84 "
-       id="polygon27042" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1555.7,510.62 1566.26,502.31 1566.5,502.8 "
-       id="polygon27044" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1555.45,510.14 1565.93,501.84 1566.26,502.31 "
-       id="polygon27046" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1310.13,553.11 1313.54,554.94 1309.84,553.19 "
-       id="polygon27048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1535.87,464.11 1527.35,474.54 1527.82,474.84 "
-       id="polygon27050" />
-    <line
-       x1="1598.39"
-       y1="443.51001"
-       x2="1599.55"
-       y2="444.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27052" />
-    <polygon
-       style="opacity:1;fill:#004d95"
-       points="1308.15,560.92 1295.7,555.92 1296,555.84 "
-       id="polygon27054" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1537.17,465.18 1528.64,475.62 1528.92,476.02 "
-       id="polygon27056" />
-    <line
-       x1="1638.72"
-       y1="460.35999"
-       x2="1638.7"
-       y2="459.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27058" />
-    <line
-       x1="1622.54"
-       y1="595.65997"
-       x2="1619.84"
-       y2="598.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27060" />
-    <line
-       x1="1539.59"
-       y1="597.25"
-       x2="1536.62"
-       y2="594.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27062" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1536.34,464.41 1527.82,474.84 1528.27,475.21 "
-       id="polygon27064" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1536.79,464.78 1528.27,475.21 1528.64,475.62 "
-       id="polygon27066" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1564.48,500.84 1553.66,508.66 1553.98,508.71 "
-       id="polygon27068" />
-    <line
-       x1="1408.47"
-       y1="374.38"
-       x2="1406.45"
-       y2="375.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27070" />
-    <line
-       x1="1597.3101"
-       y1="442.45001"
-       x2="1598.39"
-       y2="443.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27072" />
-    <polygon
-       style="opacity:1;fill:#004380"
-       points="1307.86,561 1295.39,556.17 1295.7,555.92 "
-       id="polygon27074" />
-    <line
-       x1="1549.91"
-       y1="506.48001"
-       x2="1553.4301"
-       y2="504.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27076" />
-    <line
-       x1="1596.29"
-       y1="441.34"
-       x2="1597.3101"
-       y2="442.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27078" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1306.61,563.64 1294.52,558.93 1294.45,558.55 "
-       id="polygon27080" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1564.79,500.89 1553.98,508.71 1554.35,508.91 "
-       id="polygon27082" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1307.55,561.25 1295.08,556.55 1295.39,556.17 "
-       id="polygon27084" />
-    <line
-       x1="1406.45"
-       y1="375.79999"
-       x2="1404.3199"
-       y2="377.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27086" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.63,563.16 1294.45,558.55 1294.48,558.08 "
-       id="polygon27088" />
-    <line
-       x1="1542.79"
-       y1="600.14001"
-       x2="1539.59"
-       y2="597.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27090" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1307.24,561.63 1294.81,557.02 1295.08,556.55 "
-       id="polygon27092" />
-    <line
-       x1="1595.34"
-       y1="440.17999"
-       x2="1596.29"
-       y2="441.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27094" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1566.64,503.25 1555.83,511.07 1555.85,511.43 "
-       id="polygon27096" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1565.16,501.09 1554.35,508.91 1554.74,509.24 "
-       id="polygon27098" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.76,562.63 1294.48,558.08 1294.6,557.55 "
-       id="polygon27100" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.97,562.11 1294.6,557.55 1294.81,557.02 "
-       id="polygon27102" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1411.34,514.74 1412.13,526.04 1412.45,526.34 "
-       id="polygon27104" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1566.5,502.8 1555.7,510.62 1555.83,511.07 "
-       id="polygon27106" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1565.55,501.41 1554.74,509.24 1555.12,509.66 "
-       id="polygon27108" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1517.53,484.9 1526.07,474.74 1526.08,474.46 "
-       id="polygon27110" />
-    <line
-       x1="1619.84"
-       y1="598.5"
-       x2="1616.88"
-       y2="601.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27112" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.75,514.72 1409.53,526.01 1410.02,525.8 "
-       id="polygon27114" />
-    <line
-       x1="1594.46"
-       y1="438.98001"
-       x2="1595.34"
-       y2="440.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27116" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1566.26,502.31 1555.45,510.14 1555.7,510.62 "
-       id="polygon27118" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1565.93,501.84 1555.12,509.66 1555.45,510.14 "
-       id="polygon27120" />
-    <line
-       x1="1404.3199"
-       y1="377.06"
-       x2="1402.09"
-       y2="378.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27122" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1484.77,604.3 1475.38,604.39 1475.58,604.91 "
-       id="polygon27124" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1410.9,514.52 1411.69,525.82 1412.13,526.04 "
-       id="polygon27126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.23,514.5 1410.02,525.8 1410.58,525.69 "
-       id="polygon27128" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1410.36,514.4 1411.15,525.7 1411.69,525.82 "
-       id="polygon27130" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1409.79,514.39 1410.58,525.69 1411.15,525.7 "
-       id="polygon27132" />
-    <line
-       x1="1638.74"
-       y1="459.5"
-       x2="1638.84"
-       y2="459.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27134" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1485.04,605.39 1475.65,605.49 1475.58,606.05 "
-       id="polygon27136" />
-    <line
-       x1="1581.79"
-       y1="602.34998"
-       x2="1584.21"
-       y2="602.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27138" />
-    <line
-       x1="1593.66"
-       y1="437.75"
-       x2="1594.46"
-       y2="438.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27140" />
-    <line
-       x1="1402.09"
-       y1="378.16"
-       x2="1399.77"
-       y2="379.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27142" />
-    <line
-       x1="1553.4301"
-       y1="504.59"
-       x2="1557.05"
-       y2="502.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27144" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1291.93,545.65 1300.96,549.6 1291.66,545.74 "
-       id="polygon27146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1517.96,484.69 1526.23,474.3 1526.51,474.25 "
-       id="polygon27148" />
-    <line
-       x1="1592.9301"
-       y1="436.48999"
-       x2="1593.66"
-       y2="437.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27150" />
-    <line
-       x1="1399.77"
-       y1="379.09"
-       x2="1397.37"
-       y2="379.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27152" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1290.43,548.7 1299.46,552.66 1290.57,548.93 "
-       id="polygon27154" />
-    <polygon
-       style="opacity:1;fill:#004d95"
-       points="1295.7,555.92 1307.86,561 1308.15,560.92 "
-       id="polygon27156" />
-    <line
-       x1="1616.88"
-       y1="601.15002"
-       x2="1613.71"
-       y2="603.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27158" />
-    <line
-       x1="1549.79"
-       y1="605.16998"
-       x2="1546.2"
-       y2="602.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27160" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1542.61,516.59 1553.34,509.01 1553.45,508.77 "
-       id="polygon27162" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="1291.66,545.74 1300.69,549.69 1291.36,545.98 "
-       id="polygon27164" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1518.35,484.78 1526.51,474.25 1526.9,474.34 "
-       id="polygon27166" />
-    <line
-       x1="1592.29"
-       y1="435.20001"
-       x2="1592.9301"
-       y2="436.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27168" />
-    <polygon
-       style="opacity:1;fill:#00557a"
-       points="1290.38,548.34 1299.42,552.29 1290.43,548.7 "
-       id="polygon27170" />
-    <line
-       x1="1397.37"
-       y1="379.82999"
-       x2="1394.91"
-       y2="380.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27172" />
-    <polygon
-       style="opacity:1;fill:#004380"
-       points="1295.39,556.17 1307.55,561.25 1307.86,561 "
-       id="polygon27174" />
-    <polygon
-       style="opacity:1;fill:#0053a0"
-       points="1306.67,564.01 1313.04,566.73 1306.83,564.25 "
-       id="polygon27176" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1294.52,558.93 1306.67,564.02 1306.61,563.64 "
-       id="polygon27178" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1291.36,545.98 1300.39,549.94 1291.05,546.36 "
-       id="polygon27180" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1520.51,486.81 1528.92,476.02 1529.06,476.37 "
-       id="polygon27182" />
-    <polygon
-       style="opacity:1;fill:#004e96"
-       points="1313.54,554.94 1322.43,559.72 1313.33,555 "
-       id="polygon27184" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1518.8,484.98 1526.9,474.34 1527.35,474.54 "
-       id="polygon27186" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.43,547.87 1299.46,551.82 1290.38,548.34 "
-       id="polygon27188" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1291.05,546.36 1300.09,550.31 1290.78,546.83 "
-       id="polygon27190" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1295.08,556.55 1307.24,561.63 1307.55,561.25 "
-       id="polygon27192" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.45,558.55 1306.61,563.64 1306.63,563.16 "
-       id="polygon27194" />
-    <line
-       x1="1394.91"
-       y1="380.39999"
-       x2="1392.4"
-       y2="380.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27196" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.57,547.35 1299.61,551.3 1290.43,547.87 "
-       id="polygon27198" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1520.37,486.46 1528.64,475.62 1528.92,476.02 "
-       id="polygon27200" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.78,546.83 1299.82,550.79 1290.57,547.35 "
-       id="polygon27202" />
-    <line
-       x1="1638.98"
-       y1="458.60999"
-       x2="1639.1801"
-       y2="458.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27204" />
-    <line
-       x1="1553.54"
-       y1="607.28998"
-       x2="1549.79"
-       y2="605.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27206" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1519.27,485.28 1527.35,474.54 1527.82,474.84 "
-       id="polygon27208" />
-    <line
-       x1="1591.72"
-       y1="433.89001"
-       x2="1592.29"
-       y2="435.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27210" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.81,557.02 1306.97,562.11 1307.24,561.63 "
-       id="polygon27212" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.48,558.08 1306.63,563.16 1306.76,562.63 "
-       id="polygon27214" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1520.1,486.06 1528.27,475.21 1528.64,475.62 "
-       id="polygon27216" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1294.6,557.55 1306.76,562.63 1306.97,562.11 "
-       id="polygon27218" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1519.72,485.65 1527.82,474.84 1528.27,475.21 "
-       id="polygon27220" />
-    <line
-       x1="1613.71"
-       y1="603.59003"
-       x2="1610.3199"
-       y2="605.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27222" />
-    <line
-       x1="1392.4"
-       y1="380.76999"
-       x2="1389.86"
-       y2="380.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27224" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1544.91,519.5 1555.85,511.43 1555.74,511.68 "
-       id="polygon27226" />
-    <line
-       x1="1557.05"
-       y1="502.98999"
-       x2="1560.75"
-       y2="501.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27228" />
-    <line
-       x1="1389.86"
-       y1="380.95999"
-       x2="1387.3"
-       y2="380.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27230" />
-    <line
-       x1="1591.23"
-       y1="432.57999"
-       x2="1591.72"
-       y2="433.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27232" />
-    <polygon
-       style="opacity:1;fill:#006e9f"
-       points="1299.51,552.73 1290.57,548.93 1299.6,552.89 "
-       id="polygon27234" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1543.51,516.73 1553.98,508.71 1554.35,508.91 "
-       id="polygon27236" />
-    <line
-       x1="1579.39"
-       y1="601.96997"
-       x2="1581.79"
-       y2="602.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27238" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1412.22,526.73 1412.45,526.35 1412.59,526.7 "
-       id="polygon27240" />
-    <polygon
-       style="opacity:1;fill:#006896"
-       points="1300.88,549.63 1291.66,545.74 1300.69,549.69 "
-       id="polygon27242" />
-    <line
-       x1="1557.45"
-       y1="609.13"
-       x2="1553.54"
-       y2="607.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27244" />
-    <line
-       x1="1387.3"
-       y1="380.95001"
-       x2="1384.75"
-       y2="380.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27246" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1545.01,519.26 1555.83,511.07 1555.85,511.43 "
-       id="polygon27248" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1526.51,474.25 1517.96,484.69 1518.35,484.78 "
-       id="polygon27250" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1543.91,517.06 1554.35,508.91 1554.74,509.23 "
-       id="polygon27252" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1529.06,476.37 1520.51,486.81 1520.5,487.08 "
-       id="polygon27254" />
-    <line
-       x1="1610.3199"
-       y1="605.81"
-       x2="1606.74"
-       y2="607.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27256" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1545,518.89 1555.7,510.62 1555.83,511.07 "
-       id="polygon27258" />
-    <polygon
-       style="opacity:1;fill:#005a82"
-       points="1300.61,549.76 1291.36,545.98 1300.39,549.94 "
-       id="polygon27260" />
-    <line
-       x1="1382.2"
-       y1="380.35999"
-       x2="1379.6899"
-       y2="379.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27262" />
-    <line
-       x1="1590.8199"
-       y1="431.25"
-       x2="1591.23"
-       y2="432.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27264" />
-    <line
-       x1="1379.6899"
-       y1="379.76999"
-       x2="1377.22"
-       y2="379"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27266" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1544.29,517.48 1554.74,509.23 1555.13,509.66 "
-       id="polygon27268" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1544.86,518.45 1555.45,510.14 1555.7,510.62 "
-       id="polygon27270" />
-    <line
-       x1="1356.9301"
-       y1="359.95001"
-       x2="1356"
-       y2="357.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27272" />
-    <line
-       x1="1358.05"
-       y1="362.29999"
-       x2="1356.9301"
-       y2="359.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27274" />
-    <line
-       x1="1356"
-       y1="357.51999"
-       x2="1355.25"
-       y2="355.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27276" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1291.05,546.36 1300.39,549.94 1300.3,550.05 "
-       id="polygon27278" />
-    <line
-       x1="1359.34"
-       y1="364.57001"
-       x2="1358.05"
-       y2="362.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27280" />
-    <line
-       x1="1377.22"
-       y1="379"
-       x2="1374.8101"
-       y2="378.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27282" />
-    <line
-       x1="1355.25"
-       y1="355.03"
-       x2="1354.7"
-       y2="352.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27284" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1526.9,474.34 1518.35,484.78 1518.8,484.98 "
-       id="polygon27286" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1544.62,517.96 1555.13,509.66 1555.45,510.14 "
-       id="polygon27288" />
-    <line
-       x1="1360.79"
-       y1="366.73001"
-       x2="1359.34"
-       y2="364.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27290" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1299.45,551.96 1290.38,548.34 1299.42,552.29 "
-       id="polygon27292" />
-    <line
-       x1="1362.4"
-       y1="368.78"
-       x2="1360.79"
-       y2="366.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27294" />
-    <line
-       x1="1561.46"
-       y1="610.67999"
-       x2="1557.45"
-       y2="609.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27296" />
-    <line
-       x1="1374.8101"
-       y1="378.04001"
-       x2="1372.48"
-       y2="376.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27298" />
-    <line
-       x1="1354.7"
-       y1="352.48999"
-       x2="1354.33"
-       y2="349.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27300" />
-    <line
-       x1="1364.16"
-       y1="370.70001"
-       x2="1362.4"
-       y2="368.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27302" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1300.3,550.05 1291.05,546.36 1300.09,550.31 "
-       id="polygon27304" />
-    <line
-       x1="1372.48"
-       y1="376.89999"
-       x2="1370.24"
-       y2="375.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27306" />
-    <line
-       x1="1366.0699"
-       y1="372.48001"
-       x2="1364.16"
-       y2="370.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27308" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.38,548.34 1299.46,551.82 1299.45,551.96 "
-       id="polygon27310" />
-    <line
-       x1="1368.09"
-       y1="374.10999"
-       x2="1366.0699"
-       y2="372.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27312" />
-    <line
-       x1="1370.24"
-       y1="375.59"
-       x2="1368.09"
-       y2="374.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27314" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1528.92,476.02 1520.37,486.46 1520.51,486.81 "
-       id="polygon27316" />
-    <line
-       x1="1354.33"
-       y1="349.92001"
-       x2="1354.16"
-       y2="347.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27318" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1290.78,546.83 1300.09,550.31 1300.01,550.45 "
-       id="polygon27320" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1299.56,551.46 1290.43,547.87 1299.46,551.82 "
-       id="polygon27322" />
-    <polygon
-       style="opacity:1;fill:#0053a0"
-       points="1320.74,562.67 1311.96,558.05 1320.88,562.89 "
-       id="polygon27324" />
-    <line
-       x1="1354.16"
-       y1="347.34"
-       x2="1354.2"
-       y2="344.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27326" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1300.01,550.45 1290.78,546.83 1299.82,550.79 "
-       id="polygon27328" />
-    <line
-       x1="1639.4399"
-       y1="457.67999"
-       x2="1639.75"
-       y2="457.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1527.35,474.54 1518.8,484.98 1519.27,485.28 "
-       id="polygon27332" />
-    <polygon
-       style="opacity:1;fill:#004d70"
-       points="1299.76,550.94 1290.57,547.35 1299.61,551.3 "
-       id="polygon27334" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1553.67,508.66 1542.83,516.48 1543.14,516.54 "
-       id="polygon27336" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1528.64,475.62 1520.1,486.06 1520.37,486.46 "
-       id="polygon27338" />
-    <line
-       x1="1354.2"
-       y1="344.75"
-       x2="1354.42"
-       y2="342.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27340" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1527.82,474.84 1519.27,485.28 1519.72,485.65 "
-       id="polygon27342" />
-    <line
-       x1="1606.74"
-       y1="607.78998"
-       x2="1603"
-       y2="609.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27344" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1528.27,475.21 1519.72,485.65 1520.1,486.06 "
-       id="polygon27346" />
-    <line
-       x1="1590.5"
-       y1="429.92999"
-       x2="1590.8199"
-       y2="431.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27348" />
-    <line
-       x1="1354.42"
-       y1="342.17001"
-       x2="1354.84"
-       y2="339.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27350" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1320.7,562.31 1311.85,557.79 1320.74,562.67 "
-       id="polygon27352" />
-    <line
-       x1="1565.59"
-       y1="611.92999"
-       x2="1561.46"
-       y2="610.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27354" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1555.85,511.43 1545.01,519.26 1544.91,519.5 "
-       id="polygon27356" />
-    <line
-       x1="1354.84"
-       y1="339.63"
-       x2="1355.4399"
-       y2="337.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27358" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1553.98,508.71 1543.14,516.54 1543.51,516.73 "
-       id="polygon27360" />
-    <line
-       x1="1560.75"
-       y1="501.67999"
-       x2="1564.5"
-       y2="500.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27362" />
-    <line
-       x1="1355.4399"
-       y1="337.13"
-       x2="1356.24"
-       y2="334.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27364" />
-    <line
-       x1="1603"
-       y1="609.5"
-       x2="1599.11"
-       y2="610.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27366" />
-    <line
-       x1="1569.78"
-       y1="612.88"
-       x2="1565.59"
-       y2="611.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27368" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1555.83,511.07 1545,518.89 1545.01,519.26 "
-       id="polygon27370" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1554.35,508.91 1543.51,516.73 1543.91,517.06 "
-       id="polygon27372" />
-    <line
-       x1="1590.26"
-       y1="428.60001"
-       x2="1590.5"
-       y2="429.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27374" />
-    <polygon
-       style="opacity:1;fill:#004d95"
-       points="1308.16,560.93 1314.53,563.64 1307.87,561.01 "
-       id="polygon27376" />
-    <line
-       x1="1356.24"
-       y1="334.67999"
-       x2="1357.21"
-       y2="332.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27378" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1555.7,510.62 1544.86,518.45 1545,518.89 "
-       id="polygon27380" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1554.74,509.23 1543.91,517.06 1544.29,517.48 "
-       id="polygon27382" />
-    <line
-       x1="1574.02"
-       y1="613.52002"
-       x2="1569.78"
-       y2="612.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27384" />
-    <line
-       x1="1599.11"
-       y1="610.96002"
-       x2="1595.09"
-       y2="612.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27386" />
-    <line
-       x1="1577.05"
-       y1="601.31"
-       x2="1579.39"
-       y2="601.96997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27388" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1555.45,510.14 1544.62,517.96 1544.86,518.45 "
-       id="polygon27390" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1555.13,509.66 1544.29,517.48 1544.62,517.96 "
-       id="polygon27392" />
-    <line
-       x1="1357.21"
-       y1="332.29999"
-       x2="1358.36"
-       y2="330.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27394" />
-    <polygon
-       style="opacity:1;fill:#004380"
-       points="1307.87,561.01 1314.24,563.73 1307.56,561.25 "
-       id="polygon27396" />
-    <line
-       x1="1578.29"
-       y1="613.85999"
-       x2="1574.02"
-       y2="613.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27398" />
-    <line
-       x1="1595.09"
-       y1="612.13"
-       x2="1590.98"
-       y2="613.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27400" />
-    <polygon
-       style="opacity:1;fill:#004382"
-       points="1300.69,549.69 1304.45,551.33 1300.61,549.76 "
-       id="polygon27402" />
-    <line
-       x1="1590.11"
-       y1="427.29001"
-       x2="1590.26"
-       y2="428.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27404" />
-    <line
-       x1="1582.55"
-       y1="613.88"
-       x2="1578.29"
-       y2="613.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27406" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1306.61,563.64 1312.98,566.35 1306.67,564.01 "
-       id="polygon27408" />
-    <line
-       x1="1590.98"
-       y1="613.01001"
-       x2="1586.79"
-       y2="613.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27410" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1303.21,554.3 1299.43,552.4 1299.46,552.66 "
-       id="polygon27412" />
-    <line
-       x1="1586.79"
-       y1="613.59998"
-       x2="1582.55"
-       y2="613.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27414" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1307.56,561.25 1313.93,563.97 1307.25,561.63 "
-       id="polygon27416" />
-    <line
-       x1="1358.36"
-       y1="330.01999"
-       x2="1359.6801"
-       y2="327.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27418" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1300.39,549.94 1304.14,551.58 1300.3,550.05 "
-       id="polygon27420" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.64,563.16 1313.01,565.88 1306.61,563.64 "
-       id="polygon27422" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1307.25,561.63 1313.62,564.35 1306.98,562.11 "
-       id="polygon27424" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.77,562.64 1313.14,565.35 1306.64,563.16 "
-       id="polygon27426" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.98,562.11 1313.35,564.82 1306.77,562.64 "
-       id="polygon27428" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1300.09,550.31 1303.84,551.95 1300.01,550.45 "
-       id="polygon27430" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.57,552.43 1300.01,550.45 1299.82,550.79 "
-       id="polygon27432" />
-    <line
-       x1="1359.6801"
-       y1="327.82999"
-       x2="1361.16"
-       y2="325.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27434" />
-    <line
-       x1="1640.54"
-       y1="456.31"
-       x2="1641.01"
-       y2="455.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27436" />
-    <polygon
-       style="opacity:1;fill:#004c93"
-       points="1303.68,554.27 1303.57,554.61 1303.36,554.54 "
-       id="polygon27438" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.36,552.95 1299.76,550.94 1299.61,551.3 "
-       id="polygon27440" />
-    <line
-       x1="1590.03"
-       y1="425.98999"
-       x2="1590.11"
-       y2="427.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1509.38,495.13 1517.68,484.73 1517.96,484.69 "
-       id="polygon27444" />
-    <polygon
-       style="opacity:1;fill:#004d95"
-       points="1314.39,563.68 1307.87,561.01 1314.24,563.73 "
-       id="polygon27446" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1413.19,537.72 1412.13,526.05 1412.45,526.35 "
-       id="polygon27448" />
-    <line
-       x1="1564.5"
-       y1="500.67001"
-       x2="1568.28"
-       y2="499.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27450" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1466.27,604.93 1475.39,604.39 1475.59,604.91 "
-       id="polygon27452" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1511.91,497.52 1520.51,486.81 1520.5,487.08 "
-       id="polygon27454" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1304.14,551.58 1300.3,550.05 1303.84,551.95 "
-       id="polygon27456" />
-    <polygon
-       style="opacity:1;fill:#004380"
-       points="1307.56,561.25 1314.24,563.73 1314.09,563.84 "
-       id="polygon27458" />
-    <line
-       x1="1361.16"
-       y1="325.75"
-       x2="1362.79"
-       y2="323.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27460" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.22,553.47 1299.45,551.96 1303.17,553.93 "
-       id="polygon27462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1509.76,495.21 1517.96,484.69 1518.35,484.77 "
-       id="polygon27464" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1412.88,537.42 1411.69,525.82 1412.13,526.05 "
-       id="polygon27466" />
-    <polygon
-       style="opacity:1;fill:#004380"
-       points="1314.09,563.84 1307.56,561.25 1313.93,563.97 "
-       id="polygon27468" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1306.67,564.01 1312.98,566.35 1313.01,566.53 "
-       id="polygon27470" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.84,551.95 1300.01,550.45 1303.57,552.43 "
-       id="polygon27472" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.36,552.95 1299.56,551.46 1303.22,553.47 "
-       id="polygon27474" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1412.43,537.2 1411.15,525.7 1411.69,525.82 "
-       id="polygon27476" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.32,537.07 1410.02,525.8 1410.58,525.7 "
-       id="polygon27478" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.57,552.43 1299.76,550.94 1303.36,552.95 "
-       id="polygon27480" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1411.89,537.08 1410.58,525.7 1411.15,525.7 "
-       id="polygon27482" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1511.92,497.25 1520.37,486.46 1520.51,486.81 "
-       id="polygon27484" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1307.25,561.63 1313.93,563.97 1313.79,564.15 "
-       id="polygon27486" />
-    <line
-       x1="1590.03"
-       y1="424.70999"
-       x2="1590.03"
-       y2="425.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27488" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.61,563.64 1313.01,565.88 1312.99,566.11 "
-       id="polygon27490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1510.21,495.41 1518.35,484.77 1518.8,484.98 "
-       id="polygon27492" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.98,562.11 1313.62,564.35 1313.49,564.58 "
-       id="polygon27494" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1313.08,565.61 1306.64,563.16 1313.01,565.88 "
-       id="polygon27496" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1306.64,563.16 1313.14,565.35 1313.08,565.61 "
-       id="polygon27498" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1313.49,564.58 1306.98,562.11 1313.35,564.82 "
-       id="polygon27500" />
-    <line
-       x1="1362.79"
-       y1="323.79999"
-       x2="1364.55"
-       y2="321.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27502" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1511.78,496.89 1520.1,486.06 1520.37,486.46 "
-       id="polygon27504" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1313.25,565.08 1306.77,562.64 1313.14,565.35 "
-       id="polygon27506" />
-    <line
-       x1="1574.78"
-       y1="600.38"
-       x2="1577.05"
-       y2="601.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1532.28,524.34 1542.84,516.48 1543.14,516.53 "
-       id="polygon27510" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1511.51,496.5 1519.72,485.65 1520.1,486.06 "
-       id="polygon27512" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1511.13,496.09 1519.27,485.28 1519.72,485.65 "
-       id="polygon27514" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1534.04,527.31 1545.01,519.26 1544.9,519.5 "
-       id="polygon27516" />
-    <line
-       x1="1641.53"
-       y1="455.44"
-       x2="1642.09"
-       y2="455.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27518" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1532.65,524.54 1543.14,516.53 1543.52,516.73 "
-       id="polygon27520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1517.68,484.73 1509.09,495.17 1509.38,495.13 "
-       id="polygon27522" />
-    <line
-       x1="1590.11"
-       y1="423.45999"
-       x2="1590.03"
-       y2="424.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27524" />
-    <line
-       x1="1364.55"
-       y1="321.98001"
-       x2="1366.45"
-       y2="320.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27526" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1534.14,527.07 1545,518.89 1545.01,519.26 "
-       id="polygon27528" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1533.04,524.86 1543.52,516.73 1543.91,517.05 "
-       id="polygon27530" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1534.13,526.7 1544.86,518.45 1545,518.89 "
-       id="polygon27532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1517.96,484.69 1509.38,495.13 1509.76,495.21 "
-       id="polygon27534" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1533.42,525.29 1543.91,517.05 1544.29,517.48 "
-       id="polygon27536" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1520.51,486.81 1511.92,497.25 1511.91,497.52 "
-       id="polygon27538" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1533.99,526.25 1544.62,517.96 1544.86,518.45 "
-       id="polygon27540" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1533.75,525.77 1544.29,517.48 1544.62,517.96 "
-       id="polygon27542" />
-    <polygon
-       style="opacity:1;fill:#003395"
-       points="1314.53,563.64 1320.37,566.13 1314.39,563.68 "
-       id="polygon27544" />
-    <line
-       x1="1366.45"
-       y1="320.31"
-       x2="1368.46"
-       y2="318.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27546" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1333.06,568.98 1320.74,562.67 1320.7,562.31 "
-       id="polygon27548" />
-    <line
-       x1="1568.28"
-       y1="499.95999"
-       x2="1572.0699"
-       y2="499.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27550" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1518.35,484.77 1509.76,495.21 1510.21,495.41 "
-       id="polygon27552" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1319.04,569.46 1313.12,566.84 1313.2,566.97 "
-       id="polygon27554" />
-    <line
-       x1="1590.27"
-       y1="422.23001"
-       x2="1590.11"
-       y2="423.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27556" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1520.37,486.46 1511.78,496.89 1511.92,497.25 "
-       id="polygon27558" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1542.84,516.48 1531.97,524.29 1532.28,524.34 "
-       id="polygon27560" />
-    <polygon
-       style="opacity:1;fill:#004e96"
-       points="1317.59,556.95 1304.46,551.34 1304.72,551.25 "
-       id="polygon27562" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1333.12,568.54 1320.7,562.31 1320.77,561.86 "
-       id="polygon27564" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1520.1,486.06 1511.51,496.5 1511.78,496.89 "
-       id="polygon27566" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1519.27,485.28 1510.68,495.72 1511.13,496.09 "
-       id="polygon27568" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1519.72,485.65 1511.13,496.09 1511.51,496.5 "
-       id="polygon27570" />
-    <polygon
-       style="opacity:1;fill:#002c80"
-       points="1319.77,566.46 1314.09,563.84 1313.93,563.97 "
-       id="polygon27572" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1317.32,557.04 1304.16,551.59 1304.46,551.34 "
-       id="polygon27574" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1545.01,519.26 1534.14,527.07 1534.04,527.31 "
-       id="polygon27576" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1543.14,516.53 1532.28,524.34 1532.65,524.54 "
-       id="polygon27578" />
-    <line
-       x1="1368.46"
-       y1="318.79001"
-       x2="1370.5699"
-       y2="317.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27580" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1313.93,563.97 1319.77,566.46 1313.79,564.15 "
-       id="polygon27582" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1312.98,566.35 1318.81,568.84 1313.01,566.53 "
-       id="polygon27584" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.81,568.84 1312.99,566.11 1312.98,566.35 "
-       id="polygon27586" />
-    <line
-       x1="1572.59"
-       y1="599.17999"
-       x2="1574.78"
-       y2="600.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27588" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.46,566.84 1313.79,564.15 1313.62,564.35 "
-       id="polygon27590" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1316.04,559.63 1303.22,554.3 1303.18,553.93 "
-       id="polygon27592" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1475.39,604.39 1466.07,604.41 1466.27,604.93 "
-       id="polygon27594" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1317.02,557.29 1303.86,551.96 1304.16,551.59 "
-       id="polygon27596" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.85,568.37 1313.08,565.61 1313.01,565.88 "
-       id="polygon27598" />
-    <line
-       x1="1590.5"
-       y1="421.04999"
-       x2="1590.27"
-       y2="422.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27600" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1545,518.89 1534.13,526.7 1534.14,527.07 "
-       id="polygon27602" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1543.52,516.73 1532.65,524.54 1533.04,524.86 "
-       id="polygon27604" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1313.35,564.82 1319.19,567.32 1313.25,565.08 "
-       id="polygon27606" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1313.14,565.35 1318.98,567.84 1313.08,565.61 "
-       id="polygon27608" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.98,567.84 1313.25,565.08 1313.14,565.35 "
-       id="polygon27610" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.09,559.17 1303.18,553.93 1303.23,553.47 "
-       id="polygon27612" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1412.13,526.05 1412.88,537.42 1413.19,537.72 "
-       id="polygon27614" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.73,557.66 1303.59,552.43 1303.86,551.96 "
-       id="polygon27616" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.23,558.65 1303.23,553.47 1303.37,552.95 "
-       id="polygon27618" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1544.86,518.45 1533.99,526.25 1534.13,526.7 "
-       id="polygon27620" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1543.91,517.05 1533.04,524.86 1533.42,525.29 "
-       id="polygon27622" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.45,558.13 1303.37,552.95 1303.59,552.43 "
-       id="polygon27624" />
-    <line
-       x1="1643.38"
-       y1="454.26999"
-       x2="1644.08"
-       y2="453.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27626" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1411.69,525.82 1412.43,537.2 1412.88,537.42 "
-       id="polygon27628" />
-    <line
-       x1="1370.5699"
-       y1="317.44"
-       x2="1372.78"
-       y2="316.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27630" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1544.62,517.96 1533.75,525.77 1533.99,526.25 "
-       id="polygon27632" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1544.29,517.48 1533.42,525.29 1533.75,525.77 "
-       id="polygon27634" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1411.15,525.7 1411.89,537.08 1412.43,537.2 "
-       id="polygon27636" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1410.58,525.7 1411.32,537.07 1411.89,537.08 "
-       id="polygon27638" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1422.18,591.19 1424.17,588.56 1424.71,588.41 "
-       id="polygon27640" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1318.81,568.84 1313.01,566.53 1318.88,569.22 "
-       id="polygon27642" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.77,566.46 1313.79,564.15 1319.46,566.84 "
-       id="polygon27644" />
-    <line
-       x1="1590.8101"
-       y1="419.89999"
-       x2="1590.5"
-       y2="421.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27646" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1320.88,562.89 1333.24,569.56 1333.1,569.34 "
-       id="polygon27648" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.85,568.37 1312.99,566.11 1318.81,568.84 "
-       id="polygon27650" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.46,566.84 1313.49,564.58 1319.19,567.32 "
-       id="polygon27652" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.98,567.84 1313.08,565.61 1318.85,568.37 "
-       id="polygon27654" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.19,567.32 1313.25,565.08 1318.98,567.84 "
-       id="polygon27656" />
-    <line
-       x1="1372.78"
-       y1="316.25"
-       x2="1375.0601"
-       y2="315.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27658" />
-    <line
-       x1="1572.0699"
-       y1="499.56"
-       x2="1575.83"
-       y2="499.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27660" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1320.7,562.31 1333.06,568.98 1333.12,568.54 "
-       id="polygon27662" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1303.35,554.53 1316.21,560.23 1316.08,560 "
-       id="polygon27664" />
-    <polygon
-       style="opacity:1;fill:#004e96"
-       points="1304.46,551.34 1317.32,557.04 1317.59,556.95 "
-       id="polygon27666" />
-    <line
-       x1="1644.8199"
-       y1="453.62"
-       x2="1645.61"
-       y2="453.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1500.74,505.54 1509.1,495.16 1509.38,495.12 "
-       id="polygon27670" />
-    <line
-       x1="1570.5"
-       y1="597.72998"
-       x2="1572.59"
-       y2="599.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27672" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1320.77,561.86 1333.12,568.54 1333.29,568.04 "
-       id="polygon27674" />
-    <line
-       x1="1591.1801"
-       y1="418.79999"
-       x2="1590.8101"
-       y2="419.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27676" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1320.93,561.36 1333.29,568.04 1333.53,567.53 "
-       id="polygon27678" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1503.28,507.95 1511.92,497.25 1511.91,497.52 "
-       id="polygon27680" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1303.22,554.3 1316.08,560 1316.04,559.63 "
-       id="polygon27682" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1304.16,551.59 1317.02,557.29 1317.32,557.04 "
-       id="polygon27684" />
-    <line
-       x1="1375.0601"
-       y1="315.25"
-       x2="1377.4"
-       y2="314.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27686" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1501.13,505.63 1509.38,495.12 1509.77,495.2 "
-       id="polygon27688" />
-    <line
-       x1="1645.61"
-       y1="453.34"
-       x2="1646.4301"
-       y2="453.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27690" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.18,553.93 1316.04,559.63 1316.09,559.17 "
-       id="polygon27692" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.86,551.96 1316.73,557.66 1317.02,557.29 "
-       id="polygon27694" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1503.29,507.67 1511.78,496.9 1511.92,497.25 "
-       id="polygon27696" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1501.58,505.83 1509.77,495.2 1510.21,495.41 "
-       id="polygon27698" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.23,553.47 1316.09,559.17 1316.23,558.65 "
-       id="polygon27700" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.59,552.43 1316.45,558.13 1316.73,557.66 "
-       id="polygon27702" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1521.38,532.11 1531.98,524.28 1532.29,524.33 "
-       id="polygon27704" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1303.37,552.95 1316.23,558.65 1316.45,558.13 "
-       id="polygon27706" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1503.14,507.32 1511.51,496.5 1511.78,496.9 "
-       id="polygon27708" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1523.14,535.09 1534.14,527.07 1534.04,527.32 "
-       id="polygon27710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1502.05,506.14 1510.21,495.41 1510.68,495.71 "
-       id="polygon27712" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1502.88,506.92 1511.13,496.09 1511.51,496.5 "
-       id="polygon27714" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1502.5,506.51 1510.68,495.71 1511.13,496.09 "
-       id="polygon27716" />
-    <line
-       x1="1591.63"
-       y1="417.76001"
-       x2="1591.1801"
-       y2="418.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27718" />
-    <line
-       x1="1646.4301"
-       y1="453.09"
-       x2="1647.28"
-       y2="452.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27720" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1521.75,532.31 1532.29,524.33 1532.65,524.53 "
-       id="polygon27722" />
-    <line
-       x1="1377.4"
-       y1="314.42999"
-       x2="1379.79"
-       y2="313.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27724" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1523.24,534.85 1534.13,526.7 1534.14,527.07 "
-       id="polygon27726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1509.1,495.16 1500.46,505.58 1500.74,505.54 "
-       id="polygon27728" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1522.14,532.64 1532.65,524.53 1533.05,524.86 "
-       id="polygon27730" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1523.23,534.48 1534,526.25 1534.13,526.7 "
-       id="polygon27732" />
-    <line
-       x1="1575.83"
-       y1="499.45999"
-       x2="1579.55"
-       y2="499.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27734" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1522.52,533.06 1533.05,524.86 1533.43,525.29 "
-       id="polygon27736" />
-    <line
-       x1="1647.28"
-       y1="452.88"
-       x2="1648.16"
-       y2="452.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27738" />
-    <polygon
-       style="opacity:1;fill:#003db1"
-       points="1320.61,566.21 1332.86,571.51 1333.02,571.74 "
-       id="polygon27740" />
-    <polygon
-       style="opacity:1;fill:#003395"
-       points="1332.63,571.43 1320.09,566.22 1320.38,566.13 "
-       id="polygon27742" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1523.09,534.03 1533.75,525.77 1534,526.25 "
-       id="polygon27744" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1522.85,533.54 1533.43,525.29 1533.75,525.77 "
-       id="polygon27746" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1491.62,516.13 1500.31,506.01 1500.32,505.74 "
-       id="polygon27748" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.05,515.92 1500.46,505.57 1500.75,505.53 "
-       id="polygon27750" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1509.38,495.12 1500.74,505.54 1501.13,505.63 "
-       id="polygon27752" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1511.92,497.25 1503.29,507.67 1503.28,507.95 "
-       id="polygon27754" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1331.13,574.51 1319.03,569.45 1318.88,569.21 "
-       id="polygon27756" />
-    <line
-       x1="1379.79"
-       y1="313.79001"
-       x2="1382.21"
-       y2="313.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27758" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="1332.35,571.52 1319.78,566.46 1320.09,566.22 "
-       id="polygon27760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1531.98,524.28 1521.07,532.06 1521.38,532.11 "
-       id="polygon27762" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1509.77,495.2 1501.13,505.63 1501.58,505.83 "
-       id="polygon27764" />
-    <line
-       x1="1648.16"
-       y1="452.70001"
-       x2="1649.0699"
-       y2="452.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27766" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1511.78,496.9 1503.14,507.32 1503.29,507.67 "
-       id="polygon27768" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1331.07,574.14 1318.88,569.21 1318.82,568.84 "
-       id="polygon27770" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1332.04,571.76 1319.47,566.84 1319.78,566.46 "
-       id="polygon27772" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1510.21,495.41 1501.58,505.83 1502.05,506.14 "
-       id="polygon27774" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1511.51,496.5 1502.88,506.92 1503.14,507.32 "
-       id="polygon27776" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1532.29,524.33 1521.38,532.11 1521.75,532.31 "
-       id="polygon27778" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.11,573.67 1318.82,568.84 1318.85,568.37 "
-       id="polygon27780" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1510.68,495.71 1502.05,506.14 1502.5,506.51 "
-       id="polygon27782" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.73,572.14 1319.2,567.32 1319.47,566.84 "
-       id="polygon27784" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1511.13,496.09 1502.5,506.51 1502.88,506.92 "
-       id="polygon27786" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.24,573.14 1318.85,568.37 1318.98,567.84 "
-       id="polygon27788" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.46,572.61 1318.98,567.84 1319.2,567.32 "
-       id="polygon27790" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1424.17,588.56 1421.63,591.34 1422.18,591.19 "
-       id="polygon27792" />
-    <line
-       x1="1649.0699"
-       y1="452.57001"
-       x2="1650"
-       y2="452.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27794" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1534.13,526.7 1523.23,534.48 1523.24,534.85 "
-       id="polygon27796" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1532.65,524.53 1521.75,532.31 1522.14,532.64 "
-       id="polygon27798" />
-    <line
-       x1="1592.7"
-       y1="415.84"
-       x2="1592.13"
-       y2="416.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27800" />
-    <line
-       x1="1382.21"
-       y1="313.34"
-       x2="1384.65"
-       y2="313.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27802" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1534,526.25 1523.09,534.03 1523.23,534.48 "
-       id="polygon27804" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1533.05,524.86 1522.14,532.64 1522.52,533.06 "
-       id="polygon27806" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1533.75,525.77 1522.85,533.54 1523.09,534.03 "
-       id="polygon27808" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1533.43,525.29 1522.52,533.06 1522.85,533.54 "
-       id="polygon27810" />
-    <line
-       x1="1650"
-       y1="452.48001"
-       x2="1650.96"
-       y2="452.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27812" />
-    <polygon
-       style="opacity:1;fill:#004e96"
-       points="1317.59,556.95 1326.35,560.85 1317.33,557.04 "
-       id="polygon27814" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1317.33,557.04 1326.09,560.95 1317.03,557.29 "
-       id="polygon27816" />
-    <line
-       x1="1579.55"
-       y1="499.67999"
-       x2="1583.2"
-       y2="500.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27818" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1316.04,559.63 1324.8,563.54 1316.08,560 "
-       id="polygon27820" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1413.3,538.45 1413.99,549.91 1413.78,550.25 "
-       id="polygon27822" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1414.02,549.54 1413.19,537.73 1413.34,538.08 "
-       id="polygon27824" />
-    <line
-       x1="1681.52"
-       y1="493.85999"
-       x2="1680.53"
-       y2="495.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27826" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1457.04,604.86 1466.08,604.41 1466.28,604.93 "
-       id="polygon27828" />
-    <line
-       x1="1682.37"
-       y1="491.88"
-       x2="1681.52"
-       y2="493.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27830" />
-    <line
-       x1="1680.53"
-       y1="495.76999"
-       x2="1679.42"
-       y2="497.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27832" />
-    <line
-       x1="1384.65"
-       y1="313.09"
-       x2="1387.09"
-       y2="313.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27834" />
-    <line
-       x1="1593.3199"
-       y1="414.97"
-       x2="1592.7"
-       y2="415.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27836" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1319.03,569.45 1331.29,574.75 1331.13,574.51 "
-       id="polygon27838" />
-    <line
-       x1="1683.08"
-       y1="489.85999"
-       x2="1682.37"
-       y2="491.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27840" />
-    <polygon
-       style="opacity:1;fill:#003395"
-       points="1320.09,566.22 1332.35,571.52 1332.63,571.43 "
-       id="polygon27842" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1317.03,557.29 1325.79,561.19 1316.73,557.66 "
-       id="polygon27844" />
-    <line
-       x1="1679.42"
-       y1="497.60999"
-       x2="1678.2"
-       y2="499.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27846" />
-    <line
-       x1="1683.64"
-       y1="487.79001"
-       x2="1683.08"
-       y2="489.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27848" />
-    <line
-       x1="1678.2"
-       y1="499.38"
-       x2="1676.86"
-       y2="501.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27850" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.1,559.17 1324.86,563.08 1316.04,559.63 "
-       id="polygon27852" />
-    <line
-       x1="1684.0601"
-       y1="485.70001"
-       x2="1683.64"
-       y2="487.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27854" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="1413.88,549.19 1412.88,537.43 1413.19,537.73 "
-       id="polygon27856" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.73,557.66 1325.49,561.57 1316.46,558.14 "
-       id="polygon27858" />
-    <line
-       x1="1651.9301"
-       y1="452.42999"
-       x2="1652.91"
-       y2="452.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27860" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.24,558.66 1325,562.56 1316.1,559.17 "
-       id="polygon27862" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1333.16,569.04 1345.49,575.64 1333.2,569.39 "
-       id="polygon27864" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.46,558.14 1325.22,562.04 1316.24,558.66 "
-       id="polygon27866" />
-    <line
-       x1="1684.3199"
-       y1="483.59"
-       x2="1684.0601"
-       y2="485.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27868" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1318.88,569.21 1331.13,574.51 1331.07,574.14 "
-       id="polygon27870" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="1319.78,566.46 1332.04,571.76 1332.35,571.52 "
-       id="polygon27872" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1413.57,548.89 1412.43,537.21 1412.88,537.43 "
-       id="polygon27874" />
-    <line
-       x1="1675.42"
-       y1="502.62"
-       x2="1673.89"
-       y2="504.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27876" />
-    <line
-       x1="1684.4301"
-       y1="481.47"
-       x2="1684.3199"
-       y2="483.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27878" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1333.22,568.59 1345.55,575.2 1333.16,569.04 "
-       id="polygon27880" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1413.12,548.67 1411.89,537.09 1412.43,537.21 "
-       id="polygon27882" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.82,568.84 1331.07,574.14 1331.11,573.67 "
-       id="polygon27884" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.47,566.84 1331.73,572.14 1332.04,571.76 "
-       id="polygon27886" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1412.58,548.55 1411.32,537.08 1411.89,537.09 "
-       id="polygon27888" />
-    <line
-       x1="1684.38"
-       y1="479.35999"
-       x2="1684.4301"
-       y2="481.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27890" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1333.39,568.09 1345.71,574.69 1333.23,568.59 "
-       id="polygon27892" />
-    <line
-       x1="1652.91"
-       y1="452.47"
-       x2="1653.91"
-       y2="452.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27894" />
-    <line
-       x1="1673.89"
-       y1="504.09"
-       x2="1672.29"
-       y2="505.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27896" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1333.63,567.59 1345.96,574.19 1333.39,568.09 "
-       id="polygon27898" />
-    <polygon
-       style="opacity:1;fill:#004e96"
-       points="1317.33,557.04 1326.35,560.85 1326.27,560.88 "
-       id="polygon27900" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.85,568.37 1331.11,573.67 1331.24,573.14 "
-       id="polygon27902" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1319.2,567.32 1331.46,572.61 1331.73,572.14 "
-       id="polygon27904" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1318.98,567.84 1331.24,573.14 1331.46,572.61 "
-       id="polygon27906" />
-    <line
-       x1="1684.1801"
-       y1="477.26001"
-       x2="1684.38"
-       y2="479.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27908" />
-    <polygon
-       style="opacity:1;fill:#00539f"
-       points="1316.21,560.23 1324.84,563.9 1324.88,563.98 "
-       id="polygon27910" />
-    <line
-       x1="1387.09"
-       y1="313.04001"
-       x2="1389.52"
-       y2="313.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.44,516.01 1500.75,505.53 1501.13,505.62 "
-       id="polygon27914" />
-    <line
-       x1="1594"
-       y1="414.17001"
-       x2="1593.3199"
-       y2="414.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27916" />
-    <line
-       x1="1672.29"
-       y1="505.45001"
-       x2="1670.61"
-       y2="506.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27918" />
-    <line
-       x1="1683.8101"
-       y1="475.19"
-       x2="1684.1801"
-       y2="477.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27920" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1317.03,557.29 1326.09,560.95 1325.99,561.02 "
-       id="polygon27922" />
-    <line
-       x1="1653.91"
-       y1="452.56"
-       x2="1654.91"
-       y2="452.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27924" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1324.81,563.66 1316.08,560 1324.84,563.9 "
-       id="polygon27926" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1520.75,532.4 1509.81,540.13 1509.92,539.88 "
-       id="polygon27928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1510.45,539.83 1521.08,532.05 1521.39,532.1 "
-       id="polygon27930" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1494.59,518.07 1503.14,507.32 1503.28,507.68 "
-       id="polygon27932" />
-    <polygon
-       style="opacity:1;fill:#004482"
-       points="1325.99,561.02 1317.03,557.29 1325.79,561.19 "
-       id="polygon27934" />
-    <line
-       x1="1683.29"
-       y1="473.14999"
-       x2="1683.8101"
-       y2="475.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27936" />
-    <polygon
-       style="opacity:1;fill:#003f7a"
-       points="1316.08,560 1324.8,563.54 1324.81,563.66 "
-       id="polygon27938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.89,516.22 1501.13,505.62 1501.58,505.82 "
-       id="polygon27940" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1512.19,542.83 1523.24,534.85 1523.13,535.1 "
-       id="polygon27942" />
-    <line
-       x1="1670.61"
-       y1="506.69"
-       x2="1668.87"
-       y2="507.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27944" />
-    <line
-       x1="1565.02"
-       y1="591.90997"
-       x2="1566.7"
-       y2="594.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27946" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1324.84,563.23 1316.04,559.63 1324.8,563.54 "
-       id="polygon27948" />
-    <line
-       x1="1682.61"
-       y1="471.17001"
-       x2="1683.29"
-       y2="473.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27950" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1494.45,517.71 1502.88,506.92 1503.14,507.32 "
-       id="polygon27952" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1325.7,561.31 1316.73,557.66 1325.49,561.57 "
-       id="polygon27954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1493.36,516.52 1501.58,505.82 1502.05,506.13 "
-       id="polygon27956" />
-    <line
-       x1="1654.91"
-       y1="452.70001"
-       x2="1655.91"
-       y2="452.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27958" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1510.82,540.03 1521.39,532.1 1521.76,532.3 "
-       id="polygon27960" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.46,558.14 1325.49,561.57 1325.4,561.72 "
-       id="polygon27962" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1324.95,562.73 1316.1,559.17 1324.86,563.08 "
-       id="polygon27964" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1494.18,517.31 1502.5,506.51 1502.88,506.92 "
-       id="polygon27966" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1493.8,516.9 1502.05,506.13 1502.5,506.51 "
-       id="polygon27968" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1325.4,561.72 1316.46,558.14 1325.22,562.04 "
-       id="polygon27970" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.1,559.17 1325,562.56 1324.95,562.73 "
-       id="polygon27972" />
-    <line
-       x1="1681.79"
-       y1="469.23999"
-       x2="1682.61"
-       y2="471.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27974" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1512.3,542.58 1523.23,534.48 1523.24,534.85 "
-       id="polygon27976" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1316.24,558.66 1325.22,562.04 1325.15,562.21 "
-       id="polygon27978" />
-    <polygon
-       style="opacity:1;fill:#003a70"
-       points="1325.15,562.21 1316.24,558.66 1325,562.56 "
-       id="polygon27980" />
-    <line
-       x1="1668.87"
-       y1="507.79999"
-       x2="1667.09"
-       y2="508.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27982" />
-    <line
-       x1="1680.8101"
-       y1="467.38"
-       x2="1681.79"
-       y2="469.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27984" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1511.21,540.36 1521.76,532.3 1522.15,532.63 "
-       id="polygon27986" />
-    <line
-       x1="1655.91"
-       y1="452.88"
-       x2="1658.08"
-       y2="453.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27988" />
-    <line
-       x1="1389.52"
-       y1="313.17001"
-       x2="1391.92"
-       y2="313.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27990" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1512.29,542.21 1523.09,534.03 1523.23,534.48 "
-       id="polygon27992" />
-    <line
-       x1="1594.73"
-       y1="413.44"
-       x2="1594"
-       y2="414.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27994" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="1345.53,576 1333.34,569.62 1345.66,576.22 "
-       id="polygon27996" />
-    <line
-       x1="1679.7"
-       y1="465.60001"
-       x2="1680.8101"
-       y2="467.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line27998" />
-    <polygon
-       style="opacity:1;fill:#003395"
-       points="1332.29,571.84 1332.35,571.52 1332.63,571.43 "
-       id="polygon28000" />
-    <line
-       x1="1583.2"
-       y1="500.19"
-       x2="1586.75"
-       y2="501"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28002" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1511.59,540.79 1522.15,532.63 1522.53,533.06 "
-       id="polygon28004" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1512.15,541.77 1522.85,533.54 1523.09,534.03 "
-       id="polygon28006" />
-    <line
-       x1="1658.08"
-       y1="453.04999"
-       x2="1660.24"
-       y2="453.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28008" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1511.91,541.27 1522.53,533.06 1522.85,533.54 "
-       id="polygon28010" />
-    <line
-       x1="1678.4399"
-       y1="463.91"
-       x2="1679.7"
-       y2="465.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28012" />
-    <line
-       x1="1667.09"
-       y1="508.79001"
-       x2="1665.27"
-       y2="509.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28014" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1483.3,526.26 1491.78,515.95 1492.06,515.91 "
-       id="polygon28016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1500.75,505.53 1492.05,515.92 1492.44,516.01 "
-       id="polygon28018" />
-    <line
-       x1="1660.24"
-       y1="453.35999"
-       x2="1662.38"
-       y2="453.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28020" />
-    <line
-       x1="1677.0601"
-       y1="462.31"
-       x2="1678.4399"
-       y2="463.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28022" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1421.43,591.92 1421.17,591.65 1421.63,591.34 "
-       id="polygon28024" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1503.28,507.68 1494.59,518.07 1494.59,518.34 "
-       id="polygon28026" />
-    <line
-       x1="1675.55"
-       y1="460.82001"
-       x2="1677.0601"
-       y2="462.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28028" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1521.08,532.05 1510.14,539.78 1510.45,539.83 "
-       id="polygon28030" />
-    <line
-       x1="1662.38"
-       y1="453.82001"
-       x2="1664.47"
-       y2="454.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28032" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1466.08,604.41 1456.84,604.33 1457.04,604.86 "
-       id="polygon28034" />
-    <line
-       x1="1673.9399"
-       y1="459.44"
-       x2="1675.55"
-       y2="460.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28036" />
-    <line
-       x1="1664.47"
-       y1="454.41"
-       x2="1666.51"
-       y2="455.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28038" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.55,575.2 1333.16,569.04 1345.49,575.64 "
-       id="polygon28040" />
-    <line
-       x1="1672.21"
-       y1="458.17999"
-       x2="1673.9399"
-       y2="459.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28042" />
-    <line
-       x1="1666.51"
-       y1="455.14999"
-       x2="1668.49"
-       y2="456.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1501.13,505.62 1492.44,516.01 1492.89,516.22 "
-       id="polygon28046" />
-    <line
-       x1="1670.39"
-       y1="457.04001"
-       x2="1672.21"
-       y2="458.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28048" />
-    <line
-       x1="1665.27"
-       y1="509.63"
-       x2="1663.4301"
-       y2="510.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28050" />
-    <line
-       x1="1668.49"
-       y1="456.03"
-       x2="1670.39"
-       y2="457.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28052" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1503.14,507.32 1494.45,517.71 1494.59,518.07 "
-       id="polygon28054" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.71,574.69 1333.23,568.59 1345.55,575.2 "
-       id="polygon28056" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1346.26,573.73 1333.63,567.58 1345.96,574.19 "
-       id="polygon28058" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1509.82,540.13 1498.83,547.79 1498.94,547.55 "
-       id="polygon28060" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1499.47,547.49 1510.14,539.77 1510.46,539.82 "
-       id="polygon28062" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1521.39,532.1 1510.45,539.83 1510.82,540.03 "
-       id="polygon28064" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1523.24,534.85 1512.3,542.58 1512.19,542.83 "
-       id="polygon28066" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.96,574.19 1333.39,568.09 1345.71,574.69 "
-       id="polygon28068" />
-    <polygon
-       style="opacity:1;fill:#003496"
-       points="1330.26,562.8 1326.27,560.88 1326.09,560.95 "
-       id="polygon28070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1501.58,505.82 1492.89,516.22 1493.36,516.52 "
-       id="polygon28072" />
-    <line
-       x1="1391.92"
-       y1="313.48999"
-       x2="1394.27"
-       y2="314.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28074" />
-    <line
-       x1="1563.5"
-       y1="589.52002"
-       x2="1565.02"
-       y2="591.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28076" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1502.88,506.92 1494.18,517.31 1494.45,517.71 "
-       id="polygon28078" />
-    <line
-       x1="1595.5"
-       y1="412.79001"
-       x2="1594.73"
-       y2="413.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28080" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="1412.88,537.43 1413.57,548.89 1413.88,549.19 "
-       id="polygon28082" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1502.05,506.13 1493.36,516.52 1493.8,516.9 "
-       id="polygon28084" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1502.5,506.51 1493.8,516.9 1494.18,517.31 "
-       id="polygon28086" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1521.76,532.3 1510.82,540.03 1511.21,540.36 "
-       id="polygon28088" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1523.23,534.48 1512.29,542.21 1512.3,542.58 "
-       id="polygon28090" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1329.96,563.05 1325.99,561.02 1325.79,561.19 "
-       id="polygon28092" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1412.43,537.21 1413.12,548.67 1413.57,548.89 "
-       id="polygon28094" />
-    <line
-       x1="1663.4301"
-       y1="510.35001"
-       x2="1661.59"
-       y2="510.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28096" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1411.89,537.09 1412.58,548.55 1413.12,548.67 "
-       id="polygon28098" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1522.15,532.63 1511.21,540.36 1511.59,540.79 "
-       id="polygon28100" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1523.09,534.03 1512.15,541.77 1512.29,542.21 "
-       id="polygon28102" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1325.49,561.57 1329.66,563.43 1325.4,561.72 "
-       id="polygon28104" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1522.53,533.06 1511.59,540.79 1511.91,541.27 "
-       id="polygon28106" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1522.85,533.54 1511.91,541.27 1512.15,541.77 "
-       id="polygon28108" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.39,563.9 1325.4,561.72 1325.22,562.04 "
-       id="polygon28110" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.17,564.42 1325.15,562.21 1325,562.56 "
-       id="polygon28112" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1330.26,562.8 1325.99,561.02 1329.96,563.05 "
-       id="polygon28114" />
-    <line
-       x1="1661.59"
-       y1="510.92001"
-       x2="1659.74"
-       y2="511.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28116" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1328.97,565.4 1324.81,563.66 1329.01,565.77 "
-       id="polygon28118" />
-    <line
-       x1="1394.27"
-       y1="314.01001"
-       x2="1396.5699"
-       y2="314.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28120" />
-    <polygon
-       style="opacity:1;fill:#003395"
-       points="1332.64,571.43 1344.91,576.77 1332.36,571.52 "
-       id="polygon28122" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.96,563.05 1325.7,561.31 1329.66,563.43 "
-       id="polygon28124" />
-    <line
-       x1="1596.3"
-       y1="412.20999"
-       x2="1595.5"
-       y2="412.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28126" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.03,564.94 1324.84,563.23 1328.97,565.4 "
-       id="polygon28128" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.66,563.43 1325.4,561.72 1329.39,563.9 "
-       id="polygon28130" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1331.13,574.51 1343.41,579.86 1331.28,574.75 "
-       id="polygon28132" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.17,564.42 1324.95,562.73 1329.03,564.94 "
-       id="polygon28134" />
-    <line
-       x1="1586.75"
-       y1="501"
-       x2="1590.2"
-       y2="502.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28136" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.39,563.9 1325.15,562.21 1329.17,564.42 "
-       id="polygon28138" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="1332.36,571.52 1344.63,576.86 1332.04,571.76 "
-       id="polygon28140" />
-    <line
-       x1="1659.74"
-       y1="511.35001"
-       x2="1657.91"
-       y2="511.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28142" />
-    <line
-       x1="1562.16"
-       y1="586.94"
-       x2="1563.5"
-       y2="589.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28144" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1331.07,574.14 1343.35,579.48 1331.13,574.51 "
-       id="polygon28146" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1332.04,571.76 1344.32,577.1 1331.73,572.14 "
-       id="polygon28148" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.11,573.67 1343.39,579.01 1331.07,574.14 "
-       id="polygon28150" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.73,572.14 1344.02,577.48 1331.46,572.62 "
-       id="polygon28152" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.25,573.14 1343.52,578.48 1331.11,573.67 "
-       id="polygon28154" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1331.46,572.62 1343.74,577.96 1331.25,573.14 "
-       id="polygon28156" />
-    <line
-       x1="1396.5699"
-       y1="314.70999"
-       x2="1398.79"
-       y2="315.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28158" />
-    <line
-       x1="1657.91"
-       y1="511.64001"
-       x2="1656.1"
-       y2="511.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28160" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1485.82,528.7 1494.59,518.07 1494.58,518.35 "
-       id="polygon28162" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1483.68,526.35 1492.06,515.91 1492.45,516 "
-       id="polygon28164" />
-    <line
-       x1="1598.79"
-       y1="411.04001"
-       x2="1596.3"
-       y2="412.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28166" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1485.83,528.43 1494.45,517.71 1494.59,518.07 "
-       id="polygon28168" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1484.13,526.56 1492.45,516 1492.89,516.21 "
-       id="polygon28170" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1499.84,547.7 1510.46,539.82 1510.82,540.03 "
-       id="polygon28172" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1418.32,594.77 1420.66,592.63 1420.84,592.09 "
-       id="polygon28174" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1485.69,528.07 1494.18,517.31 1494.45,517.71 "
-       id="polygon28176" />
-    <line
-       x1="1656.1"
-       y1="511.79001"
-       x2="1654.34"
-       y2="511.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28178" />
-    <line
-       x1="1561.01"
-       y1="584.17999"
-       x2="1562.16"
-       y2="586.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1484.6,526.87 1492.89,516.21 1493.36,516.52 "
-       id="polygon28182" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1501.31,550.26 1512.28,542.22 1512.29,542.59 "
-       id="polygon28184" />
-    <polygon
-       style="opacity:1;fill:#003496"
-       points="1343.5,568.5 1330.26,562.8 1330.52,562.71 "
-       id="polygon28186" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1485.42,527.66 1493.8,516.9 1494.18,517.31 "
-       id="polygon28188" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1485.05,527.25 1493.36,516.52 1493.8,516.9 "
-       id="polygon28190" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1500.23,548.03 1510.82,540.03 1511.21,540.36 "
-       id="polygon28192" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1343.41,579.86 1331.28,574.75 1343.56,580.09 "
-       id="polygon28194" />
-    <line
-       x1="1398.79"
-       y1="315.59"
-       x2="1400.92"
-       y2="316.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28196" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1501.3,549.89 1512.15,541.77 1512.28,542.22 "
-       id="polygon28198" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="1341.98,571.55 1329.14,565.99 1329.01,565.77 "
-       id="polygon28200" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1500.6,548.46 1511.21,540.36 1511.59,540.79 "
-       id="polygon28202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1491.78,515.95 1483.02,526.3 1483.3,526.26 "
-       id="polygon28204" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1343.23,568.59 1329.96,563.05 1330.26,562.8 "
-       id="polygon28206" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1346.59,573.36 1356.06,578.34 1346.26,573.73 "
-       id="polygon28208" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1501.16,549.44 1511.91,541.27 1512.15,541.77 "
-       id="polygon28210" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1500.93,548.94 1511.59,540.79 1511.91,541.27 "
-       id="polygon28212" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.55,575.2 1355.03,580.18 1345.49,575.65 "
-       id="polygon28214" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1343.35,579.48 1331.13,574.51 1343.41,579.86 "
-       id="polygon28216" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="1344.63,576.86 1332.04,571.76 1344.32,577.1 "
-       id="polygon28218" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1341.95,571.19 1329.01,565.77 1328.97,565.4 "
-       id="polygon28220" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1346.26,573.73 1355.73,578.7 1345.96,574.18 "
-       id="polygon28222" />
-    <line
-       x1="1590.2"
-       y1="502.10001"
-       x2="1593.5"
-       y2="503.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28224" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.71,574.69 1355.19,579.67 1345.55,575.2 "
-       id="polygon28226" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.96,574.18 1355.43,579.16 1345.71,574.69 "
-       id="polygon28228" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.94,568.84 1329.66,563.43 1329.96,563.05 "
-       id="polygon28230" />
-    <line
-       x1="1654.34"
-       y1="511.79001"
-       x2="1652.62"
-       y2="511.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28232" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.47,536.55 1483.03,526.29 1483.31,526.25 "
-       id="polygon28234" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.06,515.91 1483.3,526.26 1483.68,526.35 "
-       id="polygon28236" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1343.39,579.01 1331.07,574.14 1343.35,579.48 "
-       id="polygon28238" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1344.32,577.1 1331.73,572.14 1344.02,577.48 "
-       id="polygon28240" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342,570.73 1328.97,565.4 1329.03,564.94 "
-       id="polygon28242" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.64,569.21 1329.39,563.9 1329.66,563.43 "
-       id="polygon28244" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.15,570.21 1329.03,564.94 1329.18,564.42 "
-       id="polygon28246" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1343.52,578.49 1331.11,573.67 1343.39,579.01 "
-       id="polygon28248" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1344.01,577.48 1331.46,572.62 1343.74,577.96 "
-       id="polygon28250" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.37,569.69 1329.18,564.42 1329.39,563.9 "
-       id="polygon28252" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1343.74,577.96 1331.25,573.14 1343.52,578.48 "
-       id="polygon28254" />
-    <line
-       x1="1601.35"
-       y1="410.10999"
-       x2="1598.79"
-       y2="411.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28256" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.85,536.64 1483.31,526.25 1483.69,526.34 "
-       id="polygon28258" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.45,516 1483.68,526.35 1484.13,526.56 "
-       id="polygon28260" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1499.17,547.43 1499.48,547.49 1492.6,552.12 "
-       id="polygon28262" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1510.46,539.82 1499.47,547.49 1499.84,547.7 "
-       id="polygon28264" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1512.29,542.59 1501.31,550.26 1501.2,550.5 "
-       id="polygon28266" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1446.98,603.45 1455.68,603.52 1456.13,603.63 "
-       id="polygon28268" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1494.45,517.71 1485.69,528.07 1485.83,528.43 "
-       id="polygon28270" />
-    <line
-       x1="1560.0699"
-       y1="581.25"
-       x2="1561.01"
-       y2="584.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28272" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.89,516.21 1484.13,526.56 1484.6,526.87 "
-       id="polygon28274" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1494.18,517.31 1485.42,527.66 1485.69,528.07 "
-       id="polygon28276" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1488.81,555.28 1499.48,547.49 1499.85,547.69 "
-       id="polygon28278" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1510.82,540.03 1499.84,547.7 1500.23,548.03 "
-       id="polygon28280" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1512.28,542.22 1501.3,549.89 1501.31,550.26 "
-       id="polygon28282" />
-    <line
-       x1="1652.62"
-       y1="511.64999"
-       x2="1650.97"
-       y2="511.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28284" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1493.36,516.52 1484.6,526.87 1485.05,527.25 "
-       id="polygon28286" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1493.8,516.9 1485.05,527.25 1485.42,527.66 "
-       id="polygon28288" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1354.98,580.71 1345.54,576 1355.01,580.98 "
-       id="polygon28290" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1511.21,540.36 1500.23,548.03 1500.6,548.46 "
-       id="polygon28292" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1512.15,541.77 1501.16,549.44 1501.3,549.89 "
-       id="polygon28294" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1511.59,540.79 1500.6,548.46 1500.93,548.94 "
-       id="polygon28296" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1511.91,541.27 1500.93,548.94 1501.16,549.44 "
-       id="polygon28298" />
-    <polygon
-       style="opacity:1;fill:#002c81"
-       points="1356.31,578.16 1346.59,573.36 1356.06,578.34 "
-       id="polygon28300" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.49,575.65 1355.03,580.18 1355.02,580.29 "
-       id="polygon28302" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1355.98,578.43 1346.26,573.73 1355.73,578.7 "
-       id="polygon28304" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="1329.14,565.99 1342.11,571.78 1341.98,571.55 "
-       id="polygon28306" />
-    <polygon
-       style="opacity:1;fill:#003496"
-       points="1330.26,562.8 1343.23,568.59 1343.5,568.5 "
-       id="polygon28308" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1413.99,549.91 1414.62,561.46 1414.41,561.8 "
-       id="polygon28310" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1414.65,561.1 1413.88,549.2 1414.02,549.55 "
-       id="polygon28312" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1355.15,579.79 1345.55,575.2 1355.03,580.18 "
-       id="polygon28314" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1345.55,575.2 1355.19,579.67 1355.15,579.79 "
-       id="polygon28316" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1355.66,578.82 1345.96,574.18 1355.43,579.16 "
-       id="polygon28318" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1355.38,579.29 1345.71,574.69 1355.19,579.67 "
-       id="polygon28320" />
-    <line
-       x1="1650.97"
-       y1="511.38"
-       x2="1649.39"
-       y2="510.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28322" />
-    <line
-       x1="1402.95"
-       y1="317.85999"
-       x2="1404.88"
-       y2="319.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28324" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1329.01,565.77 1341.98,571.55 1341.95,571.19 "
-       id="polygon28326" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1329.96,563.05 1342.94,568.84 1343.23,568.59 "
-       id="polygon28328" />
-    <line
-       x1="1559.33"
-       y1="578.19"
-       x2="1560.0699"
-       y2="581.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28330" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1414.2,560.45 1413.12,548.68 1413.57,548.9 "
-       id="polygon28332" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1328.97,565.4 1341.95,571.19 1342,570.73 "
-       id="polygon28334" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.66,563.43 1342.64,569.21 1342.94,568.84 "
-       id="polygon28336" />
-    <line
-       x1="1603.98"
-       y1="409.41"
-       x2="1601.35"
-       y2="410.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28338" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.03,564.94 1342,570.73 1342.15,570.21 "
-       id="polygon28340" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.39,563.9 1342.37,569.69 1342.64,569.21 "
-       id="polygon28342" />
-    <line
-       x1="1593.5"
-       y1="503.48001"
-       x2="1596.64"
-       y2="505.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28344" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1329.18,564.42 1342.15,570.21 1342.37,569.69 "
-       id="polygon28346" />
-    <line
-       x1="1649.39"
-       y1="510.97"
-       x2="1647.89"
-       y2="510.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28348" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1421.17,591.65 1418.66,594.33 1419.12,594.02 "
-       id="polygon28350" />
-    <polygon
-       style="opacity:1;fill:#003292"
-       points="1343.38,568.83 1343.5,568.5 1343.7,568.57 "
-       id="polygon28352" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1476.98,539 1485.82,528.43 1485.82,528.71 "
-       id="polygon28354" />
-    <line
-       x1="1558.8101"
-       y1="574.98999"
-       x2="1559.33"
-       y2="578.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28356" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1455.68,603.52 1446.53,603.35 1446.98,603.45 "
-       id="polygon28358" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1466.96,570.48 1477.74,562.76 1478.13,563.09 "
-       id="polygon28360" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1477.72,562.77 1488.45,555.07 1488.82,555.27 "
-       id="polygon28362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1488.44,555.08 1499.48,547.49 1492.6,552.12 "
-       id="polygon28364" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1422.18,591.19 1419.67,593.87 1420.24,593.89 "
-       id="polygon28366" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1359.08,579.92 1356.31,578.16 1356.06,578.34 "
-       id="polygon28368" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1456.13,603.63 1446.98,603.45 1447.38,603.73 "
-       id="polygon28370" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1476.99,538.73 1485.69,528.07 1485.82,528.43 "
-       id="polygon28372" />
-    <polygon
-       style="opacity:1;fill:#001a96"
-       points="1359.69,579.59 1356.61,578.03 1359.4,579.68 "
-       id="polygon28374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1475.3,536.85 1483.69,526.34 1484.14,526.55 "
-       id="polygon28376" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1357.98,582.21 1354.98,580.71 1358.02,582.57 "
-       id="polygon28378" />
-    <polygon
-       style="opacity:1;fill:#001eb1"
-       points="1345.16,576.86 1357.5,582.22 1357.65,582.46 "
-       id="polygon28380" />
-    <polygon
-       style="opacity:1;fill:#001995"
-       points="1357.27,582.14 1344.65,576.87 1344.94,576.78 "
-       id="polygon28382" />
-    <line
-       x1="1647.89"
-       y1="510.42999"
-       x2="1646.49"
-       y2="509.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28384" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.75,580.29 1355.98,578.43 1355.73,578.7 "
-       id="polygon28386" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1490.27,557.86 1501.29,549.89 1501.3,550.26 "
-       id="polygon28388" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.03,580.18 1358.05,581.76 1355.02,580.29 "
-       id="polygon28390" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1476.85,538.37 1485.42,527.66 1485.69,528.07 "
-       id="polygon28392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1475.77,537.16 1484.14,526.55 1484.61,526.87 "
-       id="polygon28394" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.45,580.75 1355.66,578.82 1355.43,579.16 "
-       id="polygon28396" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.21,581.26 1355.38,579.29 1355.19,579.67 "
-       id="polygon28398" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1359.4,579.68 1356.31,578.16 1359.08,579.92 "
-       id="polygon28400" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1489.2,555.61 1499.85,547.69 1500.23,548.02 "
-       id="polygon28402" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1476.58,537.96 1485.05,527.25 1485.42,527.66 "
-       id="polygon28404" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1476.21,537.55 1484.61,526.87 1485.05,527.25 "
-       id="polygon28406" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1356.99,582.23 1344.34,577.11 1344.65,576.87 "
-       id="polygon28408" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1490.25,557.48 1501.16,549.43 1501.29,549.89 "
-       id="polygon28410" />
-    <line
-       x1="1606.66"
-       y1="408.97"
-       x2="1603.98"
-       y2="409.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28412" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1489.57,556.04 1500.23,548.02 1500.61,548.45 "
-       id="polygon28414" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1490.13,557.03 1500.93,548.94 1501.16,549.43 "
-       id="polygon28416" />
-    <line
-       x1="1406.66"
-       y1="320.76999"
-       x2="1408.3199"
-       y2="322.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28418" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1355.71,584.86 1343.43,579.87 1343.38,579.49 "
-       id="polygon28420" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.05,581.76 1355.02,580.29 1357.98,582.21 "
-       id="polygon28422" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1489.89,556.53 1500.61,548.45 1500.93,548.94 "
-       id="polygon28424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1483.03,526.29 1474.19,536.59 1474.47,536.55 "
-       id="polygon28426" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1356.68,582.48 1344.04,577.49 1344.34,577.11 "
-       id="polygon28428" />
-    <line
-       x1="1558.52"
-       y1="571.70001"
-       x2="1558.8101"
-       y2="574.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28430" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.75,580.29 1355.66,578.82 1358.45,580.75 "
-       id="polygon28432" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.21,581.26 1355.15,579.79 1358.05,581.76 "
-       id="polygon28434" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.45,580.75 1355.38,579.29 1358.21,581.26 "
-       id="polygon28436" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.75,584.39 1343.38,579.49 1343.41,579.02 "
-       id="polygon28438" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1356.37,582.86 1343.76,577.97 1344.04,577.49 "
-       id="polygon28440" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1499.17,547.43 1488.13,555.02 1488.44,555.08 "
-       id="polygon28442" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.88,583.86 1343.41,579.02 1343.55,578.5 "
-       id="polygon28444" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1356.1,583.34 1343.55,578.5 1343.76,577.97 "
-       id="polygon28446" />
-    <line
-       x1="1646.49"
-       y1="509.76999"
-       x2="1645.2"
-       y2="509"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28448" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1483.31,526.25 1474.47,536.55 1474.85,536.64 "
-       id="polygon28450" />
-    <polygon
-       style="opacity:1;fill:#003396"
-       points="1343.49,568.5 1351.4,572 1343.23,568.59 "
-       id="polygon28452" />
-    <line
-       x1="1596.64"
-       y1="505.14001"
-       x2="1599.59"
-       y2="507.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28454" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1485.82,528.43 1476.99,538.73 1476.98,539 "
-       id="polygon28456" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1413.12,548.68 1413.75,560.22 1414.2,560.45 "
-       id="polygon28458" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1499.48,547.49 1488.44,555.08 1488.81,555.28 "
-       id="polygon28460" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1501.3,550.26 1490.27,557.86 1490.15,558.11 "
-       id="polygon28462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1483.69,526.34 1474.85,536.64 1475.3,536.85 "
-       id="polygon28464" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1343.23,568.59 1351.14,572.09 1342.93,568.83 "
-       id="polygon28466" />
-    <line
-       x1="1645.4"
-       y1="530.16998"
-       x2="1642.7"
-       y2="527.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28468" />
-    <line
-       x1="1642.7"
-       y1="527.57001"
-       x2="1639.8199"
-       y2="525.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28470" />
-    <line
-       x1="1647.9301"
-       y1="532.96002"
-       x2="1645.4"
-       y2="530.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28472" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1485.69,528.07 1476.85,538.37 1476.99,538.73 "
-       id="polygon28474" />
-    <line
-       x1="1639.8199"
-       y1="525.17999"
-       x2="1636.8"
-       y2="523.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28476" />
-    <line
-       x1="1650.27"
-       y1="535.92999"
-       x2="1647.9301"
-       y2="532.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28478" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1341.95,571.19 1349.86,574.7 1341.98,571.55 "
-       id="polygon28480" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1499.85,547.69 1488.81,555.28 1489.2,555.61 "
-       id="polygon28482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1484.14,526.55 1475.3,536.85 1475.77,537.16 "
-       id="polygon28484" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1501.29,549.89 1490.25,557.48 1490.27,557.86 "
-       id="polygon28486" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.93,568.83 1350.84,572.34 1342.63,569.21 "
-       id="polygon28488" />
-    <line
-       x1="1558.46"
-       y1="568.31"
-       x2="1558.52"
-       y2="571.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28490" />
-    <line
-       x1="1408.3199"
-       y1="322.44"
-       x2="1409.8199"
-       y2="324.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28492" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1485.42,527.66 1476.58,537.96 1476.85,538.37 "
-       id="polygon28494" />
-    <line
-       x1="1636.8"
-       y1="523.02002"
-       x2="1633.65"
-       y2="521.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28496" />
-    <line
-       x1="1652.4"
-       y1="539.06"
-       x2="1650.27"
-       y2="535.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28498" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1484.61,526.87 1475.77,537.16 1476.21,537.55 "
-       id="polygon28500" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1485.05,527.25 1476.21,537.55 1476.58,537.96 "
-       id="polygon28502" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342,570.73 1349.91,574.23 1341.95,571.19 "
-       id="polygon28504" />
-    <polygon
-       style="opacity:1;fill:#001eb3"
-       points="1372.61,586.27 1359.9,579.65 1360.05,579.88 "
-       id="polygon28506" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1500.23,548.02 1489.2,555.61 1489.57,556.04 "
-       id="polygon28508" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1501.16,549.43 1490.13,557.03 1490.25,557.48 "
-       id="polygon28510" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.63,569.21 1350.54,572.72 1342.36,569.69 "
-       id="polygon28512" />
-    <line
-       x1="1633.65"
-       y1="521.09998"
-       x2="1630.37"
-       y2="519.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28514" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.14,570.21 1350.05,573.71 1342,570.73 "
-       id="polygon28516" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.36,569.69 1350.27,573.2 1342.14,570.21 "
-       id="polygon28518" />
-    <line
-       x1="1645.2"
-       y1="509"
-       x2="1644.01"
-       y2="508.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28520" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1500.61,548.45 1489.57,556.04 1489.89,556.53 "
-       id="polygon28522" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1500.93,548.94 1489.89,556.53 1490.13,557.03 "
-       id="polygon28524" />
-    <line
-       x1="1654.33"
-       y1="542.33002"
-       x2="1652.4"
-       y2="539.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28526" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.53,603.72 1446.08,603.42 1446.54,603.35 "
-       id="polygon28528" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="1343.58,580.1 1355.91,585.47 1355.77,585.23 "
-       id="polygon28530" />
-    <line
-       x1="1609.37"
-       y1="408.76999"
-       x2="1606.66"
-       y2="408.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28532" />
-    <line
-       x1="1630.37"
-       y1="519.41998"
-       x2="1626.98"
-       y2="518"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28534" />
-    <polygon
-       style="opacity:1;fill:#001995"
-       points="1344.65,576.87 1356.99,582.23 1357.27,582.14 "
-       id="polygon28536" />
-    <line
-       x1="1656.04"
-       y1="545.72998"
-       x2="1654.33"
-       y2="542.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28538" />
-    <polygon
-       style="opacity:1;fill:#00379f"
-       points="1342.11,571.79 1349.89,575.07 1349.94,575.16 "
-       id="polygon28540" />
-    <line
-       x1="1626.98"
-       y1="518"
-       x2="1623.51"
-       y2="516.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28542" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1343.43,579.87 1355.77,585.23 1355.71,584.86 "
-       id="polygon28544" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1344.34,577.11 1356.68,582.48 1356.99,582.23 "
-       id="polygon28546" />
-    <line
-       x1="1558.64"
-       y1="564.87"
-       x2="1558.46"
-       y2="568.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28548" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1342.93,568.83 1351.14,572.09 1351.02,572.19 "
-       id="polygon28550" />
-    <polygon
-       style="opacity:1;fill:#002a7a"
-       points="1349.87,574.84 1341.98,571.55 1349.89,575.07 "
-       id="polygon28552" />
-    <polygon
-       style="opacity:1;fill:#002d82"
-       points="1351.02,572.19 1342.93,568.83 1350.84,572.34 "
-       id="polygon28554" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1343.38,579.49 1355.71,584.86 1355.75,584.39 "
-       id="polygon28556" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1344.04,577.49 1356.37,582.86 1356.68,582.48 "
-       id="polygon28558" />
-    <line
-       x1="1623.51"
-       y1="516.84998"
-       x2="1619.97"
-       y2="515.96997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28560" />
-    <line
-       x1="1657.52"
-       y1="549.22998"
-       x2="1656.04"
-       y2="545.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28562" />
-    <line
-       x1="1409.8199"
-       y1="324.23999"
-       x2="1411.17"
-       y2="326.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28564" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1371.95,586.05 1359.07,579.91 1359.39,579.67 "
-       id="polygon28566" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.63,569.21 1350.84,572.34 1350.73,572.49 "
-       id="polygon28568" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1343.41,579.02 1355.75,584.39 1355.88,583.86 "
-       id="polygon28570" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1343.76,577.97 1356.1,583.34 1356.37,582.86 "
-       id="polygon28572" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1349.89,574.42 1341.95,571.19 1349.86,574.7 "
-       id="polygon28574" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1343.55,578.5 1355.88,583.86 1356.1,583.34 "
-       id="polygon28576" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1350.73,572.49 1342.63,569.21 1350.54,572.72 "
-       id="polygon28578" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1370.55,588.61 1358.04,582.58 1357.99,582.22 "
-       id="polygon28580" />
-    <line
-       x1="1644.01"
-       y1="508.10001"
-       x2="1642.95"
-       y2="507.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28582" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.36,569.69 1350.54,572.72 1350.44,572.91 "
-       id="polygon28584" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1350,573.92 1342,570.73 1349.91,574.23 "
-       id="polygon28586" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1476.82,562.62 1487.8,555.38 1487.92,555.12 "
-       id="polygon28588" />
-    <line
-       x1="1619.97"
-       y1="515.96997"
-       x2="1616.38"
-       y2="515.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28590" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342,570.73 1350.05,573.71 1350,573.92 "
-       id="polygon28592" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1350.44,572.91 1342.36,569.69 1350.27,573.2 "
-       id="polygon28594" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1371.63,586.29 1358.74,580.28 1359.07,579.91 "
-       id="polygon28596" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1342.14,570.21 1350.27,573.2 1350.19,573.4 "
-       id="polygon28598" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1350.19,573.4 1342.14,570.21 1350.05,573.71 "
-       id="polygon28600" />
-    <line
-       x1="1658.78"
-       y1="552.79999"
-       x2="1657.52"
-       y2="549.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28602" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1371.3,586.66 1358.44,580.74 1358.74,580.28 "
-       id="polygon28604" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.77,587.64 1358.05,581.76 1358.21,581.25 "
-       id="polygon28606" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1371,587.13 1358.21,581.25 1358.44,580.74 "
-       id="polygon28608" />
-    <line
-       x1="1559.05"
-       y1="561.39001"
-       x2="1558.64"
-       y2="564.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28610" />
-    <line
-       x1="1599.59"
-       y1="507.04999"
-       x2="1602.35"
-       y2="509.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28612" />
-    <line
-       x1="1616.38"
-       y1="515.35999"
-       x2="1612.75"
-       y2="515.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28614" />
-    <line
-       x1="1612.75"
-       y1="515.03998"
-       x2="1609.11"
-       y2="515"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28616" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1455.75,577.73 1466.6,570.13 1466.98,570.47 "
-       id="polygon28618" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1466.58,570.14 1477.37,562.55 1477.74,562.76 "
-       id="polygon28620" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1477.36,562.57 1488.14,555.02 1488.45,555.07 "
-       id="polygon28622" />
-    <line
-       x1="1659.8"
-       y1="556.45001"
-       x2="1658.78"
-       y2="552.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28624" />
-    <line
-       x1="1612.08"
-       y1="408.82999"
-       x2="1609.37"
-       y2="408.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28626" />
-    <line
-       x1="1411.17"
-       y1="326.14999"
-       x2="1412.35"
-       y2="328.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28628" />
-    <line
-       x1="1642.95"
-       y1="507.10999"
-       x2="1642.02"
-       y2="506.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28630" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1479.05,565.61 1490.26,557.86 1490.14,558.11 "
-       id="polygon28632" />
-    <polygon
-       style="opacity:1;fill:#001eb3"
-       points="1359.9,579.65 1372.46,586.04 1372.61,586.27 "
-       id="polygon28634" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="1351.4,572 1356.49,574.25 1351.3,572.04 "
-       id="polygon28636" />
-    <line
-       x1="1559.71"
-       y1="557.89001"
-       x2="1559.05"
-       y2="561.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28638" />
-    <line
-       x1="1609.11"
-       y1="515"
-       x2="1605.47"
-       y2="515.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28640" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="1355.11,577.55 1349.94,575.16 1350.02,575.29 "
-       id="polygon28642" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1479.16,565.36 1490.25,557.48 1490.26,557.86 "
-       id="polygon28644" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1478.11,563.11 1488.82,555.27 1489.21,555.61 "
-       id="polygon28646" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1467.92,548.61 1476.58,537.96 1476.85,538.38 "
-       id="polygon28648" />
-    <line
-       x1="1660.58"
-       y1="560.13"
-       x2="1659.8"
-       y2="556.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28650" />
-    <line
-       x1="1605.47"
-       y1="515.25"
-       x2="1601.85"
-       y2="515.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28652" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1479.16,564.98 1490.13,557.03 1490.25,557.48 "
-       id="polygon28654" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1355.93,574.6 1351.02,572.19 1350.84,572.34 "
-       id="polygon28656" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1478.48,563.54 1489.21,555.61 1489.58,556.04 "
-       id="polygon28658" />
-    <line
-       x1="1560.61"
-       y1="554.39001"
-       x2="1559.71"
-       y2="557.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28660" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1349.86,574.7 1354.94,576.96 1349.87,574.84 "
-       id="polygon28662" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1479.03,564.53 1489.89,556.53 1490.13,557.03 "
-       id="polygon28664" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1478.8,564.03 1489.58,556.04 1489.89,556.53 "
-       id="polygon28666" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.63,574.98 1350.73,572.49 1350.54,572.72 "
-       id="polygon28668" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1350.54,572.72 1355.63,574.98 1350.44,572.91 "
-       id="polygon28670" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1349.91,574.23 1355,576.49 1349.89,574.42 "
-       id="polygon28672" />
-    <line
-       x1="1601.85"
-       y1="515.77002"
-       x2="1598.28"
-       y2="516.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28674" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="1356.49,574.25 1351.3,572.04 1356.22,574.35 "
-       id="polygon28676" />
-    <line
-       x1="1642.02"
-       y1="506.01001"
-       x2="1641.23"
-       y2="504.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28678" />
-    <line
-       x1="1412.35"
-       y1="328.17001"
-       x2="1413.36"
-       y2="330.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28680" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1371.28,586.65 1371.6,586.27 1375.42,588.41 "
-       id="polygon28682" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1359.07,579.91 1371.63,586.29 1371.95,586.05 "
-       id="polygon28684" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.36,575.45 1350.44,572.91 1350.27,573.2 "
-       id="polygon28686" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1350.27,573.2 1355.36,575.45 1350.19,573.4 "
-       id="polygon28688" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1350.05,573.71 1355.14,575.97 1350,573.92 "
-       id="polygon28690" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1488.14,555.02 1477.05,562.51 1477.36,562.57 "
-       id="polygon28692" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.99,587.12 1371.28,586.65 1375.48,588.99 "
-       id="polygon28694" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.74,580.28 1371.3,586.66 1371.63,586.29 "
-       id="polygon28696" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1438.35,603.45 1446.99,603.46 1447.39,603.73 "
-       id="polygon28698" />
-    <line
-       x1="1561.75"
-       y1="550.92999"
-       x2="1560.61"
-       y2="554.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28700" />
-    <line
-       x1="1661.13"
-       y1="563.83002"
-       x2="1660.58"
-       y2="560.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28702" />
-    <line
-       x1="1598.28"
-       y1="516.57001"
-       x2="1594.76"
-       y2="517.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28704" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1465.29,546.79 1465.57,546.75 1460.32,552.53 "
-       id="polygon28706" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.48,536.54 1465.55,546.77 1465.94,546.86 "
-       id="polygon28708" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.05,581.76 1370.61,588.15 1370.77,587.64 "
-       id="polygon28710" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1354.94,576.96 1349.87,574.84 1354.98,577.32 "
-       id="polygon28712" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.44,580.74 1371,587.13 1371.3,586.66 "
-       id="polygon28714" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1358.21,581.25 1370.77,587.64 1371,587.13 "
-       id="polygon28716" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1488.45,555.07 1477.36,562.57 1477.72,562.77 "
-       id="polygon28718" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1490.26,557.86 1479.16,565.36 1479.05,565.61 "
-       id="polygon28720" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.93,574.6 1350.73,572.49 1355.63,574.98 "
-       id="polygon28722" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355,576.49 1349.89,574.42 1354.94,576.96 "
-       id="polygon28724" />
-    <line
-       x1="1594.76"
-       y1="517.64001"
-       x2="1591.3199"
-       y2="518.96997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28726" />
-    <line
-       x1="1614.79"
-       y1="409.14001"
-       x2="1612.08"
-       y2="408.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28728" />
-    <line
-       x1="1563.11"
-       y1="547.51001"
-       x2="1561.75"
-       y2="550.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28730" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.14,575.97 1350,573.92 1355,576.49 "
-       id="polygon28732" />
-    <line
-       x1="1602.35"
-       y1="509.20999"
-       x2="1604.88"
-       y2="511.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28734" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1476.85,538.38 1467.92,548.61 1468.06,548.97 "
-       id="polygon28736" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.36,575.45 1350.19,573.4 1355.14,575.97 "
-       id="polygon28738" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1488.82,555.27 1477.72,562.77 1478.11,563.11 "
-       id="polygon28740" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1490.25,557.48 1479.16,564.98 1479.16,565.36 "
-       id="polygon28742" />
-    <line
-       x1="1591.3199"
-       y1="518.96997"
-       x2="1587.98"
-       y2="520.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1475.31,536.84 1466.38,547.07 1466.85,547.39 "
-       id="polygon28746" />
-    <polygon
-       style="opacity:1;fill:#001995"
-       points="1369.63,587.47 1356.98,582.23 1357.27,582.14 "
-       id="polygon28748" />
-    <line
-       x1="1641.23"
-       y1="504.82999"
-       x2="1640.5699"
-       y2="503.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28750" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1489.21,555.61 1478.11,563.11 1478.48,563.54 "
-       id="polygon28752" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1490.13,557.03 1479.03,564.53 1479.16,564.98 "
-       id="polygon28754" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1475.77,537.16 1466.85,547.39 1467.29,547.78 "
-       id="polygon28756" />
-    <line
-       x1="1413.36"
-       y1="330.28"
-       x2="1414.1801"
-       y2="332.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28758" />
-    <line
-       x1="1564.71"
-       y1="544.15997"
-       x2="1563.11"
-       y2="547.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28760" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1476.21,537.54 1467.29,547.78 1467.66,548.2 "
-       id="polygon28762" />
-    <line
-       x1="1661.4399"
-       y1="567.52002"
-       x2="1661.13"
-       y2="563.83002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28764" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1489.58,556.04 1478.48,563.54 1478.8,564.03 "
-       id="polygon28766" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1489.89,556.53 1478.8,564.03 1479.03,564.53 "
-       id="polygon28768" />
-    <line
-       x1="1587.98"
-       y1="520.56"
-       x2="1584.75"
-       y2="522.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28770" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="1368.13,590.57 1355.92,585.47 1355.77,585.23 "
-       id="polygon28772" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="1415.07,572.39 1414.2,560.46 1414.51,560.75 "
-       id="polygon28774" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1369.35,587.56 1356.67,582.47 1356.98,582.23 "
-       id="polygon28776" />
-    <line
-       x1="1566.54"
-       y1="540.90997"
-       x2="1564.71"
-       y2="544.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28778" />
-    <line
-       x1="1584.75"
-       y1="522.39001"
-       x2="1581.65"
-       y2="524.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28780" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1368.07,590.2 1355.77,585.23 1355.71,584.86 "
-       id="polygon28782" />
-    <line
-       x1="1568.5699"
-       y1="537.77002"
-       x2="1566.54"
-       y2="540.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28784" />
-    <line
-       x1="1581.65"
-       y1="524.46002"
-       x2="1578.6899"
-       y2="526.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28786" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.76,587.64 1379.49,591.87 1370.61,588.15 "
-       id="polygon28788" />
-    <polygon
-       style="opacity:1;fill:#0021c1"
-       points="1369.51,587.8 1369.34,587.55 1369.62,587.46 "
-       id="polygon28790" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1369.34,587.55 1375.39,590.12 1369.02,587.8 "
-       id="polygon28792" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1369.04,587.8 1356.37,582.86 1356.67,582.47 "
-       id="polygon28794" />
-    <line
-       x1="1578.6899"
-       y1="526.75"
-       x2="1575.89"
-       y2="529.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28796" />
-    <line
-       x1="1570.8199"
-       y1="534.77002"
-       x2="1568.5699"
-       y2="537.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28798" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.11,589.72 1355.71,584.86 1355.75,584.39 "
-       id="polygon28800" />
-    <line
-       x1="1575.89"
-       y1="529.23999"
-       x2="1573.26"
-       y2="531.91998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28802" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.73,588.19 1356.09,583.33 1356.37,582.86 "
-       id="polygon28804" />
-    <line
-       x1="1573.26"
-       y1="531.91998"
-       x2="1570.8199"
-       y2="534.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28806" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.24,589.2 1355.75,584.39 1355.88,583.86 "
-       id="polygon28808" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.46,588.67 1355.88,583.86 1356.09,583.33 "
-       id="polygon28810" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1417.88,596.65 1419.66,593.87 1420.24,593.89 "
-       id="polygon28812" />
-    <line
-       x1="1640.5699"
-       y1="503.57001"
-       x2="1640.0699"
-       y2="502.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28814" />
-    <line
-       x1="1661.52"
-       y1="571.19"
-       x2="1661.4399"
-       y2="567.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28816" />
-    <line
-       x1="1414.1801"
-       y1="332.45999"
-       x2="1414.8199"
-       y2="334.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28818" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1465.68,570 1476.72,562.86 1476.84,562.61 "
-       id="polygon28820" />
-    <line
-       x1="1617.47"
-       y1="409.69"
-       x2="1614.79"
-       y2="409.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28822" />
-    <polygon
-       style="opacity:1;fill:#001eb1"
-       points="1356.69,574.32 1369.68,580.01 1369.82,580.24 "
-       id="polygon28824" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="1369.48,579.93 1356.21,574.34 1356.48,574.25 "
-       id="polygon28826" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="1367.98,583.02 1355.11,577.55 1354.98,577.32 "
-       id="polygon28828" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1369.21,580.03 1355.91,574.59 1356.21,574.34 "
-       id="polygon28830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.54,556.9 1465.57,546.75 1460.32,552.53 "
-       id="polygon28832" />
-    <polygon
-       style="opacity:1;fill:#001eb2"
-       points="1381.27,590.41 1372.44,586.02 1381.17,590.25 "
-       id="polygon28834" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="1372.21,585.95 1380.94,590.17 1371.93,586.03 "
-       id="polygon28836" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="1355.92,585.47 1368.28,590.81 1368.13,590.57 "
-       id="polygon28838" />
-    <line
-       x1="1604.88"
-       y1="511.60001"
-       x2="1607.1801"
-       y2="514.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28840" />
-    <line
-       x1="1640.0699"
-       y1="502.23999"
-       x2="1639.71"
-       y2="500.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28842" />
-    <line
-       x1="1661.36"
-       y1="574.79999"
-       x2="1661.52"
-       y2="571.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28844" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1367.93,582.65 1354.98,577.32 1354.94,576.96 "
-       id="polygon28846" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.91,580.28 1355.62,574.97 1355.91,574.59 "
-       id="polygon28848" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1467.88,573 1479.16,565.36 1479.04,565.62 "
-       id="polygon28850" />
-    <line
-       x1="1414.8199"
-       y1="334.70999"
-       x2="1415.26"
-       y2="337.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28852" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.92,557 1465.57,546.75 1465.95,546.85 "
-       id="polygon28854" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1367.99,582.18 1354.94,576.96 1354.99,576.49 "
-       id="polygon28856" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.62,580.66 1355.35,575.45 1355.62,574.97 "
-       id="polygon28858" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1371.93,586.03 1380.66,590.26 1371.6,586.27 "
-       id="polygon28860" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1355.77,585.23 1368.13,590.57 1368.07,590.2 "
-       id="polygon28862" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1356.67,582.47 1369.04,587.8 1369.35,587.56 "
-       id="polygon28864" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.32,581.13 1377.22,584.94 1368.11,581.65 "
-       id="polygon28866" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.13,581.66 1354.99,576.49 1355.13,575.97 "
-       id="polygon28868" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.35,581.14 1355.13,575.97 1355.35,575.45 "
-       id="polygon28870" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1468,572.75 1479.16,564.99 1479.16,565.36 "
-       id="polygon28872" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1459.03,559.13 1467.92,548.61 1468.05,548.97 "
-       id="polygon28874" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1457.36,557.21 1465.95,546.85 1466.39,547.06 "
-       id="polygon28876" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.71,584.86 1368.07,590.2 1368.11,589.72 "
-       id="polygon28878" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1356.37,582.86 1368.73,588.19 1369.04,587.8 "
-       id="polygon28880" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1380.33,590.5 1371.6,586.27 1375.42,588.41 "
-       id="polygon28882" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.75,584.39 1368.11,589.72 1368.24,589.2 "
-       id="polygon28884" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1356.09,583.33 1368.46,588.67 1368.73,588.19 "
-       id="polygon28886" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1468,572.38 1479.04,564.53 1479.16,564.99 "
-       id="polygon28888" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1458.89,558.76 1467.66,548.2 1467.92,548.61 "
-       id="polygon28890" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1380.01,590.88 1371.28,586.65 1375.48,588.99 "
-       id="polygon28892" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.88,583.86 1368.24,589.2 1368.46,588.67 "
-       id="polygon28894" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1457.83,557.54 1466.39,547.06 1466.85,547.38 "
-       id="polygon28896" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1467.33,570.92 1478.13,563.09 1478.49,563.53 "
-       id="polygon28898" />
-    <polygon
-       style="opacity:1;fill:#0000a6"
-       points="1414.2,560.46 1414.76,572.09 1415.07,572.39 "
-       id="polygon28900" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.99,587.12 1379.72,591.35 1370.76,587.64 "
-       id="polygon28902" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1467.88,571.91 1478.8,564.02 1479.04,564.53 "
-       id="polygon28904" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1458.27,557.93 1466.85,547.38 1467.29,547.77 "
-       id="polygon28906" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1467.65,571.41 1478.49,563.53 1478.8,564.02 "
-       id="polygon28908" />
-    <line
-       x1="1639.71"
-       y1="500.85001"
-       x2="1639.51"
-       y2="499.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28910" />
-    <line
-       x1="1620.1"
-       y1="410.48999"
-       x2="1617.47"
-       y2="409.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28912" />
-    <line
-       x1="1660.97"
-       y1="578.35999"
-       x2="1661.36"
-       y2="574.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28914" />
-    <line
-       x1="1415.26"
-       y1="337.01001"
-       x2="1415.51"
-       y2="339.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28916" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1465.29,546.79 1456.26,556.94 1456.54,556.9 "
-       id="polygon28918" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1477.06,562.5 1465.91,569.89 1466.21,569.94 "
-       id="polygon28920" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="1355.11,577.55 1368.11,583.25 1367.98,583.02 "
-       id="polygon28922" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1368.89,580.27 1369.19,580.02 1374.29,582.36 "
-       id="polygon28924" />
-    <polygon
-       style="opacity:1;fill:#001996"
-       points="1356.21,574.34 1369.21,580.03 1369.48,579.93 "
-       id="polygon28926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.27,556.93 1456.55,556.89 1451.49,562.34 "
-       id="polygon28928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1465.57,546.75 1456.54,556.9 1456.92,557 "
-       id="polygon28930" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1477.37,562.55 1466.21,569.94 1466.58,570.14 "
-       id="polygon28932" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1479.16,565.36 1468,572.75 1467.88,573 "
-       id="polygon28934" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1468.05,548.97 1459.03,559.13 1459.02,559.41 "
-       id="polygon28936" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1354.98,577.32 1367.98,583.02 1367.93,582.65 "
-       id="polygon28938" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1380.55,590.33 1371.6,586.27 1380.33,590.5 "
-       id="polygon28940" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.59,580.65 1368.89,580.27 1373.59,582.51 "
-       id="polygon28942" />
-    <polygon
-       style="opacity:1;fill:#001682"
-       points="1355.91,574.59 1368.91,580.28 1369.21,580.03 "
-       id="polygon28944" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.55,556.89 1456.93,556.98 1451.61,562.62 "
-       id="polygon28946" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1465.95,546.85 1456.92,557 1457.36,557.21 "
-       id="polygon28948" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1477.74,562.76 1466.58,570.14 1466.96,570.48 "
-       id="polygon28950" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1479.16,564.99 1468,572.38 1468,572.75 "
-       id="polygon28952" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1371.28,586.65 1380.33,590.5 1380.23,590.62 "
-       id="polygon28954" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1467.92,548.61 1458.89,558.76 1459.03,559.13 "
-       id="polygon28956" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1380.23,590.62 1371.28,586.65 1380.01,590.88 "
-       id="polygon28958" />
-    <line
-       x1="1639.51"
-       y1="499.41"
-       x2="1639.47"
-       y2="497.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28960" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1354.94,576.96 1367.93,582.65 1367.99,582.18 "
-       id="polygon28962" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.32,581.13 1368.59,580.65 1373.07,582.85 "
-       id="polygon28964" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.62,574.97 1368.62,580.66 1368.91,580.28 "
-       id="polygon28966" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.24,567.26 1456.93,556.98 1457.38,557.2 "
-       id="polygon28968" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1466.39,547.06 1457.36,557.21 1457.83,557.54 "
-       id="polygon28970" />
-    <line
-       x1="1415.51"
-       y1="339.34"
-       x2="1415.5601"
-       y2="341.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28972" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1478.13,563.09 1466.96,570.48 1467.33,570.92 "
-       id="polygon28974" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.99,587.12 1380.01,590.88 1379.92,591.02 "
-       id="polygon28976" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1479.04,564.53 1467.88,571.91 1468,572.38 "
-       id="polygon28978" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1467.66,548.2 1458.63,558.35 1458.89,558.76 "
-       id="polygon28980" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1379.92,591.02 1370.99,587.12 1379.72,591.35 "
-       id="polygon28982" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1370.76,587.64 1379.72,591.35 1379.65,591.51 "
-       id="polygon28984" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1379.65,591.51 1370.76,587.64 1379.49,591.87 "
-       id="polygon28986" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1354.99,576.49 1367.99,582.18 1368.13,581.66 "
-       id="polygon28988" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.35,575.45 1368.35,581.14 1368.62,580.66 "
-       id="polygon28990" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1466.85,547.38 1457.83,557.54 1458.27,557.93 "
-       id="polygon28992" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1478.49,563.53 1467.33,570.92 1467.65,571.41 "
-       id="polygon28994" />
-    <line
-       x1="1660.36"
-       y1="581.81"
-       x2="1660.97"
-       y2="578.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line28996" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1478.8,564.02 1467.65,571.41 1467.88,571.91 "
-       id="polygon28998" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1467.29,547.77 1458.27,557.93 1458.63,558.35 "
-       id="polygon29000" />
-    <line
-       x1="1607.1801"
-       y1="514.21002"
-       x2="1609.22"
-       y2="517.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29002" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1355.13,575.97 1368.13,581.66 1368.35,581.14 "
-       id="polygon29004" />
-    <line
-       x1="1622.67"
-       y1="411.53"
-       x2="1620.1"
-       y2="410.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29006" />
-    <line
-       x1="1639.47"
-       y1="497.92999"
-       x2="1639.59"
-       y2="496.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29008" />
-    <line
-       x1="1415.5601"
-       y1="341.69"
-       x2="1415.41"
-       y2="344.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29010" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1368.07,590.2 1374.13,592.77 1368.13,590.58 "
-       id="polygon29012" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1369.02,587.8 1375.08,590.37 1368.72,588.18 "
-       id="polygon29014" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.1,589.72 1374.16,592.3 1368.07,590.2 "
-       id="polygon29016" />
-    <line
-       x1="1659.54"
-       y1="585.15997"
-       x2="1660.36"
-       y2="581.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29018" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.72,588.18 1374.78,590.75 1368.45,588.66 "
-       id="polygon29020" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.23,589.2 1374.29,591.77 1368.1,589.72 "
-       id="polygon29022" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.45,588.66 1374.5,591.23 1368.23,589.2 "
-       id="polygon29024" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1384.23,592.39 1380.55,590.33 1380.33,590.5 "
-       id="polygon29026" />
-    <polygon
-       style="opacity:1;fill:#001ba0"
-       points="1368.29,590.82 1374.19,593.15 1374.27,593.27 "
-       id="polygon29028" />
-    <line
-       x1="1415.41"
-       y1="344.04001"
-       x2="1415.0699"
-       y2="346.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29030" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1384.84,592.06 1380.86,590.2 1384.55,592.15 "
-       id="polygon29032" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.91,592.77 1380.23,590.62 1380.01,590.88 "
-       id="polygon29034" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1369.02,587.8 1375.39,590.12 1375.23,590.25 "
-       id="polygon29036" />
-    <line
-       x1="1639.59"
-       y1="496.42999"
-       x2="1639.86"
-       y2="494.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29038" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.42,566.95 1456.55,556.89 1451.49,562.34 "
-       id="polygon29040" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1455.01,577.19 1465.92,569.88 1466.23,569.93 "
-       id="polygon29042" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1368.13,590.58 1374.13,592.77 1374.16,592.96 "
-       id="polygon29044" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.63,593.23 1379.92,591.02 1379.72,591.35 "
-       id="polygon29046" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1456.65,580.27 1467.99,572.76 1467.87,573.01 "
-       id="polygon29048" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.72,588.18 1375.08,590.37 1374.93,590.57 "
-       id="polygon29050" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1374.14,592.54 1368.07,590.2 1374.13,592.77 "
-       id="polygon29052" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.07,590.2 1374.16,592.3 1374.14,592.54 "
-       id="polygon29054" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1374.93,590.57 1368.72,588.18 1374.78,590.75 "
-       id="polygon29056" />
-    <line
-       x1="1625.16"
-       y1="412.81"
-       x2="1622.67"
-       y2="411.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29058" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.8,567.04 1456.93,556.98 1451.61,562.62 "
-       id="polygon29060" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1455.37,577.39 1466.23,569.93 1466.6,570.13 "
-       id="polygon29062" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.45,588.66 1374.78,590.75 1374.64,591 "
-       id="polygon29064" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1374.23,592.04 1368.1,589.72 1374.16,592.3 "
-       id="polygon29066" />
-    <line
-       x1="1609.22"
-       y1="517.01001"
-       x2="1610.99"
-       y2="519.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29068" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1374.64,591 1368.45,588.66 1374.5,591.23 "
-       id="polygon29070" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1374.4,591.5 1368.23,589.2 1374.29,591.77 "
-       id="polygon29072" />
-    <polygon
-       style="opacity:1;fill:#001eb1"
-       points="1378.67,583.97 1369.68,580 1378.57,583.81 "
-       id="polygon29074" />
-    <polygon
-       style="opacity:1;fill:#001995"
-       points="1369.46,579.93 1378.36,583.73 1369.19,580.02 "
-       id="polygon29076" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1456.77,580.02 1468,572.38 1467.99,572.76 "
-       id="polygon29078" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1384.23,592.39 1380.23,590.62 1383.91,592.77 "
-       id="polygon29080" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1449.89,569.2 1458.89,558.77 1459.02,559.13 "
-       id="polygon29082" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.91,592.77 1379.92,591.02 1383.63,593.23 "
-       id="polygon29084" />
-    <line
-       x1="1658.51"
-       y1="588.38"
-       x2="1659.54"
-       y2="585.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29086" />
-    <polygon
-       style="opacity:1;fill:#0000c3"
-       points="1436.95,606.67 1428.02,606.26 1427.61,605.98 "
-       id="polygon29088" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1428.48,606.37 1437.87,606.7 1437.4,606.77 "
-       id="polygon29090" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1456.77,579.64 1467.88,571.91 1468,572.38 "
-       id="polygon29092" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1378.09,583.82 1369.19,580.02 1374.29,582.36 "
-       id="polygon29094" />
-    <line
-       x1="1415.0699"
-       y1="346.38"
-       x2="1414.53"
-       y2="348.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29096" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1449.76,568.82 1458.63,558.35 1458.89,558.77 "
-       id="polygon29098" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1456.12,578.17 1466.98,570.47 1467.34,570.91 "
-       id="polygon29100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.7,567.59 1457.38,557.2 1457.84,557.53 "
-       id="polygon29102" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1456.65,579.18 1467.65,571.41 1467.88,571.91 "
-       id="polygon29104" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1456.43,578.67 1467.34,570.91 1467.65,571.41 "
-       id="polygon29106" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1449.5,568.41 1458.27,557.92 1458.63,558.35 "
-       id="polygon29108" />
-    <line
-       x1="1639.86"
-       y1="494.89999"
-       x2="1640.29"
-       y2="493.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29110" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1449.13,567.98 1457.84,557.53 1458.27,557.92 "
-       id="polygon29112" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1428.94,606.29 1438.29,606.45 1437.87,606.7 "
-       id="polygon29114" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1367.93,582.65 1376.82,586.46 1367.98,583.02 "
-       id="polygon29116" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1377.79,584.07 1368.89,580.27 1373.59,582.51 "
-       id="polygon29118" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1367.97,582.18 1376.87,585.99 1367.93,582.65 "
-       id="polygon29120" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1377.49,584.46 1368.59,580.65 1373.07,582.85 "
-       id="polygon29122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.27,556.93 1447.14,566.98 1447.42,566.95 "
-       id="polygon29124" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1465.92,569.88 1454.7,577.14 1455.01,577.19 "
-       id="polygon29126" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.11,581.65 1377.01,585.46 1367.97,582.18 "
-       id="polygon29128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.55,556.89 1447.42,566.95 1447.8,567.04 "
-       id="polygon29130" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1443.19,584.34 1454.36,577.49 1454.48,577.23 "
-       id="polygon29132" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1454.71,577.13 1455.03,577.18 1449.55,580.49 "
-       id="polygon29134" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1466.23,569.93 1455.01,577.19 1455.37,577.39 "
-       id="polygon29136" />
-    <line
-       x1="1414.53"
-       y1="348.69"
-       x2="1413.8"
-       y2="350.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29138" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1375.39,590.12 1381.72,592.8 1375.23,590.25 "
-       id="polygon29140" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1459.02,559.13 1449.89,569.2 1449.88,569.48 "
-       id="polygon29142" />
-    <polygon
-       style="opacity:1;fill:#001b9f"
-       points="1376.91,586.91 1368.11,583.26 1377.01,587.07 "
-       id="polygon29144" />
-    <polygon
-       style="opacity:1;fill:#0000b1"
-       points="1382.38,593.04 1375.98,590.23 1382.23,592.79 "
-       id="polygon29146" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1380.51,595.83 1374.16,592.96 1374.19,593.15 "
-       id="polygon29148" />
-    <line
-       x1="1640.29"
-       y1="493.38"
-       x2="1640.88"
-       y2="491.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29150" />
-    <polygon
-       style="opacity:1;fill:#001995"
-       points="1378.28,583.76 1369.19,580.02 1378.09,583.82 "
-       id="polygon29152" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1455.03,577.18 1455.39,577.38 1449.81,580.66 "
-       id="polygon29154" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1466.6,570.13 1455.37,577.39 1455.75,577.73 "
-       id="polygon29156" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.43,566.93 1447.81,567.03 1442.72,572.26 "
-       id="polygon29158" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.93,556.98 1447.8,567.04 1448.24,567.26 "
-       id="polygon29160" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1468,572.38 1456.77,579.64 1456.77,580.02 "
-       id="polygon29162" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1381.41,593.05 1375.23,590.25 1375.08,590.37 "
-       id="polygon29164" />
-    <line
-       x1="1627.54"
-       y1="414.32001"
-       x2="1625.16"
-       y2="412.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29166" />
-    <line
-       x1="1657.29"
-       y1="591.44"
-       x2="1658.51"
-       y2="588.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29168" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1375.08,590.37 1381.41,593.05 1374.93,590.57 "
-       id="polygon29170" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1458.89,558.77 1449.76,568.82 1449.89,569.2 "
-       id="polygon29172" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1368.89,580.27 1378.09,583.82 1378,583.9 "
-       id="polygon29174" />
-    <polygon
-       style="opacity:1;fill:#00157a"
-       points="1376.84,586.58 1367.98,583.02 1376.87,586.84 "
-       id="polygon29176" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1444.47,584.83 1455.39,577.38 1455.77,577.72 "
-       id="polygon29178" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1466.98,570.47 1455.75,577.73 1456.12,578.17 "
-       id="polygon29180" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1467.88,571.91 1456.65,579.18 1456.77,579.64 "
-       id="polygon29182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439,577.2 1447.81,567.03 1448.25,567.25 "
-       id="polygon29184" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1457.38,557.2 1448.24,567.26 1448.7,567.59 "
-       id="polygon29186" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1378,583.9 1368.89,580.27 1377.79,584.07 "
-       id="polygon29188" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1374.78,590.75 1381.1,593.43 1374.64,591 "
-       id="polygon29190" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1374.16,592.3 1380.48,594.98 1374.14,592.54 "
-       id="polygon29192" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1458.63,558.35 1449.5,568.41 1449.76,568.82 "
-       id="polygon29194" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1467.34,570.91 1456.12,578.17 1456.43,578.67 "
-       id="polygon29196" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1467.65,571.41 1456.43,578.67 1456.65,579.18 "
-       id="polygon29198" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1457.84,557.53 1448.7,567.59 1449.13,567.98 "
-       id="polygon29200" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.83,593.92 1374.64,591 1374.5,591.23 "
-       id="polygon29202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1374.5,591.23 1380.83,593.92 1374.4,591.5 "
-       id="polygon29204" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1458.27,557.92 1449.13,567.98 1449.5,568.41 "
-       id="polygon29206" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1374.29,591.77 1380.62,594.45 1374.23,592.04 "
-       id="polygon29208" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.62,594.45 1374.4,591.5 1374.29,591.77 "
-       id="polygon29210" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1368.59,580.65 1377.79,584.07 1377.7,584.2 "
-       id="polygon29212" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1376.86,586.14 1367.93,582.65 1376.82,586.46 "
-       id="polygon29214" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1377.7,584.2 1368.59,580.65 1377.49,584.46 "
-       id="polygon29216" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1367.93,582.65 1376.87,585.99 1376.86,586.14 "
-       id="polygon29218" />
-    <line
-       x1="1413.8"
-       y1="350.95999"
-       x2="1412.88"
-       y2="353.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29220" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1385.04,592.11 1397.75,597.85 1397.9,598.09 "
-       id="polygon29222" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1397.52,597.77 1384.52,592.12 1384.81,592.03 "
-       id="polygon29224" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1382,592.71 1375.54,590.08 1381.72,592.8 "
-       id="polygon29226" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1376.96,585.63 1367.97,582.18 1376.87,585.99 "
-       id="polygon29228" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1377.41,584.61 1368.32,581.13 1377.22,584.94 "
-       id="polygon29230" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1367.97,582.18 1377.01,585.46 1376.96,585.63 "
-       id="polygon29232" />
-    <line
-       x1="1610.99"
-       y1="519.98999"
-       x2="1612.48"
-       y2="523.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29234" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1377.16,585.1 1368.11,581.65 1377.01,585.46 "
-       id="polygon29236" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1380.51,595.83 1374.27,593.27 1380.66,596.07 "
-       id="polygon29238" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1397.23,597.86 1384.2,592.37 1384.52,592.12 "
-       id="polygon29240" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1381.72,592.8 1375.23,590.25 1381.41,593.05 "
-       id="polygon29242" />
-    <line
-       x1="1640.88"
-       y1="491.85001"
-       x2="1641.63"
-       y2="490.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29244" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1380.45,595.46 1374.16,592.96 1380.51,595.83 "
-       id="polygon29246" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.91,598.11 1383.89,592.75 1384.2,592.37 "
-       id="polygon29248" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.41,593.05 1374.93,590.57 1381.1,593.43 "
-       id="polygon29250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.48,594.98 1374.14,592.54 1380.45,595.46 "
-       id="polygon29252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.59,598.49 1383.61,593.22 1383.89,592.75 "
-       id="polygon29254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.1,593.43 1374.64,591 1380.83,593.92 "
-       id="polygon29256" />
-    <line
-       x1="1412.88"
-       y1="353.17001"
-       x2="1411.77"
-       y2="355.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29258" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.62,594.45 1374.23,592.04 1380.48,594.98 "
-       id="polygon29260" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1437.87,606.7 1428.94,606.29 1428.48,606.37 "
-       id="polygon29262" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.83,593.92 1374.4,591.5 1380.62,594.45 "
-       id="polygon29264" />
-    <line
-       x1="1655.88"
-       y1="594.34003"
-       x2="1657.29"
-       y2="591.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29266" />
-    <line
-       x1="1629.8101"
-       y1="416.04001"
-       x2="1627.54"
-       y2="414.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29268" />
-    <line
-       x1="1641.63"
-       y1="490.35001"
-       x2="1642.52"
-       y2="488.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29270" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1378.09,583.82 1382.17,585.57 1378,583.9 "
-       id="polygon29272" />
-    <line
-       x1="1411.77"
-       y1="355.31"
-       x2="1410.49"
-       y2="357.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29274" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1380.95,588.58 1376.84,586.58 1376.87,586.84 "
-       id="polygon29276" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1443.73,584.29 1455.03,577.18 1449.55,580.49 "
-       id="polygon29278" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.79,584.07 1381.87,585.82 1377.7,584.2 "
-       id="polygon29280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.9,588.21 1376.86,586.14 1376.82,586.46 "
-       id="polygon29282" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1445.34,587.39 1456.76,580.02 1456.63,580.28 "
-       id="polygon29284" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.49,584.46 1381.57,586.2 1377.41,584.61 "
-       id="polygon29286" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1380.95,588.58 1376.91,586.91 1381.09,588.82 "
-       id="polygon29288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.95,587.74 1376.96,585.63 1376.87,585.99 "
-       id="polygon29290" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1444.09,584.49 1455.39,577.38 1449.81,580.66 "
-       id="polygon29292" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1382.49,585.87 1382.42,585.46 1382.64,585.54 "
-       id="polygon29294" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.22,584.94 1381.3,586.68 1377.16,585.1 "
-       id="polygon29296" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.55,576.98 1447.81,567.03 1442.72,572.26 "
-       id="polygon29298" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.09,587.21 1377.16,585.1 1377.01,585.46 "
-       id="polygon29300" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1382.17,585.57 1378,583.9 1381.87,585.82 "
-       id="polygon29302" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1396.86,598.08 1397.18,597.83 1400.08,599.3 "
-       id="polygon29304" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1384.52,592.12 1397.23,597.86 1397.52,597.77 "
-       id="polygon29306" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1445.46,587.14 1456.77,579.64 1456.76,580.02 "
-       id="polygon29308" />
-    <line
-       x1="1642.52"
-       y1="488.87"
-       x2="1643.5699"
-       y2="487.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29310" />
-    <line
-       x1="1410.49"
-       y1="357.35999"
-       x2="1409.04"
-       y2="359.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29312" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1440.63,579.16 1449.75,568.83 1449.88,569.2 "
-       id="polygon29314" />
-    <line
-       x1="1612.48"
-       y1="523.13"
-       x2="1613.6801"
-       y2="526.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.87,585.82 1377.7,584.2 1381.57,586.2 "
-       id="polygon29318" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1445.46,586.75 1456.65,579.17 1456.77,579.64 "
-       id="polygon29320" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.55,598.46 1396.86,598.08 1399.79,599.66 "
-       id="polygon29322" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1384.2,592.37 1396.91,598.11 1397.23,597.86 "
-       id="polygon29324" />
-    <line
-       x1="1654.3"
-       y1="597.04999"
-       x2="1655.88"
-       y2="594.34003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29326" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1444.83,585.28 1455.77,577.72 1456.13,578.16 "
-       id="polygon29328" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1440.5,578.79 1449.5,568.41 1449.75,568.83 "
-       id="polygon29330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.57,586.2 1377.41,584.61 1381.3,586.68 "
-       id="polygon29332" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1445.36,586.29 1456.44,578.66 1456.65,579.17 "
-       id="polygon29334" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1439.45,577.53 1448.25,567.25 1448.71,567.58 "
-       id="polygon29336" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1445.14,585.78 1456.13,578.16 1456.44,578.66 "
-       id="polygon29338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.09,587.21 1376.96,585.63 1380.95,587.74 "
-       id="polygon29340" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.3,586.68 1377.16,585.1 1381.09,587.21 "
-       id="polygon29342" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1440.25,578.36 1449.14,567.98 1449.5,568.41 "
-       id="polygon29344" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1439.88,577.93 1448.71,567.58 1449.14,567.98 "
-       id="polygon29346" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.28,598.95 1396.55,598.46 1399.76,600.21 "
-       id="polygon29348" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.89,592.75 1396.59,598.49 1396.91,598.11 "
-       id="polygon29350" />
-    <line
-       x1="1631.95"
-       y1="417.97"
-       x2="1629.8101"
-       y2="416.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29352" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.61,593.22 1396.31,598.96 1396.59,598.49 "
-       id="polygon29354" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1394.38,597.82 1381.7,592.79 1381.98,592.7 "
-       id="polygon29356" />
-    <line
-       x1="1409.04"
-       y1="359.31"
-       x2="1407.4301"
-       y2="361.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29358" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1454.71,577.13 1443.41,584.23 1443.73,584.29 "
-       id="polygon29360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.15,566.97 1437.9,576.92 1438.18,576.88 "
-       id="polygon29362" />
-    <line
-       x1="1643.5699"
-       y1="487.44"
-       x2="1644.75"
-       y2="486.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29364" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1392.91,600.96 1380.68,596.08 1380.52,595.84 "
-       id="polygon29366" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1394.09,597.91 1381.39,593.04 1381.7,592.79 "
-       id="polygon29368" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1443.43,584.22 1443.75,584.27 1438.48,587.35 "
-       id="polygon29370" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1455.03,577.18 1443.73,584.29 1444.09,584.49 "
-       id="polygon29372" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.91,576.91 1438.19,576.87 1433.47,581.68 "
-       id="polygon29374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.43,566.93 1438.18,576.88 1438.55,576.98 "
-       id="polygon29376" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1456.76,580.02 1445.46,587.14 1445.34,587.39 "
-       id="polygon29378" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1392.84,600.57 1380.52,595.84 1380.45,595.46 "
-       id="polygon29380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.78,598.16 1381.08,593.43 1381.39,593.04 "
-       id="polygon29382" />
-    <line
-       x1="1407.4301"
-       y1="361.14999"
-       x2="1405.66"
-       y2="362.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29384" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.87,600.09 1380.45,595.46 1380.48,594.98 "
-       id="polygon29386" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1443.75,584.27 1444.11,584.48 1438.66,587.58 "
-       id="polygon29388" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1455.39,577.38 1444.09,584.49 1444.47,584.83 "
-       id="polygon29390" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1456.77,579.64 1445.46,586.75 1445.46,587.14 "
-       id="polygon29392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.81,567.03 1438.55,576.98 1439,577.2 "
-       id="polygon29394" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.47,598.54 1380.81,593.91 1381.08,593.43 "
-       id="polygon29396" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393,599.56 1380.48,594.98 1380.6,594.45 "
-       id="polygon29398" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.78,598.16 1393.47,598.54 1388.03,596.01 "
-       id="polygon29400" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.84,603.45 1393.18,599.02 1393.45,598.53 "
-       id="polygon29402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.2,599.02 1380.6,594.45 1380.81,593.91 "
-       id="polygon29404" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1449.75,568.83 1440.5,578.79 1440.63,579.16 "
-       id="polygon29406" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1444.11,584.48 1444.49,584.82 1438.45,588.23 "
-       id="polygon29408" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1455.77,577.72 1444.47,584.83 1444.83,585.28 "
-       id="polygon29410" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1456.65,579.17 1445.36,586.29 1445.46,586.75 "
-       id="polygon29412" />
-    <line
-       x1="1644.75"
-       y1="486.04999"
-       x2="1646.0699"
-       y2="484.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29414" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.62,587.02 1438.57,576.96 1439.01,577.19 "
-       id="polygon29416" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1448.25,567.25 1439,577.2 1439.45,577.53 "
-       id="polygon29418" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1456.13,578.16 1444.83,585.28 1445.14,585.78 "
-       id="polygon29420" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1456.44,578.66 1445.14,585.78 1445.36,586.29 "
-       id="polygon29422" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1449.5,568.41 1440.25,578.36 1440.5,578.79 "
-       id="polygon29424" />
-    <line
-       x1="1652.55"
-       y1="599.54999"
-       x2="1654.3"
-       y2="597.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29426" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1448.71,567.58 1439.45,577.53 1439.88,577.93 "
-       id="polygon29428" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1449.14,567.98 1439.88,577.93 1440.25,578.36 "
-       id="polygon29430" />
-    <line
-       x1="1405.66"
-       y1="362.87"
-       x2="1403.76"
-       y2="364.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29432" />
-    <line
-       x1="1633.9399"
-       y1="420.10001"
-       x2="1631.95"
-       y2="417.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29434" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.19,579.36 1440.6,579.45 1440.44,579.63 "
-       id="polygon29436" />
-    <line
-       x1="1613.6801"
-       y1="526.39001"
-       x2="1614.5699"
-       y2="529.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29438" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1393.88,593.95 1381.1,588.83 1380.95,588.59 "
-       id="polygon29440" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1395.07,590.91 1381.84,585.8 1382.14,585.55 "
-       id="polygon29442" />
-    <line
-       x1="1646.0699"
-       y1="484.72"
-       x2="1647.52"
-       y2="483.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29444" />
-    <line
-       x1="1403.76"
-       y1="364.45001"
-       x2="1401.72"
-       y2="365.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29446" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.67,598.19 1393.8,593.58 1393.83,593.09 "
-       id="polygon29448" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1393.82,593.58 1380.95,588.59 1380.89,588.21 "
-       id="polygon29450" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.76,591.16 1381.54,586.19 1381.84,585.8 "
-       id="polygon29452" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1393.75,598.14 1394.07,597.89 1399.04,600.08 "
-       id="polygon29454" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1381.7,592.79 1394.09,597.91 1394.38,597.82 "
-       id="polygon29456" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1380.68,596.08 1393.06,601.2 1392.91,600.96 "
-       id="polygon29458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.79,597.65 1393.83,593.09 1393.95,592.55 "
-       id="polygon29460" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.86,593.1 1380.89,588.21 1380.93,587.73 "
-       id="polygon29462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.46,591.55 1381.27,586.67 1381.54,586.19 "
-       id="polygon29464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.46,591.55 1394.2,592.04 1389.96,589.89 "
-       id="polygon29466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.99,597.11 1393.95,592.55 1394.15,592.02 "
-       id="polygon29468" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.98,592.57 1380.93,587.73 1381.06,587.2 "
-       id="polygon29470" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.2,592.04 1381.06,587.2 1381.27,586.67 "
-       id="polygon29472" />
-    <line
-       x1="1401.72"
-       y1="365.88"
-       x2="1399.5699"
-       y2="367.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29474" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.45,598.53 1393.75,598.14 1398.44,600.31 "
-       id="polygon29476" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1381.39,593.04 1393.78,598.16 1394.09,597.91 "
-       id="polygon29478" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1380.52,595.84 1392.91,600.96 1392.84,600.57 "
-       id="polygon29480" />
-    <line
-       x1="1647.52"
-       y1="483.47"
-       x2="1649.08"
-       y2="482.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.08,593.43 1393.47,598.54 1388.03,596.01 "
-       id="polygon29484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.45,595.46 1392.84,600.57 1392.87,600.09 "
-       id="polygon29486" />
-    <line
-       x1="1650.66"
-       y1="601.84998"
-       x2="1652.55"
-       y2="599.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.81,593.91 1393.2,599.02 1393.47,598.54 "
-       id="polygon29490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.48,594.98 1392.87,600.09 1393,599.56 "
-       id="polygon29492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.6,594.45 1393,599.56 1393.2,599.02 "
-       id="polygon29494" />
-    <line
-       x1="1399.5699"
-       y1="367.14999"
-       x2="1397.3101"
-       y2="368.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29496" />
-    <line
-       x1="1635.77"
-       y1="422.41"
-       x2="1633.9399"
-       y2="420.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29498" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1432.37,591.22 1443.75,584.27 1438.48,587.35 "
-       id="polygon29500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1428.81,586.7 1438.19,576.87 1433.47,581.68 "
-       id="polygon29502" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1410.25,602.99 1397.18,597.83 1397.47,597.74 "
-       id="polygon29504" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1433.94,594.35 1445.45,587.14 1445.32,587.4 "
-       id="polygon29506" />
-    <line
-       x1="1397.3101"
-       y1="368.26001"
-       x2="1394.96"
-       y2="369.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29508" />
-    <line
-       x1="1649.08"
-       y1="482.29001"
-       x2="1650.76"
-       y2="481.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29510" />
-    <polygon
-       style="opacity:1;fill:#0000bb"
-       points="1431.22,589.29 1440.62,579.17 1440.6,579.45 "
-       id="polygon29512" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1432.73,591.43 1444.11,584.48 1438.66,587.58 "
-       id="polygon29514" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1394.72,591.14 1395.03,590.89 1399.17,592.78 "
-       id="polygon29516" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1382.14,585.55 1395.07,590.91 1395.34,590.82 "
-       id="polygon29518" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1409.96,603.08 1397.18,597.83 1400.08,599.3 "
-       id="polygon29520" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1381.1,588.83 1394.02,594.19 1393.88,593.95 "
-       id="polygon29522" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1434.07,594.09 1445.46,586.76 1445.45,587.14 "
-       id="polygon29524" />
-    <line
-       x1="1394.96"
-       y1="369.19"
-       x2="1392.54"
-       y2="369.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29526" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1433.11,591.77 1444.49,584.82 1438.45,588.23 "
-       id="polygon29528" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1431.23,589 1440.5,578.79 1440.62,579.17 "
-       id="polygon29530" />
-    <line
-       x1="1614.5699"
-       y1="529.78003"
-       x2="1615.16"
-       y2="533.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.64,603.33 1396.86,598.08 1399.79,599.66 "
-       id="polygon29534" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1434.08,593.71 1445.36,586.29 1445.46,586.76 "
-       id="polygon29536" />
-    <polygon
-       style="opacity:1;fill:#0000f1"
-       points="1394.73,591.42 1407.34,596.82 1407.58,596.52 "
-       id="polygon29538" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.41,591.53 1394.72,591.14 1398.38,592.95 "
-       id="polygon29540" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1381.84,585.8 1394.76,591.16 1395.07,590.91 "
-       id="polygon29542" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1380.95,588.59 1393.88,593.95 1393.82,593.58 "
-       id="polygon29544" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1433.46,592.21 1444.49,584.82 1444.84,585.27 "
-       id="polygon29546" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1431.11,588.63 1440.24,578.36 1440.5,578.79 "
-       id="polygon29548" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1433.98,593.23 1445.14,585.77 1445.36,586.29 "
-       id="polygon29550" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1430.07,587.36 1439.01,577.19 1439.46,577.52 "
-       id="polygon29552" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.34,603.71 1396.55,598.46 1399.76,600.21 "
-       id="polygon29554" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1433.76,592.72 1444.84,585.27 1445.14,585.77 "
-       id="polygon29556" />
-    <line
-       x1="1392.54"
-       y1="369.95001"
-       x2="1390.05"
-       y2="370.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29558" />
-    <line
-       x1="1650.76"
-       y1="481.20999"
-       x2="1652.54"
-       y2="480.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29560" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1430.86,588.2 1439.89,577.93 1440.24,578.36 "
-       id="polygon29562" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.15,592.02 1394.41,591.53 1397.8,593.3 "
-       id="polygon29564" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.54,586.19 1394.46,591.55 1394.76,591.16 "
-       id="polygon29566" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1430.5,587.76 1439.46,577.52 1439.89,577.93 "
-       id="polygon29568" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.89,588.21 1393.82,593.58 1393.86,593.1 "
-       id="polygon29570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.27,586.67 1394.2,592.04 1389.96,589.89 "
-       id="polygon29572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.93,587.73 1393.86,593.1 1393.98,592.57 "
-       id="polygon29574" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.06,587.2 1393.98,592.57 1394.2,592.04 "
-       id="polygon29576" />
-    <line
-       x1="1390.05"
-       y1="370.51999"
-       x2="1387.51"
-       y2="370.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29578" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1443.43,584.22 1432.05,591.17 1432.37,591.22 "
-       id="polygon29580" />
-    <line
-       x1="1648.65"
-       y1="603.90997"
-       x2="1650.66"
-       y2="601.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29582" />
-    <line
-       x1="1637.41"
-       y1="424.89001"
-       x2="1635.77"
-       y2="422.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29584" />
-    <line
-       x1="1387.51"
-       y1="370.89999"
-       x2="1384.9399"
-       y2="371.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29586" />
-    <line
-       x1="1652.54"
-       y1="480.22"
-       x2="1654.41"
-       y2="479.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29588" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1443.75,584.27 1432.37,591.22 1432.73,591.43 "
-       id="polygon29590" />
-    <line
-       x1="1384.9399"
-       y1="371.09"
-       x2="1382.36"
-       y2="371.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29592" />
-    <polygon
-       style="opacity:1;fill:#0000bb"
-       points="1440.62,579.17 1431.23,589 1431.22,589.29 "
-       id="polygon29594" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1432.39,591.21 1432.75,591.41 1427.49,594.28 "
-       id="polygon29596" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1444.11,584.48 1432.73,591.43 1433.11,591.77 "
-       id="polygon29598" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.57,576.96 1429.18,586.8 1429.62,587.02 "
-       id="polygon29600" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1445.46,586.76 1434.08,593.71 1434.07,594.09 "
-       id="polygon29602" />
-    <line
-       x1="1379.77"
-       y1="370.87"
-       x2="1377.2"
-       y2="370.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29604" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1440.5,578.79 1431.11,588.63 1431.23,589 "
-       id="polygon29606" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1432.75,591.41 1433.13,591.76 1427.39,594.85 "
-       id="polygon29608" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1444.49,584.82 1433.11,591.77 1433.46,592.21 "
-       id="polygon29610" />
-    <line
-       x1="1377.2"
-       y1="370.47"
-       x2="1374.66"
-       y2="369.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29612" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1445.36,586.29 1433.98,593.23 1434.08,593.71 "
-       id="polygon29614" />
-    <line
-       x1="1654.41"
-       y1="479.34"
-       x2="1656.36"
-       y2="478.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29616" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1439.01,577.19 1429.62,587.02 1430.07,587.36 "
-       id="polygon29618" />
-    <line
-       x1="1374.66"
-       y1="369.88"
-       x2="1372.17"
-       y2="369.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29620" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1422.01,598.97 1433.13,591.76 1433.48,592.21 "
-       id="polygon29622" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1444.84,585.27 1433.46,592.21 1433.76,592.72 "
-       id="polygon29624" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1445.14,585.77 1433.76,592.72 1433.98,593.23 "
-       id="polygon29626" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1440.24,578.36 1430.86,588.2 1431.11,588.63 "
-       id="polygon29628" />
-    <line
-       x1="1351.66"
-       y1="349.84"
-       x2="1350.72"
-       y2="347.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29630" />
-    <line
-       x1="1352.79"
-       y1="352.22"
-       x2="1351.66"
-       y2="349.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29632" />
-    <line
-       x1="1350.72"
-       y1="347.39001"
-       x2="1349.96"
-       y2="344.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29634" />
-    <line
-       x1="1354.09"
-       y1="354.51001"
-       x2="1352.79"
-       y2="352.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29636" />
-    <line
-       x1="1372.17"
-       y1="369.10001"
-       x2="1369.73"
-       y2="368.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29638" />
-    <line
-       x1="1349.96"
-       y1="344.87"
-       x2="1349.4"
-       y2="342.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29640" />
-    <line
-       x1="1355.5601"
-       y1="356.70001"
-       x2="1354.09"
-       y2="354.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29642" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1439.46,577.52 1430.07,587.36 1430.5,587.76 "
-       id="polygon29644" />
-    <line
-       x1="1357.1899"
-       y1="358.76999"
-       x2="1355.5601"
-       y2="356.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29646" />
-    <line
-       x1="1369.73"
-       y1="368.13"
-       x2="1367.38"
-       y2="366.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29648" />
-    <line
-       x1="1349.4"
-       y1="342.29999"
-       x2="1349.03"
-       y2="339.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29650" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1439.89,577.93 1430.5,587.76 1430.86,588.2 "
-       id="polygon29652" />
-    <line
-       x1="1358.97"
-       y1="360.70999"
-       x2="1357.1899"
-       y2="358.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29654" />
-    <line
-       x1="1367.38"
-       y1="366.98001"
-       x2="1365.11"
-       y2="365.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29656" />
-    <line
-       x1="1360.89"
-       y1="362.51001"
-       x2="1358.97"
-       y2="360.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29658" />
-    <line
-       x1="1362.9399"
-       y1="364.16"
-       x2="1360.89"
-       y2="362.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29660" />
-    <line
-       x1="1365.11"
-       y1="365.66"
-       x2="1362.9399"
-       y2="364.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29662" />
-    <line
-       x1="1349.03"
-       y1="339.70999"
-       x2="1348.86"
-       y2="337.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29664" />
-    <line
-       x1="1348.86"
-       y1="337.09"
-       x2="1348.89"
-       y2="334.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29666" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1396.86,598.08 1409.64,603.33 1409.96,603.08 "
-       id="polygon29668" />
-    <line
-       x1="1348.89"
-       y1="334.48001"
-       x2="1349.12"
-       y2="331.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29670" />
-    <line
-       x1="1615.16"
-       y1="533.25"
-       x2="1615.4301"
-       y2="536.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29672" />
-    <line
-       x1="1656.36"
-       y1="478.57001"
-       x2="1658.39"
-       y2="477.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29674" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1406.75,602.72 1394.07,597.89 1394.36,597.8 "
-       id="polygon29676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.55,598.46 1409.34,603.71 1409.64,603.33 "
-       id="polygon29678" />
-    <line
-       x1="1638.88"
-       y1="427.53"
-       x2="1637.41"
-       y2="424.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29680" />
-    <line
-       x1="1349.12"
-       y1="331.88"
-       x2="1349.54"
-       y2="329.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29682" />
-    <line
-       x1="1646.52"
-       y1="605.71997"
-       x2="1648.65"
-       y2="603.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29684" />
-    <line
-       x1="1349.54"
-       y1="329.29999"
-       x2="1350.15"
-       y2="326.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29686" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1405.3,605.88 1393.08,601.21 1392.91,600.96 "
-       id="polygon29688" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1406.46,602.8 1394.07,597.89 1399.04,600.08 "
-       id="polygon29690" />
-    <line
-       x1="1350.15"
-       y1="326.76999"
-       x2="1350.96"
-       y2="324.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29692" />
-    <line
-       x1="1658.39"
-       y1="477.92999"
-       x2="1660.47"
-       y2="477.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29694" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1405.23,605.5 1392.91,600.96 1392.84,600.58 "
-       id="polygon29696" />
-    <line
-       x1="1694.97"
-       y1="517.98999"
-       x2="1693.98"
-       y2="519.91998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29698" />
-    <line
-       x1="1695.8199"
-       y1="516"
-       x2="1694.97"
-       y2="517.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29700" />
-    <line
-       x1="1693.98"
-       y1="519.91998"
-       x2="1692.86"
-       y2="521.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29702" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.15,603.05 1393.75,598.14 1398.44,600.31 "
-       id="polygon29704" />
-    <line
-       x1="1696.54"
-       y1="513.96002"
-       x2="1695.8199"
-       y2="516"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29706" />
-    <line
-       x1="1692.86"
-       y1="521.78003"
-       x2="1691.62"
-       y2="523.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29708" />
-    <line
-       x1="1350.96"
-       y1="324.29999"
-       x2="1351.9399"
-       y2="321.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29710" />
-    <line
-       x1="1697.11"
-       y1="511.88"
-       x2="1696.54"
-       y2="513.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29712" />
-    <line
-       x1="1691.62"
-       y1="523.56"
-       x2="1690.27"
-       y2="525.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29714" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.25,605.01 1392.84,600.58 1392.86,600.09 "
-       id="polygon29716" />
-    <line
-       x1="1697.54"
-       y1="509.76999"
-       x2="1697.11"
-       y2="511.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.38,604.47 1392.86,600.09 1392.98,599.55 "
-       id="polygon29720" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.58,603.93 1392.98,599.55 1393.18,599.02 "
-       id="polygon29722" />
-    <line
-       x1="1690.27"
-       y1="525.25"
-       x2="1688.8199"
-       y2="526.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29724" />
-    <line
-       x1="1697.8"
-       y1="507.64001"
-       x2="1697.54"
-       y2="509.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29726" />
-    <line
-       x1="1660.47"
-       y1="477.41"
-       x2="1662.6"
-       y2="477.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29728" />
-    <line
-       x1="1351.9399"
-       y1="321.89999"
-       x2="1353.11"
-       y2="319.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29730" />
-    <line
-       x1="1688.8199"
-       y1="526.84003"
-       x2="1687.28"
-       y2="528.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29732" />
-    <line
-       x1="1697.91"
-       y1="505.51001"
-       x2="1697.8"
-       y2="507.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29734" />
-    <line
-       x1="1697.86"
-       y1="503.38"
-       x2="1697.91"
-       y2="505.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29736" />
-    <line
-       x1="1687.28"
-       y1="528.32001"
-       x2="1685.66"
-       y2="529.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29738" />
-    <line
-       x1="1353.11"
-       y1="319.59"
-       x2="1354.4399"
-       y2="317.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29740" />
-    <line
-       x1="1662.6"
-       y1="477.01999"
-       x2="1664.76"
-       y2="476.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29742" />
-    <line
-       x1="1697.65"
-       y1="501.26001"
-       x2="1697.86"
-       y2="503.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29744" />
-    <line
-       x1="1640.14"
-       y1="430.29999"
-       x2="1638.88"
-       y2="427.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29746" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1408.16,595.89 1395.03,590.89 1395.32,590.8 "
-       id="polygon29748" />
-    <line
-       x1="1685.66"
-       y1="529.69"
-       x2="1683.97"
-       y2="530.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29750" />
-    <line
-       x1="1697.29"
-       y1="499.17001"
-       x2="1697.65"
-       y2="501.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29752" />
-    <line
-       x1="1354.4399"
-       y1="317.37"
-       x2="1355.9301"
-       y2="315.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29754" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1422.46,601.13 1434.05,594.1 1433.92,594.36 "
-       id="polygon29756" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1406.71,599.06 1394.04,594.21 1393.88,593.96 "
-       id="polygon29758" />
-    <line
-       x1="1664.76"
-       y1="476.76999"
-       x2="1666.95"
-       y2="476.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29760" />
-    <line
-       x1="1696.76"
-       y1="497.12"
-       x2="1697.29"
-       y2="499.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29762" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1407.87,595.98 1395.03,590.89 1399.17,592.78 "
-       id="polygon29764" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1421.7,598.71 1423.03,597.28 1423.29,597.08 "
-       id="polygon29766" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1421.29,598.18 1421.66,598.52 1423.86,596.66 "
-       id="polygon29768" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1421.7,598.71 1421.58,598.33 1423.03,597.28 "
-       id="polygon29770" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1421.29,598.18 1432.75,591.41 1427.49,594.28 "
-       id="polygon29772" />
-    <line
-       x1="1683.97"
-       y1="530.94"
-       x2="1682.22"
-       y2="532.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29774" />
-    <line
-       x1="1615.4301"
-       y1="536.79999"
-       x2="1615.38"
-       y2="540.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29776" />
-    <line
-       x1="1644.29"
-       y1="607.28998"
-       x2="1646.52"
-       y2="605.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29778" />
-    <line
-       x1="1696.08"
-       y1="495.12"
-       x2="1696.76"
-       y2="497.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29780" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1406.64,598.67 1393.88,593.96 1393.8,593.58 "
-       id="polygon29782" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1422.59,600.86 1434.07,593.71 1434.05,594.1 "
-       id="polygon29784" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.56,596.23 1394.72,591.14 1398.38,592.95 "
-       id="polygon29786" />
-    <line
-       x1="1666.95"
-       y1="476.64999"
-       x2="1669.14"
-       y2="476.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29788" />
-    <line
-       x1="1355.9301"
-       y1="315.26999"
-       x2="1357.5699"
-       y2="313.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29790" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1394.07,597.89 1406.46,602.8 1406.75,602.72 "
-       id="polygon29792" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1393.08,601.21 1405.47,606.13 1405.3,605.88 "
-       id="polygon29794" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1421.66,598.52 1433.13,591.76 1427.39,594.85 "
-       id="polygon29796" />
-    <line
-       x1="1695.25"
-       y1="493.17999"
-       x2="1696.08"
-       y2="495.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29798" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1427.96,593.67 1420.61,597.92 1420.92,597.97 "
-       id="polygon29800" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1428.84,593.07 1420.61,597.92 1427.96,593.67 "
-       id="polygon29802" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1432.39,591.21 1420.92,597.97 1421.29,598.18 "
-       id="polygon29804" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1423.03,597.28 1431.11,588.63 1431.22,589.01 "
-       id="polygon29806" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1423.29,597.08 1423.03,597.28 1431.22,589.01 "
-       id="polygon29808" />
-    <line
-       x1="1682.22"
-       y1="532.07001"
-       x2="1680.4301"
-       y2="533.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.26,596.62 1394.41,591.53 1397.8,593.3 "
-       id="polygon29812" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1422.61,600.47 1433.98,593.23 1434.07,593.71 "
-       id="polygon29814" />
-    <line
-       x1="1694.27"
-       y1="491.29999"
-       x2="1695.25"
-       y2="493.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29816" />
-    <line
-       x1="1669.14"
-       y1="476.67999"
-       x2="1671.34"
-       y2="476.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29818" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1422.51,600 1433.77,592.71 1433.98,593.23 "
-       id="polygon29820" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1393.75,598.14 1406.15,603.05 1406.46,602.8 "
-       id="polygon29822" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1422.3,599.48 1433.48,592.21 1433.77,592.71 "
-       id="polygon29824" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1392.91,600.96 1405.3,605.88 1405.23,605.5 "
-       id="polygon29826" />
-    <line
-       x1="1693.14"
-       y1="489.51001"
-       x2="1694.27"
-       y2="491.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29828" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1421.33,597.9 1430.5,587.75 1430.86,588.2 "
-       id="polygon29830" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1420.98,597.46 1430.09,587.34 1430.5,587.75 "
-       id="polygon29832" />
-    <line
-       x1="1357.5699"
-       y1="313.29999"
-       x2="1359.36"
-       y2="311.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29834" />
-    <line
-       x1="1671.34"
-       y1="476.85001"
-       x2="1673.52"
-       y2="477.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29836" />
-    <line
-       x1="1691.88"
-       y1="487.79999"
-       x2="1693.14"
-       y2="489.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29838" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.45,598.53 1405.84,603.45 1406.15,603.05 "
-       id="polygon29840" />
-    <line
-       x1="1680.4301"
-       y1="533.06"
-       x2="1678.59"
-       y2="533.91998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29842" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.84,600.58 1405.23,605.5 1405.25,605.01 "
-       id="polygon29844" />
-    <line
-       x1="1641.1899"
-       y1="433.19"
-       x2="1640.14"
-       y2="430.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29846" />
-    <line
-       x1="1673.52"
-       y1="477.17001"
-       x2="1675.67"
-       y2="477.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29848" />
-    <line
-       x1="1690.48"
-       y1="486.19"
-       x2="1691.88"
-       y2="487.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29850" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.18,599.02 1405.58,603.93 1405.84,603.45 "
-       id="polygon29852" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.86,600.09 1405.25,605.01 1405.38,604.47 "
-       id="polygon29854" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1432.08,591.16 1428.84,593.07 1427.96,593.67 "
-       id="polygon29856" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.98,599.55 1405.38,604.47 1405.58,603.93 "
-       id="polygon29858" />
-    <line
-       x1="1688.96"
-       y1="484.69"
-       x2="1690.48"
-       y2="486.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29860" />
-    <line
-       x1="1675.67"
-       y1="477.63"
-       x2="1677.78"
-       y2="478.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29862" />
-    <line
-       x1="1687.33"
-       y1="483.29001"
-       x2="1688.96"
-       y2="484.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29864" />
-    <line
-       x1="1677.78"
-       y1="478.23001"
-       x2="1679.84"
-       y2="478.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29866" />
-    <line
-       x1="1359.36"
-       y1="311.45999"
-       x2="1361.27"
-       y2="309.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29868" />
-    <line
-       x1="1685.59"
-       y1="482.01999"
-       x2="1687.33"
-       y2="483.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29870" />
-    <line
-       x1="1679.84"
-       y1="478.97"
-       x2="1681.84"
-       y2="479.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29872" />
-    <line
-       x1="1683.76"
-       y1="480.87"
-       x2="1685.59"
-       y2="482.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29874" />
-    <line
-       x1="1678.59"
-       y1="533.91998"
-       x2="1676.74"
-       y2="534.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29876" />
-    <line
-       x1="1681.84"
-       y1="479.85999"
-       x2="1683.76"
-       y2="480.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29878" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1432.75,591.41 1421.66,598.52 1423.86,596.66 "
-       id="polygon29880" />
-    <line
-       x1="1361.27"
-       y1="309.76999"
-       x2="1363.3"
-       y2="308.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29882" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1434.07,593.71 1422.61,600.47 1422.59,600.86 "
-       id="polygon29884" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1395.03,590.89 1407.87,595.98 1408.16,595.89 "
-       id="polygon29886" />
-    <line
-       x1="1676.74"
-       y1="534.64001"
-       x2="1674.88"
-       y2="535.21997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29888" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1394.04,594.21 1406.88,599.3 1406.71,599.06 "
-       id="polygon29890" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1431.11,588.63 1421.58,598.33 1423.03,597.28 "
-       id="polygon29892" />
-    <line
-       x1="1641.98"
-       y1="608.59003"
-       x2="1644.29"
-       y2="607.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29894" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1433.13,591.76 1421.66,598.52 1422.01,598.97 "
-       id="polygon29896" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1433.98,593.23 1422.51,600 1422.61,600.47 "
-       id="polygon29898" />
-    <line
-       x1="1615.38"
-       y1="540.38"
-       x2="1615.01"
-       y2="543.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29900" />
-    <polygon
-       style="opacity:1;fill:#00007f"
-       points="1433.48,592.21 1422.01,598.97 1422.3,599.48 "
-       id="polygon29902" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1433.77,592.71 1422.3,599.48 1422.51,600 "
-       id="polygon29904" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1394.72,591.14 1407.56,596.23 1407.87,595.98 "
-       id="polygon29906" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1393.88,593.96 1406.71,599.06 1406.64,598.67 "
-       id="polygon29908" />
-    <line
-       x1="1642.02"
-       y1="436.19"
-       x2="1641.1899"
-       y2="433.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29910" />
-    <line
-       x1="1363.3"
-       y1="308.23001"
-       x2="1365.4399"
-       y2="306.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.41,591.53 1407.26,596.62 1407.56,596.23 "
-       id="polygon29914" />
-    <line
-       x1="1674.88"
-       y1="535.21997"
-       x2="1673.02"
-       y2="535.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29916" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.8,593.58 1406.64,598.67 1406.67,598.19 "
-       id="polygon29918" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.15,592.02 1406.99,597.11 1407.26,596.62 "
-       id="polygon29920" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.83,593.09 1406.67,598.19 1406.79,597.65 "
-       id="polygon29922" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.95,592.55 1406.79,597.65 1406.99,597.11 "
-       id="polygon29924" />
-    <line
-       x1="1673.02"
-       y1="535.65997"
-       x2="1671.17"
-       y2="535.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29926" />
-    <line
-       x1="1365.4399"
-       y1="306.85999"
-       x2="1367.67"
-       y2="305.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29928" />
-    <line
-       x1="1642.63"
-       y1="439.26999"
-       x2="1642.02"
-       y2="436.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29930" />
-    <line
-       x1="1555.7"
-       y1="462.81"
-       x2="1557.17"
-       y2="465.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29932" />
-    <line
-       x1="1557.17"
-       y1="465.82001"
-       x2="1558.86"
-       y2="468.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29934" />
-    <line
-       x1="1554.45"
-       y1="459.73001"
-       x2="1555.7"
-       y2="462.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29936" />
-    <line
-       x1="1553.4301"
-       y1="456.59"
-       x2="1554.45"
-       y2="459.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29938" />
-    <line
-       x1="1671.17"
-       y1="535.96002"
-       x2="1669.35"
-       y2="536.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29940" />
-    <line
-       x1="1560.77"
-       y1="471.5"
-       x2="1562.87"
-       y2="474.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29942" />
-    <line
-       x1="1367.67"
-       y1="305.66"
-       x2="1369.97"
-       y2="304.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29944" />
-    <line
-       x1="1639.6"
-       y1="609.62"
-       x2="1641.98"
-       y2="608.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29946" />
-    <line
-       x1="1552.64"
-       y1="453.39001"
-       x2="1553.4301"
-       y2="456.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29948" />
-    <line
-       x1="1562.87"
-       y1="474.14001"
-       x2="1565.16"
-       y2="476.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29950" />
-    <line
-       x1="1615.01"
-       y1="543.97998"
-       x2="1614.3199"
-       y2="547.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29952" />
-    <line
-       x1="1565.16"
-       y1="476.64001"
-       x2="1567.63"
-       y2="478.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29954" />
-    <line
-       x1="1552.1"
-       y1="450.17999"
-       x2="1552.64"
-       y2="453.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29956" />
-    <line
-       x1="1669.35"
-       y1="536.10999"
-       x2="1667.5699"
-       y2="536.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29958" />
-    <line
-       x1="1369.97"
-       y1="304.64001"
-       x2="1372.34"
-       y2="303.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29960" />
-    <line
-       x1="1567.63"
-       y1="478.97"
-       x2="1570.26"
-       y2="481.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29962" />
-    <line
-       x1="1643"
-       y1="442.41"
-       x2="1642.63"
-       y2="439.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29964" />
-    <line
-       x1="1551.79"
-       y1="446.95999"
-       x2="1552.1"
-       y2="450.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29966" />
-    <line
-       x1="1406.86"
-       y1="598.64001"
-       x2="1406.74"
-       y2="598.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29968" />
-    <line
-       x1="1570.26"
-       y1="481.12"
-       x2="1573.04"
-       y2="483.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29970" />
-    <line
-       x1="1418.11"
-       y1="595.40002"
-       x2="1417.9301"
-       y2="595.34998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29972" />
-    <polygon
-       style="opacity:1;fill:#00009d"
-       points="1414.75,594.42 1418.1,579.87 1417.85,579.88 "
-       id="polygon29974" />
-    <line
-       x1="1551.72"
-       y1="443.76001"
-       x2="1551.79"
-       y2="446.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29976" />
-    <line
-       x1="1408.48"
-       y1="596.77002"
-       x2="1408.33"
-       y2="596.89001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29978" />
-    <line
-       x1="1667.5699"
-       y1="536.10999"
-       x2="1665.85"
-       y2="535.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29980" />
-    <line
-       x1="1372.34"
-       y1="303.81"
-       x2="1374.75"
-       y2="303.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29982" />
-    <line
-       x1="1573.04"
-       y1="483.07001"
-       x2="1575.96"
-       y2="484.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29984" />
-    <line
-       x1="1405.9"
-       y1="600.71997"
-       x2="1406"
-       y2="600.38"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29986" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="1417.84,579.93 1420.84,565.32 1420.59,565.34 "
-       id="polygon29988" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1421.41,580.75 1418.31,595.28 1418.21,595.18 "
-       id="polygon29990" />
-    <line
-       x1="1405.73"
-       y1="601.40002"
-       x2="1405.8"
-       y2="601.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29992" />
-    <line
-       x1="1643.14"
-       y1="445.60001"
-       x2="1643"
-       y2="442.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29994" />
-    <line
-       x1="1637.1899"
-       y1="610.37"
-       x2="1639.6"
-       y2="609.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29996" />
-    <line
-       x1="1551.89"
-       y1="440.59"
-       x2="1551.72"
-       y2="443.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line29998" />
-    <line
-       x1="1575.96"
-       y1="484.82001"
-       x2="1579"
-       y2="486.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30000" />
-    <line
-       x1="1406.54"
-       y1="599.28003"
-       x2="1406.75"
-       y2="598.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30002" />
-    <line
-       x1="1614.3199"
-       y1="547.57001"
-       x2="1613.3"
-       y2="551.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30004" />
-    <line
-       x1="1405.5699"
-       y1="602.42999"
-       x2="1405.61"
-       y2="602.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30006" />
-    <polygon
-       style="opacity:1;fill:#0000ef"
-       points="1423.81,565.88 1426.55,551.36 1426.27,551.25 "
-       id="polygon30008" />
-    <line
-       x1="1406.09"
-       y1="600.45001"
-       x2="1406.05"
-       y2="600.42999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30010" />
-    <line
-       x1="1665.85"
-       y1="535.97998"
-       x2="1664.1801"
-       y2="535.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30012" />
-    <line
-       x1="1407.87"
-       y1="609.60999"
-       x2="1408.08"
-       y2="609.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30014" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1421.32,580.61 1424.18,566.12 1424.08,566.02 "
-       id="polygon30016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1417.87,580.04 1414.76,594.58 1415.03,594.71 "
-       id="polygon30018" />
-    <line
-       x1="1407.22"
-       y1="598.29999"
-       x2="1407.48"
-       y2="598"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30020" />
-    <line
-       x1="1374.75"
-       y1="303.16"
-       x2="1377.2"
-       y2="302.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30022" />
-    <line
-       x1="1405.55"
-       y1="603.10999"
-       x2="1405.55"
-       y2="602.77002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30024" />
-    <line
-       x1="1579"
-       y1="486.35001"
-       x2="1582.14"
-       y2="487.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30026" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1427.51,521.41 1425.5,536.11 1425.25,536.13 "
-       id="polygon30028" />
-    <line
-       x1="1407.75"
-       y1="597.71002"
-       x2="1408.04"
-       y2="597.44"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30030" />
-    <line
-       x1="1406.98"
-       y1="608.40997"
-       x2="1407.14"
-       y2="608.65997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30032" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1417.86,580.08 1420.51,565.4 1420.61,565.49 "
-       id="polygon30034" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1415.03,594.71 1417.87,580.04 1418.13,580.17 "
-       id="polygon30036" />
-    <line
-       x1="1552.29"
-       y1="437.47"
-       x2="1551.89"
-       y2="440.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30038" />
-    <line
-       x1="1408.91"
-       y1="610.57001"
-       x2="1409.12"
-       y2="610.72998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30040" />
-    <line
-       x1="1405.61"
-       y1="604.15002"
-       x2="1405.58"
-       y2="603.79999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30042" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1421.08,580.82 1417.98,595.36 1418.23,595.34 "
-       id="polygon30044" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1422.96,550.8 1420.5,565.43 1420.6,565.52 "
-       id="polygon30046" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1418.23,595.34 1421.08,580.82 1421.33,580.8 "
-       id="polygon30048" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.61,565.49 1417.86,580.08 1418.13,580.2 "
-       id="polygon30050" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1418.13,580.17 1415.03,594.71 1415.44,594.86 "
-       id="polygon30052" />
-    <line
-       x1="1423.12"
-       y1="606.38"
-       x2="1423.02"
-       y2="606.64001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30054" />
-    <line
-       x1="1408.34"
-       y1="597.17999"
-       x2="1408.66"
-       y2="596.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30056" />
-    <line
-       x1="1412.61"
-       y1="594.90997"
-       x2="1412.36"
-       y2="594.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30058" />
-    <line
-       x1="1643.04"
-       y1="448.82001"
-       x2="1643.14"
-       y2="445.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30060" />
-    <line
-       x1="1422.59"
-       y1="599.65997"
-       x2="1422.71"
-       y2="599.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30062" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1427.26,521.46 1429.34,506.71 1429.09,506.73 "
-       id="polygon30064" />
-    <line
-       x1="1582.14"
-       y1="487.66"
-       x2="1585.36"
-       y2="488.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30066" />
-    <line
-       x1="1409.34"
-       y1="610.89001"
-       x2="1409.5601"
-       y2="611.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30068" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1415.44,594.86 1418.13,580.17 1418.54,580.32 "
-       id="polygon30070" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1428.87,536.75 1426.65,551.42 1426.55,551.33 "
-       id="polygon30072" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1420.69,580.79 1417.58,595.33 1417.98,595.36 "
-       id="polygon30074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.88,565.61 1418.13,580.2 1418.54,580.34 "
-       id="polygon30076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1418.54,580.32 1415.44,594.86 1415.95,595.01 "
-       id="polygon30078" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1425.18,536.16 1422.96,550.83 1423.06,550.92 "
-       id="polygon30080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1418.13,580.2 1420.61,565.49 1420.88,565.61 "
-       id="polygon30082" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1417.98,595.36 1420.69,580.79 1421.08,580.82 "
-       id="polygon30084" />
-    <line
-       x1="1664.1801"
-       y1="535.71002"
-       x2="1662.59"
-       y2="535.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30086" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1429.09,506.75 1431.03,491.98 1430.78,492 "
-       id="polygon30088" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1423.85,566.19 1421.09,580.79 1421.34,580.77 "
-       id="polygon30090" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1421.34,580.77 1423.85,566.19 1424.1,566.18 "
-       id="polygon30092" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.07,550.89 1420.6,565.52 1420.88,565.64 "
-       id="polygon30094" />
-    <line
-       x1="1422.5601"
-       y1="607.78998"
-       x2="1422.46"
-       y2="607.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30096" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.18,580.71 1417.08,595.25 1417.58,595.33 "
-       id="polygon30098" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1428.77,536.64 1430.89,522.02 1430.78,521.94 "
-       id="polygon30100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1419.06,580.47 1415.95,595.01 1416.52,595.14 "
-       id="polygon30102" />
-    <line
-       x1="1377.2"
-       y1="302.70999"
-       x2="1379.67"
-       y2="302.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30104" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1415.95,595.01 1418.54,580.32 1419.06,580.47 "
-       id="polygon30106" />
-    <polygon
-       style="opacity:1;fill:#0000f5"
-       points="1406.42,601.42 1406.54,601.48 1406.39,601.78 "
-       id="polygon30108" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1419.62,580.61 1416.52,595.14 1417.08,595.25 "
-       id="polygon30110" />
-    <line
-       x1="1417.5601"
-       y1="612.12"
-       x2="1417.27"
-       y2="612.21002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30112" />
-    <line
-       x1="1410.48"
-       y1="595.90997"
-       x2="1410.27"
-       y2="595.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30114" />
-    <polygon
-       style="opacity:1;fill:#00009f"
-       points="1430.78,492.02 1432.59,477.23 1432.34,477.26 "
-       id="polygon30116" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1417.58,595.33 1420.18,580.71 1420.69,580.79 "
-       id="polygon30118" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1427.18,521.49 1425.17,536.19 1425.27,536.27 "
-       id="polygon30120" />
-    <line
-       x1="1421.87"
-       y1="598.54999"
-       x2="1421.91"
-       y2="598.66998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.88,565.64 1423.07,550.89 1423.34,551 "
-       id="polygon30124" />
-    <line
-       x1="1552.92"
-       y1="434.42999"
-       x2="1552.29"
-       y2="437.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1418.54,580.34 1420.88,565.61 1421.29,565.75 "
-       id="polygon30128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1416.52,595.14 1419.06,580.47 1419.62,580.61 "
-       id="polygon30130" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1417.08,595.25 1419.62,580.61 1420.18,580.71 "
-       id="polygon30132" />
-    <line
-       x1="1585.36"
-       y1="488.73001"
-       x2="1588.66"
-       y2="489.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30134" />
-    <line
-       x1="1416.8"
-       y1="595.19"
-       x2="1416.8"
-       y2="595.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30136" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1432.33,477.27 1434.03,462.46 1433.78,462.49 "
-       id="polygon30138" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1423.45,566.17 1420.7,580.76 1421.09,580.79 "
-       id="polygon30140" />
-    <line
-       x1="1423.28"
-       y1="601.63"
-       x2="1423.34"
-       y2="601.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30142" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.34,551 1420.88,565.64 1421.29,565.76 "
-       id="polygon30144" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.29,565.75 1418.54,580.34 1419.05,580.47 "
-       id="polygon30146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.28,536.25 1423.06,550.92 1423.33,551.02 "
-       id="polygon30148" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1421.09,580.79 1423.45,566.17 1423.85,566.19 "
-       id="polygon30150" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1424.11,566.14 1426.32,551.53 1426.57,551.5 "
-       id="polygon30152" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1426.32,551.53 1423.86,566.16 1424.11,566.14 "
-       id="polygon30154" />
-    <line
-       x1="1418.4"
-       y1="611.78003"
-       x2="1418.12"
-       y2="611.90002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30156" />
-    <line
-       x1="1422.1"
-       y1="608.59003"
-       x2="1421.96"
-       y2="608.78998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30158" />
-    <line
-       x1="1414.66"
-       y1="612.57001"
-       x2="1414.95"
-       y2="612.58002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30160" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.95,566.1 1420.19,580.7 1420.7,580.76 "
-       id="polygon30162" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.81,565.88 1419.05,580.47 1419.63,580.6 "
-       id="polygon30164" />
-    <line
-       x1="1408.46"
-       y1="609.92999"
-       x2="1408.42"
-       y2="609.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30166" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1419.05,580.47 1421.29,565.75 1421.81,565.88 "
-       id="polygon30168" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1435.13,447.71 1436.64,432.88 1436.39,432.91 "
-       id="polygon30170" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.33,551.02 1425.28,536.25 1425.55,536.35 "
-       id="polygon30172" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.38,566 1419.63,580.6 1420.19,580.7 "
-       id="polygon30174" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.7,580.76 1422.95,566.1 1423.45,566.17 "
-       id="polygon30176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.29,521.57 1425.27,536.27 1425.55,536.37 "
-       id="polygon30178" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.29,565.76 1423.34,551 1423.75,551.13 "
-       id="polygon30180" />
-    <line
-       x1="1642.6899"
-       y1="452.04001"
-       x2="1643.04"
-       y2="448.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30182" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1436.39,432.91 1437.83,418.07 1437.58,418.1 "
-       id="polygon30184" />
-    <line
-       x1="1410.76"
-       y1="611.62"
-       x2="1411.01"
-       y2="611.71002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30186" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1426.57,551.48 1428.54,536.83 1428.79,536.8 "
-       id="polygon30188" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1425.92,551.51 1423.46,566.14 1423.86,566.16 "
-       id="polygon30190" />
-    <line
-       x1="1634.74"
-       y1="610.84003"
-       x2="1637.1899"
-       y2="610.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30192" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1428.54,536.83 1426.32,551.5 1426.57,551.48 "
-       id="polygon30194" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1419.63,580.6 1421.81,565.88 1422.38,566 "
-       id="polygon30196" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1423.86,566.16 1425.92,551.51 1426.32,551.53 "
-       id="polygon30198" />
-    <line
-       x1="1419.1801"
-       y1="611.34003"
-       x2="1418.9301"
-       y2="611.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30200" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.75,551.13 1421.29,565.76 1421.81,565.89 "
-       id="polygon30202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1420.19,580.7 1422.38,566 1422.95,566.1 "
-       id="polygon30204" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.55,536.35 1423.33,551.02 1423.75,551.14 "
-       id="polygon30206" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1435.98,477.73 1434.42,492.49 1434.31,492.42 "
-       id="polygon30208" />
-    <line
-       x1="1613.3"
-       y1="551.14001"
-       x2="1611.98"
-       y2="554.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30210" />
-    <line
-       x1="1409.6801"
-       y1="596.66998"
-       x2="1409.4399"
-       y2="596.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30212" />
-    <line
-       x1="1588.66"
-       y1="489.54999"
-       x2="1592"
-       y2="490.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30214" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1432.26,477.3 1430.7,492.07 1430.8,492.14 "
-       id="polygon30216" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1438.71,403.28 1440.05,388.43 1439.8,388.45 "
-       id="polygon30218" />
-    <line
-       x1="1406.08"
-       y1="604.40997"
-       x2="1406.04"
-       y2="604.70001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30220" />
-    <line
-       x1="1417.5601"
-       y1="595.56"
-       x2="1417.8101"
-       y2="595.71002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30222" />
-    <line
-       x1="1411.37"
-       y1="595.84003"
-       x2="1411.15"
-       y2="595.84003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30224" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.55,536.37 1427.29,521.57 1427.56,521.67 "
-       id="polygon30226" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.12,506.86 1427.28,521.59 1427.56,521.68 "
-       id="polygon30228" />
-    <line
-       x1="1416.1899"
-       y1="612.41998"
-       x2="1416.09"
-       y2="612.40997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30230" />
-    <line
-       x1="1662.59"
-       y1="535.29999"
-       x2="1661.09"
-       y2="534.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30232" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.41,551.45 1422.95,566.09 1423.46,566.14 "
-       id="polygon30234" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.81,565.89 1423.75,551.13 1424.27,551.25 "
-       id="polygon30236" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1424.27,551.25 1421.81,565.89 1422.38,566 "
-       id="polygon30238" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1428.8,536.78 1430.56,522.1 1430.81,522.08 "
-       id="polygon30240" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.75,551.14 1425.55,536.35 1425.97,536.47 "
-       id="polygon30242" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1440.88,373.61 1442.21,358.75 1441.96,358.77 "
-       id="polygon30244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.46,566.14 1425.41,551.45 1425.92,551.51 "
-       id="polygon30246" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1437.32,462.85 1438.77,448.12 1438.67,448.05 "
-       id="polygon30248" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1433.7,462.54 1432.26,477.32 1432.36,477.39 "
-       id="polygon30250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1424.84,551.36 1422.38,566 1422.95,566.09 "
-       id="polygon30252" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1430.56,522.1 1428.55,536.8 1428.8,536.78 "
-       id="polygon30254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.56,521.67 1425.55,536.37 1425.97,536.48 "
-       id="polygon30256" />
-    <line
-       x1="1379.67"
-       y1="302.45999"
-       x2="1382.13"
-       y2="302.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30258" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1428.14,536.81 1425.93,551.48 1426.32,551.5 "
-       id="polygon30260" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1426.32,551.5 1428.14,536.81 1428.54,536.83 "
-       id="polygon30262" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1445.91,314.25 1447.86,299.49 1447.46,299.48 "
-       id="polygon30264" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.97,536.47 1423.75,551.14 1424.27,551.25 "
-       id="polygon30266" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.38,566 1424.27,551.25 1424.84,551.36 "
-       id="polygon30268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.8,492.13 1429.12,506.88 1429.39,506.97 "
-       id="polygon30270" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.56,521.68 1429.12,506.86 1429.39,506.96 "
-       id="polygon30272" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1438.77,448.12 1437.43,462.91 1437.32,462.85 "
-       id="polygon30274" />
-    <polygon
-       style="opacity:1;fill:#0000e8"
-       points="1411.46,596.64 1411.43,596.47 1411.67,596.49 "
-       id="polygon30276" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.95,566.09 1424.84,551.36 1425.41,551.45 "
-       id="polygon30278" />
-    <line
-       x1="1409.21"
-       y1="597.22998"
-       x2="1409"
-       y2="597.53003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30280" />
-    <line
-       x1="1503.24"
-       y1="513.45001"
-       x2="1504.4"
-       y2="509.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30282" />
-    <line
-       x1="1553.78"
-       y1="431.48001"
-       x2="1552.92"
-       y2="434.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30284" />
-    <line
-       x1="1502.39"
-       y1="517.66998"
-       x2="1503.24"
-       y2="513.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30286" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1430.81,522.05 1432.4,507.35 1432.65,507.33 "
-       id="polygon30288" />
-    <line
-       x1="1504.4"
-       y1="509.29999"
-       x2="1505.85"
-       y2="505.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30290" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1440.04,433.29 1438.78,448.11 1438.67,448.04 "
-       id="polygon30292" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.97,536.48 1427.56,521.67 1427.98,521.78 "
-       id="polygon30294" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1424.27,551.25 1425.97,536.47 1426.49,536.58 "
-       id="polygon30296" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1432.4,507.35 1430.56,522.08 1430.81,522.05 "
-       id="polygon30298" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.63,536.76 1425.41,551.44 1425.93,551.48 "
-       id="polygon30300" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1436.31,432.95 1435.05,447.76 1435.16,447.82 "
-       id="polygon30302" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1426.49,536.58 1424.27,551.25 1424.85,551.36 "
-       id="polygon30304" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.36,477.38 1430.8,492.14 1431.08,492.23 "
-       id="polygon30306" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.39,506.96 1427.56,521.68 1427.98,521.79 "
-       id="polygon30308" />
-    <line
-       x1="1406.3"
-       y1="603.52002"
-       x2="1406.21"
-       y2="603.82001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30310" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.93,551.48 1427.63,536.76 1428.14,536.81 "
-       id="polygon30312" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.39,506.97 1430.8,492.13 1431.08,492.22 "
-       id="polygon30314" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1428.55,536.8 1430.16,522.09 1430.56,522.1 "
-       id="polygon30316" />
-    <line
-       x1="1501.85"
-       y1="521.95001"
-       x2="1502.39"
-       y2="517.66998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30318" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1430.16,522.09 1428.14,536.79 1428.55,536.8 "
-       id="polygon30320" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.06,536.68 1424.85,551.36 1425.41,551.44 "
-       id="polygon30322" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1433.81,462.61 1435.05,447.75 1435.16,447.82 "
-       id="polygon30324" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.98,521.78 1425.97,536.48 1426.49,536.59 "
-       id="polygon30326" />
-    <line
-       x1="1592"
-       y1="490.13"
-       x2="1595.38"
-       y2="490.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30328" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1432.65,507.31 1434.09,492.59 1434.34,492.56 "
-       id="polygon30330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1424.85,551.36 1426.49,536.58 1427.06,536.68 "
-       id="polygon30332" />
-    <line
-       x1="1505.85"
-       y1="505.26999"
-       x2="1507.58"
-       y2="501.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30334" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1442.36,403.63 1441.23,418.46 1441.12,418.4 "
-       id="polygon30336" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1425.41,551.44 1427.06,536.68 1427.63,536.76 "
-       id="polygon30338" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.81,462.61 1432.36,477.39 1432.64,477.47 "
-       id="polygon30340" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1434.09,492.59 1432.4,507.34 1432.65,507.31 "
-       id="polygon30342" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1438.39,603.03 1423.49,602.11 1423.39,602.01 "
-       id="polygon30344" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.98,521.79 1429.39,506.96 1429.82,507.05 "
-       id="polygon30346" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.08,492.23 1432.36,477.38 1432.64,477.46 "
-       id="polygon30348" />
-    <polygon
-       style="opacity:1;fill:#0000ea"
-       points="1412.4,596.62 1412.37,596.43 1412.61,596.48 "
-       id="polygon30350" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.08,492.22 1429.39,506.97 1429.82,507.07 "
-       id="polygon30352" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1443.45,388.79 1442.36,403.62 1442.25,403.57 "
-       id="polygon30354" />
-    <line
-       x1="1642.11"
-       y1="455.25"
-       x2="1642.6899"
-       y2="452.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30356" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1426.49,536.59 1427.98,521.78 1428.5,521.88 "
-       id="polygon30358" />
-    <line
-       x1="1412.63"
-       y1="612.04999"
-       x2="1412.45"
-       y2="612.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30360" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.65,522.05 1427.64,536.75 1428.14,536.79 "
-       id="polygon30362" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1436.42,433.02 1437.5,418.14 1437.61,418.2 "
-       id="polygon30364" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1430.56,522.08 1432,507.34 1432.4,507.35 "
-       id="polygon30366" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1428.5,521.88 1426.49,536.59 1427.07,536.68 "
-       id="polygon30368" />
-    <line
-       x1="1501.63"
-       y1="526.27002"
-       x2="1501.85"
-       y2="521.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30370" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1428.14,536.79 1429.65,522.05 1430.16,522.09 "
-       id="polygon30372" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1444.53,373.95 1443.45,388.79 1443.35,388.73 "
-       id="polygon30374" />
-    <line
-       x1="1406.52"
-       y1="602.92999"
-       x2="1406.4"
-       y2="603.22998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30376" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1432,507.34 1430.16,522.07 1430.56,522.08 "
-       id="polygon30378" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1434.34,492.54 1435.65,477.8 1435.9,477.77 "
-       id="polygon30380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.16,447.82 1433.81,462.61 1434.09,462.69 "
-       id="polygon30382" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1408.45,599.48 1408.66,599.33 1408.52,599.71 "
-       id="polygon30384" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1445.51,359.06 1446.74,344.28 1446.64,344.23 "
-       id="polygon30386" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.82,507.05 1427.98,521.79 1428.5,521.88 "
-       id="polygon30388" />
-    <polygon
-       style="opacity:1;fill:#0000fc"
-       points="1409.45,598.34 1409.7,598.21 1409.51,598.55 "
-       id="polygon30390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.08,521.97 1427.07,536.68 1427.64,536.75 "
-       id="polygon30392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.64,477.47 1433.81,462.61 1434.09,462.68 "
-       id="polygon30394" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1437.61,418.2 1438.63,403.32 1438.74,403.38 "
-       id="polygon30396" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1445.61,359.11 1444.53,373.95 1444.42,373.89 "
-       id="polygon30398" />
-    <line
-       x1="1420.54"
-       y1="610.12"
-       x2="1420.6801"
-       y2="610.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30400" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1435.65,477.8 1434.09,492.57 1434.34,492.54 "
-       id="polygon30402" />
-    <line
-       x1="1412.53"
-       y1="595.92999"
-       x2="1412.53"
-       y2="595.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30404" />
-    <line
-       x1="1408.42"
-       y1="598.5"
-       x2="1408.25"
-       y2="598.84003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30406" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.07,536.68 1428.5,521.88 1429.08,521.97 "
-       id="polygon30408" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1446.64,344.24 1447.96,329.46 1447.85,329.42 "
-       id="polygon30410" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.82,507.07 1431.08,492.22 1431.5,492.31 "
-       id="polygon30412" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1441.89,358.81 1440.8,373.65 1440.91,373.7 "
-       id="polygon30414" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.64,477.46 1431.08,492.23 1431.5,492.32 "
-       id="polygon30416" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.64,536.75 1429.08,521.97 1429.65,522.05 "
-       id="polygon30418" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.42,433.01 1435.16,447.82 1435.43,447.9 "
-       id="polygon30420" />
-    <line
-       x1="1507.58"
-       y1="501.35999"
-       x2="1509.59"
-       y2="497.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30422" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1435.9,477.76 1437.1,463 1437.35,462.98 "
-       id="polygon30424" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1428.5,521.88 1429.82,507.05 1430.34,507.15 "
-       id="polygon30426" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1432.4,507.34 1433.69,492.58 1434.09,492.59 "
-       id="polygon30428" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="1411.98,581.91 1412.5,595.48 1412.61,595.73 "
-       id="polygon30430" />
-    <line
-       x1="1411.26"
-       y1="611.47998"
-       x2="1411.0601"
-       y2="611.34003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30432" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.09,462.69 1435.16,447.82 1435.43,447.89 "
-       id="polygon30434" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1439.83,388.54 1440.8,373.65 1440.91,373.7 "
-       id="polygon30436" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.49,507.3 1429.65,522.04 1430.16,522.07 "
-       id="polygon30438" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1433.69,492.58 1432,507.33 1432.4,507.34 "
-       id="polygon30440" />
-    <line
-       x1="1417.53"
-       y1="596.04999"
-       x2="1417.27"
-       y2="596.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.34,507.15 1428.5,521.88 1429.08,521.97 "
-       id="polygon30444" />
-    <line
-       x1="1410.54"
-       y1="596.77002"
-       x2="1410.5699"
-       y2="596.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30446" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.16,522.07 1431.49,507.3 1432,507.34 "
-       id="polygon30448" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.61,418.2 1436.42,433.02 1436.7,433.09 "
-       id="polygon30450" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.5,492.31 1429.82,507.07 1430.34,507.16 "
-       id="polygon30452" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1437.1,463 1435.65,477.79 1435.9,477.76 "
-       id="polygon30454" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1444.23,329.14 1443.02,343.96 1443.12,344.02 "
-       id="polygon30456" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.09,462.68 1432.64,477.47 1433.06,477.55 "
-       id="polygon30458" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1420.52,609.45 1420.69,609.43 1420.42,609.66 "
-       id="polygon30460" />
-    <line
-       x1="1661.09"
-       y1="534.77002"
-       x2="1659.6801"
-       y2="534.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.5,492.32 1432.64,477.46 1433.06,477.55 "
-       id="polygon30464" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.91,507.24 1429.08,521.97 1429.65,522.04 "
-       id="polygon30466" />
-    <line
-       x1="1595.38"
-       y1="490.45999"
-       x2="1598.77"
-       y2="490.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30468" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1437.35,462.96 1438.45,448.19 1438.7,448.16 "
-       id="polygon30470" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.43,447.9 1436.42,433.01 1436.7,433.09 "
-       id="polygon30472" />
-    <line
-       x1="1501.71"
-       y1="530.59003"
-       x2="1501.63"
-       y2="526.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30474" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1449.31,314.68 1447.96,329.48 1447.85,329.43 "
-       id="polygon30476" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.74,403.38 1437.61,418.2 1437.88,418.27 "
-       id="polygon30478" />
-    <line
-       x1="1408.1"
-       y1="599.20001"
-       x2="1407.96"
-       y2="599.57001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.08,521.97 1430.34,507.15 1430.91,507.24 "
-       id="polygon30482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1429.65,522.04 1430.91,507.24 1431.49,507.3 "
-       id="polygon30484" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1441.99,358.86 1443.01,343.97 1443.12,344.02 "
-       id="polygon30486" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1434.09,492.57 1435.25,477.8 1435.65,477.8 "
-       id="polygon30488" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1445.58,314.32 1444.23,329.13 1444.34,329.18 "
-       id="polygon30490" />
-    <line
-       x1="1421.3199"
-       y1="609.22998"
-       x2="1421.4301"
-       y2="609.03998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30492" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1438.45,448.19 1437.1,462.99 1437.35,462.96 "
-       id="polygon30494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.34,507.16 1431.5,492.31 1432.03,492.41 "
-       id="polygon30496" />
-    <line
-       x1="1413.55"
-       y1="612.08002"
-       x2="1413.36"
-       y2="612.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30498" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1435.25,477.8 1433.69,492.57 1434.09,492.57 "
-       id="polygon30500" />
-    <line
-       x1="1422.54"
-       y1="600.96002"
-       x2="1422.65"
-       y2="601.09998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.83,388.54 1438.74,403.38 1439.02,403.45 "
-       id="polygon30504" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1438.7,448.15 1439.71,433.36 1439.96,433.34 "
-       id="polygon30506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.7,433.09 1437.61,418.2 1437.88,418.27 "
-       id="polygon30508" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.43,447.89 1434.09,462.69 1434.51,462.77 "
-       id="polygon30510" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.06,477.55 1431.5,492.32 1432.03,492.41 "
-       id="polygon30512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.18,492.54 1431.49,507.3 1432,507.33 "
-       id="polygon30514" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432,507.33 1433.18,492.54 1433.69,492.58 "
-       id="polygon30516" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.06,477.55 1434.09,462.68 1434.51,462.77 "
-       id="polygon30518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.03,492.41 1430.34,507.16 1430.91,507.24 "
-       id="polygon30520" />
-    <line
-       x1="1382.13"
-       y1="302.39001"
-       x2="1384.59"
-       y2="302.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30522" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1413.63,611.55 1413.43,611.57 1413.52,611.46 "
-       id="polygon30524" />
-    <polygon
-       style="opacity:1;fill:#0000f2"
-       points="1411.43,597.61 1411.38,597.4 1411.63,597.45 "
-       id="polygon30526" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.91,373.7 1439.83,388.54 1440.11,388.61 "
-       id="polygon30528" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.88,418.27 1438.74,403.38 1439.02,403.44 "
-       id="polygon30530" />
-    <line
-       x1="1415.48"
-       y1="612.19"
-       x2="1415.37"
-       y2="612.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.61,492.48 1430.91,507.24 1431.49,507.3 "
-       id="polygon30534" />
-    <line
-       x1="1416.74"
-       y1="596.02002"
-       x2="1416.48"
-       y2="596.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30536" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1439.96,433.33 1440.9,418.53 1441.15,418.51 "
-       id="polygon30538" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1435.65,477.79 1436.7,463 1437.1,463 "
-       id="polygon30540" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.7,433.09 1435.43,447.9 1435.86,447.98 "
-       id="polygon30542" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1430.91,507.24 1432.03,492.41 1432.61,492.48 "
-       id="polygon30544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.99,358.86 1440.91,373.7 1441.18,373.77 "
-       id="polygon30546" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.49,507.3 1432.61,492.48 1433.18,492.54 "
-       id="polygon30548" />
-    <line
-       x1="1509.59"
-       y1="497.60001"
-       x2="1511.85"
-       y2="494"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30550" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1444.34,329.18 1445.58,314.32 1445.69,314.37 "
-       id="polygon30552" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.03,492.41 1433.06,477.55 1433.59,477.64 "
-       id="polygon30554" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1436.7,463 1435.25,477.79 1435.65,477.79 "
-       id="polygon30556" />
-    <line
-       x1="1554.85"
-       y1="428.63"
-       x2="1553.78"
-       y2="431.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30558" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.51,462.77 1435.43,447.89 1435.86,447.97 "
-       id="polygon30560" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.02,403.45 1439.83,388.54 1440.11,388.61 "
-       id="polygon30562" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.51,462.77 1433.06,477.55 1433.59,477.64 "
-       id="polygon30564" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1441.15,418.5 1442.04,403.69 1442.29,403.67 "
-       id="polygon30566" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1412.08,582.16 1412.61,595.73 1412.88,595.95 "
-       id="polygon30568" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1440.9,418.53 1439.71,433.36 1439.96,433.33 "
-       id="polygon30570" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.69,492.57 1434.74,477.77 1435.25,477.8 "
-       id="polygon30572" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.74,477.77 1433.18,492.54 1433.69,492.57 "
-       id="polygon30574" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.59,477.64 1432.03,492.41 1432.61,492.48 "
-       id="polygon30576" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.12,344.02 1441.99,358.86 1442.27,358.92 "
-       id="polygon30578" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.88,418.27 1436.7,433.09 1437.12,433.16 "
-       id="polygon30580" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.11,388.61 1440.91,373.7 1441.18,373.77 "
-       id="polygon30582" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1437.1,462.99 1438.05,448.19 1438.45,448.19 "
-       id="polygon30584" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1442.29,403.66 1443.13,388.85 1443.38,388.82 "
-       id="polygon30586" />
-    <line
-       x1="1641.28"
-       y1="458.42001"
-       x2="1642.11"
-       y2="455.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30588" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.86,447.98 1436.7,433.09 1437.12,433.16 "
-       id="polygon30590" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.16,477.71 1432.61,492.48 1433.18,492.54 "
-       id="polygon30592" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1442.04,403.69 1440.9,418.52 1441.15,418.5 "
-       id="polygon30594" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1438.05,448.19 1436.7,462.99 1437.1,462.99 "
-       id="polygon30596" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.34,329.19 1443.12,344.02 1443.4,344.08 "
-       id="polygon30598" />
-    <line
-       x1="1410.15"
-       y1="610.5"
-       x2="1409.98"
-       y2="610.31"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30600" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.18,373.77 1441.99,358.86 1442.27,358.92 "
-       id="polygon30602" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.59,477.64 1434.51,462.77 1435.03,462.85 "
-       id="polygon30604" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.61,492.48 1433.59,477.64 1434.16,477.71 "
-       id="polygon30606" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.86,447.97 1434.51,462.77 1435.03,462.85 "
-       id="polygon30608" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.02,403.44 1437.88,418.27 1438.31,418.34 "
-       id="polygon30610" />
-    <line
-       x1="1502.13"
-       y1="534.90997"
-       x2="1501.71"
-       y2="530.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30612" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1438.17,603.01 1423.27,602.09 1423.16,602.34 "
-       id="polygon30614" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1433.18,492.54 1434.16,477.71 1434.74,477.77 "
-       id="polygon30616" />
-    <line
-       x1="1407.61"
-       y1="600.73999"
-       x2="1407.52"
-       y2="601.15997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30618" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1438.45,448.18 1439.31,433.36 1439.71,433.36 "
-       id="polygon30620" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.25,477.79 1436.18,462.97 1436.7,463 "
-       id="polygon30622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.18,462.97 1434.74,477.76 1435.25,477.79 "
-       id="polygon30624" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1443.13,388.85 1442.04,403.69 1442.29,403.66 "
-       id="polygon30626" />
-    <line
-       x1="1598.77"
-       y1="490.54001"
-       x2="1602.14"
-       y2="490.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.03,462.85 1433.59,477.64 1434.16,477.71 "
-       id="polygon30630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.12,433.16 1437.88,418.27 1438.31,418.34 "
-       id="polygon30632" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.27,358.92 1443.12,344.02 1443.4,344.09 "
-       id="polygon30634" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.11,388.61 1439.02,403.45 1439.44,403.51 "
-       id="polygon30636" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.69,314.37 1444.34,329.18 1444.61,329.24 "
-       id="polygon30638" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1444.45,373.98 1445.29,359.16 1445.54,359.14 "
-       id="polygon30640" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1439.31,433.36 1438.05,448.18 1438.45,448.18 "
-       id="polygon30642" />
-    <line
-       x1="1421.7"
-       y1="608.40997"
-       x2="1421.78"
-       y2="608.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30644" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.12,433.16 1435.86,447.98 1436.38,448.05 "
-       id="polygon30646" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.03,462.85 1435.86,447.97 1436.38,448.05 "
-       id="polygon30648" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1444.2,374 1443.13,388.84 1443.38,388.82 "
-       id="polygon30650" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.61,462.92 1434.16,477.71 1434.74,477.76 "
-       id="polygon30652" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1439.71,433.36 1440.5,418.53 1440.9,418.53 "
-       id="polygon30654" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.16,477.71 1435.03,462.85 1435.61,462.92 "
-       id="polygon30656" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.31,418.34 1439.02,403.44 1439.44,403.51 "
-       id="polygon30658" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.4,344.08 1444.34,329.19 1444.61,329.25 "
-       id="polygon30660" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.18,373.77 1440.11,388.61 1440.53,388.67 "
-       id="polygon30662" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1434.74,477.76 1435.61,462.92 1436.18,462.97 "
-       id="polygon30664" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1445.54,359.15 1446.42,344.33 1446.67,344.31 "
-       id="polygon30666" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.7,462.99 1437.53,448.16 1438.05,448.19 "
-       id="polygon30668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.53,448.16 1436.18,462.96 1436.7,462.99 "
-       id="polygon30670" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1445.29,359.16 1444.2,374 1444.45,373.98 "
-       id="polygon30672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.38,448.05 1435.03,462.85 1435.61,462.92 "
-       id="polygon30674" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1440.5,418.53 1439.31,433.36 1439.71,433.36 "
-       id="polygon30676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.44,403.51 1440.11,388.61 1440.53,388.67 "
-       id="polygon30678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.27,358.92 1441.18,373.77 1441.61,373.83 "
-       id="polygon30680" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1440.9,418.52 1441.63,403.69 1442.04,403.69 "
-       id="polygon30682" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.31,418.34 1437.12,433.16 1437.64,433.23 "
-       id="polygon30684" />
-    <line
-       x1="1611.98"
-       y1="554.64001"
-       x2="1610.36"
-       y2="558.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30686" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.38,448.05 1437.12,433.16 1437.64,433.23 "
-       id="polygon30688" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1446.67,344.32 1447.63,329.52 1447.88,329.5 "
-       id="polygon30690" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.35,582.38 1412.88,595.95 1413.29,596.12 "
-       id="polygon30692" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.96,448.11 1435.61,462.92 1436.18,462.96 "
-       id="polygon30694" />
-    <line
-       x1="1421.55"
-       y1="599.70001"
-       x2="1421.7"
-       y2="600.01001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30696" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1446.42,344.33 1445.29,359.17 1445.54,359.15 "
-       id="polygon30698" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.61,329.24 1445.69,314.37 1445.96,314.43 "
-       id="polygon30700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.61,462.92 1436.38,448.05 1436.96,448.11 "
-       id="polygon30702" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.05,448.18 1438.8,433.34 1439.31,433.36 "
-       id="polygon30704" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1415.36,582.3 1415.88,595.88 1416.14,595.65 "
-       id="polygon30706" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1441.63,403.69 1440.5,418.53 1440.9,418.52 "
-       id="polygon30708" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.53,388.67 1441.18,373.77 1441.61,373.83 "
-       id="polygon30710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.18,462.96 1436.96,448.11 1437.53,448.16 "
-       id="polygon30712" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.4,344.09 1442.27,358.92 1442.7,358.98 "
-       id="polygon30714" />
-    <line
-       x1="1419.71"
-       y1="610.29999"
-       x2="1419.89"
-       y2="610.28003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30716" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1442.04,403.69 1442.73,388.85 1443.13,388.85 "
-       id="polygon30718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.8,433.34 1437.53,448.16 1438.05,448.18 "
-       id="polygon30720" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.44,403.51 1438.31,418.34 1438.83,418.41 "
-       id="polygon30722" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.64,433.23 1436.38,448.05 1436.96,448.11 "
-       id="polygon30724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.64,433.23 1438.31,418.34 1438.83,418.41 "
-       id="polygon30726" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1447.63,329.52 1446.41,344.34 1446.67,344.32 "
-       id="polygon30728" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.61,373.83 1442.27,358.92 1442.69,358.99 "
-       id="polygon30730" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1447.88,329.52 1448.98,314.72 1449.23,314.71 "
-       id="polygon30732" />
-    <line
-       x1="1414.25"
-       y1="596.40997"
-       x2="1414"
-       y2="596.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30734" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1443.13,388.84 1443.8,374 1444.2,374 "
-       id="polygon30736" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1442.73,388.85 1441.63,403.69 1442.04,403.69 "
-       id="polygon30738" />
-    <line
-       x1="1511.85"
-       y1="494"
-       x2="1514.36"
-       y2="490.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30740" />
-    <line
-       x1="1632.3"
-       y1="611.02002"
-       x2="1634.74"
-       y2="610.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30742" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.61,329.25 1443.4,344.08 1443.82,344.14 "
-       id="polygon30744" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1413.63,597.45 1413.42,597.6 1413.42,597.36 "
-       id="polygon30746" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.22,433.3 1436.96,448.11 1437.53,448.16 "
-       id="polygon30748" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1438.05,603.26 1423.16,602.34 1423.05,602.73 "
-       id="polygon30750" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.31,433.36 1439.98,418.51 1440.5,418.53 "
-       id="polygon30752" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.96,448.11 1437.64,433.23 1438.22,433.3 "
-       id="polygon30754" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.53,388.67 1439.44,403.51 1439.96,403.58 "
-       id="polygon30756" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.53,448.16 1438.22,433.3 1438.8,433.34 "
-       id="polygon30758" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.98,418.51 1438.8,433.34 1439.31,433.36 "
-       id="polygon30760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.97,314.41 1447.24,299.57 1447.52,299.63 "
-       id="polygon30762" />
-    <line
-       x1="1407.54"
-       y1="602.25"
-       x2="1407.53"
-       y2="601.96997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30764" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.83,418.41 1437.64,433.23 1438.22,433.29 "
-       id="polygon30766" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.83,418.41 1439.44,403.51 1439.96,403.57 "
-       id="polygon30768" />
-    <line
-       x1="1409.42"
-       y1="609.35999"
-       x2="1409.1899"
-       y2="609.23999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30770" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.7,358.98 1443.4,344.09 1443.82,344.15 "
-       id="polygon30772" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1444.2,374 1444.89,359.16 1445.29,359.16 "
-       id="polygon30774" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1443.8,374 1442.73,388.85 1443.13,388.84 "
-       id="polygon30776" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="1437.91,606.23 1423.01,605.31 1423.09,605.59 "
-       id="polygon30778" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1448.98,314.72 1447.63,329.53 1447.88,329.52 "
-       id="polygon30780" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.61,373.83 1440.53,388.67 1441.06,388.73 "
-       id="polygon30782" />
-    <line
-       x1="1408.27"
-       y1="600.5"
-       x2="1408.0699"
-       y2="600.65997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30784" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.5,418.53 1441.12,403.67 1441.63,403.69 "
-       id="polygon30786" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.96,314.43 1444.61,329.24 1445.04,329.31 "
-       id="polygon30788" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1408.61,602.61 1408.42,602.5 1408.58,602.33 "
-       id="polygon30790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.41,418.47 1438.22,433.29 1438.8,433.34 "
-       id="polygon30792" />
-    <line
-       x1="1502.86"
-       y1="539.17999"
-       x2="1502.13"
-       y2="534.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.22,433.29 1438.83,418.41 1439.41,418.47 "
-       id="polygon30796" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.96,403.58 1440.53,388.67 1441.06,388.73 "
-       id="polygon30798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.12,403.67 1439.98,418.51 1440.5,418.53 "
-       id="polygon30800" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1438.8,433.34 1439.41,418.47 1439.98,418.51 "
-       id="polygon30802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.96,403.57 1438.83,418.41 1439.41,418.46 "
-       id="polygon30804" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1444.89,359.16 1443.8,374 1444.2,374 "
-       id="polygon30806" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1445.29,359.17 1446.02,344.33 1446.42,344.33 "
-       id="polygon30808" />
-    <line
-       x1="1602.14"
-       y1="490.37"
-       x2="1605.5"
-       y2="489.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.82,344.14 1444.61,329.25 1445.04,329.32 "
-       id="polygon30812" />
-    <line
-       x1="1659.6801"
-       y1="534.10999"
-       x2="1658.38"
-       y2="533.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30814" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.69,358.99 1441.61,373.83 1442.14,373.89 "
-       id="polygon30816" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1409.45,600.38 1409.65,600.49 1409.42,600.63 "
-       id="polygon30818" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.63,403.69 1442.21,388.83 1442.73,388.85 "
-       id="polygon30820" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.77,582.54 1413.29,596.12 1413.81,596.22 "
-       id="polygon30822" />
-    <line
-       x1="1413.83"
-       y1="596.64001"
-       x2="1414.04"
-       y2="596.52002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30824" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.06,388.73 1441.61,373.83 1442.14,373.89 "
-       id="polygon30826" />
-    <line
-       x1="1407.84"
-       y1="601.35999"
-       x2="1408"
-       y2="601.46002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30828" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.55,403.63 1439.41,418.46 1439.98,418.51 "
-       id="polygon30830" />
-    <line
-       x1="1410.73"
-       y1="597.71997"
-       x2="1410.78"
-       y2="597.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30832" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.41,418.46 1439.96,403.57 1440.55,403.63 "
-       id="polygon30834" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.21,388.83 1441.12,403.67 1441.63,403.69 "
-       id="polygon30836" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1414.96,582.49 1415.48,596.07 1415.88,595.88 "
-       id="polygon30838" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1446.02,344.33 1444.89,359.16 1445.29,359.17 "
-       id="polygon30840" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.06,388.73 1439.96,403.58 1440.55,403.63 "
-       id="polygon30842" />
-    <line
-       x1="1414.71"
-       y1="611.69"
-       x2="1414.8199"
-       y2="611.76001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30844" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1439.98,418.51 1440.55,403.63 1441.12,403.67 "
-       id="polygon30846" />
-    <line
-       x1="1640.22"
-       y1="461.54001"
-       x2="1641.28"
-       y2="458.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30848" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1446.41,344.34 1447.23,329.51 1447.63,329.52 "
-       id="polygon30850" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.82,344.15 1442.7,358.98 1443.22,359.05 "
-       id="polygon30852" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1408.61,603.62 1408.4,603.5 1408.55,603.34 "
-       id="polygon30854" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.52,299.63 1445.97,314.41 1446.39,314.49 "
-       id="polygon30856" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1415.52,597.71 1415.27,597.56 1415.51,597.46 "
-       id="polygon30858" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.73,388.85 1443.29,373.98 1443.8,374 "
-       id="polygon30860" />
-    <line
-       x1="1422.1899"
-       y1="601.47998"
-       x2="1422.27"
-       y2="601.85999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30862" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.04,329.31 1445.96,314.43 1446.39,314.5 "
-       id="polygon30864" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.14,373.89 1442.69,358.99 1443.22,359.05 "
-       id="polygon30866" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.29,373.98 1442.21,388.83 1442.73,388.85 "
-       id="polygon30868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.55,403.63 1441.06,388.73 1441.64,388.79 "
-       id="polygon30870" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.64,388.79 1440.55,403.63 1441.12,403.67 "
-       id="polygon30872" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.14,373.89 1441.06,388.73 1441.64,388.79 "
-       id="polygon30874" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1447.23,329.51 1446.02,344.34 1446.41,344.34 "
-       id="polygon30876" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.12,403.67 1441.64,388.79 1442.21,388.83 "
-       id="polygon30878" />
-    <line
-       x1="1421.47"
-       y1="600.07001"
-       x2="1421.27"
-       y2="599.95001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.8,374 1444.38,359.14 1444.89,359.16 "
-       id="polygon30882" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1437.96,603.66 1423.05,602.73 1422.98,603.24 "
-       id="polygon30884" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.04,329.32 1443.82,344.14 1444.35,344.21 "
-       id="polygon30886" />
-    <line
-       x1="1408.76"
-       y1="608.17999"
-       x2="1408.76"
-       y2="608.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30888" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.22,359.05 1443.82,344.15 1444.35,344.21 "
-       id="polygon30890" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1447.63,329.53 1448.58,314.71 1448.98,314.72 "
-       id="polygon30892" />
-    <line
-       x1="1384.59"
-       y1="302.53"
-       x2="1387.01"
-       y2="302.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30894" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.38,359.14 1443.29,373.98 1443.8,374 "
-       id="polygon30896" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.64,388.79 1442.14,373.89 1442.71,373.95 "
-       id="polygon30898" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.71,373.95 1441.64,388.79 1442.21,388.83 "
-       id="polygon30900" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.85,605.82 1422.95,604.9 1423.01,605.31 "
-       id="polygon30902" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.22,359.05 1442.14,373.89 1442.71,373.95 "
-       id="polygon30904" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.21,388.83 1442.71,373.95 1443.29,373.98 "
-       id="polygon30906" />
-    <line
-       x1="1407.67"
-       y1="603.34003"
-       x2="1407.63"
-       y2="603.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30908" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1409.62,607.65 1409.42,607.55 1409.56,607.41 "
-       id="polygon30910" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.29,582.64 1413.81,596.22 1414.39,596.25 "
-       id="polygon30912" />
-    <line
-       x1="1412.72"
-       y1="611.29999"
-       x2="1412.8"
-       y2="611.19"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30914" />
-    <line
-       x1="1417.64"
-       y1="611.25"
-       x2="1417.7"
-       y2="611.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30916" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.89,359.16 1445.5,344.3 1446.02,344.33 "
-       id="polygon30918" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1414.44,582.62 1414.96,596.2 1415.48,596.07 "
-       id="polygon30920" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1448.58,314.71 1447.23,329.52 1447.63,329.53 "
-       id="polygon30922" />
-    <polygon
-       style="opacity:1;fill:#0000a7"
-       points="1421.54,602.46 1421.46,602.61 1421.41,602.21 "
-       id="polygon30924" />
-    <line
-       x1="1422.4"
-       y1="602.63"
-       x2="1422.4399"
-       y2="603.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.39,314.5 1445.04,329.31 1445.56,329.38 "
-       id="polygon30928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1442.71,373.95 1443.22,359.05 1443.8,359.1 "
-       id="polygon30930" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.5,344.3 1444.38,359.14 1444.89,359.16 "
-       id="polygon30932" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.8,359.1 1442.71,373.95 1443.29,373.98 "
-       id="polygon30934" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.35,344.21 1445.04,329.32 1445.56,329.38 "
-       id="polygon30936" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.35,344.21 1443.22,359.05 1443.8,359.1 "
-       id="polygon30938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.29,373.98 1443.8,359.1 1444.38,359.14 "
-       id="polygon30940" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1420.39,600.32 1420.56,600.56 1420.33,600.47 "
-       id="polygon30942" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.87,582.67 1414.39,596.25 1414.96,596.2 "
-       id="polygon30944" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.02,344.34 1446.71,329.48 1447.23,329.51 "
-       id="polygon30946" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1409.36,601.41 1409.56,601.52 1409.34,601.68 "
-       id="polygon30948" />
-    <polygon
-       style="opacity:1;fill:#0000f3"
-       points="1412.61,598.49 1412.41,598.67 1412.41,598.4 "
-       id="polygon30950" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1443.8,359.1 1444.35,344.21 1444.93,344.27 "
-       id="polygon30952" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.93,344.27 1443.8,359.1 1444.38,359.14 "
-       id="polygon30954" />
-    <line
-       x1="1410.39"
-       y1="609.77002"
-       x2="1410.14"
-       y2="609.67999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30956" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.71,329.48 1445.5,344.31 1446.02,344.34 "
-       id="polygon30958" />
-    <line
-       x1="1422.47"
-       y1="603.78998"
-       x2="1422.46"
-       y2="604.17999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30960" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.38,359.14 1444.93,344.27 1445.5,344.3 "
-       id="polygon30962" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1411.43,609.42 1411.7,609.48 1411.55,609.62 "
-       id="polygon30964" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.56,329.38 1444.35,344.21 1444.93,344.27 "
-       id="polygon30966" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.88,604.16 1422.98,603.24 1422.93,603.81 "
-       id="polygon30968" />
-    <line
-       x1="1422.29"
-       y1="605.72998"
-       x2="1422.21"
-       y2="606.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30970" />
-    <line
-       x1="1556.13"
-       y1="425.92001"
-       x2="1554.85"
-       y2="428.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30972" />
-    <line
-       x1="1422.4399"
-       y1="604.57001"
-       x2="1422.41"
-       y2="604.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.82,605.3 1422.92,604.38 1422.95,604.9 "
-       id="polygon30976" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.56,329.38 1446.39,314.5 1446.91,314.57 "
-       id="polygon30978" />
-    <line
-       x1="1415.96"
-       y1="611.48999"
-       x2="1416.14"
-       y2="611.39001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30980" />
-    <line
-       x1="1422.11"
-       y1="606.51001"
-       x2="1422.1"
-       y2="606.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30982" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.94,299.71 1446.39,314.49 1446.92,314.57 "
-       id="polygon30984" />
-    <line
-       x1="1409.33"
-       y1="599.76001"
-       x2="1409.11"
-       y2="599.90002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30986" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.14,329.44 1444.93,344.27 1445.5,344.31 "
-       id="polygon30988" />
-    <line
-       x1="1605.5"
-       y1="489.94"
-       x2="1608.8101"
-       y2="489.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30990" />
-    <polygon
-       style="opacity:1;fill:#0000d0"
-       points="1410.43,608.4 1410.69,608.48 1410.54,608.63 "
-       id="polygon30992" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.93,344.27 1445.56,329.38 1446.14,329.44 "
-       id="polygon30994" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.23,329.52 1448.07,314.68 1448.58,314.71 "
-       id="polygon30996" />
-    <line
-       x1="1412.79"
-       y1="597.32001"
-       x2="1413"
-       y2="597.16998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line30998" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.83,604.73 1422.93,603.81 1422.92,604.38 "
-       id="polygon31000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.5,344.31 1446.14,329.44 1446.71,329.48 "
-       id="polygon31002" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.07,314.68 1446.71,329.49 1447.23,329.52 "
-       id="polygon31004" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.91,314.57 1445.56,329.38 1446.14,329.44 "
-       id="polygon31006" />
-    <line
-       x1="1407.91"
-       y1="604.44"
-       x2="1407.91"
-       y2="604.44"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31008" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1420.63,607.65 1420.41,607.54 1420.66,607.29 "
-       id="polygon31010" />
-    <line
-       x1="1503.9"
-       y1="543.39001"
-       x2="1502.86"
-       y2="539.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31012" />
-    <line
-       x1="1514.36"
-       y1="490.60001"
-       x2="1517.09"
-       y2="487.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31014" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1447.49,314.63 1446.14,329.44 1446.71,329.49 "
-       id="polygon31016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.14,329.44 1446.91,314.57 1447.49,314.63 "
-       id="polygon31018" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1446.71,329.49 1447.49,314.63 1448.07,314.68 "
-       id="polygon31020" />
-    <line
-       x1="1415.5"
-       y1="596.98999"
-       x2="1415.75"
-       y2="597.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31022" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1413.64,598.47 1413.44,598.63 1413.43,598.36 "
-       id="polygon31024" />
-    <line
-       x1="1421.5699"
-       y1="601.25"
-       x2="1421.63"
-       y2="601.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31026" />
-    <line
-       x1="1418.75"
-       y1="610.28998"
-       x2="1418.95"
-       y2="610.31"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31028" />
-    <line
-       x1="1638.9301"
-       y1="464.57999"
-       x2="1640.22"
-       y2="461.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31030" />
-    <line
-       x1="1414.27"
-       y1="597.28998"
-       x2="1414.26"
-       y2="597.06"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31032" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1423.2,605.69 1437.99,606.51 1438.1,606.61 "
-       id="polygon31034" />
-    <line
-       x1="1410.9"
-       y1="598.39001"
-       x2="1410.96"
-       y2="598.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31036" />
-    <line
-       x1="1450.3199"
-       y1="299.98001"
-       x2="1449.58"
-       y2="300.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31038" />
-    <line
-       x1="1450.3199"
-       y1="299.98001"
-       x2="1449.28"
-       y2="301.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1449.04,299.85 1447.49,314.64 1448.07,314.69 "
-       id="polygon31042" />
-    <line
-       x1="1416.5"
-       y1="611.19"
-       x2="1416.67"
-       y2="611.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31044" />
-    <line
-       x1="1421.77"
-       y1="606.32001"
-       x2="1421.95"
-       y2="606.40997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31046" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.77,582.57 1412.35,582.41 1412.32,578.1 "
-       id="polygon31048" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1412.88,595.95 1412.08,582.16 1412.35,582.38 "
-       id="polygon31050" />
-    <polygon
-       style="opacity:1;fill:#0000ff"
-       points="1409.58,603.64 1409.35,603.52 1409.51,603.35 "
-       id="polygon31052" />
-    <polygon
-       style="opacity:1;fill:#00009a"
-       points="1419.55,608.58 1419.31,608.46 1419.6,608.24 "
-       id="polygon31054" />
-    <line
-       x1="1408.53"
-       y1="601.77002"
-       x2="1408.72"
-       y2="601.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31056" />
-    <line
-       x1="1411.61"
-       y1="598.31"
-       x2="1411.8"
-       y2="598.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31058" />
-    <line
-       x1="1421.28"
-       y1="607.60999"
-       x2="1421.04"
-       y2="607.87"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31060" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1415.53,598.76 1415.29,598.6 1415.53,598.48 "
-       id="polygon31062" />
-    <line
-       x1="1422.01"
-       y1="605.53998"
-       x2="1421.97"
-       y2="605.29999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31064" />
-    <line
-       x1="1411.67"
-       y1="610.14001"
-       x2="1411.41"
-       y2="610.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31066" />
-    <line
-       x1="1608.8101"
-       y1="489.26001"
-       x2="1612.0601"
-       y2="488.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31068" />
-    <line
-       x1="1420.1801"
-       y1="599.42999"
-       x2="1419.9399"
-       y2="599.34003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31070" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1423.16,602.34 1438.17,603.01 1438.05,603.26 "
-       id="polygon31072" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1420.46,606.8 1420.47,606.43 1420.7,606.54 "
-       id="polygon31074" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1416.14,595.65 1415.36,582.3 1415.62,582.07 "
-       id="polygon31076" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1416.76,598.7 1416.48,598.45 1416.23,598.86 "
-       id="polygon31078" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="1411.53,608.34 1411.64,608.55 1411.37,608.49 "
-       id="polygon31080" />
-    <line
-       x1="1409.9"
-       y1="608.57001"
-       x2="1410.04"
-       y2="608.44"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31082" />
-    <polygon
-       style="opacity:1;fill:#0000fd"
-       points="1411.42,600.62 1411.45,600.36 1411.65,600.46 "
-       id="polygon31084" />
-    <line
-       x1="1658.38"
-       y1="533.33002"
-       x2="1657.1801"
-       y2="532.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31086" />
-    <line
-       x1="1416.95"
-       y1="597.90002"
-       x2="1416.95"
-       y2="597.90002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31088" />
-    <line
-       x1="1412.48"
-       y1="610.28998"
-       x2="1412.2"
-       y2="610.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31090" />
-    <line
-       x1="1420.29"
-       y1="608.59003"
-       x2="1420.02"
-       y2="608.81"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31092" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.29,596.12 1412.35,582.38 1412.77,582.54 "
-       id="polygon31094" />
-    <line
-       x1="1637.41"
-       y1="467.54001"
-       x2="1638.9301"
-       y2="464.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31096" />
-    <line
-       x1="1505.26"
-       y1="547.52002"
-       x2="1503.9"
-       y2="543.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31098" />
-    <polygon
-       style="opacity:1;fill:#00009e"
-       points="1419.38,607.77 1419.4,607.41 1419.66,607.54 "
-       id="polygon31100" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1420.32,603.42 1420.48,603.29 1420.61,603.55 "
-       id="polygon31102" />
-    <polygon
-       style="opacity:1;fill:#0000ee"
-       points="1413.67,599.59 1413.46,599.77 1413.46,599.48 "
-       id="polygon31104" />
-    <line
-       x1="1612.0601"
-       y1="488.34"
-       x2="1615.22"
-       y2="487.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31106" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1423.05,602.73 1438.05,603.26 1437.96,603.66 "
-       id="polygon31108" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1420.31,604.46 1420.49,604.33 1420.58,604.59 "
-       id="polygon31110" />
-    <polygon
-       style="opacity:1;fill:#0000bc"
-       points="1414.62,609.4 1414.52,609.56 1414.32,609.39 "
-       id="polygon31112" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1415.88,595.88 1414.96,582.49 1415.36,582.3 "
-       id="polygon31114" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1415.68,609.55 1415.39,609.56 1415.5,609.39 "
-       id="polygon31116" />
-    <line
-       x1="1410.91"
-       y1="599.59003"
-       x2="1410.95"
-       y2="599.34998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31118" />
-    <line
-       x1="1387.01"
-       y1="302.85001"
-       x2="1389.39"
-       y2="303.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31120" />
-    <polygon
-       style="opacity:1;fill:#0000ba"
-       points="1419.41,601.55 1419.57,601.42 1419.58,601.79 "
-       id="polygon31122" />
-    <line
-       x1="1421.71"
-       y1="604.29999"
-       x2="1421.63"
-       y2="604.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31124" />
-    <line
-       x1="1419.15"
-       y1="609.42999"
-       x2="1418.84"
-       y2="609.62"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31126" />
-    <line
-       x1="1413.3101"
-       y1="610.39001"
-       x2="1413.03"
-       y2="610.35999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31128" />
-    <line
-       x1="1418.52"
-       y1="609.79999"
-       x2="1418.2"
-       y2="609.96997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31130" />
-    <line
-       x1="1411.63"
-       y1="599.14001"
-       x2="1411.4301"
-       y2="599.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31132" />
-    <polygon
-       style="opacity:1;fill:#0000fd"
-       points="1411.35,601.65 1411.36,601.39 1411.57,601.5 "
-       id="polygon31134" />
-    <polygon
-       style="opacity:1;fill:#0000ef"
-       points="1410.68,605.63 1410.47,605.54 1410.63,605.38 "
-       id="polygon31136" />
-    <polygon
-       style="opacity:1;fill:#0000f7"
-       points="1412.51,600.64 1412.3,600.53 1412.54,600.39 "
-       id="polygon31138" />
-    <line
-       x1="1517.09"
-       y1="487.41"
-       x2="1520.03"
-       y2="484.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31140" />
-    <line
-       x1="1610.36"
-       y1="558.07001"
-       x2="1608.4301"
-       y2="561.40002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31142" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1423.01,605.31 1437.85,605.82 1437.91,606.23 "
-       id="polygon31144" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.81,596.22 1412.77,582.54 1413.29,582.64 "
-       id="polygon31146" />
-    <line
-       x1="1417.3101"
-       y1="610.27002"
-       x2="1417.03"
-       y2="610.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31148" />
-    <line
-       x1="1414.1899"
-       y1="610.47998"
-       x2="1413.89"
-       y2="610.46002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31150" />
-    <line
-       x1="1414.28"
-       y1="598.27002"
-       x2="1414.28"
-       y2="598.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31152" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1399.38,610.25 1409.7,606.34 1409.63,605.77 "
-       id="polygon31154" />
-    <line
-       x1="1409.35"
-       y1="606.16998"
-       x2="1409.35"
-       y2="606.16998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31156" />
-    <line
-       x1="1415.05"
-       y1="610.5"
-       x2="1414.77"
-       y2="610.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31158" />
-    <line
-       x1="1416.1899"
-       y1="610.44"
-       x2="1415.91"
-       y2="610.46997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31160" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1419.43,606.68 1419.43,606.3 1419.7,606.43 "
-       id="polygon31162" />
-    <line
-       x1="1635.6801"
-       y1="470.38"
-       x2="1637.41"
-       y2="467.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31164" />
-    <line
-       x1="1421.34"
-       y1="603.29999"
-       x2="1421.22"
-       y2="603.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31166" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1422.98,603.24 1437.96,603.66 1437.88,604.16 "
-       id="polygon31168" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1417.55,608.53 1417.34,608.72 1417.37,608.38 "
-       id="polygon31170" />
-    <line
-       x1="1615.22"
-       y1="487.17999"
-       x2="1618.29"
-       y2="485.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31172" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1419.4,602.28 1419.57,602.52 1419.39,602.65 "
-       id="polygon31174" />
-    <line
-       x1="1410.8"
-       y1="600.32001"
-       x2="1410.84"
-       y2="600.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1414.39,596.25 1413.29,582.64 1413.87,582.67 "
-       id="polygon31178" />
-    <line
-       x1="1557.61"
-       y1="423.35001"
-       x2="1556.13"
-       y2="425.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1414.96,596.2 1413.87,582.67 1414.44,582.62 "
-       id="polygon31182" />
-    <polygon
-       style="opacity:1;fill:#0000c3"
-       points="1413.63,608.39 1413.53,608.57 1413.41,608.35 "
-       id="polygon31184" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.95,604.9 1437.82,605.3 1437.85,605.82 "
-       id="polygon31186" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1416.52,608.8 1416.34,608.65 1416.55,608.46 "
-       id="polygon31188" />
-    <line
-       x1="1420.97"
-       y1="602.53998"
-       x2="1420.83"
-       y2="602.28003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31190" />
-    <line
-       x1="1412.23"
-       y1="599.41998"
-       x2="1412.02"
-       y2="599.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.93,603.81 1437.88,604.16 1437.83,604.73 "
-       id="polygon31194" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="1416.32,600.29 1416.57,600.53 1416.33,600.65 "
-       id="polygon31196" />
-    <line
-       x1="1419.53"
-       y1="600.34998"
-       x2="1419.53"
-       y2="600.34998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31198" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.92,604.38 1437.83,604.73 1437.82,605.3 "
-       id="polygon31200" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1419.37,604.45 1419.55,604.32 1419.66,604.59 "
-       id="polygon31202" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1415.57,600.29 1415.58,600.65 1415.32,600.41 "
-       id="polygon31204" />
-    <line
-       x1="1420.0601"
-       y1="601.04999"
-       x2="1420.0601"
-       y2="601.04999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31206" />
-    <polygon
-       style="opacity:1;fill:#0000f2"
-       points="1411.38,604.32 1411.58,604.43 1411.43,604.59 "
-       id="polygon31208" />
-    <line
-       x1="1409.75"
-       y1="602.45001"
-       x2="1409.98"
-       y2="602.56"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31210" />
-    <line
-       x1="1618.29"
-       y1="485.78"
-       x2="1621.24"
-       y2="484.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31212" />
-    <line
-       x1="1409.49"
-       y1="604.09003"
-       x2="1409.65"
-       y2="603.91998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31214" />
-    <line
-       x1="1633.73"
-       y1="473.09"
-       x2="1635.6801"
-       y2="470.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31216" />
-    <line
-       x1="1418"
-       y1="609.54999"
-       x2="1418.05"
-       y2="609.23999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31218" />
-    <line
-       x1="1420.71"
-       y1="605.77002"
-       x2="1420.95"
-       y2="605.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31220" />
-    <line
-       x1="1410.14"
-       y1="606.54999"
-       x2="1409.9399"
-       y2="606.46002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31222" />
-    <line
-       x1="1506.92"
-       y1="551.53998"
-       x2="1505.26"
-       y2="547.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31224" />
-    <line
-       x1="1629.86"
-       y1="610.92999"
-       x2="1632.3"
-       y2="611.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31226" />
-    <line
-       x1="1413.8199"
-       y1="609.67999"
-       x2="1413.72"
-       y2="609.83002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31228" />
-    <line
-       x1="1410.72"
-       y1="601.34003"
-       x2="1410.73"
-       y2="601.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31230" />
-    <polygon
-       style="opacity:1;fill:#0000cd"
-       points="1417.33,601.28 1417.58,601.53 1417.33,601.64 "
-       id="polygon31232" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1417.63,607.49 1417.42,607.69 1417.43,607.33 "
-       id="polygon31234" />
-    <polygon
-       style="opacity:1;fill:#0000f4"
-       points="1412.59,602.33 1412.56,602.59 1412.36,602.48 "
-       id="polygon31236" />
-    <line
-       x1="1412.4301"
-       y1="609.09003"
-       x2="1412.3101"
-       y2="608.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31238" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1438.32,602.95 1448.52,603.83 1438.4,603.05 "
-       id="polygon31240" />
-    <line
-       x1="1621.24"
-       y1="484.16"
-       x2="1624.0601"
-       y2="482.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31242" />
-    <line
-       x1="1631.58"
-       y1="475.64999"
-       x2="1633.73"
-       y2="473.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31244" />
-    <polygon
-       style="opacity:1;fill:#0000d2"
-       points="1416.59,601.26 1416.59,601.63 1416.34,601.38 "
-       id="polygon31246" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1416.6,607.75 1416.41,607.58 1416.62,607.39 "
-       id="polygon31248" />
-    <polygon
-       style="opacity:1;fill:#0000e5"
-       points="1412.34,605.55 1412.5,605.39 1412.55,605.66 "
-       id="polygon31250" />
-    <line
-       x1="1410.9301"
-       y1="607.57001"
-       x2="1411.09"
-       y2="607.40997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31252" />
-    <line
-       x1="1414.3"
-       y1="599.37"
-       x2="1414.3"
-       y2="599.08002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31254" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1412.35,604.6 1412.51,604.45 1412.55,604.71 "
-       id="polygon31256" />
-    <line
-       x1="1624.0601"
-       y1="482.32001"
-       x2="1626.73"
-       y2="480.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31258" />
-    <line
-       x1="1657.1801"
-       y1="532.44"
-       x2="1656.12"
-       y2="531.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31260" />
-    <line
-       x1="1629.25"
-       y1="478.06"
-       x2="1631.58"
-       y2="475.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31262" />
-    <polygon
-       style="opacity:1;fill:#0000c6"
-       points="1417.57,602.26 1417.55,602.63 1417.31,602.38 "
-       id="polygon31264" />
-    <line
-       x1="1626.73"
-       y1="480.29001"
-       x2="1629.25"
-       y2="478.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31266" />
-    <line
-       x1="1412.08"
-       y1="608.45001"
-       x2="1411.96"
-       y2="608.22998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31268" />
-    <line
-       x1="1410.6801"
-       y1="602.39001"
-       x2="1410.6801"
-       y2="602.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31270" />
-    <polygon
-       style="opacity:1;fill:#0000eb"
-       points="1413.67,602.37 1413.64,602.63 1413.43,602.52 "
-       id="polygon31272" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="1413.49,606.66 1413.42,606.46 1413.64,606.51 "
-       id="polygon31274" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1417.63,606.38 1417.43,606.58 1417.42,606.2 "
-       id="polygon31276" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1411.09,568.14 1412.07,581.71 1411.98,581.96 "
-       id="polygon31278" />
-    <line
-       x1="1416.03"
-       y1="599.69"
-       x2="1416.03"
-       y2="599.69"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31280" />
-    <line
-       x1="1413.47"
-       y1="600.08002"
-       x2="1413.26"
-       y2="599.96002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31282" />
-    <line
-       x1="1418.14"
-       y1="608.59998"
-       x2="1418.1801"
-       y2="608.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31284" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="1415.48,602.54 1415.52,602.29 1415.76,602.53 "
-       id="polygon31286" />
-    <line
-       x1="1520.03"
-       y1="484.44"
-       x2="1523.16"
-       y2="481.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31288" />
-    <polygon
-       style="opacity:1;fill:#0000c2"
-       points="1415.39,606.65 1415.32,606.46 1415.59,606.45 "
-       id="polygon31290" />
-    <line
-       x1="1389.39"
-       y1="303.37"
-       x2="1391.71"
-       y2="304.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31292" />
-    <line
-       x1="1416.48"
-       y1="609.14001"
-       x2="1416.3"
-       y2="608.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31294" />
-    <line
-       x1="1411.36"
-       y1="606.82001"
-       x2="1411.4301"
-       y2="607.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31296" />
-    <line
-       x1="1419.85"
-       y1="603.40997"
-       x2="1420.02"
-       y2="603.28003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31298" />
-    <line
-       x1="1411.4301"
-       y1="607.07001"
-       x2="1411.64"
-       y2="607.13"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31300" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1414.53,603.61 1414.29,603.36 1414.56,603.35 "
-       id="polygon31302" />
-    <polygon
-       style="opacity:1;fill:#0000c8"
-       points="1416.44,603.55 1416.47,603.28 1416.71,603.53 "
-       id="polygon31304" />
-    <line
-       x1="1410.76"
-       y1="603.72998"
-       x2="1410.8"
-       y2="603.98999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31306" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1416.39,605.64 1416.32,605.45 1416.59,605.44 "
-       id="polygon31308" />
-    <polygon
-       style="opacity:1;fill:#0000d5"
-       points="1415.36,603.59 1415.39,603.32 1415.63,603.58 "
-       id="polygon31310" />
-    <polygon
-       style="opacity:1;fill:#0000c9"
-       points="1415.59,605.66 1415.32,605.67 1415.52,605.46 "
-       id="polygon31312" />
-    <line
-       x1="1410.87"
-       y1="604.52002"
-       x2="1410.91"
-       y2="604.78003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31314" />
-    <line
-       x1="1415.55"
-       y1="599.91998"
-       x2="1415.3101"
-       y2="600.03998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31316" />
-    <line
-       x1="1411.0601"
-       y1="605.54999"
-       x2="1411.11"
-       y2="605.81"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31318" />
-    <line
-       x1="1419.67"
-       y1="605.25"
-       x2="1419.95"
-       y2="605.39001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31320" />
-    <line
-       x1="1414.4399"
-       y1="608.70001"
-       x2="1414.34"
-       y2="608.88"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31322" />
-    <line
-       x1="1411.55"
-       y1="602.29999"
-       x2="1411.77"
-       y2="602.14001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31324" />
-    <line
-       x1="1414.11"
-       y1="600.45001"
-       x2="1413.89"
-       y2="600.32001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31326" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1398,608.04 1408.32,604.13 1407.91,604.07 "
-       id="polygon31328" />
-    <line
-       x1="1508.87"
-       y1="555.42999"
-       x2="1506.92"
-       y2="551.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31330" />
-    <line
-       x1="1411.4399"
-       y1="603.35999"
-       x2="1411.25"
-       y2="603.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31332" />
-    <line
-       x1="1418.23"
-       y1="607.59003"
-       x2="1418.24"
-       y2="607.22998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31334" />
-    <line
-       x1="1418.3199"
-       y1="601.57001"
-       x2="1418.3101"
-       y2="601.92999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31336" />
-    <line
-       x1="1412.9"
-       y1="601.40002"
-       x2="1413.13"
-       y2="601.26001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31338" />
-    <line
-       x1="1413.37"
-       y1="601.12"
-       x2="1413.61"
-       y2="600.97998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31340" />
-    <line
-       x1="1412.95"
-       y1="607.46002"
-       x2="1413.17"
-       y2="607.5"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31342" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1398.84,611.47 1409.16,607.55 1409.45,607.27 "
-       id="polygon31344" />
-    <line
-       x1="1415.55"
-       y1="608.33002"
-       x2="1415.36"
-       y2="608.15002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31346" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1438.11,603.27 1448.33,603.92 1438.21,603.02 "
-       id="polygon31348" />
-    <line
-       x1="1559.28"
-       y1="420.92999"
-       x2="1557.61"
-       y2="423.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31350" />
-    <line
-       x1="1413.84"
-       y1="607.62"
-       x2="1414.0601"
-       y2="607.65997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31352" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1398.42,608.27 1408.74,604.36 1408.32,604.13 "
-       id="polygon31354" />
-    <line
-       x1="1608.4301"
-       y1="561.40002"
-       x2="1606.21"
-       y2="564.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31356" />
-    <line
-       x1="1418.29"
-       y1="602.65997"
-       x2="1418.27"
-       y2="603.02002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31358" />
-    <line
-       x1="1418.24"
-       y1="606.5"
-       x2="1418.23"
-       y2="606.12"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31360" />
-    <line
-       x1="1412.46"
-       y1="606.07001"
-       x2="1412.61"
-       y2="605.90997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31362" />
-    <line
-       x1="1412.4301"
-       y1="603.90997"
-       x2="1412.23"
-       y2="603.79999"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31364" />
-    <line
-       x1="1415.34"
-       y1="601.52002"
-       x2="1415.09"
-       y2="601.28998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31366" />
-    <line
-       x1="1414.2"
-       y1="601.58002"
-       x2="1414.17"
-       y2="601.83002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31368" />
-    <line
-       x1="1418.24"
-       y1="603.39001"
-       x2="1418.21"
-       y2="603.77002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31370" />
-    <line
-       x1="1414.83"
-       y1="607.40997"
-       x2="1414.76"
-       y2="607.21997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31372" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1399.13,611.19 1409.45,607.27 1409.64,606.85 "
-       id="polygon31374" />
-    <line
-       x1="1418.1899"
-       y1="605.34003"
-       x2="1418.16"
-       y2="604.94"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31376" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1411.11,568.63 1412.08,582.2 1412.35,582.41 "
-       id="polygon31378" />
-    <line
-       x1="1415.6"
-       y1="607.21997"
-       x2="1415.8"
-       y2="607.03003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31380" />
-    <line
-       x1="1414.12"
-       y1="602.34003"
-       x2="1414.09"
-       y2="602.59003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31382" />
-    <line
-       x1="1418.12"
-       y1="604.53003"
-       x2="1417.9"
-       y2="604.27002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31384" />
-    <line
-       x1="1417.86"
-       y1="604.53998"
-       x2="1418.12"
-       y2="604.53003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31386" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1398.8,608.65 1409.13,604.73 1408.74,604.36 "
-       id="polygon31388" />
-    <polygon
-       style="opacity:1;fill:#0000ce"
-       points="1414.65,568.45 1415.63,582.02 1415.71,581.77 "
-       id="polygon31390" />
-    <polygon
-       style="opacity:1;fill:#000087"
-       points="1437.98,606.49 1448.08,607.13 1437.91,606.22 "
-       id="polygon31392" />
-    <line
-       x1="1656.12"
-       y1="531.44"
-       x2="1655.1801"
-       y2="530.34003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31394" />
-    <line
-       x1="1416.3"
-       y1="602.5"
-       x2="1416.0699"
-       y2="602.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31396" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1438.02,603.66 1448.23,604.21 1438.11,603.27 "
-       id="polygon31398" />
-    <line
-       x1="1417.5699"
-       y1="605.19"
-       x2="1417.75"
-       y2="604.96997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31400" />
-    <line
-       x1="1413.39"
-       y1="605.14001"
-       x2="1413.55"
-       y2="604.97998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31402" />
-    <line
-       x1="1417.23"
-       y1="603.5"
-       x2="1417.01"
-       y2="603.25"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31404" />
-    <line
-       x1="1414.42"
-       y1="606.27002"
-       x2="1414.35"
-       y2="606.07001"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31406" />
-    <line
-       x1="1416.61"
-       y1="606.23999"
-       x2="1416.8101"
-       y2="606.03998"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31408" />
-    <line
-       x1="1414"
-       y1="603.35999"
-       x2="1413.98"
-       y2="603.62"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31410" />
-    <line
-       x1="1511.11"
-       y1="559.16998"
-       x2="1508.87"
-       y2="555.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31412" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1399.32,610.77 1409.64,606.85 1409.7,606.34 "
-       id="polygon31414" />
-    <line
-       x1="1413.9"
-       y1="604.40002"
-       x2="1413.87"
-       y2="604.65997"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31416" />
-    <line
-       x1="1414.14"
-       y1="605.47998"
-       x2="1414.0699"
-       y2="605.28003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31418" />
-    <line
-       x1="1416.83"
-       y1="604.59998"
-       x2="1417.09"
-       y2="604.59003"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31420" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1399.11,609.14 1409.43,605.22 1409.13,604.73 "
-       id="polygon31422" />
-    <line
-       x1="1523.16"
-       y1="481.70999"
-       x2="1526.46"
-       y2="479.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31424" />
-    <line
-       x1="1414.7"
-       y1="604.65997"
-       x2="1414.96"
-       y2="604.65002"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31426" />
-    <line
-       x1="1415.77"
-       y1="604.64001"
-       x2="1416.04"
-       y2="604.63"
-       style="stroke:#000000;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31428" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1399.31,609.69 1409.63,605.77 1409.43,605.22 "
-       id="polygon31430" />
-    <line
-       x1="1391.71"
-       y1="304.07001"
-       x2="1393.95"
-       y2="304.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31432" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.91,606.22 1448.04,606.76 1437.88,605.81 "
-       id="polygon31434" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1437.95,604.16 1448.14,604.64 1438.02,603.66 "
-       id="polygon31436" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.38,568.84 1412.35,582.41 1412.32,578.1 "
-       id="polygon31438" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1414.39,568.68 1415.37,582.26 1415.63,582.02 "
-       id="polygon31440" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.88,605.81 1448.02,606.28 1437.87,605.29 "
-       id="polygon31442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.89,604.73 1448.07,605.17 1437.95,604.16 "
-       id="polygon31444" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1448.26,604.09 1438.11,603.27 1448.33,603.92 "
-       id="polygon31446" />
-    <line
-       x1="1442.22"
-       y1="302.09"
-       x2="1449.58"
-       y2="300.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31448" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.87,605.29 1448.03,605.73 1437.89,604.73 "
-       id="polygon31450" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.8,568.99 1412.77,582.57 1413.29,582.66 "
-       id="polygon31452" />
-    <line
-       x1="1627.45"
-       y1="610.53998"
-       x2="1629.86"
-       y2="610.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31454" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1413.99,568.88 1414.96,582.46 1415.37,582.26 "
-       id="polygon31456" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.32,569.08 1413.29,582.66 1413.87,582.66 "
-       id="polygon31458" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1413.47,569.02 1414.45,582.6 1414.96,582.46 "
-       id="polygon31460" />
-    <line
-       x1="1513.63"
-       y1="562.72998"
-       x2="1511.11"
-       y2="559.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.9,569.09 1413.87,582.66 1414.45,582.6 "
-       id="polygon31464" />
-    <line
-       x1="1561.12"
-       y1="418.70001"
-       x2="1559.28"
-       y2="420.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.06,607.04 1437.91,606.22 1448.04,606.76 "
-       id="polygon31468" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1438.02,603.66 1448.14,604.64 1448.17,604.48 "
-       id="polygon31470" />
-    <line
-       x1="1655.1801"
-       y1="530.34003"
-       x2="1654.38"
-       y2="529.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31472" />
-    <line
-       x1="1606.21"
-       y1="564.59003"
-       x2="1603.71"
-       y2="567.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31474" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.88,605.81 1448.04,606.76 1448.02,606.63 "
-       id="polygon31476" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1448.09,604.98 1437.95,604.16 1448.14,604.64 "
-       id="polygon31478" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1421.63,592.31 1416.23,598.86 1416.13,599.34 "
-       id="polygon31480" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.02,606.63 1437.88,605.81 1448.02,606.28 "
-       id="polygon31482" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.95,604.16 1448.07,605.17 1448.09,604.98 "
-       id="polygon31484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.8,569.01 1411.38,568.86 1411.12,563.62 "
-       id="polygon31486" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1412.35,582.41 1411.11,568.63 1411.38,568.84 "
-       id="polygon31488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.04,605.55 1437.89,604.73 1448.07,605.17 "
-       id="polygon31490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.01,606.11 1437.87,605.29 1448.03,605.73 "
-       id="polygon31492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.89,604.73 1448.03,605.73 1448.04,605.55 "
-       id="polygon31494" />
-    <line
-       x1="1526.46"
-       y1="479.23001"
-       x2="1529.91"
-       y2="477.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31496" />
-    <line
-       x1="1393.95"
-       y1="304.95999"
-       x2="1396.11"
-       y2="306.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.54,592.8 1416.13,599.34 1416.21,599.87 "
-       id="polygon31500" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1415.63,582.02 1414.39,568.68 1414.65,568.45 "
-       id="polygon31502" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.77,582.57 1411.38,568.84 1411.8,568.99 "
-       id="polygon31504" />
-    <line
-       x1="1516.4"
-       y1="566.09998"
-       x2="1513.63"
-       y2="562.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31506" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.62,593.33 1416.21,599.87 1416.45,600.38 "
-       id="polygon31508" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1407.91,604.07 1398,608.04 1397.58,607.98 "
-       id="polygon31510" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="1423.8,594.84 1418.38,601.38 1418.87,601.25 "
-       id="polygon31512" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1415.37,582.26 1413.99,568.88 1414.39,568.68 "
-       id="polygon31514" />
-    <polygon
-       style="opacity:1;fill:#001a9c"
-       points="1453.16,607.81 1448.21,607.41 1453.07,607.71 "
-       id="polygon31516" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.54,592.8 1421.62,593.33 1419.49,595.52 "
-       id="polygon31518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1426.65,586.64 1421.6,593.35 1421.84,593.86 "
-       id="polygon31520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.86,593.84 1416.45,600.38 1416.83,600.82 "
-       id="polygon31522" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1423.25,594.81 1417.84,601.35 1418.38,601.38 "
-       id="polygon31524" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.29,582.66 1411.8,568.99 1412.32,569.08 "
-       id="polygon31526" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1426.57,586.12 1426.65,586.64 1424.44,589.21 "
-       id="polygon31528" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="1431.3,579.27 1431.66,579.34 1431.72,579.76 "
-       id="polygon31530" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1435.79,572.27 1431.29,579.29 1431.38,579.81 "
-       id="polygon31532" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.38,579.8 1426.63,586.66 1426.88,587.17 "
-       id="polygon31534" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1426.89,587.15 1421.84,593.86 1422.23,594.3 "
-       id="polygon31536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.24,594.28 1416.83,600.82 1417.31,601.16 "
-       id="polygon31538" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1422.72,594.62 1417.31,601.16 1417.84,601.35 "
-       id="polygon31540" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1414.96,582.46 1413.47,569.02 1413.99,568.88 "
-       id="polygon31542" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1408.32,604.13 1398.42,608.27 1398,608.04 "
-       id="polygon31544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.87,582.66 1412.32,569.08 1412.9,569.09 "
-       id="polygon31546" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1414.45,582.6 1412.9,569.09 1413.47,569.02 "
-       id="polygon31548" />
-    <line
-       x1="1654.38"
-       y1="529.15997"
-       x2="1653.73"
-       y2="527.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31550" />
-    <polygon
-       style="opacity:1;fill:#001787"
-       points="1453.07,607.71 1448.13,607.31 1453.01,607.44 "
-       id="polygon31552" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1408.74,604.36 1398.8,608.65 1398.42,608.27 "
-       id="polygon31554" />
-    <line
-       x1="1563.13"
-       y1="416.64001"
-       x2="1561.12"
-       y2="418.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31556" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="1453.11,604.88 1448.17,604.48 1453.21,604.48 "
-       id="polygon31558" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1452.96,606.51 1448.02,606.63 1448.02,606.28 "
-       id="polygon31560" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1453.04,605.38 1448.04,605.55 1448.07,605.17 "
-       id="polygon31562" />
-    <line
-       x1="1603.71"
-       y1="567.64001"
-       x2="1600.96"
-       y2="570.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31564" />
-    <line
-       x1="1519.42"
-       y1="569.26001"
-       x2="1516.4"
-       y2="566.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31566" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1409.64,606.85 1399.13,611.19 1399.32,610.77 "
-       id="polygon31568" />
-    <line
-       x1="1396.11"
-       y1="306.01999"
-       x2="1398.16"
-       y2="307.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31570" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1409.13,604.73 1399.11,609.14 1398.8,608.65 "
-       id="polygon31572" />
-    <line
-       x1="1625.1"
-       y1="609.88"
-       x2="1627.45"
-       y2="610.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31574" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1409.7,606.34 1399.32,610.77 1399.38,610.25 "
-       id="polygon31576" />
-    <line
-       x1="1529.91"
-       y1="477.03"
-       x2="1533.48"
-       y2="475.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31578" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1409.43,605.22 1399.31,609.69 1399.11,609.14 "
-       id="polygon31580" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1409.78,554.59 1411.09,568.18 1411.01,568.43 "
-       id="polygon31582" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1409.63,605.77 1399.38,610.25 1399.31,609.69 "
-       id="polygon31584" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1413.32,554.34 1414.64,567.92 1414.36,567.72 "
-       id="polygon31586" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1452.98,605.95 1448.04,605.55 1453.04,605.38 "
-       id="polygon31588" />
-    <line
-       x1="1436.55"
-       y1="301.29001"
-       x2="1437"
-       y2="301.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31590" />
-    <line
-       x1="1435.29"
-       y1="300.60999"
-       x2="1435.7"
-       y2="300.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31592" />
-    <line
-       x1="1437.45"
-       y1="301.66"
-       x2="1437.91"
-       y2="301.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31594" />
-    <line
-       x1="1434.51"
-       y1="300.07999"
-       x2="1434.89"
-       y2="300.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31596" />
-    <line
-       x1="1522.67"
-       y1="572.17999"
-       x2="1519.42"
-       y2="569.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31598" />
-    <line
-       x1="1433.79"
-       y1="299.48999"
-       x2="1434.14"
-       y2="299.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31600" />
-    <line
-       x1="1653.73"
-       y1="527.89001"
-       x2="1653.22"
-       y2="526.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31602" />
-    <polygon
-       style="opacity:1;fill:#001ca5"
-       points="1453.38,604.15 1468.53,605.27 1468.44,605.16 "
-       id="polygon31604" />
-    <polygon
-       style="opacity:1;fill:#001991"
-       points="1468.34,605.24 1453.28,604.23 1453.18,604.48 "
-       id="polygon31606" />
-    <line
-       x1="1440.3"
-       y1="302.20001"
-       x2="1440.78"
-       y2="302.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31608" />
-    <polygon
-       style="opacity:1;fill:#001b9c"
-       points="1468.15,608.73 1453.09,607.72 1453.18,607.82 "
-       id="polygon31610" />
-    <line
-       x1="1432.84"
-       y1="298.54001"
-       x2="1433.14"
-       y2="298.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31612" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1409.79,555.08 1411.11,568.66 1411.38,568.86 "
-       id="polygon31614" />
-    <line
-       x1="1600.96"
-       y1="570.52002"
-       x2="1597.95"
-       y2="573.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31616" />
-    <line
-       x1="1441.27"
-       y1="302.20001"
-       x2="1441.75"
-       y2="302.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31618" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="1413.34,554.82 1414.65,568.41 1414.73,568.16 "
-       id="polygon31620" />
-    <line
-       x1="1398.16"
-       y1="307.26001"
-       x2="1400.1"
-       y2="308.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31622" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="1468.24,605.49 1453.18,604.48 1453.09,604.87 "
-       id="polygon31624" />
-    <line
-       x1="1565.28"
-       y1="414.79001"
-       x2="1563.13"
-       y2="416.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31626" />
-    <polygon
-       style="opacity:1;fill:#001787"
-       points="1468.08,608.46 1453.02,607.45 1453.09,607.72 "
-       id="polygon31628" />
-    <line
-       x1="1432.05"
-       y1="297.54001"
-       x2="1432.29"
-       y2="297.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31630" />
-    <line
-       x1="1526.13"
-       y1="574.87"
-       x2="1522.67"
-       y2="572.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31632" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1409.7,554.87 1408.21,541.02 1408.13,541.27 "
-       id="polygon31634" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1408.23,541.5 1409.79,555.11 1410.07,555.3 "
-       id="polygon31636" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.06,555.28 1411.38,568.86 1411.12,563.62 "
-       id="polygon31638" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1413.08,555.06 1414.39,568.65 1414.65,568.41 "
-       id="polygon31640" />
-    <polygon
-       style="opacity:1;fill:#001372"
-       points="1468.15,605.88 1453.09,604.87 1453.02,605.38 "
-       id="polygon31642" />
-    <line
-       x1="1533.48"
-       y1="475.10001"
-       x2="1537.15"
-       y2="473.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31644" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1468.03,608.04 1452.97,607.03 1453.02,607.45 "
-       id="polygon31646" />
-    <polygon
-       style="opacity:1;fill:#0000ef"
-       points="1398.68,611.13 1398.46,611.59 1398.84,611.47 "
-       id="polygon31648" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1408.13,541.29 1406.46,527.41 1406.37,527.65 "
-       id="polygon31650" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1406.47,527.88 1408.23,541.51 1408.5,541.7 "
-       id="polygon31652" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.5,541.69 1410.07,555.3 1410.48,555.43 "
-       id="polygon31654" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.48,555.42 1411.8,569.01 1412.32,569.09 "
-       id="polygon31656" />
-    <line
-       x1="1431.62"
-       y1="296.87"
-       x2="1431.8199"
-       y2="297.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31658" />
-    <polygon
-       style="opacity:1;fill:#001ca4"
-       points="1468.49,605.25 1468.38,605.14 1472.63,605.38 "
-       id="polygon31660" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="1468.15,605.47 1468.26,605.22 1471.38,605.52 "
-       id="polygon31662" />
-    <polygon
-       style="opacity:1;fill:#001b9c"
-       points="1453.28,604.23 1468.44,605.16 1468.34,605.24 "
-       id="polygon31664" />
-    <line
-       x1="1425.09"
-       y1="339"
-       x2="1449.28"
-       y2="301.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31666" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1412.68,555.26 1413.99,568.85 1414.39,568.65 "
-       id="polygon31668" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1468.08,606.39 1453.02,605.38 1452.97,605.94 "
-       id="polygon31670" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1468.02,607.52 1452.95,606.51 1452.97,607.03 "
-       id="polygon31672" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1468.03,606.95 1452.97,605.94 1452.95,606.51 "
-       id="polygon31674" />
-    <line
-       x1="1653.22"
-       y1="526.54999"
-       x2="1652.86"
-       y2="525.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31676" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1421.6,593.35 1421.52,592.83 1423.11,591.16 "
-       id="polygon31678" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1416.13,599.34 1421.63,592.31 1421.54,592.8 "
-       id="polygon31680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.01,555.5 1412.32,569.09 1412.9,569.08 "
-       id="polygon31682" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1412.16,555.41 1413.47,569 1413.99,568.85 "
-       id="polygon31684" />
-    <line
-       x1="1622.8101"
-       y1="608.94"
-       x2="1625.1"
-       y2="609.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31686" />
-    <polygon
-       style="opacity:1;fill:#001b9c"
-       points="1453.18,607.82 1468.15,608.73 1468.24,608.84 "
-       id="polygon31688" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.58,555.49 1412.9,569.08 1413.47,569 "
-       id="polygon31690" />
-    <line
-       x1="1597.95"
-       y1="573.20001"
-       x2="1594.72"
-       y2="575.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31692" />
-    <line
-       x1="1529.77"
-       y1="577.28998"
-       x2="1526.13"
-       y2="574.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31694" />
-    <polygon
-       style="opacity:1;fill:#0000cc"
-       points="1414.73,568.16 1413.34,554.82 1413.42,554.57 "
-       id="polygon31696" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1416.21,599.87 1421.62,593.33 1419.49,595.52 "
-       id="polygon31698" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="1418.87,601.25 1423.8,594.84 1424.29,594.71 "
-       id="polygon31700" />
-    <line
-       x1="1400.1"
-       y1="308.64999"
-       x2="1401.91"
-       y2="310.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31702" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1411.38,568.86 1409.79,555.08 1410.06,555.28 "
-       id="polygon31704" />
-    <polygon
-       style="opacity:1;fill:#001787"
-       points="1453.09,607.72 1468.08,608.46 1468.15,608.73 "
-       id="polygon31706" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1416.45,600.38 1421.62,593.33 1421.86,593.84 "
-       id="polygon31708" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1418.38,601.38 1423.25,594.81 1423.8,594.84 "
-       id="polygon31710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1416.83,600.82 1421.86,593.84 1422.24,594.28 "
-       id="polygon31712" />
-    <polygon
-       style="opacity:1;fill:#001683"
-       points="1453.09,604.87 1468.24,605.49 1468.15,605.88 "
-       id="polygon31714" />
-    <polygon
-       style="opacity:1;fill:#0000b3"
-       points="1414.65,568.41 1413.08,555.06 1413.34,554.82 "
-       id="polygon31716" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1417.84,601.35 1422.72,594.62 1423.25,594.81 "
-       id="polygon31718" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1417.31,601.16 1422.24,594.28 1422.72,594.62 "
-       id="polygon31720" />
-    <line
-       x1="1400.63"
-       y1="345.20999"
-       x2="1398.62"
-       y2="345.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31722" />
-    <line
-       x1="1398.62"
-       y1="345.32001"
-       x2="1396.61"
-       y2="345.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31724" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.8,569.01 1410.06,555.28 1410.48,555.42 "
-       id="polygon31726" />
-    <line
-       x1="1402.65"
-       y1="345.04999"
-       x2="1400.63"
-       y2="345.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31728" />
-    <line
-       x1="1533.58"
-       y1="579.44"
-       x2="1529.77"
-       y2="577.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31730" />
-    <line
-       x1="1396.61"
-       y1="345.39001"
-       x2="1394.63"
-       y2="345.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31732" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1467.97,606.95 1468,606.38 1470.79,606.94 "
-       id="polygon31734" />
-    <polygon
-       style="opacity:1;fill:#001372"
-       points="1453.02,605.38 1468.15,605.88 1468.08,606.39 "
-       id="polygon31736" />
-    <line
-       x1="1404.66"
-       y1="344.85001"
-       x2="1402.65"
-       y2="345.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31738" />
-    <line
-       x1="1430.89"
-       y1="295.26001"
-       x2="1431"
-       y2="295.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31740" />
-    <line
-       x1="1567.5699"
-       y1="413.16"
-       x2="1565.28"
-       y2="414.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31742" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1414.39,568.65 1412.68,555.26 1413.08,555.06 "
-       id="polygon31744" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1452.97,607.03 1468.02,607.52 1468.03,608.04 "
-       id="polygon31746" />
-    <line
-       x1="1594.72"
-       y1="575.67999"
-       x2="1591.27"
-       y2="577.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31748" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1452.97,605.94 1468.08,606.39 1468.03,606.95 "
-       id="polygon31750" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.32,569.09 1410.48,555.42 1411.01,555.5 "
-       id="polygon31752" />
-    <line
-       x1="1394.63"
-       y1="345.44"
-       x2="1392.66"
-       y2="345.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31754" />
-    <line
-       x1="1652.86"
-       y1="525.15997"
-       x2="1652.67"
-       y2="523.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31756" />
-    <line
-       x1="1406.67"
-       y1="344.60999"
-       x2="1404.66"
-       y2="344.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31758" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1413.99,568.85 1412.16,555.41 1412.68,555.26 "
-       id="polygon31760" />
-    <line
-       x1="1537.15"
-       y1="473.45999"
-       x2="1540.9"
-       y2="472.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31762" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.9,569.08 1411.01,555.5 1411.58,555.49 "
-       id="polygon31764" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1413.47,569 1411.58,555.49 1412.16,555.41 "
-       id="polygon31766" />
-    <line
-       x1="1392.66"
-       y1="345.45001"
-       x2="1390.73"
-       y2="345.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31768" />
-    <line
-       x1="1408.66"
-       y1="344.31"
-       x2="1406.67"
-       y2="344.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31770" />
-    <line
-       x1="1430.74"
-       y1="294.67999"
-       x2="1430.8"
-       y2="294.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31772" />
-    <line
-       x1="1537.54"
-       y1="581.29999"
-       x2="1533.58"
-       y2="579.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31774" />
-    <line
-       x1="1401.91"
-       y1="310.19"
-       x2="1403.58"
-       y2="311.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31776" />
-    <polygon
-       style="opacity:1;fill:#001ca4"
-       points="1483.18,605.71 1468.38,605.14 1472.63,605.38 "
-       id="polygon31778" />
-    <line
-       x1="1390.73"
-       y1="345.42999"
-       x2="1388.83"
-       y2="345.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31780" />
-    <line
-       x1="1410.64"
-       y1="343.95999"
-       x2="1408.66"
-       y2="344.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31782" />
-    <line
-       x1="1591.27"
-       y1="577.92999"
-       x2="1587.64"
-       y2="579.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31784" />
-    <polygon
-       style="opacity:1;fill:#0000e2"
-       points="1411.76,540.7 1413.32,554.31 1413.05,554.12 "
-       id="polygon31786" />
-    <line
-       x1="1620.61"
-       y1="607.72998"
-       x2="1622.8101"
-       y2="608.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31788" />
-    <line
-       x1="1541.63"
-       y1="582.87"
-       x2="1537.54"
-       y2="581.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31790" />
-    <line
-       x1="1412.59"
-       y1="343.54999"
-       x2="1410.64"
-       y2="343.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31792" />
-    <line
-       x1="1388.83"
-       y1="345.39999"
-       x2="1386.96"
-       y2="345.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31794" />
-    <line
-       x1="1652.67"
-       y1="523.71002"
-       x2="1652.63"
-       y2="522.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31796" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1387.57,612.12 1397.98,608.04 1397.57,607.98 "
-       id="polygon31798" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1388.44,615.55 1398.85,611.47 1399.14,611.19 "
-       id="polygon31800" />
-    <line
-       x1="1587.64"
-       y1="579.92999"
-       x2="1583.83"
-       y2="581.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31802" />
-    <polygon
-       style="opacity:1;fill:#001ca4"
-       points="1483.07,605.61 1468.38,605.14 1483.18,605.71 "
-       id="polygon31804" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="1482.95,605.69 1468.26,605.22 1471.38,605.52 "
-       id="polygon31806" />
-    <line
-       x1="1569.97"
-       y1="411.73999"
-       x2="1567.5699"
-       y2="413.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31808" />
-    <line
-       x1="1414.51"
-       y1="343.09"
-       x2="1412.59"
-       y2="343.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31810" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1388,612.36 1398.4,608.27 1397.98,608.04 "
-       id="polygon31812" />
-    <line
-       x1="1545.8101"
-       y1="584.14001"
-       x2="1541.63"
-       y2="582.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31814" />
-    <line
-       x1="1386.96"
-       y1="345.34"
-       x2="1385.14"
-       y2="345.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31816" />
-    <line
-       x1="1430.63"
-       y1="293.70001"
-       x2="1430.64"
-       y2="293.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31818" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1388.73,615.27 1399.14,611.19 1399.32,610.77 "
-       id="polygon31820" />
-    <line
-       x1="1403.58"
-       y1="311.88"
-       x2="1405.1"
-       y2="313.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31822" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1388.38,612.73 1398.79,608.65 1398.4,608.27 "
-       id="polygon31824" />
-    <line
-       x1="1540.9"
-       y1="472.12"
-       x2="1544.71"
-       y2="471.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31826" />
-    <polygon
-       style="opacity:1;fill:#001680"
-       points="1468.06,605.87 1482.84,605.95 1468.15,605.47 "
-       id="polygon31828" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1388.91,614.86 1399.32,610.77 1399.38,610.26 "
-       id="polygon31830" />
-    <polygon
-       style="opacity:1;fill:#001788"
-       points="1468.19,608.75 1482.79,608.95 1468.09,608.47 "
-       id="polygon31832" />
-    <line
-       x1="1583.83"
-       y1="581.67999"
-       x2="1579.88"
-       y2="583.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31834" />
-    <line
-       x1="1550.0699"
-       y1="585.09998"
-       x2="1545.8101"
-       y2="584.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31836" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1388.68,613.22 1399.09,609.14 1398.79,608.65 "
-       id="polygon31838" />
-    <line
-       x1="1416.4"
-       y1="342.57001"
-       x2="1414.51"
-       y2="343.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31840" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1411.52,541.42 1413.08,555.03 1413.34,554.79 "
-       id="polygon31842" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1388.96,614.34 1399.38,610.26 1399.3,609.7 "
-       id="polygon31844" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1388.89,613.78 1399.3,609.7 1399.09,609.14 "
-       id="polygon31846" />
-    <line
-       x1="1385.14"
-       y1="345.26999"
-       x2="1383.38"
-       y2="345.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31848" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1468.09,608.47 1482.71,608.53 1468.02,608.05 "
-       id="polygon31850" />
-    <line
-       x1="1652.63"
-       y1="522.22998"
-       x2="1652.75"
-       y2="520.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31852" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.91,541.82 1410.48,555.43 1411.01,555.5 "
-       id="polygon31854" />
-    <line
-       x1="1554.38"
-       y1="585.75"
-       x2="1550.0699"
-       y2="585.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31856" />
-    <line
-       x1="1579.88"
-       y1="583.15002"
-       x2="1575.79"
-       y2="584.34003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31858" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1411.11,541.63 1412.68,555.24 1413.08,555.03 "
-       id="polygon31860" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="1424.1,594.39 1424.3,594.7 1424.7,594.41 "
-       id="polygon31862" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1482.69,606.86 1468,606.38 1470.79,606.94 "
-       id="polygon31864" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1467.98,607.53 1482.66,607.43 1467.97,606.95 "
-       id="polygon31866" />
-    <line
-       x1="1354.6801"
-       y1="447.85999"
-       x2="1350.8"
-       y2="446.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31868" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.44,541.89 1411.01,555.5 1411.58,555.48 "
-       id="polygon31870" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1410.59,541.79 1412.16,555.39 1412.68,555.24 "
-       id="polygon31872" />
-    <line
-       x1="1358.63"
-       y1="449.03"
-       x2="1354.6801"
-       y2="447.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31874" />
-    <line
-       x1="1418.24"
-       y1="341.98001"
-       x2="1416.4"
-       y2="342.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31876" />
-    <polygon
-       style="opacity:1;fill:#000086"
-       points="1423.8,594.84 1423.27,594.48 1423.7,594.5 "
-       id="polygon31878" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.02,541.88 1411.58,555.48 1412.16,555.39 "
-       id="polygon31880" />
-    <line
-       x1="1558.71"
-       y1="586.09003"
-       x2="1554.38"
-       y2="585.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31882" />
-    <line
-       x1="1350.8"
-       y1="446.60999"
-       x2="1346.98"
-       y2="445.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31884" />
-    <line
-       x1="1575.79"
-       y1="584.34003"
-       x2="1571.61"
-       y2="585.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31886" />
-    <line
-       x1="1618.51"
-       y1="606.25"
-       x2="1620.61"
-       y2="607.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31888" />
-    <line
-       x1="1563.05"
-       y1="586.10999"
-       x2="1558.71"
-       y2="586.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31890" />
-    <line
-       x1="1571.61"
-       y1="585.22998"
-       x2="1567.36"
-       y2="585.83002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31892" />
-    <line
-       x1="1383.38"
-       y1="345.20001"
-       x2="1381.66"
-       y2="345.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31894" />
-    <line
-       x1="1567.36"
-       y1="585.83002"
-       x2="1563.05"
-       y2="586.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31896" />
-    <polygon
-       style="opacity:1;fill:#00188f"
-       points="1482.84,605.94 1468.15,605.47 1482.95,605.69 "
-       id="polygon31898" />
-    <line
-       x1="1362.6"
-       y1="450.10001"
-       x2="1358.63"
-       y2="449.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31900" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1410.07,555.3 1408.23,541.5 1408.5,541.69 "
-       id="polygon31902" />
-    <line
-       x1="1405.1"
-       y1="313.69"
-       x2="1406.46"
-       y2="315.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31904" />
-    <line
-       x1="1346.98"
-       y1="445.28"
-       x2="1343.27"
-       y2="443.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31906" />
-    <polygon
-       style="opacity:1;fill:#0000b2"
-       points="1413.34,554.79 1411.52,541.42 1411.77,541.18 "
-       id="polygon31908" />
-    <line
-       x1="1572.48"
-       y1="410.54999"
-       x2="1569.97"
-       y2="411.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31910" />
-    <line
-       x1="1420.04"
-       y1="341.32999"
-       x2="1418.24"
-       y2="341.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31912" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.48,555.43 1408.5,541.69 1408.91,541.82 "
-       id="polygon31914" />
-    <line
-       x1="1652.75"
-       y1="520.71002"
-       x2="1653.03"
-       y2="519.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31916" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1482.78,608.95 1468.09,608.47 1482.71,608.53 "
-       id="polygon31918" />
-    <line
-       x1="1366.6"
-       y1="451.06"
-       x2="1362.6"
-       y2="450.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31920" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1413.08,555.03 1411.11,541.63 1411.52,541.42 "
-       id="polygon31922" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1482.69,606.85 1468,606.38 1482.75,606.35 "
-       id="polygon31924" />
-    <line
-       x1="1381.66"
-       y1="345.10999"
-       x2="1380"
-       y2="345.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31926" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.01,555.5 1408.91,541.82 1409.44,541.89 "
-       id="polygon31928" />
-    <line
-       x1="1343.27"
-       y1="443.89001"
-       x2="1339.66"
-       y2="442.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31930" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1482.71,608.52 1468.02,608.05 1482.67,608.01 "
-       id="polygon31932" />
-    <line
-       x1="1544.71"
-       y1="471.07999"
-       x2="1548.54"
-       y2="470.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31934" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1412.68,555.24 1410.59,541.79 1411.11,541.63 "
-       id="polygon31936" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1482.67,608 1467.98,607.53 1482.66,607.43 "
-       id="polygon31938" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1411.58,555.48 1409.44,541.89 1410.02,541.88 "
-       id="polygon31940" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1412.16,555.39 1410.02,541.88 1410.59,541.79 "
-       id="polygon31942" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1397.98,608.04 1388,612.36 1387.57,612.12 "
-       id="polygon31944" />
-    <line
-       x1="1421.78"
-       y1="340.62"
-       x2="1420.04"
-       y2="341.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31946" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1399.14,611.19 1388.44,615.55 1388.73,615.27 "
-       id="polygon31948" />
-    <line
-       x1="1406.46"
-       y1="315.62"
-       x2="1407.65"
-       y2="317.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31950" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1398.4,608.27 1388.38,612.73 1388,612.36 "
-       id="polygon31952" />
-    <line
-       x1="1370.59"
-       y1="451.89999"
-       x2="1366.6"
-       y2="451.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31954" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1399.32,610.77 1388.73,615.27 1388.91,614.86 "
-       id="polygon31956" />
-    <line
-       x1="1380"
-       y1="345.03"
-       x2="1378.41"
-       y2="344.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31958" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1398.79,608.65 1388.68,613.22 1388.38,612.73 "
-       id="polygon31960" />
-    <line
-       x1="1339.66"
-       y1="442.45999"
-       x2="1336.1899"
-       y2="441"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31962" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1399.38,610.26 1388.91,614.86 1388.96,614.34 "
-       id="polygon31964" />
-    <line
-       x1="1653.03"
-       y1="519.17999"
-       x2="1653.47"
-       y2="517.65002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31966" />
-    <polygon
-       style="opacity:1;fill:#000095"
-       points="1399.09,609.14 1388.89,613.78 1388.68,613.22 "
-       id="polygon31968" />
-    <polygon
-       style="opacity:1;fill:#0000a5"
-       points="1399.3,609.7 1388.96,614.34 1388.89,613.78 "
-       id="polygon31970" />
-    <line
-       x1="1616.54"
-       y1="604.53003"
-       x2="1618.51"
-       y2="606.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31972" />
-    <line
-       x1="1423.46"
-       y1="339.84"
-       x2="1421.78"
-       y2="340.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31974" />
-    <line
-       x1="1431.21"
-       y1="292.66"
-       x2="1431.11"
-       y2="292.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31976" />
-    <line
-       x1="1575.0601"
-       y1="409.60999"
-       x2="1572.48"
-       y2="410.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31978" />
-    <line
-       x1="1374.55"
-       y1="452.60999"
-       x2="1370.59"
-       y2="451.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31980" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1426.66,585.63 1421.61,592.34 1421.52,592.83 "
-       id="polygon31982" />
-    <polygon
-       style="opacity:1;fill:#0000cb"
-       points="1410.02,527.52 1411.77,541.16 1411.86,540.91 "
-       id="polygon31984" />
-    <line
-       x1="1378.41"
-       y1="344.95001"
-       x2="1376.88"
-       y2="344.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31986" />
-    <line
-       x1="1407.65"
-       y1="317.66"
-       x2="1408.66"
-       y2="319.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31988" />
-    <line
-       x1="1425.09"
-       y1="339"
-       x2="1423.46"
-       y2="339.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31990" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1426.57,586.12 1421.52,592.83 1423.11,591.16 "
-       id="polygon31992" />
-    <polygon
-       style="opacity:1;fill:#0038a4"
-       points="1483.18,605.61 1497.94,605.46 1497.8,605.36 "
-       id="polygon31994" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1497.66,605.44 1483.04,605.68 1482.91,605.94 "
-       id="polygon31996" />
-    <line
-       x1="1336.1899"
-       y1="441"
-       x2="1332.86"
-       y2="439.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line31998" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.74,528.06 1408.5,541.7 1408.91,541.83 "
-       id="polygon32000" />
-    <line
-       x1="1548.54"
-       y1="470.35001"
-       x2="1552.38"
-       y2="469.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32002" />
-    <polygon
-       style="opacity:1;fill:#0000b1"
-       points="1409.76,527.76 1411.51,541.4 1411.77,541.16 "
-       id="polygon32004" />
-    <line
-       x1="1653.47"
-       y1="517.65002"
-       x2="1654.0699"
-       y2="516.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32006" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1429.36,588 1424.3,594.7 1424.7,594.41 "
-       id="polygon32008" />
-    <polygon
-       style="opacity:1;fill:#0000ab"
-       points="1428.86,588.13 1423.8,594.84 1424.3,594.7 "
-       id="polygon32010" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.16,528.19 1408.91,541.83 1409.44,541.89 "
-       id="polygon32012" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1409.35,527.97 1411.11,541.61 1411.51,541.4 "
-       id="polygon32014" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1428.31,588.11 1423.26,594.81 1423.8,594.84 "
-       id="polygon32016" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1435.88,571.78 1435.79,572.27 1433.71,575.33 "
-       id="polygon32018" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1440.08,565.12 1435.78,572.29 1435.87,572.8 "
-       id="polygon32020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1435.88,572.79 1431.38,579.81 1431.63,580.31 "
-       id="polygon32022" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.63,580.3 1426.88,587.17 1427.27,587.6 "
-       id="polygon32024" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.28,587.59 1422.23,594.3 1422.72,594.63 "
-       id="polygon32026" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1427.77,587.92 1422.72,594.63 1423.26,594.81 "
-       id="polygon32028" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.68,528.25 1409.44,541.89 1410.02,541.87 "
-       id="polygon32030" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1408.84,528.13 1410.59,541.77 1411.11,541.61 "
-       id="polygon32032" />
-    <line
-       x1="1432.25"
-       y1="292.62"
-       x2="1431.72"
-       y2="292.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32034" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.26,528.23 1410.02,541.87 1410.59,541.77 "
-       id="polygon32036" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1497.66,605.44 1497.54,605.69 1495.49,605.51 "
-       id="polygon32038" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1509.5,604.5 1512.22,604.42 1512.05,604.32 "
-       id="polygon32040" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1506.66,604.78 1512.22,604.42 1509.5,604.5 "
-       id="polygon32042" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.5,605.59 1511.53,605.08 1513.57,605.25 "
-       id="polygon32044" />
-    <polygon
-       style="opacity:1;fill:#002978"
-       points="1511.66,605.06 1511.75,604.66 1509.13,605.24 "
-       id="polygon32046" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1511.96,604.33 1526.24,602.64 1526.03,602.54 "
-       id="polygon32048" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="1525.84,602.62 1511.77,604.41 1511.62,604.67 "
-       id="polygon32050" />
-    <polygon
-       style="opacity:1;fill:#002978"
-       points="1511.75,604.66 1497.4,605.69 1497.31,606.1 "
-       id="polygon32052" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.45,606.09 1482.82,606.34 1482.77,606.86 "
-       id="polygon32054" />
-    <polygon
-       style="opacity:1;fill:#0000cb"
-       points="1411.86,540.91 1410.02,527.52 1410.1,527.28 "
-       id="polygon32056" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.45,606.09 1497.4,606.61 1494.95,606.22 "
-       id="polygon32058" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.27,606.62 1497.29,607.2 1500.85,606.36 "
-       id="polygon32060" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1482.8,608.01 1497.39,607.19 1497.43,607.77 "
-       id="polygon32062" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.7,606.74 1497.36,607.77 1497.48,608.3 "
-       id="polygon32064" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.51,608.3 1482.88,608.54 1482.99,608.96 "
-       id="polygon32066" />
-    <line
-       x1="1408.66"
-       y1="319.79001"
-       x2="1408.98"
-       y2="320.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32068" />
-    <line
-       x1="1614.7"
-       y1="602.54999"
-       x2="1616.54"
-       y2="604.53003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32070" />
-    <line
-       x1="1378.46"
-       y1="453.17001"
-       x2="1374.55"
-       y2="452.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32072" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1408.5,541.7 1406.47,527.88 1406.74,528.06 "
-       id="polygon32074" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.51,608.3 1497.43,607.77 1493.67,608.36 "
-       id="polygon32076" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="1511.88,604.4 1511.75,604.66 1509.86,604.58 "
-       id="polygon32078" />
-    <polygon
-       style="opacity:1;fill:#002874"
-       points="1511.62,604.67 1511.53,605.08 1514.12,604.35 "
-       id="polygon32080" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.66,605.06 1511.61,605.58 1509.28,605.32 "
-       id="polygon32082" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.48,603.82 1527.32,603.42 1525.5,603.3 "
-       id="polygon32084" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.57,603.8 1511.5,605.59 1511.54,606.17 "
-       id="polygon32086" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.63,606.16 1497.29,607.2 1497.36,607.77 "
-       id="polygon32088" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.43,607.77 1482.8,608.01 1482.88,608.54 "
-       id="polygon32090" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.39,607.19 1482.76,607.43 1482.8,608.01 "
-       id="polygon32092" />
-    <polygon
-       style="opacity:1;fill:#0000b1"
-       points="1411.77,541.16 1409.76,527.76 1410.02,527.52 "
-       id="polygon32094" />
-    <line
-       x1="1654.0699"
-       y1="516.12"
-       x2="1654.8199"
-       y2="514.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32096" />
-    <line
-       x1="1577.71"
-       y1="408.91"
-       x2="1575.0601"
-       y2="409.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32098" />
-    <line
-       x1="1332.86"
-       y1="439.53"
-       x2="1329.7"
-       y2="438.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32100" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.91,541.83 1406.74,528.06 1407.16,528.19 "
-       id="polygon32102" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1411.51,541.4 1409.35,527.97 1409.76,527.76 "
-       id="polygon32104" />
-    <polygon
-       style="opacity:1;fill:#00308b"
-       points="1482.91,605.94 1497.54,605.69 1495.49,605.51 "
-       id="polygon32106" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1409.44,541.89 1407.16,528.19 1407.68,528.25 "
-       id="polygon32108" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1411.11,541.61 1408.84,528.13 1409.35,527.97 "
-       id="polygon32110" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.02,541.87 1407.68,528.25 1408.26,528.23 "
-       id="polygon32112" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1410.59,541.77 1408.26,528.23 1408.84,528.13 "
-       id="polygon32114" />
-    <line
-       x1="1552.38"
-       y1="469.92999"
-       x2="1556.1899"
-       y2="469.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32116" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1482.99,608.96 1497.51,608.3 1497.62,608.72 "
-       id="polygon32118" />
-    <line
-       x1="1382.3199"
-       y1="453.57001"
-       x2="1378.46"
-       y2="453.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32120" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1482.77,606.86 1497.4,606.61 1494.95,606.22 "
-       id="polygon32122" />
-    <line
-       x1="1654.8199"
-       y1="514.60999"
-       x2="1655.73"
-       y2="513.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32124" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="1408.1,513.37 1410,527.04 1409.73,526.86 "
-       id="polygon32126" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1376.29,616.41 1386.78,612.18 1386.5,612.46 "
-       id="polygon32128" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1482.88,608.54 1497.43,607.77 1493.67,608.36 "
-       id="polygon32130" />
-    <line
-       x1="1415.62"
-       y1="311.45001"
-       x2="1416.2"
-       y2="312.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32132" />
-    <line
-       x1="1414.61"
-       y1="309.79001"
-       x2="1415.09"
-       y2="310.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32134" />
-    <line
-       x1="1416.2"
-       y1="312.25"
-       x2="1416.8199"
-       y2="313.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32136" />
-    <line
-       x1="1413.8199"
-       y1="308.06"
-       x2="1414.1899"
-       y2="308.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32138" />
-    <line
-       x1="1613"
-       y1="600.35999"
-       x2="1614.7"
-       y2="602.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32140" />
-    <line
-       x1="1417.49"
-       y1="313.73001"
-       x2="1418.2"
-       y2="314.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32142" />
-    <line
-       x1="1413.5"
-       y1="307.17999"
-       x2="1413.8199"
-       y2="308.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32144" />
-    <line
-       x1="1433.88"
-       y1="293.10999"
-       x2="1433.34"
-       y2="292.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32146" />
-    <line
-       x1="1329.7"
-       y1="438.04999"
-       x2="1326.72"
-       y2="436.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32148" />
-    <line
-       x1="1418.2"
-       y1="314.41"
-       x2="1418.95"
-       y2="315.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32150" />
-    <line
-       x1="1413.24"
-       y1="306.29999"
-       x2="1413.5"
-       y2="307.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32152" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1426.63,586.66 1426.55,586.14 1428.24,584.11 "
-       id="polygon32154" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1421.52,592.83 1426.66,585.63 1426.57,586.12 "
-       id="polygon32156" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1377.07,616.36 1387.56,612.13 1387.15,612.07 "
-       id="polygon32158" />
-    <line
-       x1="1580.42"
-       y1="408.45999"
-       x2="1577.71"
-       y2="408.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32160" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1404.57,514.22 1406.47,527.89 1406.74,528.07 "
-       id="polygon32162" />
-    <line
-       x1="1413.04"
-       y1="305.44"
-       x2="1413.24"
-       y2="306.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32164" />
-    <line
-       x1="1655.73"
-       y1="513.13"
-       x2="1656.79"
-       y2="511.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32166" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1377.96,619.79 1388.45,615.55 1388.73,615.27 "
-       id="polygon32168" />
-    <line
-       x1="1419.73"
-       y1="315.64001"
-       x2="1420.54"
-       y2="316.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32170" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1421.6,593.35 1426.65,586.64 1424.44,589.21 "
-       id="polygon32172" />
-    <line
-       x1="1409.42"
-       y1="322.37"
-       x2="1409.54"
-       y2="323.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32174" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1377.48,616.6 1387.98,612.36 1387.56,612.13 "
-       id="polygon32176" />
-    <line
-       x1="1434.41"
-       y1="293.41"
-       x2="1433.88"
-       y2="293.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32178" />
-    <line
-       x1="1412.89"
-       y1="304.57999"
-       x2="1413.04"
-       y2="305.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.84,514.4 1406.74,528.07 1407.16,528.2 "
-       id="polygon32182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1421.84,593.86 1426.65,586.64 1426.89,587.15 "
-       id="polygon32184" />
-    <line
-       x1="1420.54"
-       y1="316.17001"
-       x2="1421.38"
-       y2="316.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32186" />
-    <polygon
-       style="opacity:1;fill:#0000b1"
-       points="1407.86,514.07 1409.76,527.74 1410.02,527.5 "
-       id="polygon32188" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1378.25,619.52 1388.73,615.27 1388.91,614.86 "
-       id="polygon32190" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1423.8,594.84 1428.31,588.11 1428.86,588.13 "
-       id="polygon32192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.23,594.3 1426.89,587.15 1427.28,587.59 "
-       id="polygon32194" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1377.87,616.98 1388.36,612.74 1387.98,612.36 "
-       id="polygon32196" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1423.26,594.81 1427.77,587.92 1428.31,588.11 "
-       id="polygon32198" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1422.72,594.63 1427.28,587.59 1427.77,587.92 "
-       id="polygon32200" />
-    <line
-       x1="1386.09"
-       y1="453.82001"
-       x2="1382.3199"
-       y2="453.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32202" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.26,514.52 1407.16,528.2 1407.68,528.25 "
-       id="polygon32204" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1378.42,619.1 1388.91,614.86 1388.96,614.34 "
-       id="polygon32206" />
-    <line
-       x1="1421.38"
-       y1="316.64001"
-       x2="1422.23"
-       y2="317.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32208" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1407.45,514.29 1409.35,527.95 1409.76,527.74 "
-       id="polygon32210" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1378.18,617.47 1388.67,613.23 1388.36,612.74 "
-       id="polygon32212" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1378.47,618.58 1388.96,614.34 1388.88,613.78 "
-       id="polygon32214" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1378.39,618.02 1388.88,613.78 1388.67,613.23 "
-       id="polygon32216" />
-    <line
-       x1="1372.75"
-       y1="344.75"
-       x2="1371.53"
-       y2="344.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32218" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.78,514.57 1407.68,528.25 1408.26,528.22 "
-       id="polygon32220" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1406.93,514.45 1408.83,528.12 1409.35,527.95 "
-       id="polygon32222" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.36,514.55 1408.26,528.22 1408.83,528.12 "
-       id="polygon32224" />
-    <line
-       x1="1412.77"
-       y1="302.92001"
-       x2="1412.8"
-       y2="303.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32226" />
-    <line
-       x1="1409.54"
-       y1="323.26001"
-       x2="1409.59"
-       y2="324.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32228" />
-    <line
-       x1="1422.23"
-       y1="317.04999"
-       x2="1423.11"
-       y2="317.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32230" />
-    <line
-       x1="1556.1899"
-       y1="469.82001"
-       x2="1559.96"
-       y2="470.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32232" />
-    <line
-       x1="1611.48"
-       y1="597.94"
-       x2="1613"
-       y2="600.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32234" />
-    <line
-       x1="1656.79"
-       y1="511.67999"
-       x2="1657.98"
-       y2="510.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32236" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1406.74,528.07 1404.57,514.22 1404.84,514.4 "
-       id="polygon32238" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1497.71,605.36 1506.66,604.78 1509.5,604.5 "
-       id="polygon32240" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="1511.88,604.4 1497.54,605.44 1497.4,605.69 "
-       id="polygon32242" />
-    <line
-       x1="1423.11"
-       y1="317.39999"
-       x2="1424"
-       y2="317.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32244" />
-    <line
-       x1="1412.79"
-       y1="302.13"
-       x2="1412.77"
-       y2="302.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32246" />
-    <polygon
-       style="opacity:1;fill:#0000b1"
-       points="1410.02,527.5 1407.86,514.07 1408.12,513.83 "
-       id="polygon32248" />
-    <polygon
-       style="opacity:1;fill:#0037a0"
-       points="1512.15,607.97 1497.81,609 1497.99,609.11 "
-       id="polygon32250" />
-    <line
-       x1="1435.45"
-       y1="294.23001"
-       x2="1434.9399"
-       y2="293.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.16,528.2 1404.84,514.4 1405.26,514.52 "
-       id="polygon32254" />
-    <line
-       x1="1424"
-       y1="317.67999"
-       x2="1424.91"
-       y2="317.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32256" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1409.76,527.74 1407.45,514.29 1407.86,514.07 "
-       id="polygon32258" />
-    <line
-       x1="1409.59"
-       y1="324.17001"
-       x2="1409.5699"
-       y2="325.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32260" />
-    <line
-       x1="1583.15"
-       y1="408.26001"
-       x2="1580.42"
-       y2="408.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32262" />
-    <line
-       x1="1412.86"
-       y1="301.38"
-       x2="1412.79"
-       y2="302.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32264" />
-    <polygon
-       style="opacity:1;fill:#002f89"
-       points="1511.98,607.7 1497.63,608.73 1497.81,609 "
-       id="polygon32266" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1407.68,528.25 1405.26,514.52 1405.78,514.57 "
-       id="polygon32268" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.66,605.06 1497.31,606.1 1497.27,606.62 "
-       id="polygon32270" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1409.35,527.95 1406.93,514.45 1407.45,514.29 "
-       id="polygon32272" />
-    <line
-       x1="1657.98"
-       y1="510.29001"
-       x2="1659.3101"
-       y2="508.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32274" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.26,528.22 1405.78,514.57 1406.36,514.55 "
-       id="polygon32276" />
-    <line
-       x1="1424.91"
-       y1="317.89001"
-       x2="1425.8101"
-       y2="318.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32278" />
-    <line
-       x1="1371.53"
-       y1="344.75"
-       x2="1370.39"
-       y2="344.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1408.83,528.12 1406.36,514.55 1406.93,514.45 "
-       id="polygon32282" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.82,607.27 1497.48,608.3 1497.63,608.73 "
-       id="polygon32284" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.61,605.58 1497.29,607.2 1500.85,606.36 "
-       id="polygon32286" />
-    <line
-       x1="1389.75"
-       y1="453.89999"
-       x2="1386.09"
-       y2="453.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32288" />
-    <line
-       x1="1425.8101"
-       y1="318.03"
-       x2="1426.72"
-       y2="318.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32290" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="1406.09,499.66 1408.1,513.36 1407.83,513.18 "
-       id="polygon32292" />
-    <line
-       x1="1409.5699"
-       y1="325.07999"
-       x2="1409.48"
-       y2="325.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32294" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1387.56,612.13 1377.48,616.6 1377.07,616.36 "
-       id="polygon32296" />
-    <line
-       x1="1610.14"
-       y1="595.32001"
-       x2="1611.48"
-       y2="597.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32298" />
-    <polygon
-       style="opacity:1;fill:#0000bd"
-       points="1388.73,615.27 1377.96,619.79 1378.25,619.52 "
-       id="polygon32300" />
-    <line
-       x1="1413.16"
-       y1="299.98999"
-       x2="1412.98"
-       y2="300.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32302" />
-    <line
-       x1="1436.42"
-       y1="295.29999"
-       x2="1435.95"
-       y2="294.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32304" />
-    <line
-       x1="1426.72"
-       y1="318.10001"
-       x2="1427.63"
-       y2="318.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32306" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1387.98,612.36 1377.87,616.98 1377.48,616.6 "
-       id="polygon32308" />
-    <line
-       x1="1659.3101"
-       y1="508.95999"
-       x2="1660.77"
-       y2="507.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32310" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1388.91,614.86 1378.25,619.52 1378.42,619.1 "
-       id="polygon32312" />
-    <polygon
-       style="opacity:1;fill:#002e87"
-       points="1497.4,605.69 1511.75,604.66 1509.86,604.58 "
-       id="polygon32314" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1388.36,612.74 1378.18,617.47 1377.87,616.98 "
-       id="polygon32316" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1388.96,614.34 1378.42,619.1 1378.47,618.58 "
-       id="polygon32318" />
-    <line
-       x1="1323.9399"
-       y1="435.16"
-       x2="1321.36"
-       y2="433.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32320" />
-    <line
-       x1="1559.96"
-       y1="470.01999"
-       x2="1563.66"
-       y2="470.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32322" />
-    <polygon
-       style="opacity:1;fill:#000094"
-       points="1388.67,613.23 1378.39,618.02 1378.18,617.47 "
-       id="polygon32324" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1388.88,613.78 1378.47,618.58 1378.39,618.02 "
-       id="polygon32326" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1429.77,587.69 1429.16,587.68 1429.48,587.45 "
-       id="polygon32328" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1404.48,514.01 1402.54,500.07 1402.46,500.31 "
-       id="polygon32330" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1402.55,500.53 1404.57,514.23 1404.84,514.41 "
-       id="polygon32332" />
-    <line
-       x1="1413.39"
-       y1="299.35999"
-       x2="1413.16"
-       y2="299.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32334" />
-    <polygon
-       style="opacity:1;fill:#002f89"
-       points="1497.81,609 1511.98,607.7 1512.15,607.97 "
-       id="polygon32336" />
-    <line
-       x1="1409.48"
-       y1="325.98999"
-       x2="1409.3199"
-       y2="326.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32338" />
-    <line
-       x1="1370.39"
-       y1="344.78"
-       x2="1369.34"
-       y2="344.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32340" />
-    <polygon
-       style="opacity:1;fill:#002978"
-       points="1497.31,606.1 1511.75,604.66 1509.13,605.24 "
-       id="polygon32342" />
-    <line
-       x1="1428.52"
-       y1="318.01999"
-       x2="1429.4"
-       y2="317.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32344" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.63,608.73 1511.82,607.27 1511.98,607.7 "
-       id="polygon32346" />
-    <line
-       x1="1585.89"
-       y1="408.32001"
-       x2="1583.15"
-       y2="408.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32348" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.27,606.62 1511.61,605.58 1509.28,605.32 "
-       id="polygon32350" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.83,500.71 1404.84,514.41 1405.26,514.52 "
-       id="polygon32352" />
-    <line
-       x1="1660.77"
-       y1="507.70001"
-       x2="1662.36"
-       y2="506.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32354" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1405.84,500.36 1407.86,514.06 1408.11,513.82 "
-       id="polygon32356" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.48,608.3 1511.7,606.74 1511.82,607.27 "
-       id="polygon32358" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.64,606.75 1511.54,606.17 1513.99,606.35 "
-       id="polygon32360" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.29,607.2 1511.61,605.58 1511.63,606.16 "
-       id="polygon32362" />
-    <line
-       x1="1413.66"
-       y1="298.79001"
-       x2="1413.39"
-       y2="299.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32364" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.8,607.27 1511.64,606.75 1514.77,606.78 "
-       id="polygon32366" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1497.36,607.77 1511.63,606.16 1511.7,606.74 "
-       id="polygon32368" />
-    <line
-       x1="1437.29"
-       y1="296.60001"
-       x2="1436.87"
-       y2="295.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32370" />
-    <line
-       x1="1429.4"
-       y1="317.87"
-       x2="1430.27"
-       y2="317.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32372" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.24,500.82 1405.26,514.52 1405.78,514.57 "
-       id="polygon32374" />
-    <line
-       x1="1409.3199"
-       y1="326.89999"
-       x2="1409.09"
-       y2="327.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32376" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1405.43,500.57 1407.45,514.27 1407.86,514.06 "
-       id="polygon32378" />
-    <line
-       x1="1608.99"
-       y1="592.52002"
-       x2="1610.14"
-       y2="595.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32380" />
-    <line
-       x1="1393.29"
-       y1="453.79999"
-       x2="1389.75"
-       y2="453.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32382" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.77,500.87 1405.78,514.57 1406.36,514.54 "
-       id="polygon32384" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1404.92,500.73 1406.93,514.44 1407.45,514.27 "
-       id="polygon32386" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.34,500.84 1406.36,514.54 1406.93,514.44 "
-       id="polygon32388" />
-    <line
-       x1="1430.27"
-       y1="317.64999"
-       x2="1431.11"
-       y2="317.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1376.74,616.66 1376.64,616.3 1376.28,616.42 "
-       id="polygon32392" />
-    <line
-       x1="1437.67"
-       y1="297.34"
-       x2="1437.29"
-       y2="296.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32394" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1404.84,514.41 1402.55,500.53 1402.83,500.71 "
-       id="polygon32396" />
-    <line
-       x1="1662.36"
-       y1="506.51999"
-       x2="1664.05"
-       y2="505.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32398" />
-    <line
-       x1="1369.34"
-       y1="344.85001"
-       x2="1368.38"
-       y2="344.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32400" />
-    <line
-       x1="1431.11"
-       y1="317.35999"
-       x2="1431.9301"
-       y2="317"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32402" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1408.11,513.82 1405.84,500.36 1406.1,500.12 "
-       id="polygon32404" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.26,514.52 1402.83,500.71 1403.24,500.82 "
-       id="polygon32406" />
-    <line
-       x1="1414.3199"
-       y1="297.79999"
-       x2="1413.97"
-       y2="298.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32408" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1407.86,514.06 1405.43,500.57 1405.84,500.36 "
-       id="polygon32410" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1405.78,514.57 1403.24,500.82 1403.77,500.87 "
-       id="polygon32412" />
-    <line
-       x1="1321.36"
-       y1="433.76999"
-       x2="1319"
-       y2="432.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32414" />
-    <line
-       x1="1438.3199"
-       y1="298.92999"
-       x2="1438.01"
-       y2="298.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32416" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1407.45,514.27 1404.92,500.73 1405.43,500.57 "
-       id="polygon32418" />
-    <line
-       x1="1664.05"
-       y1="505.42999"
-       x2="1665.85"
-       y2="504.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32420" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.36,514.54 1403.77,500.87 1404.34,500.84 "
-       id="polygon32422" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1406.93,514.44 1404.34,500.84 1404.92,500.73 "
-       id="polygon32424" />
-    <line
-       x1="1563.66"
-       y1="470.51999"
-       x2="1567.26"
-       y2="471.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32426" />
-    <line
-       x1="1432.73"
-       y1="316.57001"
-       x2="1433.48"
-       y2="316.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32428" />
-    <line
-       x1="1608.05"
-       y1="589.56"
-       x2="1608.99"
-       y2="592.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32430" />
-    <line
-       x1="1588.62"
-       y1="408.63"
-       x2="1585.89"
-       y2="408.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32432" />
-    <line
-       x1="1408.8"
-       y1="328.69"
-       x2="1408.4301"
-       y2="329.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32434" />
-    <line
-       x1="1438.58"
-       y1="299.79001"
-       x2="1438.3199"
-       y2="298.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32436" />
-    <line
-       x1="1433.48"
-       y1="316.07999"
-       x2="1434.2"
-       y2="315.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32438" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="1403.97,485.92 1406.09,499.65 1405.82,499.48 "
-       id="polygon32440" />
-    <line
-       x1="1665.85"
-       y1="504.44"
-       x2="1667.74"
-       y2="503.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32442" />
-    <line
-       x1="1434.2"
-       y1="315.51999"
-       x2="1434.89"
-       y2="314.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32444" />
-    <line
-       x1="1438.79"
-       y1="300.67999"
-       x2="1438.58"
-       y2="299.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32446" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1426.9,585.24 1432.05,578.08 1431.65,578.37 "
-       id="polygon32448" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1431.39,578.78 1426.64,585.65 1426.55,586.14 "
-       id="polygon32450" />
-    <line
-       x1="1396.6899"
-       y1="453.53"
-       x2="1393.29"
-       y2="453.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32452" />
-    <line
-       x1="1408.4301"
-       y1="329.56"
-       x2="1408"
-       y2="330.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32454" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1431.3,579.27 1426.55,586.14 1428.24,584.11 "
-       id="polygon32456" />
-    <line
-       x1="1438.96"
-       y1="301.60999"
-       x2="1438.79"
-       y2="300.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32458" />
-    <polygon
-       style="opacity:1;fill:#0037a1"
-       points="1526.28,606.17 1512.21,607.96 1512.42,608.06 "
-       id="polygon32460" />
-    <polygon
-       style="opacity:1;fill:#002874"
-       points="1525.69,602.88 1511.53,605.08 1514.12,604.35 "
-       id="polygon32462" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1402.46,500.32 1400.43,486.36 1400.34,486.59 "
-       id="polygon32464" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1400.44,486.81 1402.56,500.54 1402.83,500.71 "
-       id="polygon32466" />
-    <polygon
-       style="opacity:1;fill:#0000b8"
-       points="1434.13,581.12 1429.37,587.98 1429.77,587.69 "
-       id="polygon32468" />
-    <line
-       x1="1435.53"
-       y1="314.23999"
-       x2="1436.12"
-       y2="313.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32470" />
-    <line
-       x1="1439.0699"
-       y1="302.54001"
-       x2="1438.96"
-       y2="301.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32472" />
-    <line
-       x1="1667.74"
-       y1="503.54999"
-       x2="1669.71"
-       y2="502.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32474" />
-    <polygon
-       style="opacity:1;fill:#002f89"
-       points="1526.07,605.9 1511.99,607.69 1512.21,607.96 "
-       id="polygon32476" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1433.63,581.27 1428.87,588.13 1429.37,587.98 "
-       id="polygon32478" />
-    <line
-       x1="1607.3101"
-       y1="586.45001"
-       x2="1608.05"
-       y2="589.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32480" />
-    <line
-       x1="1436.12"
-       y1="313.51999"
-       x2="1436.66"
-       y2="312.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32482" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.6,603.29 1511.53,605.08 1513.57,605.25 "
-       id="polygon32484" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1433.07,581.24 1428.32,588.11 1428.87,588.13 "
-       id="polygon32486" />
-    <line
-       x1="1439.13"
-       y1="303.5"
-       x2="1439.0699"
-       y2="302.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.38,579.8 1431.63,580.3 1428.75,584.12 "
-       id="polygon32490" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="1436.74,573.5 1436.13,573.3 1436.53,573.73 "
-       id="polygon32492" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.17,565.64 1435.87,572.8 1436.13,573.3 "
-       id="polygon32494" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.13,573.3 1431.63,580.31 1432.02,580.75 "
-       id="polygon32496" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.02,580.74 1427.27,587.6 1427.77,587.93 "
-       id="polygon32498" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1432.52,581.06 1427.77,587.93 1428.32,588.11 "
-       id="polygon32500" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.71,486.98 1402.83,500.71 1403.24,500.82 "
-       id="polygon32502" />
-    <line
-       x1="1408"
-       y1="330.41"
-       x2="1407.51"
-       y2="331.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32504" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.87,605.48 1511.8,607.27 1511.99,607.69 "
-       id="polygon32506" />
-    <line
-       x1="1415.59"
-       y1="296.79999"
-       x2="1415.14"
-       y2="297.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32508" />
-    <line
-       x1="1436.66"
-       y1="312.73999"
-       x2="1437.16"
-       y2="311.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32510" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1403.72,486.61 1405.84,500.34 1406.1,500.11 "
-       id="polygon32512" />
-    <line
-       x1="1439.14"
-       y1="304.47"
-       x2="1439.13"
-       y2="303.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32514" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.71,604.95 1511.64,606.75 1514.77,606.78 "
-       id="polygon32516" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.61,604.38 1511.54,606.17 1513.99,606.35 "
-       id="polygon32518" />
-    <line
-       x1="1437.16"
-       y1="311.92999"
-       x2="1437.6"
-       y2="311.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32520" />
-    <line
-       x1="1439.09"
-       y1="305.45001"
-       x2="1439.14"
-       y2="304.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32522" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.13,487.09 1403.24,500.82 1403.77,500.86 "
-       id="polygon32524" />
-    <line
-       x1="1437.6"
-       y1="311.07999"
-       x2="1437.99"
-       y2="310.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32526" />
-    <line
-       x1="1367.51"
-       y1="345.09"
-       x2="1366.73"
-       y2="345.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32528" />
-    <line
-       x1="1669.71"
-       y1="502.79001"
-       x2="1671.75"
-       y2="502.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32530" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1403.32,486.82 1405.43,500.55 1405.84,500.34 "
-       id="polygon32532" />
-    <line
-       x1="1591.3199"
-       y1="409.19"
-       x2="1588.62"
-       y2="408.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32534" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1366.9,620.98 1377.47,616.6 1377.05,616.37 "
-       id="polygon32536" />
-    <line
-       x1="1438.8199"
-       y1="307.39001"
-       x2="1438.98"
-       y2="306.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32538" />
-    <line
-       x1="1438.3199"
-       y1="309.28"
-       x2="1438.6"
-       y2="308.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32540" />
-    <line
-       x1="1438.6"
-       y1="308.34"
-       x2="1438.8199"
-       y2="307.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32542" />
-    <line
-       x1="1319"
-       y1="432.42999"
-       x2="1316.87"
-       y2="431.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32544" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.65,487.13 1403.77,500.86 1404.34,500.83 "
-       id="polygon32546" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1402.8,486.99 1404.91,500.72 1405.43,500.55 "
-       id="polygon32548" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.22,487.1 1404.34,500.83 1404.91,500.72 "
-       id="polygon32550" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1356.77,628.7 1367.41,624.18 1367.68,623.9 "
-       id="polygon32552" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1367.68,623.9 1378.25,619.51 1378.42,619.1 "
-       id="polygon32554" />
-    <polygon
-       style="opacity:1;fill:#0000c9"
-       points="1406.18,499.87 1403.98,486.37 1404.07,486.14 "
-       id="polygon32556" />
-    <line
-       x1="1407.51"
-       y1="331.23001"
-       x2="1406.95"
-       y2="332.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32558" />
-    <line
-       x1="1567.26"
-       y1="471.32999"
-       x2="1570.75"
-       y2="472.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32560" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1367.29,621.37 1377.86,616.98 1377.47,616.6 "
-       id="polygon32562" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1402.83,500.71 1400.44,486.81 1400.71,486.98 "
-       id="polygon32564" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1367.85,623.48 1378.42,619.1 1378.46,618.59 "
-       id="polygon32566" />
-    <line
-       x1="1671.75"
-       y1="502.13"
-       x2="1673.86"
-       y2="501.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32568" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1367.6,621.86 1378.16,617.47 1377.86,616.98 "
-       id="polygon32570" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1367.89,622.97 1378.46,618.59 1378.38,618.02 "
-       id="polygon32572" />
-    <line
-       x1="1708.65"
-       y1="542.54999"
-       x2="1707.65"
-       y2="544.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32574" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1367.8,622.41 1378.38,618.02 1378.16,617.47 "
-       id="polygon32576" />
-    <line
-       x1="1709.52"
-       y1="540.53998"
-       x2="1708.65"
-       y2="542.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32578" />
-    <line
-       x1="1606.8"
-       y1="583.21002"
-       x2="1607.3101"
-       y2="586.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32580" />
-    <line
-       x1="1707.65"
-       y1="544.48999"
-       x2="1706.52"
-       y2="546.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32582" />
-    <polygon
-       style="opacity:1;fill:#002d84"
-       points="1511.62,604.67 1525.84,602.62 1525.69,602.88 "
-       id="polygon32584" />
-    <polygon
-       style="opacity:1;fill:#0037a1"
-       points="1512.42,608.06 1526.28,606.17 1526.49,606.27 "
-       id="polygon32586" />
-    <polygon
-       style="opacity:1;fill:#0000b0"
-       points="1406.1,500.11 1403.72,486.61 1403.98,486.37 "
-       id="polygon32588" />
-    <line
-       x1="1710.24"
-       y1="538.47998"
-       x2="1709.52"
-       y2="540.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32590" />
-    <line
-       x1="1706.52"
-       y1="546.37"
-       x2="1705.28"
-       y2="548.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32592" />
-    <line
-       x1="1710.8199"
-       y1="536.38"
-       x2="1710.24"
-       y2="538.47998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32594" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.24,500.82 1400.71,486.98 1401.13,487.09 "
-       id="polygon32596" />
-    <line
-       x1="1705.28"
-       y1="548.15997"
-       x2="1703.92"
-       y2="549.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32598" />
-    <line
-       x1="1711.24"
-       y1="534.25"
-       x2="1710.8199"
-       y2="536.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32600" />
-    <line
-       x1="1399.9399"
-       y1="453.07001"
-       x2="1396.6899"
-       y2="453.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32602" />
-    <line
-       x1="1703.92"
-       y1="549.85999"
-       x2="1702.46"
-       y2="551.46997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32604" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1405.84,500.34 1403.32,486.82 1403.72,486.61 "
-       id="polygon32606" />
-    <polygon
-       style="opacity:1;fill:#002874"
-       points="1511.53,605.08 1525.69,602.88 1525.6,603.29 "
-       id="polygon32608" />
-    <line
-       x1="1711.51"
-       y1="532.10999"
-       x2="1711.24"
-       y2="534.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32610" />
-    <polygon
-       style="opacity:1;fill:#002f89"
-       points="1512.21,607.96 1526.07,605.9 1526.28,606.17 "
-       id="polygon32612" />
-    <line
-       x1="1416.5699"
-       y1="296.48001"
-       x2="1416.0699"
-       y2="296.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32614" />
-    <line
-       x1="1673.86"
-       y1="501.60999"
-       x2="1676"
-       y2="501.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1403.77,500.86 1401.13,487.09 1401.65,487.13 "
-       id="polygon32618" />
-    <line
-       x1="1702.46"
-       y1="551.46997"
-       x2="1700.9"
-       y2="552.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32620" />
-    <line
-       x1="1711.62"
-       y1="529.96002"
-       x2="1711.51"
-       y2="532.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32622" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1405.43,500.55 1402.8,486.99 1403.32,486.82 "
-       id="polygon32624" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.34,500.83 1401.65,487.13 1402.22,487.1 "
-       id="polygon32626" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1376,616.7 1365.71,620.8 1365.43,621.08 "
-       id="polygon32628" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.5,605.59 1525.6,603.29 1525.57,603.8 "
-       id="polygon32630" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1404.91,500.72 1402.22,487.1 1402.8,486.99 "
-       id="polygon32632" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.99,607.69 1525.87,605.48 1526.07,605.9 "
-       id="polygon32634" />
-    <line
-       x1="1711.5699"
-       y1="527.81"
-       x2="1711.62"
-       y2="529.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32636" />
-    <line
-       x1="1700.9"
-       y1="552.96002"
-       x2="1699.27"
-       y2="554.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32638" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.54,606.17 1525.57,603.8 1525.61,604.38 "
-       id="polygon32640" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.8,607.27 1525.71,604.95 1525.87,605.48 "
-       id="polygon32642" />
-    <line
-       x1="1676"
-       y1="501.22"
-       x2="1678.1899"
-       y2="500.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32644" />
-    <line
-       x1="1711.36"
-       y1="525.67999"
-       x2="1711.5699"
-       y2="527.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32646" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1511.64,606.75 1525.61,604.38 1525.71,604.95 "
-       id="polygon32648" />
-    <line
-       x1="1406.34"
-       y1="332.79001"
-       x2="1405.66"
-       y2="333.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32650" />
-    <line
-       x1="1417.08"
-       y1="296.42999"
-       x2="1416.5699"
-       y2="296.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32652" />
-    <line
-       x1="1699.27"
-       y1="554.34998"
-       x2="1697.5601"
-       y2="555.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32654" />
-    <line
-       x1="1710.99"
-       y1="523.57001"
-       x2="1711.36"
-       y2="525.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32656" />
-    <line
-       x1="1606.52"
-       y1="579.85999"
-       x2="1606.8"
-       y2="583.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32658" />
-    <polygon
-       style="opacity:1;fill:#0038a3"
-       points="1525.96,602.56 1527.83,602.25 1526.2,602.66 "
-       id="polygon32660" />
-    <line
-       x1="1593.97"
-       y1="410"
-       x2="1591.3199"
-       y2="409.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32662" />
-    <line
-       x1="1678.1899"
-       y1="500.97"
-       x2="1680.39"
-       y2="500.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32664" />
-    <line
-       x1="1710.46"
-       y1="521.5"
-       x2="1710.99"
-       y2="523.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32666" />
-    <polygon
-       style="opacity:1;fill:#00008c"
-       points="1376.64,616.3 1366.48,620.75 1366.07,620.69 "
-       id="polygon32668" />
-    <line
-       x1="1697.5601"
-       y1="555.60999"
-       x2="1695.8"
-       y2="556.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32670" />
-    <line
-       x1="1709.78"
-       y1="519.47998"
-       x2="1710.46"
-       y2="521.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32672" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1426.63,586.66 1431.3,579.27 1431.38,579.8 "
-       id="polygon32674" />
-    <line
-       x1="1405.66"
-       y1="333.51999"
-       x2="1404.9301"
-       y2="334.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32676" />
-    <line
-       x1="1680.39"
-       y1="500.85999"
-       x2="1682.61"
-       y2="500.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32678" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1377.05,616.37 1366.9,620.98 1366.48,620.75 "
-       id="polygon32680" />
-    <line
-       x1="1708.9399"
-       y1="517.52002"
-       x2="1709.78"
-       y2="519.47998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32682" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1378.25,619.51 1367.4,624.18 1367.68,623.9 "
-       id="polygon32684" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1398.23,473.06 1400.44,486.82 1400.71,486.98 "
-       id="polygon32686" />
-    <line
-       x1="1695.8"
-       y1="556.75"
-       x2="1693.99"
-       y2="557.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32688" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1426.88,587.17 1431.63,580.3 1428.75,584.12 "
-       id="polygon32690" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1429.37,587.98 1433.63,581.27 1434.13,581.12 "
-       id="polygon32692" />
-    <line
-       x1="1316.87"
-       y1="431.17001"
-       x2="1314.98"
-       y2="429.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32694" />
-    <line
-       x1="1707.95"
-       y1="515.64001"
-       x2="1708.9399"
-       y2="517.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32696" />
-    <line
-       x1="1682.61"
-       y1="500.89001"
-       x2="1684.83"
-       y2="501.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32698" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1377.47,616.6 1367.29,621.37 1366.9,620.98 "
-       id="polygon32700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.27,587.6 1431.63,580.3 1432.02,580.74 "
-       id="polygon32702" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1428.87,588.13 1433.07,581.24 1433.63,581.27 "
-       id="polygon32704" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1378.42,619.1 1367.68,623.9 1367.85,623.48 "
-       id="polygon32706" />
-    <line
-       x1="1570.75"
-       y1="472.42999"
-       x2="1574.09"
-       y2="473.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32708" />
-    <line
-       x1="1706.8101"
-       y1="513.83002"
-       x2="1707.95"
-       y2="515.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32710" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1427.77,587.93 1432.02,580.74 1432.52,581.06 "
-       id="polygon32712" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1428.32,588.11 1432.52,581.06 1433.07,581.24 "
-       id="polygon32714" />
-    <line
-       x1="1606.47"
-       y1="576.42999"
-       x2="1606.52"
-       y2="579.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32716" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.5,473.23 1400.71,486.98 1401.13,487.09 "
-       id="polygon32718" />
-    <line
-       x1="1366.04"
-       y1="345.5"
-       x2="1365.45"
-       y2="345.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32720" />
-    <line
-       x1="1684.83"
-       y1="501.06"
-       x2="1687.03"
-       y2="501.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32722" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1377.86,616.98 1367.6,621.86 1367.29,621.37 "
-       id="polygon32724" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1378.46,618.59 1367.85,623.48 1367.89,622.97 "
-       id="polygon32726" />
-    <line
-       x1="1404.9301"
-       y1="334.20001"
-       x2="1404.14"
-       y2="334.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32728" />
-    <line
-       x1="1705.54"
-       y1="512.10999"
-       x2="1706.8101"
-       y2="513.83002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32730" />
-    <line
-       x1="1693.99"
-       y1="557.76001"
-       x2="1692.14"
-       y2="558.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32732" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1401.51,472.84 1403.72,486.6 1403.98,486.36 "
-       id="polygon32734" />
-    <polygon
-       style="opacity:1;fill:#000093"
-       points="1378.16,617.47 1367.8,622.41 1367.6,621.86 "
-       id="polygon32736" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1378.38,618.02 1367.89,622.97 1367.8,622.41 "
-       id="polygon32738" />
-    <line
-       x1="1687.03"
-       y1="501.38"
-       x2="1689.2"
-       y2="501.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32740" />
-    <line
-       x1="1704.14"
-       y1="510.48001"
-       x2="1705.54"
-       y2="512.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32742" />
-    <line
-       x1="1418.15"
-       y1="296.53"
-       x2="1417.61"
-       y2="296.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.91,473.33 1401.13,487.09 1401.65,487.13 "
-       id="polygon32746" />
-    <line
-       x1="1403.01"
-       y1="452.41"
-       x2="1399.9399"
-       y2="453.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32748" />
-    <line
-       x1="1702.61"
-       y1="508.95999"
-       x2="1704.14"
-       y2="510.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32750" />
-    <line
-       x1="1689.2"
-       y1="501.84"
-       x2="1691.33"
-       y2="502.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32752" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1401.1,473.05 1403.32,486.81 1403.72,486.6 "
-       id="polygon32754" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1526.08,605.89 1527.89,605.5 1525.85,605.47 "
-       id="polygon32756" />
-    <line
-       x1="1700.96"
-       y1="507.56"
-       x2="1702.61"
-       y2="508.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32758" />
-    <line
-       x1="1691.33"
-       y1="502.45001"
-       x2="1693.41"
-       y2="503.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32760" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.43,473.37 1401.65,487.13 1402.22,487.09 "
-       id="polygon32762" />
-    <line
-       x1="1699.21"
-       y1="506.28"
-       x2="1700.96"
-       y2="507.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32764" />
-    <line
-       x1="1693.41"
-       y1="503.20001"
-       x2="1695.42"
-       y2="504.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32766" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1400.59,473.22 1402.8,486.98 1403.32,486.81 "
-       id="polygon32768" />
-    <line
-       x1="1697.36"
-       y1="505.12"
-       x2="1699.21"
-       y2="506.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32770" />
-    <line
-       x1="1692.14"
-       y1="558.63"
-       x2="1690.28"
-       y2="559.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32772" />
-    <line
-       x1="1695.42"
-       y1="504.09"
-       x2="1697.36"
-       y2="505.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32774" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.01,473.33 1402.22,487.09 1402.8,486.98 "
-       id="polygon32776" />
-    <polygon
-       style="opacity:1;fill:#0000c9"
-       points="1404.07,486.13 1401.77,472.6 1401.86,472.37 "
-       id="polygon32778" />
-    <polygon
-       style="opacity:1;fill:#002670"
-       points="1525.66,604.96 1527.49,604.55 1525.54,604.39 "
-       id="polygon32780" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1400.71,486.98 1398.23,473.06 1398.5,473.23 "
-       id="polygon32782" />
-    <line
-       x1="1606.66"
-       y1="572.94"
-       x2="1606.47"
-       y2="576.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32784" />
-    <line
-       x1="1596.5601"
-       y1="411.04999"
-       x2="1593.97"
-       y2="410"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32786" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1403.98,486.36 1401.51,472.84 1401.77,472.6 "
-       id="polygon32788" />
-    <line
-       x1="1690.28"
-       y1="559.35999"
-       x2="1688.4"
-       y2="559.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32790" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.13,487.09 1398.5,473.23 1398.91,473.33 "
-       id="polygon32792" />
-    <line
-       x1="1400.39"
-       y1="314.5"
-       x2="1400.9301"
-       y2="315.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32794" />
-    <line
-       x1="1400.9301"
-       y1="315.32999"
-       x2="1401.51"
-       y2="316.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32796" />
-    <line
-       x1="1403.3101"
-       y1="335.42999"
-       x2="1402.4301"
-       y2="335.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32798" />
-    <polygon
-       style="opacity:1;fill:#0024d6"
-       points="1528.75,605.62 1540.62,603.72 1528.61,605.84 "
-       id="polygon32800" />
-    <line
-       x1="1401.51"
-       y1="316.13"
-       x2="1402.13"
-       y2="316.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32802" />
-    <line
-       x1="1399.49"
-       y1="312.79999"
-       x2="1399.92"
-       y2="313.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32804" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1403.72,486.6 1401.1,473.05 1401.51,472.84 "
-       id="polygon32806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1401.65,487.13 1398.91,473.33 1399.43,473.37 "
-       id="polygon32808" />
-    <line
-       x1="1365.45"
-       y1="345.78"
-       x2="1364.95"
-       y2="346.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32810" />
-    <line
-       x1="1402.8"
-       y1="317.62"
-       x2="1403.51"
-       y2="318.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32812" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1403.32,486.81 1400.59,473.22 1401.1,473.05 "
-       id="polygon32814" />
-    <line
-       x1="1398.8"
-       y1="311.04001"
-       x2="1399.12"
-       y2="311.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32816" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.22,487.09 1399.43,473.37 1400.01,473.33 "
-       id="polygon32818" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1402.8,486.98 1400.01,473.33 1400.59,473.22 "
-       id="polygon32820" />
-    <line
-       x1="1403.51"
-       y1="318.29999"
-       x2="1404.26"
-       y2="318.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32822" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1527.45,602.54 1539.6,600.2 1527.59,602.32 "
-       id="polygon32824" />
-    <line
-       x1="1398.54"
-       y1="310.17001"
-       x2="1398.8"
-       y2="311.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32826" />
-    <line
-       x1="1607.09"
-       y1="569.40997"
-       x2="1606.66"
-       y2="572.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32828" />
-    <line
-       x1="1404.26"
-       y1="318.94"
-       x2="1405.04"
-       y2="319.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32830" />
-    <line
-       x1="1398.33"
-       y1="309.29999"
-       x2="1398.54"
-       y2="310.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32832" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.34,600.86 1539.44,600.45 1535.73,601.49 "
-       id="polygon32834" />
-    <polygon
-       style="opacity:1;fill:#001ca3"
-       points="1539.76,600.13 1553.7,597.29 1553.45,597.19 "
-       id="polygon32836" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="1553.23,597.28 1539.54,600.22 1539.37,600.48 "
-       id="polygon32838" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.35,602.93 1539.44,600.45 1527.43,602.57 "
-       id="polygon32840" />
-    <line
-       x1="1405.04"
-       y1="319.53"
-       x2="1405.86"
-       y2="320.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32842" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.44,600.45 1527.34,602.98 1527.35,602.93 "
-       id="polygon32844" />
-    <line
-       x1="1314.98"
-       y1="429.98999"
-       x2="1313.34"
-       y2="428.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32846" />
-    <line
-       x1="1574.09"
-       y1="473.82001"
-       x2="1577.27"
-       y2="475.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32848" />
-    <line
-       x1="1419.77"
-       y1="297.23999"
-       x2="1419.23"
-       y2="296.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32850" />
-    <line
-       x1="1398.1801"
-       y1="308.44"
-       x2="1398.33"
-       y2="309.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32852" />
-    <line
-       x1="1686.52"
-       y1="560.39001"
-       x2="1684.66"
-       y2="560.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32854" />
-    <line
-       x1="1401.51"
-       y1="336.45999"
-       x2="1400.55"
-       y2="336.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32856" />
-    <polygon
-       style="opacity:1;fill:#001789"
-       points="1528.13,605.79 1539.93,603.44 1527.92,605.56 "
-       id="polygon32858" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.33,601.37 1539.34,600.86 1535.83,601.99 "
-       id="polygon32860" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.06,597.54 1539.37,600.48 1539.27,600.88 "
-       id="polygon32862" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.32,603.42 1539.34,600.86 1527.34,602.98 "
-       id="polygon32864" />
-    <line
-       x1="1607.77"
-       y1="565.85999"
-       x2="1607.09"
-       y2="569.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32866" />
-    <line
-       x1="1405.89"
-       y1="451.57001"
-       x2="1403.01"
-       y2="452.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32868" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.89,605.5 1539.7,603.03 1527.69,605.15 "
-       id="polygon32870" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.39,601.94 1539.33,601.37 1535.84,602.56 "
-       id="polygon32872" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1552.93,597.95 1561.27,595.74 1553.02,597.55 "
-       id="polygon32874" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1552.97,597.94 1539.27,600.88 1539.26,601.38 "
-       id="polygon32876" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.37,603.98 1539.33,601.37 1527.32,603.49 "
-       id="polygon32878" />
-    <line
-       x1="1406.6899"
-       y1="320.53"
-       x2="1407.55"
-       y2="320.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32880" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.51,602.51 1527.69,605.15 1527.67,605.08 "
-       id="polygon32882" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.67,605.08 1539.51,602.51 1527.5,604.63 "
-       id="polygon32884" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1395.92,459.29 1398.23,473.07 1398.5,473.23 "
-       id="polygon32886" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.49,604.55 1539.39,601.94 1527.38,604.06 "
-       id="polygon32888" />
-    <line
-       x1="1599.0699"
-       y1="412.35001"
-       x2="1596.5601"
-       y2="411.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32890" />
-    <polygon
-       style="opacity:1;fill:#0000c8"
-       points="1399.46,458.81 1401.77,472.59 1401.86,472.36 "
-       id="polygon32892" />
-    <line
-       x1="1420.29"
-       y1="297.60999"
-       x2="1419.77"
-       y2="297.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32894" />
-    <line
-       x1="1400.55"
-       y1="336.89001"
-       x2="1399.55"
-       y2="337.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32896" />
-    <line
-       x1="1398.05"
-       y1="306.78"
-       x2="1398.09"
-       y2="307.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32898" />
-    <line
-       x1="1684.66"
-       y1="560.69"
-       x2="1682.84"
-       y2="560.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32900" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.19,459.45 1398.5,473.23 1398.91,473.34 "
-       id="polygon32902" />
-    <line
-       x1="1608.6801"
-       y1="562.31"
-       x2="1607.77"
-       y2="565.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32904" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1399.2,459.04 1401.51,472.83 1401.77,472.59 "
-       id="polygon32906" />
-    <line
-       x1="1408.4301"
-       y1="321.29001"
-       x2="1409.3199"
-       y2="321.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32908" />
-    <line
-       x1="1398.0699"
-       y1="305.98001"
-       x2="1398.05"
-       y2="306.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32910" />
-    <line
-       x1="1399.55"
-       y1="337.26001"
-       x2="1398.52"
-       y2="337.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32912" />
-    <polygon
-       style="opacity:1;fill:#001681"
-       points="1539.44,600.45 1527.43,602.57 1539.6,600.2 "
-       id="polygon32914" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.6,459.55 1398.91,473.34 1399.43,473.37 "
-       id="polygon32916" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1398.79,459.26 1401.1,473.04 1401.51,472.83 "
-       id="polygon32918" />
-    <line
-       x1="1409.3199"
-       y1="321.57001"
-       x2="1410.23"
-       y2="321.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32920" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1397.13,459.59 1399.43,473.37 1400.01,473.32 "
-       id="polygon32922" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1398.27,459.43 1400.59,473.21 1401.1,473.04 "
-       id="polygon32924" />
-    <line
-       x1="1398.14"
-       y1="305.23001"
-       x2="1398.0699"
-       y2="305.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32926" />
-    <line
-       x1="1609.84"
-       y1="558.79999"
-       x2="1608.6801"
-       y2="562.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32928" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1397.7,459.54 1400.01,473.32 1400.59,473.21 "
-       id="polygon32930" />
-    <polygon
-       style="opacity:1;fill:#0000c8"
-       points="1401.86,472.36 1399.46,458.81 1399.55,458.58 "
-       id="polygon32932" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.34,602.98 1539.44,600.45 1535.73,601.49 "
-       id="polygon32934" />
-    <line
-       x1="1682.84"
-       y1="560.84998"
-       x2="1681.04"
-       y2="560.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32936" />
-    <polygon
-       style="opacity:1;fill:#001789"
-       points="1540.17,603.71 1528.16,605.83 1539.93,603.44 "
-       id="polygon32938" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1398.5,473.23 1395.92,459.29 1396.19,459.45 "
-       id="polygon32940" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1355.83,625.27 1366.47,620.75 1366.06,620.69 "
-       id="polygon32942" />
-    <line
-       x1="1398.52"
-       y1="337.57001"
-       x2="1397.47"
-       y2="337.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32944" />
-    <line
-       x1="1410.23"
-       y1="321.79001"
-       x2="1411.14"
-       y2="321.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32946" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.32,603.49 1539.34,600.86 1535.83,601.99 "
-       id="polygon32948" />
-    <line
-       x1="1421.3"
-       y1="298.56"
-       x2="1420.8"
-       y2="298.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32950" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.93,603.44 1527.92,605.56 1539.7,603.03 "
-       id="polygon32952" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1401.77,472.59 1399.2,459.04 1399.46,458.81 "
-       id="polygon32954" />
-    <line
-       x1="1398.27"
-       y1="304.51001"
-       x2="1398.14"
-       y2="305.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32956" />
-    <line
-       x1="1611.23"
-       y1="555.33002"
-       x2="1609.84"
-       y2="558.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32958" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1356.24,625.51 1366.89,620.99 1366.47,620.75 "
-       id="polygon32960" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1527.38,604.06 1539.33,601.37 1535.84,602.56 "
-       id="polygon32962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.91,473.34 1396.19,459.45 1396.6,459.55 "
-       id="polygon32964" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.7,603.03 1527.69,605.15 1539.51,602.51 "
-       id="polygon32966" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.69,603.02 1539.48,602.51 1543.9,601.94 "
-       id="polygon32968" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.51,602.51 1527.5,604.63 1539.39,601.94 "
-       id="polygon32970" />
-    <line
-       x1="1411.14"
-       y1="321.92999"
-       x2="1412.04"
-       y2="322"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32972" />
-    <polygon
-       style="opacity:1;fill:#0000e1"
-       points="1399.1,458.46 1399.55,458.58 1399.45,458.37 "
-       id="polygon32974" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1357.04,628.42 1367.68,623.9 1367.85,623.48 "
-       id="polygon32976" />
-    <line
-       x1="1364.53"
-       y1="346.5"
-       x2="1364.21"
-       y2="346.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32978" />
-    <line
-       x1="1397.47"
-       y1="337.82001"
-       x2="1396.39"
-       y2="338"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32980" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1401.51,472.83 1398.79,459.26 1399.2,459.04 "
-       id="polygon32982" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1356.63,625.89 1367.27,621.37 1366.89,620.99 "
-       id="polygon32984" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1399.43,473.37 1396.6,459.55 1397.13,459.59 "
-       id="polygon32986" />
-    <line
-       x1="1601.48"
-       y1="413.87"
-       x2="1599.0699"
-       y2="412.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32988" />
-    <line
-       x1="1681.04"
-       y1="560.85999"
-       x2="1679.3"
-       y2="560.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32990" />
-    <line
-       x1="1612.86"
-       y1="551.92999"
-       x2="1611.23"
-       y2="555.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32992" />
-    <line
-       x1="1577.27"
-       y1="475.48999"
-       x2="1580.27"
-       y2="477.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32994" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1357.21,628.01 1367.85,623.48 1367.89,622.97 "
-       id="polygon32996" />
-    <line
-       x1="1398.45"
-       y1="303.82999"
-       x2="1398.27"
-       y2="304.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line32998" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1401.1,473.04 1398.27,459.43 1398.79,459.26 "
-       id="polygon33000" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1356.94,626.38 1367.58,621.86 1367.27,621.37 "
-       id="polygon33002" />
-    <line
-       x1="1636.48"
-       y1="527.96997"
-       x2="1633.2"
-       y2="529.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33004" />
-    <line
-       x1="1412.04"
-       y1="322"
-       x2="1412.95"
-       y2="321.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33006" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.01,473.32 1397.13,459.59 1397.7,459.54 "
-       id="polygon33008" />
-    <line
-       x1="1638.24"
-       y1="527.34998"
-       x2="1636.48"
-       y2="527.96997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33010" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1357.25,627.5 1367.89,622.97 1367.8,622.41 "
-       id="polygon33012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1400.59,473.21 1397.7,459.54 1398.27,459.43 "
-       id="polygon33014" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1357.15,626.93 1367.8,622.41 1367.58,621.86 "
-       id="polygon33016" />
-    <line
-       x1="1313.34"
-       y1="428.91"
-       x2="1311.95"
-       y2="427.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33018" />
-    <line
-       x1="1396.39"
-       y1="338"
-       x2="1395.3"
-       y2="338.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33020" />
-    <line
-       x1="1614.71"
-       y1="548.63"
-       x2="1612.86"
-       y2="551.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33022" />
-    <line
-       x1="1633.2"
-       y1="529.84003"
-       x2="1630.05"
-       y2="531.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33024" />
-    <line
-       x1="1408.5601"
-       y1="450.54001"
-       x2="1405.89"
-       y2="451.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33026" />
-    <line
-       x1="1640.05"
-       y1="526.81"
-       x2="1638.24"
-       y2="527.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33028" />
-    <line
-       x1="1412.95"
-       y1="321.98999"
-       x2="1413.85"
-       y2="321.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33030" />
-    <polygon
-       style="opacity:1;fill:#0000e0"
-       points="1397.04,444.56 1399.45,458.36 1399.18,458.2 "
-       id="polygon33032" />
-    <line
-       x1="1616.79"
-       y1="545.45001"
-       x2="1614.71"
-       y2="548.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33034" />
-    <line
-       x1="1630.05"
-       y1="531.92999"
-       x2="1627.05"
-       y2="534.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33036" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1435.88,571.78 1431.38,578.8 1431.29,579.29 "
-       id="polygon33038" />
-    <line
-       x1="1627.05"
-       y1="534.25"
-       x2="1624.21"
-       y2="536.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33040" />
-    <line
-       x1="1422.22"
-       y1="299.76001"
-       x2="1421.77"
-       y2="299.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33042" />
-    <line
-       x1="1619.0699"
-       y1="542.40002"
-       x2="1616.79"
-       y2="545.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33044" />
-    <line
-       x1="1624.21"
-       y1="536.78003"
-       x2="1621.55"
-       y2="539.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33046" />
-    <line
-       x1="1621.55"
-       y1="539.5"
-       x2="1619.0699"
-       y2="542.40002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33048" />
-    <line
-       x1="1395.3"
-       y1="338.10999"
-       x2="1394.1899"
-       y2="338.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33050" />
-    <line
-       x1="1641.88"
-       y1="526.35999"
-       x2="1640.05"
-       y2="526.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33052" />
-    <line
-       x1="1679.3"
-       y1="560.72998"
-       x2="1677.63"
-       y2="560.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33054" />
-    <line
-       x1="1643.74"
-       y1="526.01001"
-       x2="1641.88"
-       y2="526.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33056" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1438.64,574.09 1434.14,581.11 1434.54,580.81 "
-       id="polygon33058" />
-    <line
-       x1="1422.64"
-       y1="300.44"
-       x2="1422.22"
-       y2="299.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33060" />
-    <line
-       x1="1394.1899"
-       y1="338.16"
-       x2="1393.0699"
-       y2="338.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33062" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1395.82,459.09 1393.5,445.07 1393.41,445.3 "
-       id="polygon33064" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1393.51,445.5 1395.92,459.3 1396.19,459.46 "
-       id="polygon33066" />
-    <line
-       x1="1414.73"
-       y1="321.76999"
-       x2="1415.6"
-       y2="321.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33068" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1438.14,574.24 1433.63,581.25 1434.14,581.11 "
-       id="polygon33070" />
-    <line
-       x1="1645.61"
-       y1="525.76001"
-       x2="1643.74"
-       y2="526.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33072" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1437.58,574.22 1433.07,581.24 1433.63,581.25 "
-       id="polygon33074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.53,573.73 1432.02,580.75 1432.52,581.06 "
-       id="polygon33076" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1366.06,620.69 1355.83,625.27 1355.42,625.21 "
-       id="polygon33078" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1437.03,574.05 1432.52,581.06 1433.07,581.24 "
-       id="polygon33080" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1393.79,445.25 1393.41,445.31 1393.51,445.51 "
-       id="polygon33082" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1390.99,431.7 1393.51,445.51 1393.78,445.67 "
-       id="polygon33084" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.77,445.66 1396.19,459.46 1396.6,459.56 "
-       id="polygon33086" />
-    <line
-       x1="1393.0699"
-       y1="338.14001"
-       x2="1391.9399"
-       y2="338.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33088" />
-    <line
-       x1="1415.6"
-       y1="321.54999"
-       x2="1416.45"
-       y2="321.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33090" />
-    <line
-       x1="1647.5"
-       y1="525.59998"
-       x2="1645.61"
-       y2="525.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33092" />
-    <line
-       x1="1677.63"
-       y1="560.46002"
-       x2="1676.02"
-       y2="560.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33094" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1396.79,445.23 1399.2,459.03 1399.46,458.8 "
-       id="polygon33096" />
-    <line
-       x1="1399.25"
-       y1="302.10999"
-       x2="1398.9399"
-       y2="302.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33098" />
-    <line
-       x1="1603.77"
-       y1="415.62"
-       x2="1601.48"
-       y2="413.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33100" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1366.47,620.75 1356.24,625.51 1355.83,625.27 "
-       id="polygon33102" />
-    <polygon
-       style="opacity:1;fill:#0024d4"
-       points="1554.37,600.76 1540.68,603.7 1540.84,603.44 "
-       id="polygon33104" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.19,445.76 1396.6,459.56 1397.13,459.59 "
-       id="polygon33106" />
-    <line
-       x1="1649.4"
-       y1="525.53998"
-       x2="1647.5"
-       y2="525.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33108" />
-    <line
-       x1="1416.45"
-       y1="321.26001"
-       x2="1417.27"
-       y2="320.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33110" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1396.38,445.45 1398.79,459.25 1399.2,459.03 "
-       id="polygon33112" />
-    <line
-       x1="1391.9399"
-       y1="338.06"
-       x2="1390.8199"
-       y2="337.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33114" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1366.89,620.99 1356.63,625.89 1356.24,625.51 "
-       id="polygon33116" />
-    <line
-       x1="1423.36"
-       y1="301.95999"
-       x2="1423.02"
-       y2="301.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33118" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.71,445.79 1397.13,459.59 1397.7,459.54 "
-       id="polygon33120" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1367.85,623.48 1357.04,628.42 1357.21,628.01 "
-       id="polygon33122" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1395.86,445.62 1398.27,459.42 1398.79,459.25 "
-       id="polygon33124" />
-    <line
-       x1="1651.3"
-       y1="525.59003"
-       x2="1649.4"
-       y2="525.53998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1395.29,445.74 1397.7,459.54 1398.27,459.42 "
-       id="polygon33128" />
-    <line
-       x1="1399.61"
-       y1="301.64001"
-       x2="1399.25"
-       y2="302.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33130" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1367.27,621.37 1356.94,626.38 1356.63,625.89 "
-       id="polygon33132" />
-    <line
-       x1="1417.27"
-       y1="320.89001"
-       x2="1418.0601"
-       y2="320.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33134" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1367.89,622.97 1357.21,628.01 1357.25,627.5 "
-       id="polygon33136" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1396.19,459.46 1393.51,445.5 1393.77,445.66 "
-       id="polygon33138" />
-    <line
-       x1="1580.27"
-       y1="477.41"
-       x2="1583.05"
-       y2="479.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33140" />
-    <line
-       x1="1390.8199"
-       y1="337.89999"
-       x2="1389.7"
-       y2="337.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33142" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1367.58,621.86 1357.15,626.93 1356.94,626.38 "
-       id="polygon33144" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1367.8,622.41 1357.25,627.5 1357.15,626.93 "
-       id="polygon33146" />
-    <line
-       x1="1653.2"
-       y1="525.72998"
-       x2="1651.3"
-       y2="525.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33148" />
-    <line
-       x1="1423.67"
-       y1="302.78"
-       x2="1423.36"
-       y2="301.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33150" />
-    <polygon
-       style="opacity:1;fill:#001ba2"
-       points="1553.89,600.75 1540.2,603.69 1540.46,603.78 "
-       id="polygon33152" />
-    <line
-       x1="1676.02"
-       y1="560.06"
-       x2="1674.51"
-       y2="559.53003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33154" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1399.46,458.8 1396.79,445.23 1397.05,445 "
-       id="polygon33156" />
-    <line
-       x1="1418.0601"
-       y1="320.45999"
-       x2="1418.8199"
-       y2="319.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33158" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1396.6,459.56 1393.77,445.66 1394.19,445.76 "
-       id="polygon33160" />
-    <line
-       x1="1411.02"
-       y1="449.32001"
-       x2="1408.5601"
-       y2="450.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33162" />
-    <line
-       x1="1363.98"
-       y1="347.45001"
-       x2="1363.84"
-       y2="348.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33164" />
-    <line
-       x1="1655.09"
-       y1="525.96002"
-       x2="1653.2"
-       y2="525.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33166" />
-    <line
-       x1="1389.7"
-       y1="337.67999"
-       x2="1388.58"
-       y2="337.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33168" />
-    <polygon
-       style="opacity:1;fill:#001789"
-       points="1553.63,600.49 1539.93,603.43 1540.2,603.69 "
-       id="polygon33170" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1399.2,459.03 1396.38,445.45 1396.79,445.23 "
-       id="polygon33172" />
-    <line
-       x1="1423.9301"
-       y1="303.64001"
-       x2="1423.67"
-       y2="302.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33174" />
-    <line
-       x1="1311.95"
-       y1="427.94"
-       x2="1310.8199"
-       y2="427.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1397.13,459.59 1394.19,445.76 1394.71,445.79 "
-       id="polygon33178" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1552.92,598.45 1561.21,596.18 1552.93,597.95 "
-       id="polygon33180" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1552.96,598.44 1539.26,601.38 1539.33,601.95 "
-       id="polygon33182" />
-    <line
-       x1="1656.97"
-       y1="526.29999"
-       x2="1655.09"
-       y2="525.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33184" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.38,600.08 1539.69,603.02 1539.93,603.43 "
-       id="polygon33186" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1398.79,459.25 1395.86,445.62 1396.38,445.45 "
-       id="polygon33188" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1397.7,459.54 1394.71,445.79 1395.29,445.74 "
-       id="polygon33190" />
-    <line
-       x1="1388.58"
-       y1="337.39001"
-       x2="1387.48"
-       y2="337.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33192" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.03,599.01 1539.33,601.95 1539.48,602.51 "
-       id="polygon33194" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.18,599.57 1539.48,602.51 1543.9,601.94 "
-       id="polygon33196" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1398.27,459.42 1395.29,445.74 1395.86,445.62 "
-       id="polygon33198" />
-    <line
-       x1="1419.54"
-       y1="319.41"
-       x2="1420.22"
-       y2="318.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33200" />
-    <line
-       x1="1424.14"
-       y1="304.54001"
-       x2="1423.9301"
-       y2="303.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33202" />
-    <line
-       x1="1658.83"
-       y1="526.73999"
-       x2="1656.97"
-       y2="526.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33204" />
-    <line
-       x1="1605.92"
-       y1="417.57001"
-       x2="1603.77"
-       y2="415.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33206" />
-    <line
-       x1="1674.51"
-       y1="559.53003"
-       x2="1673.09"
-       y2="558.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33208" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1394.52,430.74 1397.04,444.55 1396.77,444.39 "
-       id="polygon33210" />
-    <line
-       x1="1420.22"
-       y1="318.79999"
-       x2="1420.86"
-       y2="318.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33212" />
-    <line
-       x1="1400.41"
-       y1="300.91"
-       x2="1399.99"
-       y2="301.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33214" />
-    <line
-       x1="1387.48"
-       y1="337.01999"
-       x2="1386.4"
-       y2="336.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33216" />
-    <line
-       x1="1424.3"
-       y1="305.45999"
-       x2="1424.14"
-       y2="304.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33218" />
-    <line
-       x1="1660.66"
-       y1="527.27002"
-       x2="1658.83"
-       y2="526.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33220" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1431.29,579.29 1435.79,572.27 1433.71,575.33 "
-       id="polygon33222" />
-    <line
-       x1="1424.42"
-       y1="306.39999"
-       x2="1424.3"
-       y2="305.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33224" />
-    <line
-       x1="1386.4"
-       y1="336.60001"
-       x2="1385.34"
-       y2="336.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33226" />
-    <line
-       x1="1662.47"
-       y1="527.90002"
-       x2="1660.66"
-       y2="527.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33228" />
-    <line
-       x1="1421.46"
-       y1="317.39999"
-       x2="1422"
-       y2="316.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33230" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1431.38,579.81 1435.79,572.27 1435.88,572.79 "
-       id="polygon33232" />
-    <line
-       x1="1424.48"
-       y1="307.35999"
-       x2="1424.42"
-       y2="306.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33234" />
-    <polygon
-       style="opacity:1;fill:#0000b7"
-       points="1434.54,580.81 1438.64,574.09 1439.05,573.8 "
-       id="polygon33236" />
-    <line
-       x1="1422"
-       y1="316.63"
-       x2="1422.5"
-       y2="315.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33238" />
-    <polygon
-       style="opacity:1;fill:#00157f"
-       points="1539.37,600.48 1553.23,597.28 1553.06,597.54 "
-       id="polygon33240" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1431.63,580.31 1435.88,572.79 1436.13,573.3 "
-       id="polygon33242" />
-    <line
-       x1="1424.48"
-       y1="308.32999"
-       x2="1424.48"
-       y2="307.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33244" />
-    <polygon
-       style="opacity:1;fill:#0000aa"
-       points="1434.14,581.11 1438.14,574.24 1438.64,574.09 "
-       id="polygon33246" />
-    <line
-       x1="1664.24"
-       y1="528.63"
-       x2="1662.47"
-       y2="527.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33248" />
-    <line
-       x1="1422.5"
-       y1="315.81"
-       x2="1422.9399"
-       y2="314.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33250" />
-    <polygon
-       style="opacity:1;fill:#0000c8"
-       points="1394.53,431.18 1397.04,444.99 1397.13,444.75 "
-       id="polygon33252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.02,580.75 1436.13,573.3 1436.53,573.73 "
-       id="polygon33254" />
-    <line
-       x1="1424.4301"
-       y1="309.31"
-       x2="1424.48"
-       y2="308.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33256" />
-    <line
-       x1="1673.09"
-       y1="558.87"
-       x2="1671.78"
-       y2="558.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33258" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1433.63,581.25 1437.58,574.22 1438.14,574.24 "
-       id="polygon33260" />
-    <line
-       x1="1422.9399"
-       y1="314.95999"
-       x2="1423.33"
-       y2="314.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33262" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1432.52,581.06 1436.53,573.73 1437.03,574.05 "
-       id="polygon33264" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1433.07,581.24 1437.03,574.05 1437.58,574.22 "
-       id="polygon33266" />
-    <line
-       x1="1424.33"
-       y1="310.29001"
-       x2="1424.4301"
-       y2="309.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33268" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.27,600.88 1553.06,597.54 1552.97,597.94 "
-       id="polygon33270" />
-    <line
-       x1="1423.33"
-       y1="314.07001"
-       x2="1423.66"
-       y2="313.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33272" />
-    <line
-       x1="1384.3101"
-       y1="335.54999"
-       x2="1383.3"
-       y2="334.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33274" />
-    <line
-       x1="1423.66"
-       y1="313.14999"
-       x2="1423.9399"
-       y2="312.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33276" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1391.26,431.86 1393.78,445.67 1394.19,445.77 "
-       id="polygon33278" />
-    <line
-       x1="1423.9399"
-       y1="312.20999"
-       x2="1424.16"
-       y2="311.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33280" />
-    <polygon
-       style="opacity:1;fill:#001789"
-       points="1540.2,603.69 1553.63,600.49 1553.89,600.75 "
-       id="polygon33282" />
-    <line
-       x1="1665.97"
-       y1="529.42999"
-       x2="1664.24"
-       y2="528.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33284" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1394.27,431.41 1396.79,445.22 1397.04,444.99 "
-       id="polygon33286" />
-    <line
-       x1="1583.05"
-       y1="479.59"
-       x2="1585.62"
-       y2="482"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33288" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.26,601.38 1552.97,597.94 1552.96,598.44 "
-       id="polygon33290" />
-    <line
-       x1="1401.34"
-       y1="300.45001"
-       x2="1400.87"
-       y2="300.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33292" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.93,603.43 1553.38,600.08 1553.63,600.49 "
-       id="polygon33294" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1391.67,431.95 1394.19,445.77 1394.71,445.79 "
-       id="polygon33296" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1393.86,431.63 1396.38,445.44 1396.79,445.22 "
-       id="polygon33298" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.16,599.57 1561.34,597.27 1553,599.01 "
-       id="polygon33300" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.33,601.95 1552.96,598.44 1553.03,599.01 "
-       id="polygon33302" />
-    <line
-       x1="1667.66"
-       y1="530.33002"
-       x2="1665.97"
-       y2="529.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33304" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.69,603.02 1553.18,599.57 1553.38,600.08 "
-       id="polygon33306" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1539.48,602.51 1553.03,599.01 1553.18,599.57 "
-       id="polygon33308" />
-    <line
-       x1="1607.92"
-       y1="419.73001"
-       x2="1605.92"
-       y2="417.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33310" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.19,431.98 1394.71,445.79 1395.29,445.74 "
-       id="polygon33312" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1393.34,431.8 1395.86,445.62 1396.38,445.44 "
-       id="polygon33314" />
-    <line
-       x1="1413.26"
-       y1="447.91"
-       x2="1411.02"
-       y2="449.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.77,431.92 1395.29,445.74 1395.86,445.62 "
-       id="polygon33318" />
-    <line
-       x1="1382.34"
-       y1="334.26001"
-       x2="1381.41"
-       y2="333.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33320" />
-    <line
-       x1="1305.77"
-       y1="523.48999"
-       x2="1301.86"
-       y2="522.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33322" />
-    <line
-       x1="1309.73"
-       y1="524.67999"
-       x2="1305.77"
-       y2="523.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33324" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1393.78,445.67 1390.99,431.7 1391.26,431.86 "
-       id="polygon33326" />
-    <line
-       x1="1301.86"
-       y1="522.22998"
-       x2="1298.02"
-       y2="520.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33328" />
-    <line
-       x1="1671.78"
-       y1="558.09003"
-       x2="1670.58"
-       y2="557.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33330" />
-    <line
-       x1="1669.29"
-       y1="531.31"
-       x2="1667.66"
-       y2="530.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33332" />
-    <line
-       x1="1381.41"
-       y1="333.51999"
-       x2="1380.52"
-       y2="332.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33334" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1397.04,444.99 1394.27,431.41 1394.53,431.18 "
-       id="polygon33336" />
-    <line
-       x1="1313.73"
-       y1="525.76001"
-       x2="1309.73"
-       y2="524.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33338" />
-    <line
-       x1="1363.78"
-       y1="348.64001"
-       x2="1363.8101"
-       y2="349.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33340" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.19,445.77 1391.26,431.86 1391.67,431.95 "
-       id="polygon33342" />
-    <line
-       x1="1298.02"
-       y1="520.90002"
-       x2="1294.27"
-       y2="519.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33344" />
-    <line
-       x1="1310.8199"
-       y1="427.09"
-       x2="1309.96"
-       y2="426.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33346" />
-    <line
-       x1="1670.88"
-       y1="532.37"
-       x2="1669.29"
-       y2="531.31"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33348" />
-    <line
-       x1="1380.52"
-       y1="332.73001"
-       x2="1379.6801"
-       y2="331.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33350" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1396.79,445.22 1393.86,431.63 1394.27,431.41 "
-       id="polygon33352" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1394.71,445.79 1391.67,431.95 1392.19,431.98 "
-       id="polygon33354" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1345.1,629.92 1355.82,625.28 1355.41,625.21 "
-       id="polygon33356" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1396.38,445.44 1393.34,431.8 1393.86,431.63 "
-       id="polygon33358" />
-    <line
-       x1="1317.74"
-       y1="526.73999"
-       x2="1313.73"
-       y2="525.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33360" />
-    <line
-       x1="1402.36"
-       y1="300.26999"
-       x2="1401.84"
-       y2="300.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1395.29,445.74 1392.19,431.98 1392.77,431.92 "
-       id="polygon33364" />
-    <line
-       x1="1379.6801"
-       y1="331.89001"
-       x2="1378.88"
-       y2="331"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33366" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1395.86,445.62 1392.77,431.92 1393.34,431.8 "
-       id="polygon33368" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1346.06,633.34 1356.77,628.7 1357.05,628.42 "
-       id="polygon33370" />
-    <line
-       x1="1672.41"
-       y1="533.5"
-       x2="1670.88"
-       y2="532.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33372" />
-    <line
-       x1="1294.27"
-       y1="519.52002"
-       x2="1290.64"
-       y2="518.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33374" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1345.52,630.15 1356.23,625.51 1355.82,625.28 "
-       id="polygon33376" />
-    <line
-       x1="1670.58"
-       y1="557.19"
-       x2="1669.51"
-       y2="556.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33378" />
-    <line
-       x1="1378.88"
-       y1="331"
-       x2="1378.14"
-       y2="330.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33380" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1391.89,416.91 1394.52,430.73 1394.25,430.58 "
-       id="polygon33382" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1346.33,633.07 1357.05,628.42 1357.21,628.01 "
-       id="polygon33384" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1345.9,630.54 1356.61,625.89 1356.23,625.51 "
-       id="polygon33386" />
-    <line
-       x1="1673.88"
-       y1="534.71002"
-       x2="1672.41"
-       y2="533.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33388" />
-    <line
-       x1="1609.76"
-       y1="422.07001"
-       x2="1607.92"
-       y2="419.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33390" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1346.49,632.65 1357.21,628.01 1357.24,627.5 "
-       id="polygon33392" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1346.21,631.03 1356.93,626.39 1356.61,625.89 "
-       id="polygon33394" />
-    <line
-       x1="1321.75"
-       y1="527.59003"
-       x2="1317.74"
-       y2="526.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33396" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1346.53,632.14 1357.24,627.5 1357.14,626.94 "
-       id="polygon33398" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1346.43,631.58 1357.14,626.94 1356.93,626.39 "
-       id="polygon33400" />
-    <line
-       x1="1290.64"
-       y1="518.09003"
-       x2="1287.13"
-       y2="516.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33402" />
-    <line
-       x1="1377.45"
-       y1="329.09"
-       x2="1376.8199"
-       y2="328.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33404" />
-    <line
-       x1="1585.62"
-       y1="482"
-       x2="1587.9399"
-       y2="484.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33406" />
-    <line
-       x1="1675.28"
-       y1="535.97998"
-       x2="1673.88"
-       y2="534.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33408" />
-    <line
-       x1="1363.8101"
-       y1="349.34"
-       x2="1363.92"
-       y2="350.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33410" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1388.37,417.89 1390.99,431.71 1391.26,431.87 "
-       id="polygon33412" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1394.25,430.58 1391.89,416.91 1391.63,416.76 "
-       id="polygon33414" />
-    <polygon
-       style="opacity:1;fill:#0000c7"
-       points="1391.9,417.34 1394.53,431.16 1394.61,430.93 "
-       id="polygon33416" />
-    <line
-       x1="1669.51"
-       y1="556.19"
-       x2="1668.5699"
-       y2="555.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33418" />
-    <line
-       x1="1376.8199"
-       y1="328.07001"
-       x2="1376.25"
-       y2="327.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33420" />
-    <line
-       x1="1403.42"
-       y1="300.38"
-       x2="1402.88"
-       y2="300.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33422" />
-    <polygon
-       style="opacity:1;fill:#001ba2"
-       points="1554.18,600.83 1562.3,598.81 1553.91,600.74 "
-       id="polygon33424" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1388.27,417.71 1385.64,403.65 1385.55,403.88 "
-       id="polygon33426" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1385.64,404.08 1388.37,417.91 1388.64,418.06 "
-       id="polygon33428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1388.63,418.05 1391.26,431.87 1391.67,431.96 "
-       id="polygon33430" />
-    <line
-       x1="1415.25"
-       y1="446.29999"
-       x2="1413.26"
-       y2="447.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33432" />
-    <line
-       x1="1676.61"
-       y1="537.32001"
-       x2="1675.28"
-       y2="535.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33434" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1391.64,417.58 1394.27,431.4 1394.53,431.16 "
-       id="polygon33436" />
-    <line
-       x1="1325.72"
-       y1="528.32001"
-       x2="1321.75"
-       y2="527.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33438" />
-    <polygon
-       style="opacity:1;fill:#001ca3"
-       points="1561.7,595.24 1553.42,597.21 1561.86,595.3 "
-       id="polygon33440" />
-    <polygon
-       style="opacity:1;fill:#001789"
-       points="1553.91,600.74 1562.03,598.62 1553.64,600.48 "
-       id="polygon33442" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1389.05,418.14 1391.67,431.96 1392.19,431.98 "
-       id="polygon33444" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1391.23,417.8 1393.86,431.62 1394.27,431.4 "
-       id="polygon33446" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.64,600.48 1561.76,598.27 1553.38,600.08 "
-       id="polygon33448" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553,599.01 1561.23,596.71 1552.92,598.45 "
-       id="polygon33450" />
-    <line
-       x1="1287.13"
-       y1="516.64001"
-       x2="1283.77"
-       y2="515.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33452" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1389.57,418.16 1392.19,431.98 1392.77,431.92 "
-       id="polygon33454" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.38,600.08 1561.52,597.81 1553.16,599.57 "
-       id="polygon33456" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1390.71,417.98 1393.34,431.8 1393.86,431.62 "
-       id="polygon33458" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1355.41,625.21 1345.1,629.92 1344.7,629.85 "
-       id="polygon33460" />
-    <line
-       x1="1677.88"
-       y1="538.71002"
-       x2="1676.61"
-       y2="537.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1390.14,418.1 1392.77,431.92 1393.34,431.8 "
-       id="polygon33464" />
-    <line
-       x1="1611.42"
-       y1="424.57999"
-       x2="1609.76"
-       y2="422.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33466" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1391.26,431.87 1388.37,417.89 1388.63,418.05 "
-       id="polygon33468" />
-    <line
-       x1="1385.61"
-       y1="318.39999"
-       x2="1386.15"
-       y2="319.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33470" />
-    <line
-       x1="1386.15"
-       y1="319.23001"
-       x2="1386.73"
-       y2="320.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33472" />
-    <line
-       x1="1385.13"
-       y1="317.54999"
-       x2="1385.61"
-       y2="318.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33474" />
-    <line
-       x1="1668.5699"
-       y1="555.09003"
-       x2="1667.77"
-       y2="553.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33476" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1355.82,625.28 1345.52,630.15 1345.1,629.92 "
-       id="polygon33478" />
-    <polygon
-       style="opacity:1;fill:#001ba2"
-       points="1562.46,598.87 1554.18,600.83 1562.3,598.81 "
-       id="polygon33480" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1394.53,431.16 1391.64,417.58 1391.9,417.34 "
-       id="polygon33482" />
-    <line
-       x1="1387.36"
-       y1="320.79001"
-       x2="1388.03"
-       y2="321.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33484" />
-    <line
-       x1="1363.92"
-       y1="350.10001"
-       x2="1364.11"
-       y2="350.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33486" />
-    <line
-       x1="1384.33"
-       y1="315.81"
-       x2="1384.7"
-       y2="316.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33488" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.02,597.55 1561.27,595.74 1561.3,595.59 "
-       id="polygon33490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1391.67,431.96 1388.63,418.05 1389.05,418.14 "
-       id="polygon33492" />
-    <line
-       x1="1388.03"
-       y1="321.51999"
-       x2="1388.74"
-       y2="322.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33494" />
-    <line
-       x1="1679.0699"
-       y1="540.14001"
-       x2="1677.88"
-       y2="538.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33496" />
-    <line
-       x1="1404.5"
-       y1="300.78"
-       x2="1403.96"
-       y2="300.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33498" />
-    <polygon
-       style="opacity:1;fill:#000092"
-       points="1356.23,625.51 1345.9,630.54 1345.52,630.15 "
-       id="polygon33500" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1357.21,628.01 1346.33,633.07 1346.49,632.65 "
-       id="polygon33502" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.21,595.98 1552.93,597.95 1561.27,595.74 "
-       id="polygon33504" />
-    <line
-       x1="1329.65"
-       y1="528.90997"
-       x2="1325.72"
-       y2="528.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33506" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1394.27,431.4 1391.23,417.8 1391.64,417.58 "
-       id="polygon33508" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1552.93,597.95 1561.21,596.18 1561.21,595.98 "
-       id="polygon33510" />
-    <line
-       x1="1383.75"
-       y1="314.04999"
-       x2="1384.01"
-       y2="314.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.19,431.98 1389.05,418.14 1389.57,418.16 "
-       id="polygon33514" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1356.61,625.89 1346.21,631.03 1345.9,630.54 "
-       id="polygon33516" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1357.24,627.5 1346.49,632.65 1346.53,632.14 "
-       id="polygon33518" />
-    <line
-       x1="1389.49"
-       y1="322.85001"
-       x2="1390.27"
-       y2="323.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33520" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.21,596.49 1552.92,598.45 1561.21,596.18 "
-       id="polygon33522" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1393.86,431.62 1390.71,417.98 1391.23,417.8 "
-       id="polygon33524" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1356.93,626.39 1346.43,631.58 1346.21,631.03 "
-       id="polygon33526" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1357.14,626.94 1346.53,632.14 1346.43,631.58 "
-       id="polygon33528" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.92,598.52 1553.64,600.48 1561.76,598.27 "
-       id="polygon33530" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1392.77,431.92 1389.57,418.16 1390.14,418.1 "
-       id="polygon33532" />
-    <line
-       x1="1383.54"
-       y1="313.17999"
-       x2="1383.75"
-       y2="314.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33534" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1393.34,431.8 1390.14,418.1 1390.71,417.98 "
-       id="polygon33536" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553.38,600.08 1561.76,598.27 1561.66,598.12 "
-       id="polygon33538" />
-    <line
-       x1="1283.77"
-       y1="515.16998"
-       x2="1280.58"
-       y2="513.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33540" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.28,597.05 1553,599.01 1561.23,596.71 "
-       id="polygon33542" />
-    <line
-       x1="1390.27"
-       y1="323.44"
-       x2="1391.09"
-       y2="323.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33544" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.66,598.12 1553.38,600.08 1561.52,597.81 "
-       id="polygon33546" />
-    <line
-       x1="1680.1801"
-       y1="541.63"
-       x2="1679.0699"
-       y2="540.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33548" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1553,599.01 1561.34,597.27 1561.28,597.05 "
-       id="polygon33550" />
-    <polygon
-       style="opacity:1;fill:#001370"
-       points="1561.44,597.61 1553.16,599.57 1561.34,597.27 "
-       id="polygon33552" />
-    <line
-       x1="1383.39"
-       y1="312.32001"
-       x2="1383.54"
-       y2="313.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33554" />
-    <line
-       x1="1587.9399"
-       y1="484.63"
-       x2="1590"
-       y2="487.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33556" />
-    <line
-       x1="1667.77"
-       y1="553.90002"
-       x2="1667.11"
-       y2="552.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33558" />
-    <line
-       x1="1383.3"
-       y1="311.47"
-       x2="1383.39"
-       y2="312.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33560" />
-    <line
-       x1="1391.9301"
-       y1="324.45001"
-       x2="1392.79"
-       y2="324.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33562" />
-    <line
-       x1="1612.89"
-       y1="427.25"
-       x2="1611.42"
-       y2="424.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33564" />
-    <line
-       x1="1681.21"
-       y1="543.15997"
-       x2="1680.1801"
-       y2="541.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33566" />
-    <line
-       x1="1405.5601"
-       y1="301.45999"
-       x2="1405.04"
-       y2="301.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33568" />
-    <line
-       x1="1383.26"
-       y1="310.64999"
-       x2="1383.3"
-       y2="311.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33570" />
-    <line
-       x1="1417"
-       y1="444.51999"
-       x2="1415.25"
-       y2="446.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33572" />
-    <line
-       x1="1333.51"
-       y1="529.34998"
-       x2="1329.65"
-       y2="528.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33574" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1566.82,594.06 1561.3,595.59 1561.41,595.43 "
-       id="polygon33576" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1444.3,557.34 1444.21,557.83 1441.95,561.68 "
-       id="polygon33578" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1444.3,557.34 1444.64,557.5 1444.57,557.89 "
-       id="polygon33580" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1444.55,556.94 1448.95,549.21 1448.54,549.51 "
-       id="polygon33582" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1452.15,542.41 1448.28,549.94 1448.19,550.43 "
-       id="polygon33584" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1448.19,550.42 1444.2,557.84 1444.29,558.36 "
-       id="polygon33586" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.29,558.35 1440.16,565.65 1440.42,566.15 "
-       id="polygon33588" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.42,566.15 1444.29,558.35 1444.55,558.85 "
-       id="polygon33590" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.43,566.14 1436.13,573.3 1436.52,573.73 "
-       id="polygon33592" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1442.45,567.07 1438.15,574.23 1438.65,574.08 "
-       id="polygon33594" />
-    <line
-       x1="1393.67"
-       y1="325.20999"
-       x2="1394.5601"
-       y2="325.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33596" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.82,566.57 1436.52,573.73 1437.03,574.05 "
-       id="polygon33598" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1441.89,567.06 1437.59,574.22 1438.15,574.23 "
-       id="polygon33600" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1441.33,566.89 1437.03,574.05 1437.59,574.22 "
-       id="polygon33602" />
-    <line
-       x1="1682.17"
-       y1="544.71002"
-       x2="1681.21"
-       y2="543.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33604" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1385.91,404.23 1388.64,418.06 1389.05,418.14 "
-       id="polygon33606" />
-    <line
-       x1="1667.11"
-       y1="552.63"
-       x2="1666.6"
-       y2="551.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33608" />
-    <line
-       x1="1280.58"
-       y1="513.71002"
-       x2="1277.5601"
-       y2="512.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.65,594.32 1561.21,595.98 1561.27,595.74 "
-       id="polygon33612" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1388.91,403.74 1391.64,417.57 1391.9,417.33 "
-       id="polygon33614" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1562.3,598.81 1567.54,597.51 1562.2,598.78 "
-       id="polygon33616" />
-    <line
-       x1="1394.5601"
-       y1="325.48999"
-       x2="1395.46"
-       y2="325.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33618" />
-    <line
-       x1="1383.35"
-       y1="309.10001"
-       x2="1383.28"
-       y2="309.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33620" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1386.32,404.32 1389.05,418.14 1389.57,418.16 "
-       id="polygon33622" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.21,596.18 1566.55,594.72 1561.21,595.98 "
-       id="polygon33624" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1567.26,597.25 1562.2,598.78 1562.03,598.62 "
-       id="polygon33626" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1388.51,403.96 1391.23,417.79 1391.64,417.57 "
-       id="polygon33628" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1386.84,404.33 1389.57,418.16 1390.14,418.1 "
-       id="polygon33630" />
-    <line
-       x1="1395.46"
-       y1="325.70001"
-       x2="1396.38"
-       y2="325.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33632" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.23,596.71 1566.55,595.22 1561.21,596.49 "
-       id="polygon33634" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1387.99,404.14 1390.71,417.97 1391.23,417.79 "
-       id="polygon33636" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1566.65,594.32 1561.3,595.59 1566.82,594.06 "
-       id="polygon33638" />
-    <polygon
-       style="opacity:1;fill:#0000c7"
-       points="1391.99,417.1 1389.18,403.51 1389.27,403.28 "
-       id="polygon33640" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1387.42,404.27 1390.14,418.1 1390.71,417.97 "
-       id="polygon33642" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.55,595.22 1561.28,597.05 1561.23,596.71 "
-       id="polygon33644" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.76,598.27 1567,596.85 1561.66,598.12 "
-       id="polygon33646" />
-    <line
-       x1="1683.05"
-       y1="546.28998"
-       x2="1682.17"
-       y2="544.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33648" />
-    <line
-       x1="1406.5699"
-       y1="302.41"
-       x2="1406.0699"
-       y2="301.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33650" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.63,595.78 1561.44,597.61 1561.34,597.27 "
-       id="polygon33652" />
-    <line
-       x1="1614.16"
-       y1="430.06"
-       x2="1612.89"
-       y2="427.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33654" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1561.52,597.81 1566.79,596.34 1561.44,597.61 "
-       id="polygon33656" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1388.64,418.06 1385.64,404.08 1385.91,404.23 "
-       id="polygon33658" />
-    <line
-       x1="1383.47"
-       y1="308.38"
-       x2="1383.35"
-       y2="309.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33660" />
-    <line
-       x1="1364.37"
-       y1="351.82001"
-       x2="1364.71"
-       y2="352.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33662" />
-    <line
-       x1="1396.38"
-       y1="325.85001"
-       x2="1397.29"
-       y2="325.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33664" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.55,594.72 1561.21,595.98 1566.65,594.32 "
-       id="polygon33666" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1391.9,417.33 1388.91,403.74 1389.18,403.51 "
-       id="polygon33668" />
-    <line
-       x1="1337.28"
-       y1="529.63"
-       x2="1333.51"
-       y2="529.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33670" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1567.54,597.51 1562.2,598.78 1567.26,597.25 "
-       id="polygon33672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1389.05,418.14 1385.91,404.23 1386.32,404.32 "
-       id="polygon33674" />
-    <line
-       x1="1666.6"
-       y1="551.28998"
-       x2="1666.25"
-       y2="549.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33676" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.55,595.22 1561.21,596.49 1566.55,594.72 "
-       id="polygon33678" />
-    <line
-       x1="1383.64"
-       y1="307.70001"
-       x2="1383.47"
-       y2="308.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33680" />
-    <line
-       x1="1397.29"
-       y1="325.92001"
-       x2="1398.1899"
-       y2="325.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33682" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1391.64,417.57 1388.51,403.96 1388.91,403.74 "
-       id="polygon33684" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1567.26,597.25 1561.92,598.52 1567,596.85 "
-       id="polygon33686" />
-    <line
-       x1="1590"
-       y1="487.45999"
-       x2="1591.79"
-       y2="490.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33688" />
-    <line
-       x1="1683.84"
-       y1="547.90002"
-       x2="1683.05"
-       y2="546.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33690" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1389.57,418.16 1386.32,404.32 1386.84,404.33 "
-       id="polygon33692" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.63,595.78 1561.28,597.05 1566.55,595.22 "
-       id="polygon33694" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1567,596.85 1561.66,598.12 1566.79,596.34 "
-       id="polygon33696" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.79,596.34 1561.44,597.61 1566.63,595.78 "
-       id="polygon33698" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1391.23,417.79 1387.99,404.14 1388.51,403.96 "
-       id="polygon33700" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1390.14,418.1 1386.84,404.33 1387.42,404.27 "
-       id="polygon33702" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1390.71,417.97 1387.42,404.27 1387.99,404.14 "
-       id="polygon33704" />
-    <line
-       x1="1398.1899"
-       y1="325.91"
-       x2="1399.09"
-       y2="325.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33706" />
-    <line
-       x1="1277.5601"
-       y1="512.27002"
-       x2="1274.73"
-       y2="510.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33708" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1436.13,571.38 1440.84,563.92 1440.43,564.21 "
-       id="polygon33710" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1382.83,389.84 1385.64,403.66 1385.55,403.89 "
-       id="polygon33712" />
-    <line
-       x1="1407.48"
-       y1="303.60999"
-       x2="1407.04"
-       y2="302.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33714" />
-    <line
-       x1="1418.49"
-       y1="442.56"
-       x2="1417"
-       y2="444.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33716" />
-    <line
-       x1="1399.09"
-       y1="325.84"
-       x2="1399.98"
-       y2="325.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33718" />
-    <line
-       x1="1684.55"
-       y1="549.52002"
-       x2="1683.84"
-       y2="547.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33720" />
-    <line
-       x1="1615.21"
-       y1="432.98999"
-       x2="1614.16"
-       y2="430.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33722" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1334.31,634.68 1345.09,629.92 1344.69,629.86 "
-       id="polygon33724" />
-    <line
-       x1="1666.25"
-       y1="549.89001"
-       x2="1666.05"
-       y2="548.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33726" />
-    <line
-       x1="1384.14"
-       y1="306.5"
-       x2="1383.87"
-       y2="307.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33728" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1335.29,638.1 1346.07,633.34 1346.34,633.07 "
-       id="polygon33730" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1334.73,634.91 1345.5,630.16 1345.09,629.92 "
-       id="polygon33732" />
-    <polygon
-       style="opacity:1;fill:#000074"
-       points="1435.87,572.8 1440.08,565.12 1440.17,565.64 "
-       id="polygon33734" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1385.55,403.89 1382.83,389.84 1382.74,390.06 "
-       id="polygon33736" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1382.84,390.26 1385.64,404.09 1385.91,404.24 "
-       id="polygon33738" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1439.05,573.79 1442.96,566.92 1443.36,566.62 "
-       id="polygon33740" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1335.56,637.82 1346.34,633.07 1346.49,632.65 "
-       id="polygon33742" />
-    <line
-       x1="1340.95"
-       y1="529.72998"
-       x2="1337.28"
-       y2="529.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33744" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.13,573.3 1440.17,565.64 1440.43,566.14 "
-       id="polygon33746" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1335.11,635.3 1345.89,630.54 1345.5,630.16 "
-       id="polygon33748" />
-    <line
-       x1="1400.84"
-       y1="325.47"
-       x2="1401.6899"
-       y2="325.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33750" />
-    <line
-       x1="1408.28"
-       y1="305.04001"
-       x2="1407.9"
-       y2="304.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33752" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1438.65,574.08 1442.45,567.07 1442.96,566.92 "
-       id="polygon33754" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1335.71,637.41 1346.49,632.65 1346.52,632.14 "
-       id="polygon33756" />
-    <line
-       x1="1685.17"
-       y1="551.14001"
-       x2="1684.55"
-       y2="549.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33758" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1436.52,573.73 1440.43,566.14 1440.82,566.57 "
-       id="polygon33760" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1335.43,635.79 1346.2,631.04 1345.89,630.54 "
-       id="polygon33762" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1438.15,574.23 1441.89,567.06 1442.45,567.07 "
-       id="polygon33764" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.1,390.41 1385.91,404.24 1386.32,404.32 "
-       id="polygon33766" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1335.74,636.9 1346.52,632.14 1346.42,631.59 "
-       id="polygon33768" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1437.03,574.05 1440.82,566.57 1441.33,566.89 "
-       id="polygon33770" />
-    <line
-       x1="1364.71"
-       y1="352.79001"
-       x2="1366.55"
-       y2="353.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33772" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1437.59,574.22 1441.33,566.89 1441.89,567.06 "
-       id="polygon33774" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1335.64,636.34 1346.42,631.59 1346.2,631.04 "
-       id="polygon33776" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1386.11,389.91 1388.91,403.74 1389.18,403.5 "
-       id="polygon33778" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1580.45,590.76 1566.81,594.07 1566.64,594.32 "
-       id="polygon33780" />
-    <line
-       x1="1408.63"
-       y1="305.82001"
-       x2="1408.28"
-       y2="305.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33782" />
-    <line
-       x1="1666.05"
-       y1="548.44"
-       x2="1666.02"
-       y2="546.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33784" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.52,390.49 1386.32,404.32 1386.84,404.34 "
-       id="polygon33786" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1385.7,390.13 1388.5,403.96 1388.91,403.74 "
-       id="polygon33788" />
-    <line
-       x1="1616.05"
-       y1="436.01999"
-       x2="1615.21"
-       y2="432.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33790" />
-    <line
-       x1="1384.8"
-       y1="305.51001"
-       x2="1384.45"
-       y2="305.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33792" />
-    <line
-       x1="1402.52"
-       y1="324.82001"
-       x2="1403.3101"
-       y2="324.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1384.04,390.5 1386.84,404.34 1387.42,404.27 "
-       id="polygon33796" />
-    <line
-       x1="1274.73"
-       y1="510.85999"
-       x2="1272.12"
-       y2="509.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33798" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1385.18,390.31 1387.99,404.14 1388.5,403.96 "
-       id="polygon33800" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.29,591.02 1566.64,594.32 1566.55,594.72 "
-       id="polygon33802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1384.61,390.44 1387.42,404.27 1387.99,404.14 "
-       id="polygon33804" />
-    <line
-       x1="1685.71"
-       y1="552.77002"
-       x2="1685.17"
-       y2="551.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33806" />
-    <line
-       x1="1408.9301"
-       y1="306.64999"
-       x2="1408.63"
-       y2="305.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33808" />
-    <line
-       x1="1591.79"
-       y1="490.47"
-       x2="1593.29"
-       y2="493.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33810" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1385.91,404.24 1382.84,390.26 1383.1,390.41 "
-       id="polygon33812" />
-    <line
-       x1="1403.3101"
-       y1="324.39001"
-       x2="1404.0699"
-       y2="323.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33814" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.2,591.42 1566.55,594.72 1566.54,595.22 "
-       id="polygon33816" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1580.91,593.95 1567.27,597.25 1567.54,597.51 "
-       id="polygon33818" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1389.18,403.5 1386.11,389.91 1386.37,389.67 "
-       id="polygon33820" />
-    <line
-       x1="1409.1899"
-       y1="307.51001"
-       x2="1408.9301"
-       y2="306.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33822" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1386.32,404.32 1383.1,390.41 1383.52,390.49 "
-       id="polygon33824" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.19,591.92 1566.54,595.22 1566.62,595.79 "
-       id="polygon33826" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.65,593.55 1567,596.85 1567.27,597.25 "
-       id="polygon33828" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.27,592.48 1566.62,595.79 1566.78,596.34 "
-       id="polygon33830" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.43,593.04 1566.78,596.34 1567,596.85 "
-       id="polygon33832" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1344.69,629.86 1334.31,634.68 1333.91,634.61 "
-       id="polygon33834" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1388.91,403.74 1385.7,390.13 1386.11,389.91 "
-       id="polygon33836" />
-    <line
-       x1="1666.02"
-       y1="546.95001"
-       x2="1666.14"
-       y2="545.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33838" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1386.84,404.34 1383.52,390.49 1384.04,390.5 "
-       id="polygon33840" />
-    <line
-       x1="1419.72"
-       y1="440.42001"
-       x2="1418.49"
-       y2="442.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33842" />
-    <line
-       x1="1404.79"
-       y1="323.32999"
-       x2="1405.48"
-       y2="322.70999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33844" />
-    <line
-       x1="1409.4"
-       y1="308.41"
-       x2="1409.1899"
-       y2="307.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33846" />
-    <line
-       x1="1344.49"
-       y1="529.66998"
-       x2="1340.95"
-       y2="529.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33848" />
-    <line
-       x1="1686.17"
-       y1="554.39001"
-       x2="1685.71"
-       y2="552.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33850" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1388.5,403.96 1385.18,390.31 1385.7,390.13 "
-       id="polygon33852" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1387.42,404.27 1384.04,390.5 1384.61,390.44 "
-       id="polygon33854" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1387.99,404.14 1384.61,390.44 1385.18,390.31 "
-       id="polygon33856" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1345.09,629.92 1334.73,634.91 1334.31,634.68 "
-       id="polygon33858" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1346.34,633.07 1335.29,638.1 1335.56,637.82 "
-       id="polygon33860" />
-    <line
-       x1="1616.66"
-       y1="439.14001"
-       x2="1616.05"
-       y2="436.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33862" />
-    <line
-       x1="1405.48"
-       y1="322.70999"
-       x2="1406.12"
-       y2="322.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33864" />
-    <line
-       x1="1385.61"
-       y1="304.76999"
-       x2="1385.1899"
-       y2="305.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33866" />
-    <line
-       x1="1409.5699"
-       y1="309.34"
-       x2="1409.4"
-       y2="308.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33868" />
-    <line
-       x1="1528.61"
-       y1="462.98999"
-       x2="1530.11"
-       y2="466.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33870" />
-    <line
-       x1="1530.11"
-       y1="466.03"
-       x2="1531.8199"
-       y2="468.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33872" />
-    <line
-       x1="1527.34"
-       y1="459.87"
-       x2="1528.61"
-       y2="462.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33874" />
-    <line
-       x1="1531.8199"
-       y1="468.97"
-       x2="1533.74"
-       y2="471.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33876" />
-    <polygon
-       style="opacity:1;fill:#0000de"
-       points="1383.5,375.4 1386.36,389.23 1386.09,389.09 "
-       id="polygon33878" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1345.5,630.16 1335.11,635.3 1334.73,634.91 "
-       id="polygon33880" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1346.49,632.65 1335.56,637.82 1335.71,637.41 "
-       id="polygon33882" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1440.43,564.21 1440.73,564.45 1440.52,564.79 "
-       id="polygon33884" />
-    <line
-       x1="1526.3101"
-       y1="456.67999"
-       x2="1527.34"
-       y2="459.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33886" />
-    <line
-       x1="1533.74"
-       y1="471.79001"
-       x2="1535.87"
-       y2="474.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33888" />
-    <line
-       x1="1409.6801"
-       y1="310.28"
-       x2="1409.5699"
-       y2="309.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33890" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1345.89,630.54 1335.43,635.79 1335.11,635.3 "
-       id="polygon33892" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1346.52,632.14 1335.71,637.41 1335.74,636.9 "
-       id="polygon33894" />
-    <line
-       x1="1406.71"
-       y1="321.31"
-       x2="1407.26"
-       y2="320.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33896" />
-    <line
-       x1="1525.52"
-       y1="453.45001"
-       x2="1526.3101"
-       y2="456.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33898" />
-    <line
-       x1="1535.87"
-       y1="474.47"
-       x2="1538.1899"
-       y2="477"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33900" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1346.2,631.04 1335.64,636.34 1335.43,635.79 "
-       id="polygon33902" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1346.42,631.59 1335.74,636.9 1335.64,636.34 "
-       id="polygon33904" />
-    <line
-       x1="1409.74"
-       y1="311.25"
-       x2="1409.6801"
-       y2="310.28"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33906" />
-    <line
-       x1="1386.0601"
-       y1="304.51001"
-       x2="1385.61"
-       y2="304.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33908" />
-    <line
-       x1="1407.26"
-       y1="320.54001"
-       x2="1407.75"
-       y2="319.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33910" />
-    <line
-       x1="1686.55"
-       y1="556"
-       x2="1686.17"
-       y2="554.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33912" />
-    <line
-       x1="1666.14"
-       y1="545.42999"
-       x2="1666.4301"
-       y2="543.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33914" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1567.81,597.6 1581.19,594.21 1581.45,594.3 "
-       id="polygon33916" />
-    <line
-       x1="1538.1899"
-       y1="477"
-       x2="1540.6899"
-       y2="479.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33918" />
-    <line
-       x1="1272.12"
-       y1="509.48999"
-       x2="1269.71"
-       y2="508.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33920" />
-    <line
-       x1="1407.75"
-       y1="319.72"
-       x2="1408.2"
-       y2="318.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33922" />
-    <line
-       x1="1524.96"
-       y1="450.20001"
-       x2="1525.52"
-       y2="453.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33924" />
-    <line
-       x1="1409.7"
-       y1="313.20001"
-       x2="1409.74"
-       y2="312.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33926" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1379.98,376.43 1382.84,390.27 1383.11,390.42 "
-       id="polygon33928" />
-    <line
-       x1="1408.2"
-       y1="318.85999"
-       x2="1408.59"
-       y2="317.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33930" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.55,594.72 1580.29,591.02 1580.2,591.42 "
-       id="polygon33932" />
-    <line
-       x1="1409.59"
-       y1="314.17999"
-       x2="1409.7"
-       y2="313.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33934" />
-    <line
-       x1="1408.59"
-       y1="317.97"
-       x2="1408.92"
-       y2="317.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33936" />
-    <line
-       x1="1409.42"
-       y1="315.14999"
-       x2="1409.59"
-       y2="314.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33938" />
-    <line
-       x1="1408.92"
-       y1="317.04999"
-       x2="1409.2"
-       y2="316.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33940" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1567.54,597.51 1580.91,593.95 1581.19,594.21 "
-       id="polygon33942" />
-    <line
-       x1="1366.55"
-       y1="353.95999"
-       x2="1368.5699"
-       y2="355.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33944" />
-    <line
-       x1="1540.6899"
-       y1="479.35999"
-       x2="1543.35"
-       y2="481.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33946" />
-    <line
-       x1="1617.03"
-       y1="442.32999"
-       x2="1616.66"
-       y2="439.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33948" />
-    <line
-       x1="1524.64"
-       y1="446.94"
-       x2="1524.96"
-       y2="450.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33950" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.54,595.22 1580.2,591.42 1580.19,591.92 "
-       id="polygon33952" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.25,376.58 1383.11,390.42 1383.52,390.5 "
-       id="polygon33954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1567.27,597.25 1580.65,593.55 1580.91,593.95 "
-       id="polygon33956" />
-    <line
-       x1="1593.29"
-       y1="493.64001"
-       x2="1594.5"
-       y2="496.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33958" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1383.25,376.07 1386.11,389.9 1386.37,389.66 "
-       id="polygon33960" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.62,595.79 1580.19,591.92 1580.27,592.48 "
-       id="polygon33962" />
-    <line
-       x1="1543.35"
-       y1="481.54001"
-       x2="1546.17"
-       y2="483.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33964" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1567,596.85 1580.43,593.04 1580.65,593.55 "
-       id="polygon33966" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1566.78,596.34 1580.27,592.48 1580.43,593.04 "
-       id="polygon33968" />
-    <line
-       x1="1686.84"
-       y1="557.59003"
-       x2="1686.55"
-       y2="556"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.66,376.66 1383.52,390.5 1384.04,390.51 "
-       id="polygon33972" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1382.84,376.29 1385.7,390.13 1386.11,389.9 "
-       id="polygon33974" />
-    <line
-       x1="1347.89"
-       y1="529.42999"
-       x2="1344.49"
-       y2="529.66998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33976" />
-    <line
-       x1="1524.5699"
-       y1="443.69"
-       x2="1524.64"
-       y2="446.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33978" />
-    <line
-       x1="1666.4301"
-       y1="543.89001"
-       x2="1666.88"
-       y2="542.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33980" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.18,376.67 1384.04,390.51 1384.61,390.45 "
-       id="polygon33982" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1382.32,376.48 1385.18,390.31 1385.7,390.13 "
-       id="polygon33984" />
-    <line
-       x1="1546.17"
-       y1="483.51999"
-       x2="1549.12"
-       y2="485.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33986" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.75,376.61 1384.61,390.45 1385.18,390.31 "
-       id="polygon33988" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1383.11,390.42 1379.98,376.43 1380.25,376.58 "
-       id="polygon33990" />
-    <line
-       x1="1420.6899"
-       y1="438.12"
-       x2="1419.72"
-       y2="440.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33992" />
-    <line
-       x1="1617.16"
-       y1="445.56"
-       x2="1617.03"
-       y2="442.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33994" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1386.37,389.66 1383.25,376.07 1383.51,375.83 "
-       id="polygon33996" />
-    <line
-       x1="1524.74"
-       y1="440.48001"
-       x2="1524.5699"
-       y2="443.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line33998" />
-    <line
-       x1="1549.12"
-       y1="485.29001"
-       x2="1552.2"
-       y2="486.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34000" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1383.52,390.5 1380.25,376.58 1380.66,376.66 "
-       id="polygon34002" />
-    <line
-       x1="1687.05"
-       y1="559.15002"
-       x2="1686.84"
-       y2="557.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34004" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1386.11,389.9 1382.84,376.29 1383.25,376.07 "
-       id="polygon34006" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1383.23,375.66 1383.6,375.6 1383.5,375.4 "
-       id="polygon34008" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1384.04,390.51 1380.66,376.66 1381.18,376.67 "
-       id="polygon34010" />
-    <line
-       x1="1552.2"
-       y1="486.84"
-       x2="1555.38"
-       y2="488.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34012" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1385.7,390.13 1382.32,376.48 1382.84,376.29 "
-       id="polygon34014" />
-    <line
-       x1="1666.88"
-       y1="542.34998"
-       x2="1667.48"
-       y2="540.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1384.61,390.45 1381.18,376.67 1381.75,376.61 "
-       id="polygon34018" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1385.18,390.31 1381.75,376.61 1382.32,376.48 "
-       id="polygon34020" />
-    <line
-       x1="1269.71"
-       y1="508.19"
-       x2="1267.55"
-       y2="506.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34022" />
-    <line
-       x1="1525.14"
-       y1="437.32001"
-       x2="1524.74"
-       y2="440.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34024" />
-    <line
-       x1="1387.36"
-       y1="304.26999"
-       x2="1387.25"
-       y2="304.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34026" />
-    <line
-       x1="1617.05"
-       y1="448.82001"
-       x2="1617.16"
-       y2="445.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34028" />
-    <line
-       x1="1555.38"
-       y1="488.16"
-       x2="1558.64"
-       y2="489.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34030" />
-    <line
-       x1="1687.1899"
-       y1="560.69"
-       x2="1687.05"
-       y2="559.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34032" />
-    <line
-       x1="1594.5"
-       y1="496.95001"
-       x2="1595.4"
-       y2="500.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34034" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1594.7,587.61 1580.95,590.76 1580.7,590.67 "
-       id="polygon34036" />
-    <line
-       x1="1351.13"
-       y1="529"
-       x2="1347.89"
-       y2="529.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34038" />
-    <line
-       x1="1525.77"
-       y1="434.23999"
-       x2="1525.14"
-       y2="437.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34040" />
-    <line
-       x1="1368.5699"
-       y1="355.32001"
-       x2="1370.76"
-       y2="356.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34042" />
-    <line
-       x1="1558.64"
-       y1="489.23999"
-       x2="1561.97"
-       y2="490.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34044" />
-    <line
-       x1="1667.48"
-       y1="540.81"
-       x2="1668.25"
-       y2="539.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34046" />
-    <polygon
-       style="opacity:1;fill:#000099"
-       points="1379.89,376.23 1377.11,362.16 1377.02,362.39 "
-       id="polygon34048" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1377.12,362.59 1379.98,376.43 1380.25,376.58 "
-       id="polygon34050" />
-    <polygon
-       style="opacity:1;fill:#0000d4"
-       points="1595.42,591.08 1581.66,594.23 1581.83,593.97 "
-       id="polygon34052" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1447.1,559.61 1442.96,566.91 1443.37,566.61 "
-       id="polygon34054" />
-    <line
-       x1="1616.7"
-       y1="452.07999"
-       x2="1617.05"
-       y2="448.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34056" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1444.85,558.7 1444.29,558.35 1444.55,558.85 "
-       id="polygon34058" />
-    <polygon
-       style="opacity:1;fill:#0000db"
-       points="1448.19,550.42 1448.56,550.48 1448.63,550.89 "
-       id="polygon34060" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1452.06,542.9 1448.28,550.95 1452.11,543.15 "
-       id="polygon34062" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1448.28,550.94 1444.29,558.36 1444.55,558.86 "
-       id="polygon34064" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1444.55,558.86 1448.28,550.94 1448.54,551.43 "
-       id="polygon34066" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.55,558.85 1440.42,566.15 1440.82,566.57 "
-       id="polygon34068" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1446.59,559.77 1442.46,567.06 1442.96,566.91 "
-       id="polygon34070" />
-    <line
-       x1="1376.25"
-       y1="327.01999"
-       x2="1373.04"
-       y2="320.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34072" />
-    <line
-       x1="1561.97"
-       y1="490.07999"
-       x2="1565.36"
-       y2="490.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34074" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.38,362.73 1380.25,376.58 1380.66,376.66 "
-       id="polygon34076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.96,559.27 1440.82,566.57 1441.33,566.88 "
-       id="polygon34078" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1446.03,559.76 1441.89,567.05 1442.46,567.06 "
-       id="polygon34080" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1445.46,559.59 1441.33,566.88 1441.89,567.05 "
-       id="polygon34082" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1594.22,587.6 1580.47,590.75 1580.31,591.01 "
-       id="polygon34084" />
-    <line
-       x1="1687.25"
-       y1="562.17999"
-       x2="1687.1899"
-       y2="560.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34086" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1380.39,362.22 1383.25,376.07 1383.51,375.83 "
-       id="polygon34088" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1323.88,639.77 1334.71,634.92 1334.3,634.68 "
-       id="polygon34090" />
-    <line
-       x1="1421.38"
-       y1="435.66"
-       x2="1420.6899"
-       y2="438.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34092" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1324.72,642.68 1335.56,637.82 1335.71,637.41 "
-       id="polygon34094" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.8,362.82 1380.66,376.66 1381.18,376.68 "
-       id="polygon34096" />
-    <line
-       x1="1526.64"
-       y1="431.25"
-       x2="1525.77"
-       y2="434.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34098" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1379.98,362.44 1382.84,376.29 1383.25,376.07 "
-       id="polygon34100" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1324.26,640.15 1335.1,635.3 1334.71,634.92 "
-       id="polygon34102" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.06,587.86 1580.31,591.01 1580.22,591.41 "
-       id="polygon34104" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1608.61,588.02 1594.66,590.82 1594.92,591.09 "
-       id="polygon34106" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1594.94,591.07 1581.18,594.22 1581.44,594.31 "
-       id="polygon34108" />
-    <line
-       x1="1565.36"
-       y1="490.67001"
-       x2="1568.77"
-       y2="491"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34110" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1324.87,642.27 1335.71,637.41 1335.74,636.9 "
-       id="polygon34112" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1378.32,362.83 1381.18,376.68 1381.75,376.61 "
-       id="polygon34114" />
-    <line
-       x1="1668.25"
-       y1="539.28998"
-       x2="1669.16"
-       y2="537.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34116" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1379.46,362.63 1382.32,376.48 1382.84,376.29 "
-       id="polygon34118" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1324.57,640.64 1335.42,635.79 1335.1,635.3 "
-       id="polygon34120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1378.89,362.76 1381.75,376.61 1382.32,376.48 "
-       id="polygon34122" />
-    <polygon
-       style="opacity:1;fill:#0000c6"
-       points="1383.6,375.6 1380.65,361.98 1380.74,361.75 "
-       id="polygon34124" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1324.9,641.76 1335.74,636.9 1335.64,636.34 "
-       id="polygon34126" />
-    <line
-       x1="1616.1"
-       y1="455.32999"
-       x2="1616.7"
-       y2="452.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34128" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1324.8,641.2 1335.64,636.34 1335.42,635.79 "
-       id="polygon34130" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1380.25,376.58 1377.12,362.59 1377.38,362.73 "
-       id="polygon34132" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1593.97,588.26 1580.22,591.41 1580.21,591.92 "
-       id="polygon34134" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1594.67,590.81 1580.91,593.96 1581.18,594.22 "
-       id="polygon34136" />
-    <line
-       x1="1267.55"
-       y1="506.95999"
-       x2="1265.62"
-       y2="505.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34138" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1593.96,588.76 1580.21,591.92 1580.29,592.48 "
-       id="polygon34140" />
-    <line
-       x1="1568.77"
-       y1="491"
-       x2="1572.2"
-       y2="491.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34142" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.41,590.4 1580.66,593.55 1580.91,593.96 "
-       id="polygon34144" />
-    <polygon
-       style="opacity:1;fill:#0000ad"
-       points="1383.51,375.83 1380.39,362.22 1380.65,361.98 "
-       id="polygon34146" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.04,589.33 1580.29,592.48 1580.44,593.04 "
-       id="polygon34148" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.2,589.89 1580.44,593.04 1580.66,593.55 "
-       id="polygon34150" />
-    <line
-       x1="1687.23"
-       y1="563.64001"
-       x2="1687.25"
-       y2="562.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34152" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1380.66,376.66 1377.38,362.73 1377.8,362.82 "
-       id="polygon34154" />
-    <line
-       x1="1527.71"
-       y1="428.37"
-       x2="1526.64"
-       y2="431.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34156" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1383.25,376.07 1379.98,362.44 1380.39,362.22 "
-       id="polygon34158" />
-    <line
-       x1="1615.26"
-       y1="458.54001"
-       x2="1616.1"
-       y2="455.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34160" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.18,376.68 1377.8,362.82 1378.32,362.83 "
-       id="polygon34162" />
-    <line
-       x1="1572.2"
-       y1="491.07999"
-       x2="1575.62"
-       y2="490.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34164" />
-    <line
-       x1="1669.16"
-       y1="537.79999"
-       x2="1670.23"
-       y2="536.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34166" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1382.84,376.29 1379.46,362.63 1379.98,362.44 "
-       id="polygon34168" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1381.75,376.61 1378.32,362.83 1378.89,362.76 "
-       id="polygon34170" />
-    <line
-       x1="1354.1899"
-       y1="528.39001"
-       x2="1351.13"
-       y2="529"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34172" />
-    <line
-       x1="1595.4"
-       y1="500.38"
-       x2="1595.98"
-       y2="503.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34174" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1382.32,376.48 1378.89,362.76 1379.46,362.63 "
-       id="polygon34176" />
-    <line
-       x1="1388.24"
-       y1="305.59"
-       x2="1388.14"
-       y2="305.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34178" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1333.9,634.61 1323.46,639.53 1323.06,639.46 "
-       id="polygon34180" />
-    <line
-       x1="1575.62"
-       y1="490.89999"
-       x2="1579.02"
-       y2="490.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34182" />
-    <line
-       x1="1614.1801"
-       y1="461.70001"
-       x2="1615.26"
-       y2="458.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34184" />
-    <line
-       x1="1370.76"
-       y1="356.88"
-       x2="1373.09"
-       y2="358.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34186" />
-    <line
-       x1="1687.14"
-       y1="565.03998"
-       x2="1687.23"
-       y2="563.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34188" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1580.31,591.01 1594.22,587.6 1594.06,587.86 "
-       id="polygon34190" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1334.3,634.68 1323.88,639.77 1323.46,639.53 "
-       id="polygon34192" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1335.56,637.82 1324.46,642.95 1324.72,642.68 "
-       id="polygon34194" />
-    <line
-       x1="1529"
-       y1="425.62"
-       x2="1527.71"
-       y2="428.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34196" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1440.07,565.13 1444.21,557.83 1441.95,561.68 "
-       id="polygon34198" />
-    <line
-       x1="1388.4"
-       y1="306.14999"
-       x2="1388.3199"
-       y2="305.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34200" />
-    <line
-       x1="1579.02"
-       y1="490.47"
-       x2="1582.36"
-       y2="489.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34202" />
-    <line
-       x1="1670.23"
-       y1="536.34998"
-       x2="1671.4399"
-       y2="534.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34204" />
-    <line
-       x1="1421.8101"
-       y1="433.04999"
-       x2="1421.38"
-       y2="435.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34206" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.22,591.41 1594.06,587.86 1593.97,588.26 "
-       id="polygon34208" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1334.71,634.92 1324.26,640.15 1323.88,639.77 "
-       id="polygon34210" />
-    <line
-       x1="1612.87"
-       y1="464.79001"
-       x2="1614.1801"
-       y2="461.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34212" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1335.71,637.41 1324.72,642.68 1324.87,642.27 "
-       id="polygon34214" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1440.16,565.65 1444.21,557.83 1444.29,558.35 "
-       id="polygon34216" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1581.18,594.22 1594.67,590.81 1594.94,591.07 "
-       id="polygon34218" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1374.32,348.72 1377.12,362.58 1377.38,362.73 "
-       id="polygon34220" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1443.37,566.61 1447.1,559.61 1447.51,559.31 "
-       id="polygon34222" />
-    <line
-       x1="1582.36"
-       y1="489.78"
-       x2="1585.65"
-       y2="488.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34224" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1335.1,635.3 1324.57,640.64 1324.26,640.15 "
-       id="polygon34226" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1335.74,636.9 1324.87,642.27 1324.9,641.76 "
-       id="polygon34228" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.21,591.92 1593.97,588.26 1593.96,588.76 "
-       id="polygon34230" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1335.42,635.79 1324.8,641.2 1324.57,640.64 "
-       id="polygon34232" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1335.64,636.34 1324.9,641.76 1324.8,641.2 "
-       id="polygon34234" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.91,593.96 1594.41,590.4 1594.67,590.81 "
-       id="polygon34236" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1442.96,566.91 1446.59,559.77 1447.1,559.61 "
-       id="polygon34238" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1440.82,566.57 1444.55,558.85 1444.96,559.27 "
-       id="polygon34240" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.29,592.48 1593.96,588.76 1594.04,589.33 "
-       id="polygon34242" />
-    <line
-       x1="1611.33"
-       y1="467.76999"
-       x2="1612.87"
-       y2="464.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.66,593.55 1594.2,589.89 1594.41,590.4 "
-       id="polygon34246" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1374.59,348.87 1377.38,362.73 1377.8,362.82 "
-       id="polygon34248" />
-    <polygon
-       style="opacity:1;fill:#000097"
-       points="1442.46,567.06 1446.03,559.76 1446.59,559.77 "
-       id="polygon34250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1580.44,593.04 1594.04,589.33 1594.2,589.89 "
-       id="polygon34252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1441.33,566.88 1444.96,559.27 1445.46,559.59 "
-       id="polygon34254" />
-    <line
-       x1="1585.65"
-       y1="488.85001"
-       x2="1588.86"
-       y2="487.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34256" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1441.89,567.05 1445.46,559.59 1446.03,559.76 "
-       id="polygon34258" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1374.57,334.7 1377.2,348.6 1377.61,348.38 "
-       id="polygon34260" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1377.6,348.36 1380.39,362.23 1380.66,361.99 "
-       id="polygon34262" />
-    <line
-       x1="1686.99"
-       y1="566.39001"
-       x2="1687.14"
-       y2="565.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34264" />
-    <line
-       x1="1388.5699"
-       y1="307.13"
-       x2="1388.52"
-       y2="306.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34266" />
-    <line
-       x1="1671.4399"
-       y1="534.95001"
-       x2="1672.79"
-       y2="533.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34268" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1375,348.95 1377.8,362.82 1378.32,362.83 "
-       id="polygon34270" />
-    <line
-       x1="1609.5699"
-       y1="470.64999"
-       x2="1611.33"
-       y2="467.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34272" />
-    <line
-       x1="1588.86"
-       y1="487.67001"
-       x2="1591.96"
-       y2="486.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34274" />
-    <line
-       x1="1530.5"
-       y1="423.01999"
-       x2="1529"
-       y2="425.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34276" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1377.19,348.59 1379.98,362.45 1380.39,362.23 "
-       id="polygon34278" />
-    <line
-       x1="1265.62"
-       y1="505.82001"
-       x2="1263.9301"
-       y2="504.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1375.52,348.96 1378.32,362.83 1378.89,362.77 "
-       id="polygon34282" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1376.68,348.77 1379.46,362.64 1379.98,362.45 "
-       id="polygon34284" />
-    <line
-       x1="1591.96"
-       y1="486.25"
-       x2="1594.95"
-       y2="484.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34286" />
-    <line
-       x1="1607.6"
-       y1="473.39999"
-       x2="1609.5699"
-       y2="470.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34288" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1376.1,348.9 1378.89,362.77 1379.46,362.64 "
-       id="polygon34290" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1377.38,362.73 1374.32,348.72 1374.59,348.87 "
-       id="polygon34292" />
-    <line
-       x1="1594.95"
-       y1="484.60999"
-       x2="1597.8101"
-       y2="482.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34294" />
-    <line
-       x1="1595.98"
-       y1="503.89001"
-       x2="1596.25"
-       y2="507.47"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34296" />
-    <line
-       x1="1605.42"
-       y1="476"
-       x2="1607.6"
-       y2="473.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34298" />
-    <line
-       x1="1357.0601"
-       y1="527.59003"
-       x2="1354.1899"
-       y2="528.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34300" />
-    <line
-       x1="1597.8101"
-       y1="482.75"
-       x2="1600.51"
-       y2="480.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34302" />
-    <line
-       x1="1603.05"
-       y1="478.42999"
-       x2="1605.42"
-       y2="476"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34304" />
-    <line
-       x1="1600.51"
-       y1="480.69"
-       x2="1603.05"
-       y2="478.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34306" />
-    <line
-       x1="1388.62"
-       y1="308.26001"
-       x2="1388.61"
-       y2="307.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34308" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1380.66,361.99 1377.6,348.36 1377.86,348.13 "
-       id="polygon34310" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1377.8,362.82 1374.59,348.87 1375,348.95 "
-       id="polygon34312" />
-    <line
-       x1="1672.79"
-       y1="533.60999"
-       x2="1674.27"
-       y2="532.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34314" />
-    <line
-       x1="1686.77"
-       y1="567.69"
-       x2="1686.99"
-       y2="566.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34316" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1380.39,362.23 1377.19,348.59 1377.6,348.36 "
-       id="polygon34318" />
-    <line
-       x1="1309.61"
-       y1="425.14999"
-       x2="1310.3101"
-       y2="425.42001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34320" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1378.32,362.83 1375,348.95 1375.52,348.96 "
-       id="polygon34322" />
-    <line
-       x1="1388.5699"
-       y1="309.07001"
-       x2="1388.6"
-       y2="308.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34324" />
-    <line
-       x1="1373.09"
-       y1="358.63"
-       x2="1375.5601"
-       y2="360.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34326" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1379.98,362.45 1376.68,348.77 1377.19,348.59 "
-       id="polygon34328" />
-    <line
-       x1="1532.1801"
-       y1="420.57001"
-       x2="1530.5"
-       y2="423.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34330" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1378.89,362.77 1375.52,348.96 1376.1,348.9 "
-       id="polygon34332" />
-    <line
-       x1="1421.97"
-       y1="430.29999"
-       x2="1421.8101"
-       y2="433.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34334" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1379.46,362.64 1376.1,348.9 1376.68,348.77 "
-       id="polygon34336" />
-    <line
-       x1="1674.27"
-       y1="532.34998"
-       x2="1675.86"
-       y2="531.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34338" />
-    <line
-       x1="1388.37"
-       y1="310.34"
-       x2="1388.45"
-       y2="309.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34340" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1608.66,584.79 1594.72,587.59 1594.48,587.5 "
-       id="polygon34342" />
-    <line
-       x1="1686.48"
-       y1="568.90997"
-       x2="1686.77"
-       y2="567.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34344" />
-    <line
-       x1="1387.99"
-       y1="311.64999"
-       x2="1388.14"
-       y2="311.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34346" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1311.81,644.5 1322.71,639.57 1322.45,639.84 "
-       id="polygon34348" />
-    <line
-       x1="1381.34"
-       y1="318.14999"
-       x2="1381.8101"
-       y2="318.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34350" />
-    <line
-       x1="1387.65"
-       y1="312.51999"
-       x2="1387.83"
-       y2="312.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34352" />
-    <polygon
-       style="opacity:1;fill:#000098"
-       points="1374.23,348.5 1371.68,334.39 1371.59,334.61 "
-       id="polygon34354" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1371.69,334.81 1374.32,348.7 1374.59,348.86 "
-       id="polygon34356" />
-    <line
-       x1="1675.86"
-       y1="531.15997"
-       x2="1677.5699"
-       y2="530.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34358" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1594.48,587.5 1608.66,584.79 1608.42,584.69 "
-       id="polygon34360" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1608.21,584.78 1594.27,587.58 1594.11,587.84 "
-       id="polygon34362" />
-    <line
-       x1="1387.22"
-       y1="313.38"
-       x2="1387.45"
-       y2="312.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34364" />
-    <line
-       x1="1382.71"
-       y1="317.64999"
-       x2="1383.15"
-       y2="317.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34366" />
-    <line
-       x1="1534.04"
-       y1="418.29999"
-       x2="1532.1801"
-       y2="420.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34368" />
-    <polygon
-       style="opacity:1;fill:#0000df"
-       points="1377.59,347.57 1375.23,333.83 1374.97,333.68 "
-       id="polygon34370" />
-    <line
-       x1="1596.25"
-       y1="507.47"
-       x2="1596.1801"
-       y2="511.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34372" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1446.6,559.76 1446.03,559.43 1446.48,559.43 "
-       id="polygon34374" />
-    <line
-       x1="1383.5699"
-       y1="317.20001"
-       x2="1383.98"
-       y2="316.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34376" />
-    <polygon
-       style="opacity:1;fill:#0000da"
-       points="1445.46,559.59 1445.58,559.29 1446.03,559.43 "
-       id="polygon34378" />
-    <line
-       x1="1263.9301"
-       y1="504.78"
-       x2="1262.51"
-       y2="503.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34380" />
-    <line
-       x1="1386.4399"
-       y1="314.59"
-       x2="1386.72"
-       y2="314.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34382" />
-    <line
-       x1="1384.77"
-       y1="316.35001"
-       x2="1385.13"
-       y2="316.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34384" />
-    <line
-       x1="1385.8199"
-       y1="315.34"
-       x2="1386.14"
-       y2="314.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34386" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1371.96,334.96 1374.59,348.86 1375,348.94 "
-       id="polygon34388" />
-    <line
-       x1="1359.72"
-       y1="526.59003"
-       x2="1357.0601"
-       y2="527.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34390" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.05,585.04 1594.11,587.84 1594.03,588.24 "
-       id="polygon34392" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1377.87,348.14 1374.98,334.48 1375.24,334.25 "
-       id="polygon34394" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1374.05,334.88 1374.57,334.7 1375.45,341 "
-       id="polygon34396" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1372.23,320.79 1374.57,334.73 1374.98,334.52 "
-       id="polygon34398" />
-    <polygon
-       style="opacity:1;fill:#0000ae"
-       points="1374.98,334.48 1377.61,348.38 1377.87,348.14 "
-       id="polygon34400" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1372.37,335.05 1375,348.94 1375.52,348.96 "
-       id="polygon34402" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1607.97,585.44 1594.03,588.24 1594.02,588.75 "
-       id="polygon34404" />
-    <line
-       x1="1677.5699"
-       y1="530.07001"
-       x2="1679.39"
-       y2="529.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34406" />
-    <line
-       x1="1686.14"
-       y1="570.07001"
-       x2="1686.48"
-       y2="568.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34408" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1372.89,335.06 1375.52,348.96 1376.1,348.9 "
-       id="polygon34410" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1374.05,334.88 1376.68,348.78 1377.2,348.6 "
-       id="polygon34412" />
-    <line
-       x1="1421.87"
-       y1="427.42999"
-       x2="1421.97"
-       y2="430.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34414" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1373.47,335.01 1376.1,348.9 1376.68,348.78 "
-       id="polygon34416" />
-    <line
-       x1="1375.5601"
-       y1="360.54999"
-       x2="1378.13"
-       y2="362.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34418" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.37,587.61 1594.43,590.41 1594.66,590.82 "
-       id="polygon34420" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1607.96,585.95 1594.02,588.75 1594.09,589.32 "
-       id="polygon34422" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1312.96,644.71 1323.86,639.77 1323.45,639.53 "
-       id="polygon34424" />
-    <polygon
-       style="opacity:1;fill:#0000c7"
-       points="1377.96,347.92 1375.24,334.25 1375.33,334.02 "
-       id="polygon34426" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.17,587.09 1594.23,589.89 1594.43,590.41 "
-       id="polygon34428" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.03,586.52 1594.09,589.32 1594.23,589.89 "
-       id="polygon34430" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1313.82,647.62 1324.72,642.68 1324.87,642.27 "
-       id="polygon34432" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1374.59,348.86 1371.69,334.81 1371.96,334.96 "
-       id="polygon34434" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1313.35,645.09 1324.25,640.16 1323.86,639.77 "
-       id="polygon34436" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1313.97,647.21 1324.87,642.27 1324.89,641.76 "
-       id="polygon34438" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1313.67,645.59 1324.57,640.65 1324.25,640.16 "
-       id="polygon34440" />
-    <line
-       x1="1679.39"
-       y1="529.07001"
-       x2="1681.3"
-       y2="528.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34442" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1314,646.7 1324.89,641.76 1324.79,641.2 "
-       id="polygon34444" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1375,348.94 1371.96,334.96 1372.37,335.05 "
-       id="polygon34446" />
-    <line
-       x1="1536.05"
-       y1="416.23001"
-       x2="1534.04"
-       y2="418.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34448" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1313.89,646.14 1324.79,641.2 1324.57,640.65 "
-       id="polygon34450" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1377.61,348.38 1374.57,334.7 1374.98,334.48 "
-       id="polygon34452" />
-    <line
-       x1="1310.3101"
-       y1="425.42001"
-       x2="1311.26"
-       y2="425.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1375.52,348.96 1372.37,335.05 1372.89,335.06 "
-       id="polygon34456" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1377.2,348.6 1374.57,334.7 1375.45,341 "
-       id="polygon34458" />
-    <line
-       x1="1685.75"
-       y1="571.15002"
-       x2="1686.14"
-       y2="570.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34460" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1376.1,348.9 1372.89,335.06 1373.47,335.01 "
-       id="polygon34462" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1376.68,348.78 1373.47,335.01 1374.05,334.88 "
-       id="polygon34464" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1594.11,587.84 1608.21,584.78 1608.05,585.04 "
-       id="polygon34466" />
-    <line
-       x1="1681.3"
-       y1="528.19"
-       x2="1683.29"
-       y2="527.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34468" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1595.16,591.18 1608.86,588.29 1609.1,588.38 "
-       id="polygon34470" />
-    <line
-       x1="1596.1801"
-       y1="511.10001"
-       x2="1595.8"
-       y2="514.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34472" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.03,588.24 1608.05,585.04 1607.97,585.44 "
-       id="polygon34474" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1594.92,591.09 1608.61,588.02 1608.86,588.29 "
-       id="polygon34476" />
-    <polygon
-       style="opacity:1;fill:#0000e4"
-       points="1451.77,551.47 1447.77,558.89 1447.86,558.4 "
-       id="polygon34478" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.02,588.75 1607.97,585.44 1607.96,585.95 "
-       id="polygon34480" />
-    <line
-       x1="1683.29"
-       y1="527.40997"
-       x2="1685.35"
-       y2="526.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34482" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1323.05,639.46 1312.55,644.47 1312.16,644.4 "
-       id="polygon34484" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.66,590.82 1608.37,587.61 1608.61,588.02 "
-       id="polygon34486" />
-    <line
-       x1="1362.17"
-       y1="525.40997"
-       x2="1359.72"
-       y2="526.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34488" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.09,589.32 1607.96,585.95 1608.03,586.52 "
-       id="polygon34490" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.43,590.41 1608.17,587.09 1608.37,587.61 "
-       id="polygon34492" />
-    <line
-       x1="1421.5"
-       y1="424.45001"
-       x2="1421.87"
-       y2="427.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34494" />
-    <line
-       x1="1538.23"
-       y1="414.35001"
-       x2="1536.05"
-       y2="416.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34496" />
-    <line
-       x1="1373.04"
-       y1="320.32999"
-       x2="1380.88"
-       y2="318.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34498" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1594.23,589.89 1608.03,586.52 1608.17,587.09 "
-       id="polygon34500" />
-    <line
-       x1="1262.51"
-       y1="503.85001"
-       x2="1261.34"
-       y2="503.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34502" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1371.68,334.35 1369.59,320.19 1369.33,320.42 "
-       id="polygon34504" />
-    <line
-       x1="1378.13"
-       y1="362.64999"
-       x2="1380.8"
-       y2="364.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34506" />
-    <line
-       x1="1685.3101"
-       y1="572.15002"
-       x2="1685.75"
-       y2="571.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34508" />
-    <polygon
-       style="opacity:1;fill:#00007a"
-       points="1369.34,320.84 1371.68,334.78 1371.95,334.94 "
-       id="polygon34510" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1324.72,642.68 1313.56,647.89 1313.82,647.62 "
-       id="polygon34512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.54,551.43 1444.55,558.86 1444.96,559.28 "
-       id="polygon34514" />
-    <line
-       x1="1685.35"
-       y1="526.76001"
-       x2="1687.48"
-       y2="526.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34516" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1450.59,552.34 1446.6,559.76 1447.11,559.6 "
-       id="polygon34518" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1448.95,551.86 1444.96,559.28 1445.46,559.59 "
-       id="polygon34520" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1450.03,552.33 1446.03,559.75 1446.6,559.76 "
-       id="polygon34522" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1323.86,639.77 1313.35,645.09 1312.96,644.71 "
-       id="polygon34524" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1449.46,552.17 1445.46,559.59 1446.03,559.75 "
-       id="polygon34526" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1324.25,640.16 1313.67,645.59 1313.35,645.09 "
-       id="polygon34528" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1324.89,641.76 1313.97,647.21 1314,646.7 "
-       id="polygon34530" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1324.57,640.65 1313.89,646.14 1313.67,645.59 "
-       id="polygon34532" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1324.79,641.2 1314,646.7 1313.89,646.14 "
-       id="polygon34534" />
-    <line
-       x1="1687.48"
-       y1="526.23999"
-       x2="1689.64"
-       y2="525.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34536" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1370.02,321.09 1372.37,335.03 1372.89,335.06 "
-       id="polygon34538" />
-    <line
-       x1="1689.64"
-       y1="525.84998"
-       x2="1691.85"
-       y2="525.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34540" />
-    <line
-       x1="1595.8"
-       y1="514.75"
-       x2="1595.09"
-       y2="518.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34542" />
-    <line
-       x1="1684.8199"
-       y1="573.07001"
-       x2="1685.3101"
-       y2="572.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34544" />
-    <line
-       x1="1540.54"
-       y1="412.69"
-       x2="1538.23"
-       y2="414.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34546" />
-    <line
-       x1="1691.85"
-       y1="525.59998"
-       x2="1694.08"
-       y2="525.47998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34548" />
-    <line
-       x1="1420.88"
-       y1="421.35001"
-       x2="1421.5"
-       y2="424.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34550" />
-    <line
-       x1="1311.26"
-       y1="425.89001"
-       x2="1312.4399"
-       y2="426.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34552" />
-    <line
-       x1="1694.08"
-       y1="525.47998"
-       x2="1696.3199"
-       y2="525.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34554" />
-    <line
-       x1="1380.8"
-       y1="364.92001"
-       x2="1383.54"
-       y2="367.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34556" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1312.57,644.82 1312.55,644.47 1312.15,644.4 "
-       id="polygon34558" />
-    <polygon
-       style="opacity:1;fill:#0000d6"
-       points="1623.43,586.04 1609.24,588.32 1609.39,588.07 "
-       id="polygon34560" />
-    <line
-       x1="1364.39"
-       y1="524.03998"
-       x2="1362.17"
-       y2="525.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34562" />
-    <line
-       x1="1696.3199"
-       y1="525.52002"
-       x2="1697.35"
-       y2="525.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34564" />
-    <line
-       x1="1256.24"
-       y1="600.07001"
-       x2="1252.3"
-       y2="598.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34566" />
-    <line
-       x1="1260.23"
-       y1="601.27002"
-       x2="1256.24"
-       y2="600.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34568" />
-    <line
-       x1="1252.3"
-       y1="598.79999"
-       x2="1248.4399"
-       y2="597.46997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34570" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1622.47,582.47 1608.28,584.75 1608.14,585.01 "
-       id="polygon34572" />
-    <line
-       x1="1697.35"
-       y1="525.77002"
-       x2="1698.38"
-       y2="526.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34574" />
-    <line
-       x1="1264.25"
-       y1="602.35999"
-       x2="1260.23"
-       y2="601.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34576" />
-    <line
-       x1="1248.4399"
-       y1="597.46997"
-       x2="1244.66"
-       y2="596.08002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34578" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1622.33,582.73 1608.14,585.01 1608.05,585.42 "
-       id="polygon34580" />
-    <line
-       x1="1542.96"
-       y1="411.26001"
-       x2="1540.54"
-       y2="412.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34582" />
-    <line
-       x1="1698.38"
-       y1="526.07001"
-       x2="1699.39"
-       y2="526.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34584" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1447.52,559.3 1451.11,552.18 1451.51,551.88 "
-       id="polygon34586" />
-    <line
-       x1="1595.09"
-       y1="518.39001"
-       x2="1594.05"
-       y2="521.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34588" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1622.8,585.75 1608.6,588.03 1608.83,588.3 "
-       id="polygon34590" />
-    <line
-       x1="1268.27"
-       y1="603.35999"
-       x2="1264.25"
-       y2="602.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34592" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.25,583.13 1608.05,585.42 1608.04,585.93 "
-       id="polygon34594" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1444.96,559.28 1448.54,551.43 1448.95,551.86 "
-       id="polygon34596" />
-    <line
-       x1="1699.39"
-       y1="526.41998"
-       x2="1700.4"
-       y2="526.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34598" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1446.6,559.76 1450.03,552.33 1450.59,552.34 "
-       id="polygon34600" />
-    <line
-       x1="1244.66"
-       y1="596.08002"
-       x2="1241"
-       y2="594.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34602" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1445.46,559.59 1448.95,551.86 1449.46,552.17 "
-       id="polygon34604" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1446.03,559.75 1449.46,552.17 1450.03,552.33 "
-       id="polygon34606" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.59,585.33 1608.39,587.61 1608.6,588.03 "
-       id="polygon34608" />
-    <line
-       x1="1420"
-       y1="418.17001"
-       x2="1420.88"
-       y2="421.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34610" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.23,583.65 1608.04,585.93 1608.09,586.51 "
-       id="polygon34612" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1300.86,649.52 1311.8,644.5 1311.55,644.78 "
-       id="polygon34614" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.41,584.8 1608.21,587.09 1608.39,587.61 "
-       id="polygon34616" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.29,584.23 1608.09,586.51 1608.21,587.09 "
-       id="polygon34618" />
-    <line
-       x1="1700.4"
-       y1="526.82001"
-       x2="1701.39"
-       y2="527.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34620" />
-    <line
-       x1="1383.54"
-       y1="367.35999"
-       x2="1386.33"
-       y2="369.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34622" />
-    <line
-       x1="1272.29"
-       y1="604.23999"
-       x2="1268.27"
-       y2="603.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34624" />
-    <line
-       x1="1701.39"
-       y1="527.27002"
-       x2="1702.37"
-       y2="527.78003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34626" />
-    <line
-       x1="1241"
-       y1="594.65997"
-       x2="1237.46"
-       y2="593.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34628" />
-    <line
-       x1="1702.37"
-       y1="527.78003"
-       x2="1703.3199"
-       y2="528.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34630" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1608.14,585.01 1622.47,582.47 1622.33,582.73 "
-       id="polygon34632" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1609.05,588.41 1623.02,586.02 1623.24,586.13 "
-       id="polygon34634" />
-    <line
-       x1="1703.3199"
-       y1="528.33002"
-       x2="1704.24"
-       y2="528.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34636" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1302.01,649.72 1312.96,644.71 1312.55,644.47 "
-       id="polygon34638" />
-    <line
-       x1="1545.48"
-       y1="410.06"
-       x2="1542.96"
-       y2="411.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34640" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1302.88,652.64 1313.82,647.62 1313.97,647.21 "
-       id="polygon34642" />
-    <line
-       x1="1366.37"
-       y1="522.46997"
-       x2="1364.39"
-       y2="524.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34644" />
-    <line
-       x1="1704.24"
-       y1="528.92999"
-       x2="1705.14"
-       y2="529.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34646" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1608.05,585.42 1622.33,582.73 1622.25,583.13 "
-       id="polygon34648" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1302.39,650.11 1313.34,645.1 1312.96,644.71 "
-       id="polygon34650" />
-    <line
-       x1="1312.4399"
-       y1="426.54001"
-       x2="1313.85"
-       y2="427.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34652" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1608.83,588.3 1622.8,585.75 1623.02,586.02 "
-       id="polygon34654" />
-    <line
-       x1="1276.28"
-       y1="604.98999"
-       x2="1272.29"
-       y2="604.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34656" />
-    <line
-       x1="1594.05"
-       y1="521.98999"
-       x2="1592.7"
-       y2="525.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34658" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1303.02,652.23 1313.97,647.21 1313.99,646.7 "
-       id="polygon34660" />
-    <line
-       x1="1418.89"
-       y1="414.92001"
-       x2="1420"
-       y2="418.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34662" />
-    <line
-       x1="1705.14"
-       y1="529.57001"
-       x2="1706"
-       y2="530.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34664" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1302.71,650.61 1313.66,645.59 1313.34,645.1 "
-       id="polygon34666" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1303.04,651.72 1313.99,646.7 1313.89,646.14 "
-       id="polygon34668" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.04,585.93 1622.25,583.13 1622.23,583.65 "
-       id="polygon34670" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1302.93,651.16 1313.89,646.14 1313.66,645.59 "
-       id="polygon34672" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.6,588.03 1622.59,585.33 1622.8,585.75 "
-       id="polygon34674" />
-    <line
-       x1="1237.46"
-       y1="593.21002"
-       x2="1234.0699"
-       y2="591.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34676" />
-    <line
-       x1="1706"
-       y1="530.26001"
-       x2="1706.8199"
-       y2="531"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34678" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.09,586.51 1622.23,583.65 1622.29,584.23 "
-       id="polygon34680" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.39,587.61 1622.41,584.8 1622.59,585.33 "
-       id="polygon34682" />
-    <line
-       x1="1386.33"
-       y1="369.94"
-       x2="1389.15"
-       y2="372.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34684" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1608.21,587.09 1622.29,584.23 1622.41,584.8 "
-       id="polygon34686" />
-    <line
-       x1="1480.77"
-       y1="492.32001"
-       x2="1481.3199"
-       y2="487.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34688" />
-    <line
-       x1="1480.54"
-       y1="496.70001"
-       x2="1480.77"
-       y2="492.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34690" />
-    <line
-       x1="1707.62"
-       y1="531.77002"
-       x2="1708.37"
-       y2="532.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34692" />
-    <line
-       x1="1260.4301"
-       y1="502.39001"
-       x2="1259.8"
-       y2="501.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34694" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1451.78,551.46 1451.22,551.64 1451.43,551.3 "
-       id="polygon34696" />
-    <polygon
-       style="opacity:1;fill:#00009c"
-       points="1622.57,582.82 1622.66,582.39 1622.47,582.47 "
-       id="polygon34698" />
-    <line
-       x1="1708.37"
-       y1="532.59003"
-       x2="1709.0699"
-       y2="533.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34700" />
-    <line
-       x1="1480.63"
-       y1="501.10001"
-       x2="1480.54"
-       y2="496.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34702" />
-    <line
-       x1="1280.22"
-       y1="605.60999"
-       x2="1276.28"
-       y2="604.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34704" />
-    <line
-       x1="1709.0699"
-       y1="533.44"
-       x2="1709.73"
-       y2="534.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34706" />
-    <line
-       x1="1548.09"
-       y1="409.10001"
-       x2="1545.48"
-       y2="410.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34708" />
-    <line
-       x1="1709.73"
-       y1="534.33002"
-       x2="1710.35"
-       y2="535.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34710" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1312.15,644.4 1301.6,649.48 1301.2,649.41 "
-       id="polygon34712" />
-    <line
-       x1="1417.55"
-       y1="411.60001"
-       x2="1418.89"
-       y2="414.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34714" />
-    <line
-       x1="1481.05"
-       y1="505.48001"
-       x2="1480.63"
-       y2="501.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34716" />
-    <line
-       x1="1234.0699"
-       y1="591.77002"
-       x2="1230.83"
-       y2="590.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34718" />
-    <line
-       x1="1710.35"
-       y1="535.25"
-       x2="1710.91"
-       y2="536.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34720" />
-    <line
-       x1="1592.7"
-       y1="525.54999"
-       x2="1591.04"
-       y2="529.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34722" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1313.82,647.62 1302.62,652.91 1302.88,652.64 "
-       id="polygon34724" />
-    <line
-       x1="1710.91"
-       y1="536.20001"
-       x2="1711.42"
-       y2="537.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34726" />
-    <line
-       x1="1389.15"
-       y1="372.66"
-       x2="1391.97"
-       y2="375.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34728" />
-    <line
-       x1="1711.42"
-       y1="537.17999"
-       x2="1711.88"
-       y2="538.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34730" />
-    <line
-       x1="1481.79"
-       y1="509.82001"
-       x2="1481.05"
-       y2="505.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34732" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1312.96,644.71 1302.39,650.11 1302.01,649.72 "
-       id="polygon34734" />
-    <line
-       x1="1711.88"
-       y1="538.19"
-       x2="1712.29"
-       y2="539.21002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34736" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1313.34,645.1 1302.71,650.61 1302.39,650.11 "
-       id="polygon34738" />
-    <line
-       x1="1712.29"
-       y1="539.21002"
-       x2="1712.64"
-       y2="540.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34740" />
-    <line
-       x1="1368.09"
-       y1="520.71997"
-       x2="1366.37"
-       y2="522.46997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34742" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1313.66,645.59 1302.93,651.16 1302.71,650.61 "
-       id="polygon34744" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1313.89,646.14 1303.04,651.72 1302.93,651.16 "
-       id="polygon34746" />
-    <line
-       x1="1284.09"
-       y1="606.07001"
-       x2="1280.22"
-       y2="605.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34748" />
-    <line
-       x1="1712.64"
-       y1="540.25"
-       x2="1712.9399"
-       y2="541.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34750" />
-    <line
-       x1="1482.84"
-       y1="514.09998"
-       x2="1481.79"
-       y2="509.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34752" />
-    <line
-       x1="1415.99"
-       y1="408.23999"
-       x2="1417.55"
-       y2="411.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34754" />
-    <line
-       x1="1712.9399"
-       y1="541.32001"
-       x2="1713.1801"
-       y2="542.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34756" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1622.73,582.37 1637.4,580.81 1637.21,580.7 "
-       id="polygon34758" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1637.04,580.79 1622.56,582.45 1622.43,582.7 "
-       id="polygon34760" />
-    <line
-       x1="1713.1801"
-       y1="542.39001"
-       x2="1713.37"
-       y2="543.46997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34762" />
-    <line
-       x1="1230.83"
-       y1="590.32001"
-       x2="1227.78"
-       y2="588.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34764" />
-    <line
-       x1="1313.85"
-       y1="427.39001"
-       x2="1315.46"
-       y2="428.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34766" />
-    <line
-       x1="1391.97"
-       y1="375.51999"
-       x2="1394.78"
-       y2="378.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34768" />
-    <line
-       x1="1713.37"
-       y1="543.46997"
-       x2="1713.49"
-       y2="544.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34770" />
-    <line
-       x1="1550.77"
-       y1="408.39001"
-       x2="1548.09"
-       y2="409.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34772" />
-    <line
-       x1="1484.21"
-       y1="518.28998"
-       x2="1482.84"
-       y2="514.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34774" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1636.91,581.04 1622.43,582.7 1622.35,583.11 "
-       id="polygon34776" />
-    <line
-       x1="1713.49"
-       y1="544.54999"
-       x2="1713.5699"
-       y2="545.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34778" />
-    <line
-       x1="1496.25"
-       y1="457.20001"
-       x2="1499.23"
-       y2="454.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34780" />
-    <line
-       x1="1591.04"
-       y1="529.02002"
-       x2="1589.0699"
-       y2="532.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34782" />
-    <line
-       x1="1713.5699"
-       y1="545.64001"
-       x2="1713.58"
-       y2="546.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34784" />
-    <polygon
-       style="opacity:1;fill:#0000d7"
-       points="1623.47,585.8 1637.82,584.41 1637.95,584.15 "
-       id="polygon34786" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1637.27,584.1 1622.79,585.76 1622.98,586.04 "
-       id="polygon34788" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.84,581.45 1622.35,583.11 1622.33,583.63 "
-       id="polygon34790" />
-    <line
-       x1="1414.23"
-       y1="404.85001"
-       x2="1415.99"
-       y2="408.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34792" />
-    <line
-       x1="1713.58"
-       y1="546.72998"
-       x2="1713.54"
-       y2="547.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34794" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1637.09,583.68 1622.61,585.33 1622.79,585.76 "
-       id="polygon34796" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1301.62,649.83 1301.59,649.48 1301.2,649.41 "
-       id="polygon34798" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.82,581.97 1622.33,583.63 1622.37,584.21 "
-       id="polygon34800" />
-    <line
-       x1="1485.9"
-       y1="522.37"
-       x2="1484.21"
-       y2="518.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34802" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.95,583.14 1622.47,584.8 1622.61,585.33 "
-       id="polygon34804" />
-    <line
-       x1="1713.54"
-       y1="547.81"
-       x2="1713.45"
-       y2="548.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34806" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.86,582.55 1622.37,584.21 1622.47,584.8 "
-       id="polygon34808" />
-    <line
-       x1="1287.86"
-       y1="606.38"
-       x2="1284.09"
-       y2="606.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34810" />
-    <line
-       x1="1394.78"
-       y1="378.48999"
-       x2="1397.55"
-       y2="381.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34812" />
-    <line
-       x1="1713.45"
-       y1="548.89001"
-       x2="1713.3"
-       y2="549.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34814" />
-    <line
-       x1="1499.23"
-       y1="454.17001"
-       x2="1502.41"
-       y2="451.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34816" />
-    <line
-       x1="1713.3"
-       y1="549.96002"
-       x2="1713.11"
-       y2="551.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34818" />
-    <line
-       x1="1412.27"
-       y1="401.44"
-       x2="1414.23"
-       y2="404.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34820" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1452.42,543.91 1448.54,551.44 1448.95,551.86 "
-       id="polygon34822" />
-    <line
-       x1="1487.88"
-       y1="526.32001"
-       x2="1485.9"
-       y2="522.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34824" />
-    <line
-       x1="1713.11"
-       y1="551.01001"
-       x2="1712.86"
-       y2="552.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34826" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1452.83,544.33 1448.95,551.86 1449.46,552.16 "
-       id="polygon34828" />
-    <line
-       x1="1227.78"
-       y1="588.89001"
-       x2="1224.91"
-       y2="587.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34830" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1623.17,586.14 1637.46,584.38 1637.65,584.48 "
-       id="polygon34832" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1453.91,544.8 1450.03,552.33 1450.6,552.33 "
-       id="polygon34834" />
-    <polygon
-       style="opacity:1;fill:#000085"
-       points="1622.43,582.7 1637.04,580.79 1636.91,581.04 "
-       id="polygon34836" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1453.34,544.64 1449.46,552.16 1450.03,552.33 "
-       id="polygon34838" />
-    <line
-       x1="1397.55"
-       y1="381.57001"
-       x2="1400.27"
-       y2="384.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34840" />
-    <line
-       x1="1712.86"
-       y1="552.03998"
-       x2="1712.5601"
-       y2="553.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34842" />
-    <line
-       x1="1589.0699"
-       y1="532.38"
-       x2="1586.8"
-       y2="535.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34844" />
-    <line
-       x1="1369.5699"
-       y1="518.78998"
-       x2="1368.09"
-       y2="520.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34846" />
-    <line
-       x1="1553.5"
-       y1="407.92999"
-       x2="1550.77"
-       y2="408.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34848" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1622.98,586.04 1637.27,584.1 1637.46,584.38 "
-       id="polygon34850" />
-    <polygon
-       style="opacity:1;fill:#000075"
-       points="1622.35,583.11 1636.91,581.04 1636.84,581.45 "
-       id="polygon34852" />
-    <line
-       x1="1410.15"
-       y1="398.04001"
-       x2="1412.27"
-       y2="401.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34854" />
-    <line
-       x1="1712.5601"
-       y1="553.06"
-       x2="1712.22"
-       y2="554.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34856" />
-    <line
-       x1="1400.27"
-       y1="384.73001"
-       x2="1402.91"
-       y2="387.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34858" />
-    <line
-       x1="1490.16"
-       y1="530.10999"
-       x2="1487.88"
-       y2="526.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34860" />
-    <polygon
-       style="opacity:1;fill:#0000d8"
-       points="1637.84,584.16 1652.49,583.41 1652.61,583.15 "
-       id="polygon34862" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1652.04,583.09 1637.26,584.1 1637.42,584.39 "
-       id="polygon34864" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.79,585.76 1637.09,583.68 1637.27,584.1 "
-       id="polygon34866" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.33,583.63 1636.84,581.45 1636.82,581.97 "
-       id="polygon34868" />
-    <line
-       x1="1502.41"
-       y1="451.39001"
-       x2="1505.76"
-       y2="448.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34870" />
-    <line
-       x1="1712.22"
-       y1="554.04999"
-       x2="1711.84"
-       y2="555.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34872" />
-    <line
-       x1="1407.87"
-       y1="394.64999"
-       x2="1410.15"
-       y2="398.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34874" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.61,585.33 1636.95,583.14 1637.09,583.68 "
-       id="polygon34876" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.37,584.21 1636.82,581.97 1636.86,582.55 "
-       id="polygon34878" />
-    <line
-       x1="1402.91"
-       y1="387.98001"
-       x2="1405.45"
-       y2="391.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34880" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1622.47,584.8 1636.86,582.55 1636.95,583.14 "
-       id="polygon34882" />
-    <line
-       x1="1405.45"
-       y1="391.29001"
-       x2="1407.87"
-       y2="394.64999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34884" />
-    <line
-       x1="1291.53"
-       y1="606.52002"
-       x2="1287.86"
-       y2="606.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34886" />
-    <line
-       x1="1711.84"
-       y1="555.01001"
-       x2="1711.41"
-       y2="555.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34888" />
-    <line
-       x1="1315.46"
-       y1="428.42999"
-       x2="1317.28"
-       y2="429.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34890" />
-    <line
-       x1="1711.41"
-       y1="555.95001"
-       x2="1710.9399"
-       y2="556.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34892" />
-    <line
-       x1="1492.71"
-       y1="533.71997"
-       x2="1490.16"
-       y2="530.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34894" />
-    <line
-       x1="1586.8"
-       y1="535.62"
-       x2="1584.27"
-       y2="538.71002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34896" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1291.88,657.71 1302.88,652.63 1303.02,652.23 "
-       id="polygon34898" />
-    <line
-       x1="1224.91"
-       y1="587.51001"
-       x2="1222.25"
-       y2="586.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34900" />
-    <line
-       x1="1505.76"
-       y1="448.85999"
-       x2="1509.25"
-       y2="446.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34902" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1291.38,655.19 1302.39,650.11 1302,649.73 "
-       id="polygon34904" />
-    <line
-       x1="1710.4399"
-       y1="557.71997"
-       x2="1709.9"
-       y2="558.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34906" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1292.02,657.3 1303.02,652.23 1303.04,651.72 "
-       id="polygon34908" />
-    <line
-       x1="1556.25"
-       y1="407.73001"
-       x2="1553.5"
-       y2="407.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34910" />
-    <line
-       x1="1495.53"
-       y1="537.14001"
-       x2="1492.71"
-       y2="533.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34912" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1291.7,655.68 1302.71,650.61 1302.39,650.11 "
-       id="polygon34914" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1292.04,656.79 1303.04,651.72 1302.93,651.16 "
-       id="polygon34916" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1291.93,656.23 1302.93,651.16 1302.71,650.61 "
-       id="polygon34918" />
-    <line
-       x1="1709.9"
-       y1="558.56"
-       x2="1709.33"
-       y2="559.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34920" />
-    <polygon
-       style="opacity:1;fill:#000076"
-       points="1452.16,543.41 1448.28,550.95 1452.11,543.15 "
-       id="polygon34922" />
-    <line
-       x1="1709.33"
-       y1="559.35999"
-       x2="1708.74"
-       y2="560.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34924" />
-    <line
-       x1="1370.77"
-       y1="516.69"
-       x2="1369.5699"
-       y2="518.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34926" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1448.54,551.44 1452.16,543.41 1452.42,543.91 "
-       id="polygon34928" />
-    <line
-       x1="1295.0699"
-       y1="606.5"
-       x2="1291.53"
-       y2="606.52002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34930" />
-    <line
-       x1="1584.27"
-       y1="538.71002"
-       x2="1581.46"
-       y2="541.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34932" />
-    <line
-       x1="1498.59"
-       y1="540.34998"
-       x2="1495.53"
-       y2="537.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34934" />
-    <polygon
-       style="opacity:1;fill:#0000a3"
-       points="1637.29,580.7 1652.21,579.79 1652.06,579.68 "
-       id="polygon34936" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1651.91,579.76 1637.14,580.77 1637.03,581.03 "
-       id="polygon34938" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1450.6,552.33 1453.91,544.8 1454.48,544.8 "
-       id="polygon34940" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1449.46,552.16 1452.83,544.33 1453.34,544.64 "
-       id="polygon34942" />
-    <line
-       x1="1708.74"
-       y1="560.10999"
-       x2="1708.12"
-       y2="560.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34944" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1450.03,552.33 1453.34,544.64 1453.91,544.8 "
-       id="polygon34946" />
-    <line
-       x1="1509.25"
-       y1="446.60999"
-       x2="1512.88"
-       y2="444.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34948" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1651.8,580.02 1637.03,581.03 1636.95,581.44 "
-       id="polygon34950" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1301.2,649.41 1290.59,654.56 1290.2,654.48 "
-       id="polygon34952" />
-    <line
-       x1="1501.89"
-       y1="543.32001"
-       x2="1498.59"
-       y2="540.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34954" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.73,580.43 1636.95,581.44 1636.92,581.96 "
-       id="polygon34956" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1301.59,649.48 1291,654.8 1290.59,654.56 "
-       id="polygon34958" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1302.88,652.63 1291.62,657.98 1291.88,657.71 "
-       id="polygon34960" />
-    <line
-       x1="1222.25"
-       y1="586.16998"
-       x2="1219.8199"
-       y2="584.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34962" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.9,582.66 1637.12,583.67 1637.26,584.1 "
-       id="polygon34964" />
-    <line
-       x1="1559.01"
-       y1="407.79001"
-       x2="1556.25"
-       y2="407.73001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34966" />
-    <line
-       x1="1707.48"
-       y1="561.48999"
-       x2="1706.8199"
-       y2="562.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34968" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.7,580.95 1636.92,581.96 1636.95,582.55 "
-       id="polygon34970" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.79,582.13 1637.01,583.14 1637.12,583.67 "
-       id="polygon34972" />
-    <line
-       x1="1581.46"
-       y1="541.63"
-       x2="1578.4"
-       y2="544.34998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34974" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.72,581.54 1636.95,582.55 1637.01,583.14 "
-       id="polygon34976" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1302,649.73 1291.38,655.19 1291,654.8 "
-       id="polygon34978" />
-    <line
-       x1="1317.28"
-       y1="429.66"
-       x2="1319.28"
-       y2="431.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34980" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1302.39,650.11 1291.7,655.68 1291.38,655.19 "
-       id="polygon34982" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1303.04,651.72 1292.02,657.3 1292.04,656.79 "
-       id="polygon34984" />
-    <line
-       x1="1706.8199"
-       y1="562.10999"
-       x2="1706.15"
-       y2="562.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34986" />
-    <line
-       x1="1505.39"
-       y1="546.03998"
-       x2="1501.89"
-       y2="543.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34988" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1302.71,650.61 1291.93,656.23 1291.7,655.68 "
-       id="polygon34990" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1302.93,651.16 1292.04,656.79 1291.93,656.23 "
-       id="polygon34992" />
-    <line
-       x1="1512.88"
-       y1="444.64001"
-       x2="1516.6"
-       y2="442.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line34994" />
-    <polygon
-       style="opacity:1;fill:#0000a0"
-       points="1637.58,584.49 1652.19,583.38 1652.35,583.48 "
-       id="polygon34996" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1637.03,581.03 1651.91,579.76 1651.8,580.02 "
-       id="polygon34998" />
-    <line
-       x1="1298.47"
-       y1="606.28998"
-       x2="1295.0699"
-       y2="606.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35000" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1637.42,584.39 1652.04,583.09 1652.19,583.38 "
-       id="polygon35002" />
-    <polygon
-       style="opacity:1;fill:#0000dc"
-       points="1452.41,541.99 1452.71,542.23 1452.5,542.56 "
-       id="polygon35004" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1636.95,581.44 1651.8,580.02 1651.73,580.43 "
-       id="polygon35006" />
-    <line
-       x1="1578.4"
-       y1="544.34998"
-       x2="1575.11"
-       y2="546.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35008" />
-    <line
-       x1="1509.1"
-       y1="548.48999"
-       x2="1505.39"
-       y2="546.03998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35010" />
-    <line
-       x1="1371.72"
-       y1="514.40997"
-       x2="1370.77"
-       y2="516.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35012" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1637.26,584.1 1651.9,582.66 1652.04,583.09 "
-       id="polygon35014" />
-    <line
-       x1="1705.47"
-       y1="563.21002"
-       x2="1704.79"
-       y2="563.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35016" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.92,581.96 1651.73,580.43 1651.7,580.95 "
-       id="polygon35018" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1637.12,583.67 1651.79,582.13 1651.9,582.66 "
-       id="polygon35020" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1636.95,582.55 1651.7,580.95 1651.72,581.54 "
-       id="polygon35022" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1637.01,583.14 1651.72,581.54 1651.79,582.13 "
-       id="polygon35024" />
-    <polygon
-       style="opacity:1;fill:#0000dc"
-       points="1452.16,543.41 1452.5,543.36 1452.71,543.76 "
-       id="polygon35026" />
-    <line
-       x1="1561.77"
-       y1="408.10001"
-       x2="1559.01"
-       y2="407.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35028" />
-    <line
-       x1="1512.97"
-       y1="550.66998"
-       x2="1509.1"
-       y2="548.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35030" />
-    <line
-       x1="1575.11"
-       y1="546.85999"
-       x2="1571.6"
-       y2="549.14001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35032" />
-    <line
-       x1="1219.8199"
-       y1="584.90002"
-       x2="1217.61"
-       y2="583.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35034" />
-    <line
-       x1="1516.6"
-       y1="442.97"
-       x2="1520.41"
-       y2="441.59"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35036" />
-    <line
-       x1="1516.99"
-       y1="552.56"
-       x2="1512.97"
-       y2="550.66998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35038" />
-    <line
-       x1="1571.6"
-       y1="549.14001"
-       x2="1567.9"
-       y2="551.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35040" />
-    <line
-       x1="1301.7"
-       y1="605.90002"
-       x2="1298.47"
-       y2="606.28998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35042" />
-    <line
-       x1="1319.28"
-       y1="431.09"
-       x2="1321.45"
-       y2="432.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35044" />
-    <line
-       x1="1521.14"
-       y1="554.15997"
-       x2="1516.99"
-       y2="552.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35046" />
-    <line
-       x1="1567.9"
-       y1="551.16998"
-       x2="1564.03"
-       y2="552.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35048" />
-    <polygon
-       style="opacity:1;fill:#0000a4"
-       points="1652.13,579.68 1667.28,579.36 1667.15,579.25 "
-       id="polygon35050" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1667.03,579.32 1652,579.76 1651.9,580.02 "
-       id="polygon35052" />
-    <line
-       x1="1525.39"
-       y1="555.44"
-       x2="1521.14"
-       y2="554.15997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35054" />
-    <line
-       x1="1372.39"
-       y1="511.98001"
-       x2="1371.72"
-       y2="514.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35056" />
-    <line
-       x1="1564.49"
-       y1="408.67001"
-       x2="1561.77"
-       y2="408.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35058" />
-    <line
-       x1="1520.41"
-       y1="441.59"
-       x2="1524.26"
-       y2="440.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35060" />
-    <line
-       x1="1564.03"
-       y1="552.94"
-       x2="1560.01"
-       y2="554.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35062" />
-    <line
-       x1="1529.72"
-       y1="556.41998"
-       x2="1525.39"
-       y2="555.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35064" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1289.6,654.86 1278.8,659.71 1278.55,659.97 "
-       id="polygon35066" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1279.54,659.68 1290.59,654.56 1290.19,654.48 "
-       id="polygon35068" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.86,579.99 1651.83,580.43 1651.79,580.95 "
-       id="polygon35070" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.95,582.22 1651.92,582.66 1652.03,583.09 "
-       id="polygon35072" />
-    <line
-       x1="1534.09"
-       y1="557.08002"
-       x2="1529.72"
-       y2="556.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35074" />
-    <line
-       x1="1560.01"
-       y1="554.42999"
-       x2="1555.86"
-       y2="555.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35076" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.88,581.69 1651.84,582.12 1651.92,582.66 "
-       id="polygon35078" />
-    <line
-       x1="1217.61"
-       y1="583.70001"
-       x2="1215.63"
-       y2="582.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35080" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.83,581.1 1651.8,581.53 1651.84,582.12 "
-       id="polygon35082" />
-    <line
-       x1="1538.5"
-       y1="557.41998"
-       x2="1534.09"
-       y2="557.08002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35084" />
-    <line
-       x1="1555.86"
-       y1="555.64001"
-       x2="1551.61"
-       y2="556.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35086" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1280.34,660.31 1291.38,655.19 1291,654.8 "
-       id="polygon35088" />
-    <line
-       x1="1542.91"
-       y1="557.44"
-       x2="1538.5"
-       y2="557.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35090" />
-    <line
-       x1="1551.61"
-       y1="556.54999"
-       x2="1547.29"
-       y2="557.15002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35092" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1280.98,662.43 1292.02,657.3 1292.04,656.79 "
-       id="polygon35094" />
-    <line
-       x1="1711.45"
-       y1="577.44"
-       x2="1684.8199"
-       y2="573.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35096" />
-    <line
-       x1="1547.29"
-       y1="557.15002"
-       x2="1542.91"
-       y2="557.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35098" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1280.66,660.8 1291.7,655.68 1291.38,655.19 "
-       id="polygon35100" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1280.99,661.92 1292.04,656.79 1291.93,656.23 "
-       id="polygon35102" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1280.88,661.36 1291.93,656.23 1291.7,655.68 "
-       id="polygon35104" />
-    <polygon
-       style="opacity:1;fill:#00008b"
-       points="1651.9,580.02 1667.03,579.32 1666.93,579.58 "
-       id="polygon35106" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.2,536.29 1452.41,543.91 1452.82,544.33 "
-       id="polygon35108" />
-    <line
-       x1="1304.75"
-       y1="605.33002"
-       x2="1301.7"
-       y2="605.90002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35110" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.61,536.7 1452.82,544.33 1453.34,544.63 "
-       id="polygon35112" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1457.13,537.01 1453.34,544.63 1453.91,544.8 "
-       id="polygon35114" />
-    <line
-       x1="1567.17"
-       y1="409.48999"
-       x2="1564.49"
-       y2="408.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35116" />
-    <line
-       x1="1321.45"
-       y1="432.70001"
-       x2="1323.77"
-       y2="434.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35118" />
-    <line
-       x1="1524.26"
-       y1="440.51999"
-       x2="1528.15"
-       y2="439.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35120" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1652.03,583.09 1666.95,582.22 1667.06,582.66 "
-       id="polygon35122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.79,580.95 1666.86,579.99 1666.82,580.51 "
-       id="polygon35124" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.92,582.66 1666.88,581.69 1666.95,582.22 "
-       id="polygon35126" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.8,581.53 1666.82,580.51 1666.83,581.1 "
-       id="polygon35128" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1651.84,582.12 1666.83,581.1 1666.88,581.69 "
-       id="polygon35130" />
-    <line
-       x1="1372.8"
-       y1="509.39999"
-       x2="1372.39"
-       y2="511.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35132" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1290.19,654.48 1279.54,659.68 1279.15,659.6 "
-       id="polygon35134" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1290.59,654.56 1279.95,659.92 1279.54,659.68 "
-       id="polygon35136" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1291,654.8 1280.34,660.31 1279.95,659.92 "
-       id="polygon35138" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1292.02,657.3 1280.83,662.84 1280.98,662.43 "
-       id="polygon35140" />
-    <line
-       x1="1215.63"
-       y1="582.59998"
-       x2="1213.91"
-       y2="581.59998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35142" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1291.38,655.19 1280.66,660.8 1280.34,660.31 "
-       id="polygon35144" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1292.04,656.79 1280.98,662.43 1280.99,661.92 "
-       id="polygon35146" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1291.7,655.68 1280.88,661.36 1280.66,660.8 "
-       id="polygon35148" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1291.93,656.23 1280.99,661.92 1280.88,661.36 "
-       id="polygon35150" />
-    <line
-       x1="1569.78"
-       y1="410.56"
-       x2="1567.17"
-       y2="409.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35152" />
-    <line
-       x1="1307.62"
-       y1="604.56"
-       x2="1304.75"
-       y2="605.33002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35154" />
-    <line
-       x1="1528.15"
-       y1="439.76999"
-       x2="1532.04"
-       y2="439.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35156" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1682.29,579.27 1667.09,579.33 1667,579.58 "
-       id="polygon35158" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1452.15,543.42 1455.84,535.28 1455.93,535.79 "
-       id="polygon35160" />
-    <line
-       x1="1259.89"
-       y1="501.42999"
-       x2="1260.5601"
-       y2="501.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35162" />
-    <line
-       x1="1323.77"
-       y1="434.5"
-       x2="1326.22"
-       y2="436.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35164" />
-    <polygon
-       style="opacity:1;fill:#000071"
-       points="1452.41,543.91 1455.93,535.79 1456.2,536.29 "
-       id="polygon35166" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1455,544.64 1458.27,537.17 1458.79,537.02 "
-       id="polygon35168" />
-    <line
-       x1="1372.9301"
-       y1="506.67999"
-       x2="1372.8"
-       y2="509.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35170" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1452.82,544.33 1456.2,536.29 1456.61,536.7 "
-       id="polygon35172" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.17,582.16 1666.96,582.22 1667.05,582.65 "
-       id="polygon35174" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1454.48,544.8 1457.7,537.17 1458.27,537.17 "
-       id="polygon35176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1453.34,544.63 1456.61,536.7 1457.13,537.01 "
-       id="polygon35178" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1453.91,544.8 1457.13,537.01 1457.7,537.17 "
-       id="polygon35180" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.09,580.45 1666.89,580.51 1666.88,581.09 "
-       id="polygon35182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.08,581.04 1666.88,581.09 1666.91,581.68 "
-       id="polygon35184" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1667,579.58 1682.29,579.27 1682.2,579.52 "
-       id="polygon35186" />
-    <line
-       x1="1572.3"
-       y1="411.87"
-       x2="1569.78"
-       y2="410.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35188" />
-    <line
-       x1="1532.04"
-       y1="439.32999"
-       x2="1535.91"
-       y2="439.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35190" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1667.05,582.65 1682.17,582.16 1682.25,582.59 "
-       id="polygon35192" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.89,580.51 1682.13,579.93 1682.09,580.45 "
-       id="polygon35194" />
-    <line
-       x1="1310.27"
-       y1="603.60999"
-       x2="1307.62"
-       y2="604.56"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35196" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.88,581.09 1682.09,580.45 1682.08,581.04 "
-       id="polygon35198" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1666.91,581.68 1682.08,581.04 1682.11,581.62 "
-       id="polygon35200" />
-    <line
-       x1="1372.8"
-       y1="503.82001"
-       x2="1372.9301"
-       y2="506.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35202" />
-    <line
-       x1="1326.22"
-       y1="436.48001"
-       x2="1328.79"
-       y2="438.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35204" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1278.55,659.97 1267.72,664.86 1267.47,665.13 "
-       id="polygon35206" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1268.45,664.83 1279.54,659.68 1279.14,659.61 "
-       id="polygon35208" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1269.5,668.26 1280.58,663.1 1280.83,662.83 "
-       id="polygon35210" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1268.86,665.07 1279.95,659.92 1279.54,659.68 "
-       id="polygon35212" />
-    <line
-       x1="1574.73"
-       y1="413.41"
-       x2="1572.3"
-       y2="411.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35214" />
-    <line
-       x1="1260.5601"
-       y1="501.76999"
-       x2="1261.48"
-       y2="502.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35216" />
-    <polygon
-       style="opacity:1;fill:#0000dc"
-       points="1456.82,536.47 1456.2,536.29 1456.61,536.7 "
-       id="polygon35218" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1269.25,665.46 1280.33,660.31 1279.95,659.92 "
-       id="polygon35220" />
-    <line
-       x1="1704.79"
-       y1="563.69"
-       x2="1711.45"
-       y2="577.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35222" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1269.89,667.58 1280.98,662.43 1280.99,661.92 "
-       id="polygon35224" />
-    <line
-       x1="1535.91"
-       y1="439.20001"
-       x2="1539.73"
-       y2="439.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35226" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1697.51,579.23 1682.29,579.27 1682.2,579.52 "
-       id="polygon35228" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1269.57,665.96 1280.65,660.8 1280.33,660.31 "
-       id="polygon35230" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1269.91,667.07 1280.99,661.92 1280.88,661.36 "
-       id="polygon35232" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1269.8,666.52 1280.88,661.36 1280.65,660.8 "
-       id="polygon35234" />
-    <polygon
-       style="opacity:1;fill:#00007e"
-       points="1697.42,579.48 1682.2,579.52 1682.13,579.93 "
-       id="polygon35236" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1712.32,581.04 1697.28,581.59 1697.36,582.13 "
-       id="polygon35238" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.39,582.12 1682.16,582.16 1682.25,582.59 "
-       id="polygon35240" />
-    <line
-       x1="1312.7"
-       y1="602.46002"
-       x2="1310.27"
-       y2="603.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35242" />
-    <line
-       x1="1372.41"
-       y1="500.85999"
-       x2="1372.8"
-       y2="503.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35244" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.31,580.41 1682.09,580.45 1682.08,581.04 "
-       id="polygon35246" />
-    <line
-       x1="1212.4399"
-       y1="580.71997"
-       x2="1211.23"
-       y2="579.96997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35248" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.33,581.59 1697.3,581 1693.24,581.6 "
-       id="polygon35250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1712.26,579.86 1697.22,580.41 1697.23,581 "
-       id="polygon35252" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.3,581 1682.08,581.04 1682.11,581.62 "
-       id="polygon35254" />
-    <line
-       x1="1328.79"
-       y1="438.64001"
-       x2="1331.45"
-       y2="440.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35256" />
-    <line
-       x1="1577.04"
-       y1="415.17999"
-       x2="1574.73"
-       y2="413.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35258" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1697.25,579.89 1697.32,579.48 1700.22,579.7 "
-       id="polygon35260" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1682.2,579.52 1697.51,579.23 1697.42,579.48 "
-       id="polygon35262" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1279.54,659.68 1268.86,665.07 1268.45,664.83 "
-       id="polygon35264" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.25,582.59 1697.39,582.12 1697.47,582.55 "
-       id="polygon35266" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1279.95,659.92 1269.25,665.46 1268.86,665.07 "
-       id="polygon35268" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1280.98,662.43 1269.75,667.99 1269.89,667.58 "
-       id="polygon35270" />
-    <line
-       x1="1539.73"
-       y1="439.39001"
-       x2="1543.48"
-       y2="439.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35272" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="1456.19,534.38 1460.3,526.36 1459.89,526.66 "
-       id="polygon35274" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1459.63,527.08 1455.93,534.79 1455.84,535.28 "
-       id="polygon35276" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1280.33,660.31 1269.57,665.96 1269.25,665.46 "
-       id="polygon35278" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1280.99,661.92 1269.89,667.58 1269.91,667.07 "
-       id="polygon35280" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.08,581.04 1697.31,580.41 1697.3,581 "
-       id="polygon35282" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1682.11,581.62 1697.3,581 1693.24,581.6 "
-       id="polygon35284" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1280.65,660.8 1269.8,666.52 1269.57,665.96 "
-       id="polygon35286" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1280.88,661.36 1269.91,667.07 1269.8,666.52 "
-       id="polygon35288" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="1463.94,518.59 1460.3,526.37 1459.89,526.67 "
-       id="polygon35290" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1463.18,519.8 1459.54,527.58 1459.63,528.09 "
-       id="polygon35292" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1459.63,528.09 1455.93,535.8 1456.2,536.29 "
-       id="polygon35294" />
-    <line
-       x1="1371.76"
-       y1="497.78"
-       x2="1372.41"
-       y2="500.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35296" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1462.5,529.3 1458.79,537.01 1459.2,536.71 "
-       id="polygon35298" />
-    <line
-       x1="1261.48"
-       y1="502.29001"
-       x2="1262.63"
-       y2="503.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35300" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1459.9,528.58 1456.2,536.29 1456.61,536.71 "
-       id="polygon35302" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1461.98,529.46 1458.27,537.17 1458.79,537.01 "
-       id="polygon35304" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1460.31,529 1456.61,536.71 1457.13,537.01 "
-       id="polygon35306" />
-    <line
-       x1="1331.45"
-       y1="440.95999"
-       x2="1334.1801"
-       y2="443.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35308" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1461.41,529.46 1457.7,537.17 1458.27,537.17 "
-       id="polygon35310" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1460.83,529.3 1457.13,537.01 1457.7,537.17 "
-       id="polygon35312" />
-    <line
-       x1="1579.21"
-       y1="417.16"
-       x2="1577.04"
-       y2="415.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35314" />
-    <line
-       x1="1314.9"
-       y1="601.12"
-       x2="1312.7"
-       y2="602.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35316" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.88,580.19 1712.92,579.64 1712.82,579.29 "
-       id="polygon35318" />
-    <line
-       x1="1543.48"
-       y1="439.89001"
-       x2="1547.13"
-       y2="440.69"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35320" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1712.37,578.93 1697.32,579.48 1700.22,579.7 "
-       id="polygon35322" />
-    <line
-       x1="1370.86"
-       y1="494.60999"
-       x2="1371.76"
-       y2="497.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35324" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1712.52,582.02 1697.48,582.56 1697.61,582.85 "
-       id="polygon35326" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1712.29,579.34 1697.25,579.89 1697.22,580.41 "
-       id="polygon35328" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1712.41,581.58 1697.36,582.13 1697.48,582.56 "
-       id="polygon35330" />
-    <line
-       x1="1334.1801"
-       y1="443.44"
-       x2="1336.97"
-       y2="446.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35332" />
-    <line
-       x1="1581.23"
-       y1="419.35001"
-       x2="1579.21"
-       y2="417.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35334" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1712.27,580.45 1697.23,581 1697.28,581.59 "
-       id="polygon35336" />
-    <polygon
-       style="opacity:1;fill:#000077"
-       points="1455.93,535.8 1459.54,527.57 1459.63,528.09 "
-       id="polygon35338" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1459.2,536.71 1462.5,529.3 1462.91,529 "
-       id="polygon35340" />
-    <line
-       x1="1316.86"
-       y1="599.59003"
-       x2="1314.9"
-       y2="601.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35342" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1456.2,536.29 1459.63,528.09 1459.9,528.58 "
-       id="polygon35344" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1697.61,582.85 1712.52,582.02 1712.65,582.3 "
-       id="polygon35346" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1257.33,670 1268.45,664.83 1268.06,664.75 "
-       id="polygon35348" />
-    <line
-       x1="1262.63"
-       y1="503.01001"
-       x2="1264.01"
-       y2="503.92001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35350" />
-    <polygon
-       style="opacity:1;fill:#00007b"
-       points="1697.25,579.89 1712.37,578.93 1712.29,579.34 "
-       id="polygon35352" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1458.79,537.01 1461.98,529.46 1462.5,529.3 "
-       id="polygon35354" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1456.61,536.71 1459.9,528.58 1460.31,529 "
-       id="polygon35356" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1258.38,673.44 1269.5,668.26 1269.75,667.99 "
-       id="polygon35358" />
-    <line
-       x1="1369.73"
-       y1="491.35999"
-       x2="1370.86"
-       y2="494.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35360" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1458.27,537.17 1461.41,529.46 1461.98,529.46 "
-       id="polygon35362" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1457.13,537.01 1460.31,529 1460.83,529.3 "
-       id="polygon35364" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.48,582.56 1712.41,581.58 1712.52,582.02 "
-       id="polygon35366" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1457.7,537.17 1460.83,529.3 1461.41,529.46 "
-       id="polygon35368" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.22,580.41 1712.29,579.34 1712.26,579.86 "
-       id="polygon35370" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1257.74,670.25 1268.86,665.07 1268.45,664.83 "
-       id="polygon35372" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1258.63,673.17 1269.75,667.99 1269.89,667.58 "
-       id="polygon35374" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.36,582.13 1712.32,581.04 1712.41,581.58 "
-       id="polygon35376" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.23,581 1712.26,579.86 1712.27,580.45 "
-       id="polygon35378" />
-    <line
-       x1="1336.97"
-       y1="446.07001"
-       x2="1339.79"
-       y2="448.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35380" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1697.28,581.59 1712.27,580.45 1712.32,581.04 "
-       id="polygon35382" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1258.13,670.64 1269.25,665.46 1268.86,665.07 "
-       id="polygon35384" />
-    <line
-       x1="1547.13"
-       y1="440.69"
-       x2="1550.66"
-       y2="441.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35386" />
-    <line
-       x1="1583.08"
-       y1="421.72"
-       x2="1581.23"
-       y2="419.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35388" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1258.77,672.76 1269.89,667.58 1269.91,667.07 "
-       id="polygon35390" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1258.45,671.14 1269.57,665.96 1269.25,665.46 "
-       id="polygon35392" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1258.79,672.25 1269.91,667.07 1269.8,666.52 "
-       id="polygon35394" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1258.67,671.69 1269.8,666.52 1269.57,665.96 "
-       id="polygon35396" />
-    <line
-       x1="1368.36"
-       y1="488.04001"
-       x2="1369.73"
-       y2="491.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35398" />
-    <line
-       x1="1339.79"
-       y1="448.84"
-       x2="1342.61"
-       y2="451.73999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35400" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1268.06,664.75 1257.33,670 1256.94,669.93 "
-       id="polygon35402" />
-    <line
-       x1="1584.75"
-       y1="424.26999"
-       x2="1583.08"
-       y2="421.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35404" />
-    <line
-       x1="1318.5699"
-       y1="597.88"
-       x2="1316.86"
-       y2="599.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35406" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1268.45,664.83 1257.74,670.25 1257.33,670 "
-       id="polygon35408" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1269.75,667.99 1258.38,673.44 1258.63,673.17 "
-       id="polygon35410" />
-    <line
-       x1="1366.78"
-       y1="484.67999"
-       x2="1368.36"
-       y2="488.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35412" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1268.86,665.07 1258.13,670.64 1257.74,670.25 "
-       id="polygon35414" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1269.89,667.58 1258.63,673.17 1258.77,672.76 "
-       id="polygon35416" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1269.25,665.46 1258.45,671.14 1258.13,670.64 "
-       id="polygon35418" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1269.91,667.07 1258.77,672.76 1258.79,672.25 "
-       id="polygon35420" />
-    <line
-       x1="1550.66"
-       y1="441.79001"
-       x2="1554.05"
-       y2="443.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35422" />
-    <line
-       x1="1264.01"
-       y1="503.92001"
-       x2="1265.6"
-       y2="505.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35424" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1269.57,665.96 1258.67,671.69 1258.45,671.14 "
-       id="polygon35426" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1269.8,666.52 1258.79,672.25 1258.67,671.69 "
-       id="polygon35428" />
-    <line
-       x1="1342.61"
-       y1="451.73999"
-       x2="1345.4301"
-       y2="454.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35430" />
-    <line
-       x1="1364.99"
-       y1="481.29001"
-       x2="1366.78"
-       y2="484.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35432" />
-    <line
-       x1="1586.23"
-       y1="426.97"
-       x2="1584.75"
-       y2="424.26999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35434" />
-    <line
-       x1="1345.4301"
-       y1="454.75"
-       x2="1348.21"
-       y2="457.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35436" />
-    <line
-       x1="1363.02"
-       y1="477.87"
-       x2="1364.99"
-       y2="481.29001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35438" />
-    <line
-       x1="1348.21"
-       y1="457.85999"
-       x2="1350.9301"
-       y2="461.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35440" />
-    <line
-       x1="1320.02"
-       y1="595.98999"
-       x2="1318.5699"
-       y2="597.88"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35442" />
-    <line
-       x1="1360.87"
-       y1="474.45001"
-       x2="1363.02"
-       y2="477.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35444" />
-    <line
-       x1="1350.9301"
-       y1="461.06"
-       x2="1353.59"
-       y2="464.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35446" />
-    <line
-       x1="1587.51"
-       y1="429.81"
-       x2="1586.23"
-       y2="426.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35448" />
-    <line
-       x1="1554.05"
-       y1="443.19"
-       x2="1557.27"
-       y2="444.85999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35450" />
-    <line
-       x1="1358.5699"
-       y1="471.04999"
-       x2="1360.87"
-       y2="474.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35452" />
-    <line
-       x1="1353.59"
-       y1="464.34"
-       x2="1356.14"
-       y2="467.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35454" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1466.82,520.8 1463.17,528.57 1463.26,528.09 "
-       id="polygon35456" />
-    <line
-       x1="1356.14"
-       y1="467.67001"
-       x2="1358.5699"
-       y2="471.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35458" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1245.45,675.21 1256.6,670.03 1256.35,670.3 "
-       id="polygon35460" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1463.27,520.32 1459.63,528.09 1459.9,528.58 "
-       id="polygon35462" />
-    <line
-       x1="1265.6"
-       y1="505.01999"
-       x2="1267.39"
-       y2="506.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35464" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1466.15,521.52 1462.5,529.3 1462.91,528.99 "
-       id="polygon35466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1463.54,520.81 1459.9,528.58 1460.31,529 "
-       id="polygon35468" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1465.63,521.68 1461.98,529.46 1462.5,529.3 "
-       id="polygon35470" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1463.96,521.23 1460.31,529 1460.83,529.3 "
-       id="polygon35472" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1465.05,521.69 1461.41,529.46 1461.98,529.46 "
-       id="polygon35474" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1464.48,521.53 1460.83,529.3 1461.41,529.46 "
-       id="polygon35476" />
-    <line
-       x1="1588.5699"
-       y1="432.78"
-       x2="1587.51"
-       y2="429.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35478" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1246.59,675.43 1257.74,670.25 1257.33,670 "
-       id="polygon35480" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1247.48,678.36 1258.63,673.17 1258.77,672.76 "
-       id="polygon35482" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1246.97,675.82 1258.13,670.64 1257.74,670.25 "
-       id="polygon35484" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1247.62,677.95 1258.77,672.76 1258.79,672.25 "
-       id="polygon35486" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1247.29,676.32 1258.45,671.13 1258.13,670.64 "
-       id="polygon35488" />
-    <line
-       x1="1321.21"
-       y1="593.91998"
-       x2="1320.02"
-       y2="595.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35490" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1247.63,677.43 1258.79,672.25 1258.68,671.69 "
-       id="polygon35492" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1247.52,676.88 1258.68,671.69 1258.45,671.13 "
-       id="polygon35494" />
-    <line
-       x1="1557.27"
-       y1="444.85999"
-       x2="1560.3"
-       y2="446.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35496" />
-    <line
-       x1="1589.4"
-       y1="435.85001"
-       x2="1588.5699"
-       y2="432.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35498" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1256.94,669.93 1246.18,675.18 1245.79,675.11 "
-       id="polygon35500" />
-    <line
-       x1="1267.39"
-       y1="506.32001"
-       x2="1269.37"
-       y2="507.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35502" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1459.63,528.09 1463.18,519.8 1463.27,520.32 "
-       id="polygon35504" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1258.63,673.17 1247.22,678.62 1247.48,678.36 "
-       id="polygon35506" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1462.91,528.99 1466.15,521.52 1466.56,521.22 "
-       id="polygon35508" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1459.9,528.58 1463.27,520.32 1463.54,520.81 "
-       id="polygon35510" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1462.5,529.3 1465.63,521.68 1466.15,521.52 "
-       id="polygon35512" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1460.31,529 1463.54,520.81 1463.96,521.23 "
-       id="polygon35514" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1257.74,670.25 1246.97,675.82 1246.59,675.43 "
-       id="polygon35516" />
-    <line
-       x1="1590.01"
-       y1="439.01001"
-       x2="1589.4"
-       y2="435.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35518" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1461.98,529.46 1465.05,521.69 1465.63,521.68 "
-       id="polygon35520" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1460.83,529.3 1463.96,521.23 1464.48,521.53 "
-       id="polygon35522" />
-    <line
-       x1="1500.8199"
-       y1="463.17999"
-       x2="1502.33"
-       y2="466.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35524" />
-    <line
-       x1="1502.33"
-       y1="466.26001"
-       x2="1504.0699"
-       y2="469.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35526" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1461.41,529.46 1464.48,521.53 1465.05,521.69 "
-       id="polygon35528" />
-    <line
-       x1="1499.54"
-       y1="460.01999"
-       x2="1500.8199"
-       y2="463.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35530" />
-    <line
-       x1="1504.0699"
-       y1="469.23001"
-       x2="1506.02"
-       y2="472.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35532" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1258.13,670.64 1247.29,676.32 1246.97,675.82 "
-       id="polygon35534" />
-    <line
-       x1="1498.49"
-       y1="456.79001"
-       x2="1499.54"
-       y2="460.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35536" />
-    <line
-       x1="1506.02"
-       y1="472.09"
-       x2="1508.17"
-       y2="474.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35538" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1258.45,671.13 1247.52,676.88 1247.29,676.32 "
-       id="polygon35540" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1258.68,671.69 1247.63,677.43 1247.52,676.88 "
-       id="polygon35542" />
-    <line
-       x1="1497.6801"
-       y1="453.51001"
-       x2="1498.49"
-       y2="456.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35544" />
-    <line
-       x1="1322.13"
-       y1="591.67999"
-       x2="1321.21"
-       y2="593.91998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35546" />
-    <line
-       x1="1508.17"
-       y1="474.79999"
-       x2="1510.52"
-       y2="477.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35548" />
-    <line
-       x1="1560.3"
-       y1="446.79999"
-       x2="1563.12"
-       y2="449"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35550" />
-    <line
-       x1="1510.52"
-       y1="477.37"
-       x2="1513.05"
-       y2="479.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35552" />
-    <line
-       x1="1513.05"
-       y1="479.76001"
-       x2="1515.75"
-       y2="481.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35554" />
-    <line
-       x1="1590.38"
-       y1="442.23999"
-       x2="1590.01"
-       y2="439.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35556" />
-    <line
-       x1="1496.79"
-       y1="446.91"
-       x2="1497.11"
-       y2="450.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35558" />
-    <line
-       x1="1515.75"
-       y1="481.95999"
-       x2="1518.59"
-       y2="483.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35560" />
-    <line
-       x1="1496.71"
-       y1="443.63"
-       x2="1496.79"
-       y2="446.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35562" />
-    <line
-       x1="1518.59"
-       y1="483.95999"
-       x2="1521.58"
-       y2="485.76001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35564" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1463.27,519.31 1463.63,519.46 1463.55,519.85 "
-       id="polygon35566" />
-    <line
-       x1="1269.37"
-       y1="507.79999"
-       x2="1271.52"
-       y2="509.48001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35568" />
-    <line
-       x1="1590.51"
-       y1="445.51999"
-       x2="1590.38"
-       y2="442.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35570" />
-    <line
-       x1="1496.88"
-       y1="440.37"
-       x2="1496.71"
-       y2="443.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35572" />
-    <line
-       x1="1521.58"
-       y1="485.76001"
-       x2="1524.7"
-       y2="487.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35574" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1463.84,520.66 1463.27,520.32 1463.54,520.81 "
-       id="polygon35576" />
-    <line
-       x1="1524.7"
-       y1="487.32999"
-       x2="1527.91"
-       y2="488.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35578" />
-    <line
-       x1="1322.78"
-       y1="589.28003"
-       x2="1322.13"
-       y2="591.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35580" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1465.63,521.68 1465.05,521.36 1465.52,521.36 "
-       id="polygon35582" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1464.48,521.53 1464.59,521.23 1465.05,521.36 "
-       id="polygon35584" />
-    <line
-       x1="1497.28"
-       y1="437.17001"
-       x2="1496.88"
-       y2="440.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35586" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1234.27,680.38 1245.45,675.21 1245.2,675.48 "
-       id="polygon35588" />
-    <line
-       x1="1563.12"
-       y1="449"
-       x2="1565.71"
-       y2="451.42999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35590" />
-    <line
-       x1="1590.39"
-       y1="448.81"
-       x2="1590.51"
-       y2="445.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35592" />
-    <line
-       x1="1527.91"
-       y1="488.67001"
-       x2="1531.21"
-       y2="489.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35594" />
-    <line
-       x1="1497.92"
-       y1="434.04999"
-       x2="1497.28"
-       y2="437.17001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35596" />
-    <line
-       x1="1531.21"
-       y1="489.76999"
-       x2="1534.59"
-       y2="490.62"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35598" />
-    <line
-       x1="1590.02"
-       y1="452.12"
-       x2="1590.39"
-       y2="448.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35600" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1236.29,683.53 1247.48,678.36 1247.62,677.95 "
-       id="polygon35602" />
-    <line
-       x1="1534.59"
-       y1="490.62"
-       x2="1538.01"
-       y2="491.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35604" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1235.79,680.99 1246.97,675.82 1246.59,675.43 "
-       id="polygon35606" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1236.44,683.12 1247.62,677.95 1247.63,677.43 "
-       id="polygon35608" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1236.11,681.49 1247.29,676.32 1246.97,675.82 "
-       id="polygon35610" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1236.45,682.61 1247.63,677.43 1247.52,676.87 "
-       id="polygon35612" />
-    <line
-       x1="1498.78"
-       y1="431.01999"
-       x2="1497.92"
-       y2="434.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35614" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1236.34,682.05 1247.52,676.87 1247.29,676.32 "
-       id="polygon35616" />
-    <line
-       x1="1271.52"
-       y1="509.48001"
-       x2="1273.8199"
-       y2="511.34"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35618" />
-    <line
-       x1="1538.01"
-       y1="491.20999"
-       x2="1541.47"
-       y2="491.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35620" />
-    <line
-       x1="1589.41"
-       y1="455.41"
-       x2="1590.02"
-       y2="452.12"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35622" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="1463.53,518.89 1467.54,510.76 1467.13,511.07 "
-       id="polygon35624" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1466.86,511.48 1463.27,519.31 1463.18,519.8 "
-       id="polygon35626" />
-    <line
-       x1="1323.16"
-       y1="586.71997"
-       x2="1322.78"
-       y2="589.28003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35628" />
-    <line
-       x1="1541.47"
-       y1="491.54999"
-       x2="1544.9399"
-       y2="491.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35630" />
-    <line
-       x1="1565.71"
-       y1="451.42999"
-       x2="1568.0601"
-       y2="454.09"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35632" />
-    <line
-       x1="1499.87"
-       y1="428.10999"
-       x2="1498.78"
-       y2="431.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35634" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1466.87,512.49 1463.27,520.32 1463.54,520.81 "
-       id="polygon35636" />
-    <line
-       x1="1588.5601"
-       y1="458.67001"
-       x2="1589.41"
-       y2="455.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35638" />
-    <line
-       x1="1544.9399"
-       y1="491.63"
-       x2="1548.4"
-       y2="491.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35640" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1469.75,513.7 1466.15,521.52 1466.56,521.21 "
-       id="polygon35642" />
-    <polygon
-       style="opacity:1;fill:#000088"
-       points="1245.79,675.11 1235,680.35 1234.61,680.28 "
-       id="polygon35644" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1467.14,512.98 1463.54,520.81 1463.96,521.23 "
-       id="polygon35646" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1469.23,513.86 1465.63,521.68 1466.15,521.52 "
-       id="polygon35648" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1467.55,513.4 1463.96,521.23 1464.48,521.53 "
-       id="polygon35650" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1468.66,513.86 1465.05,521.68 1465.63,521.68 "
-       id="polygon35652" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1468.08,513.7 1464.48,521.53 1465.05,521.68 "
-       id="polygon35654" />
-    <polygon
-       style="opacity:1;fill:#00008d"
-       points="1246.18,675.18 1235.41,680.6 1235,680.35 "
-       id="polygon35656" />
-    <polygon
-       style="opacity:1;fill:#0000bf"
-       points="1247.48,678.36 1236.04,683.8 1236.29,683.53 "
-       id="polygon35658" />
-    <line
-       x1="1548.4"
-       y1="491.45001"
-       x2="1551.84"
-       y2="491.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35660" />
-    <line
-       x1="1587.46"
-       y1="461.87"
-       x2="1588.5601"
-       y2="458.67001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35662" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1246.59,675.43 1235.79,680.99 1235.41,680.6 "
-       id="polygon35664" />
-    <line
-       x1="1501.17"
-       y1="425.32001"
-       x2="1499.87"
-       y2="428.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35666" />
-    <line
-       x1="1551.84"
-       y1="491.01001"
-       x2="1555.23"
-       y2="490.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35668" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1246.97,675.82 1236.11,681.49 1235.79,680.99 "
-       id="polygon35670" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1247.63,677.43 1236.44,683.12 1236.45,682.61 "
-       id="polygon35672" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1247.29,676.32 1236.34,682.05 1236.11,681.49 "
-       id="polygon35674" />
-    <polygon
-       style="opacity:1;fill:#0000a1"
-       points="1247.52,676.87 1236.45,682.61 1236.34,682.05 "
-       id="polygon35676" />
-    <line
-       x1="1586.13"
-       y1="464.98999"
-       x2="1587.46"
-       y2="461.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35678" />
-    <line
-       x1="1555.23"
-       y1="490.32001"
-       x2="1558.55"
-       y2="489.37"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35680" />
-    <line
-       x1="1209.55"
-       y1="578.69"
-       x2="1210.1801"
-       y2="579.09003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35682" />
-    <line
-       x1="1273.8199"
-       y1="511.34"
-       x2="1276.27"
-       y2="513.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35684" />
-    <line
-       x1="1584.5699"
-       y1="468.01999"
-       x2="1586.13"
-       y2="464.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35686" />
-    <line
-       x1="1323.27"
-       y1="584.02002"
-       x2="1323.16"
-       y2="586.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35688" />
-    <line
-       x1="1558.55"
-       y1="489.37"
-       x2="1561.8"
-       y2="488.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35690" />
-    <polygon
-       style="opacity:1;fill:#0000e8"
-       points="1234.44,680.72 1234.61,680.28 1234.27,680.38 "
-       id="polygon35692" />
-    <line
-       x1="1582.78"
-       y1="470.92999"
-       x2="1584.5699"
-       y2="468.01999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35694" />
-    <line
-       x1="1561.8"
-       y1="488.17999"
-       x2="1564.95"
-       y2="486.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35696" />
-    <line
-       x1="1502.67"
-       y1="422.67999"
-       x2="1501.17"
-       y2="425.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35698" />
-    <line
-       x1="1564.95"
-       y1="486.75"
-       x2="1567.97"
-       y2="485.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35700" />
-    <line
-       x1="1580.78"
-       y1="473.72"
-       x2="1582.78"
-       y2="470.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35702" />
-    <line
-       x1="1568.0601"
-       y1="454.09"
-       x2="1570.15"
-       y2="456.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35704" />
-    <line
-       x1="1567.97"
-       y1="485.07999"
-       x2="1570.86"
-       y2="483.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35706" />
-    <line
-       x1="1578.58"
-       y1="476.35001"
-       x2="1580.78"
-       y2="473.72"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35708" />
-    <line
-       x1="1576.1801"
-       y1="478.82001"
-       x2="1578.58"
-       y2="476.35001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35710" />
-    <line
-       x1="1573.61"
-       y1="481.10999"
-       x2="1576.1801"
-       y2="478.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35712" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1463.27,520.32 1466.77,511.98 1466.87,512.49 "
-       id="polygon35714" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1466.56,521.21 1469.75,513.7 1470.16,513.39 "
-       id="polygon35716" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1463.54,520.81 1466.87,512.49 1467.14,512.98 "
-       id="polygon35718" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1466.15,521.52 1469.23,513.86 1469.75,513.7 "
-       id="polygon35720" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1463.96,521.23 1467.14,512.98 1467.55,513.4 "
-       id="polygon35722" />
-    <line
-       x1="1504.36"
-       y1="420.20001"
-       x2="1502.67"
-       y2="422.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35724" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1465.63,521.68 1468.66,513.86 1469.23,513.86 "
-       id="polygon35726" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1464.48,521.53 1467.55,513.4 1468.08,513.7 "
-       id="polygon35728" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1465.05,521.68 1468.08,513.7 1468.66,513.86 "
-       id="polygon35730" />
-    <line
-       x1="1323.11"
-       y1="581.19"
-       x2="1323.27"
-       y2="584.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35732" />
-    <line
-       x1="1276.27"
-       y1="513.38"
-       x2="1278.8199"
-       y2="515.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35734" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1223.06,685.53 1234.27,680.38 1234.01,680.64 "
-       id="polygon35736" />
-    <line
-       x1="1210.1801"
-       y1="579.09003"
-       x2="1211.0699"
-       y2="579.66998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35738" />
-    <line
-       x1="1506.24"
-       y1="417.89999"
-       x2="1504.36"
-       y2="420.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35740" />
-    <line
-       x1="1570.15"
-       y1="456.95001"
-       x2="1571.96"
-       y2="459.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35742" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1224.84,688.96 1236.04,683.8 1236.29,683.53 "
-       id="polygon35744" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1224.59,686.14 1235.8,680.99 1235.41,680.6 "
-       id="polygon35746" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1225.23,688.28 1236.44,683.12 1236.45,682.61 "
-       id="polygon35748" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1224.91,686.64 1236.12,681.49 1235.8,680.99 "
-       id="polygon35750" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1225.25,687.77 1236.45,682.61 1236.34,682.05 "
-       id="polygon35752" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1225.14,687.2 1236.34,682.05 1236.12,681.49 "
-       id="polygon35754" />
-    <line
-       x1="1322.6899"
-       y1="578.22998"
-       x2="1323.11"
-       y2="581.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35756" />
-    <line
-       x1="1278.8199"
-       y1="515.59003"
-       x2="1281.47"
-       y2="517.96002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35758" />
-    <line
-       x1="1508.27"
-       y1="415.79999"
-       x2="1506.24"
-       y2="417.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35760" />
-    <polygon
-       style="opacity:1;fill:#000082"
-       points="1469.75,513.7 1469.12,513.53 1469.53,513.4 "
-       id="polygon35762" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1234.61,680.27 1223.8,685.5 1223.4,685.43 "
-       id="polygon35764" />
-    <polygon
-       style="opacity:1;fill:#0000e8"
-       points="1223.51,685.79 1223.8,685.5 1223.4,685.43 "
-       id="polygon35766" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1212.57,690.62 1223.8,685.5 1223.41,685.42 "
-       id="polygon35768" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1235,680.35 1224.21,685.75 1223.8,685.5 "
-       id="polygon35770" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1236.29,683.53 1224.84,688.96 1225.09,688.69 "
-       id="polygon35772" />
-    <line
-       x1="1571.96"
-       y1="459.98001"
-       x2="1573.47"
-       y2="463.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35774" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1235.41,680.6 1224.59,686.14 1224.21,685.75 "
-       id="polygon35776" />
-    <line
-       x1="1510.46"
-       y1="413.89999"
-       x2="1508.27"
-       y2="415.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35778" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1236.44,683.12 1225.09,688.69 1225.23,688.28 "
-       id="polygon35780" />
-    <line
-       x1="1322.02"
-       y1="575.16998"
-       x2="1322.6899"
-       y2="578.22998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35782" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1235.8,680.99 1224.91,686.64 1224.59,686.14 "
-       id="polygon35784" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1236.45,682.61 1225.23,688.28 1225.25,687.77 "
-       id="polygon35786" />
-    <line
-       x1="1211.0699"
-       y1="579.66998"
-       x2="1212.1801"
-       y2="580.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35788" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1236.12,681.49 1225.14,687.2 1224.91,686.64 "
-       id="polygon35790" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1236.34,682.05 1225.25,687.77 1225.14,687.2 "
-       id="polygon35792" />
-    <line
-       x1="1281.47"
-       y1="517.96002"
-       x2="1284.2"
-       y2="520.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35794" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1474,505.1 1470.43,512.97 1470.52,512.48 "
-       id="polygon35796" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1470.34,504.11 1466.77,511.98 1466.87,512.5 "
-       id="polygon35798" />
-    <line
-       x1="1512.79"
-       y1="412.22"
-       x2="1510.46"
-       y2="413.89999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35800" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1470.43,504.63 1466.87,512.5 1467.14,512.98 "
-       id="polygon35802" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1473.33,505.83 1469.75,513.7 1470.16,513.39 "
-       id="polygon35804" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1470.7,505.12 1467.14,512.98 1467.55,513.4 "
-       id="polygon35806" />
-    <line
-       x1="1321.09"
-       y1="572.01001"
-       x2="1322.02"
-       y2="575.16998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35808" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1472.8,505.99 1469.23,513.86 1469.75,513.7 "
-       id="polygon35810" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1471.12,505.54 1467.55,513.4 1468.08,513.7 "
-       id="polygon35812" />
-    <line
-       x1="1573.47"
-       y1="463.19"
-       x2="1574.6899"
-       y2="466.54001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35814" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1472.23,506 1468.66,513.86 1469.23,513.86 "
-       id="polygon35816" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1471.64,505.84 1468.08,513.7 1468.66,513.86 "
-       id="polygon35818" />
-    <line
-       x1="1284.2"
-       y1="520.5"
-       x2="1286.98"
-       y2="523.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35820" />
-    <line
-       x1="1515.23"
-       y1="410.76999"
-       x2="1512.79"
-       y2="412.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35822" />
-    <line
-       x1="1212.1801"
-       y1="580.45001"
-       x2="1213.54"
-       y2="581.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35824" />
-    <line
-       x1="1319.9301"
-       y1="568.77002"
-       x2="1321.09"
-       y2="572.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35826" />
-    <line
-       x1="1286.98"
-       y1="523.17999"
-       x2="1289.8"
-       y2="525.98999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35828" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1213.61,694.08 1224.83,688.96 1225.09,688.69 "
-       id="polygon35830" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1212.98,690.86 1224.21,685.75 1223.8,685.5 "
-       id="polygon35832" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1213.86,693.81 1225.09,688.69 1225.23,688.28 "
-       id="polygon35834" />
-    <line
-       x1="1574.6899"
-       y1="466.54001"
-       x2="1575.59"
-       y2="470"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35836" />
-    <line
-       x1="1516.09"
-       y1="410.25"
-       x2="1515.23"
-       y2="410.76999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35838" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1213.37,691.26 1224.59,686.14 1224.21,685.75 "
-       id="polygon35840" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1466.87,512.5 1470.34,504.11 1470.43,504.63 "
-       id="polygon35842" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1214.01,693.4 1225.23,688.28 1225.25,687.77 "
-       id="polygon35844" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1213.69,691.76 1224.91,686.64 1224.59,686.14 "
-       id="polygon35846" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1214.02,692.89 1225.25,687.77 1225.14,687.2 "
-       id="polygon35848" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1213.91,692.32 1225.14,687.2 1224.91,686.64 "
-       id="polygon35850" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1467.14,512.98 1470.43,504.63 1470.7,505.12 "
-       id="polygon35852" />
-    <line
-       x1="1318.54"
-       y1="565.46002"
-       x2="1319.9301"
-       y2="568.77002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35854" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1469.75,513.7 1472.8,505.99 1473.33,505.83 "
-       id="polygon35856" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1467.55,513.4 1470.7,505.12 1471.12,505.54 "
-       id="polygon35858" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1469.23,513.86 1472.23,506 1472.8,505.99 "
-       id="polygon35860" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1468.08,513.7 1471.12,505.54 1471.64,505.84 "
-       id="polygon35862" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1468.66,513.86 1471.64,505.84 1472.23,506 "
-       id="polygon35864" />
-    <line
-       x1="1289.8"
-       y1="525.98999"
-       x2="1292.63"
-       y2="528.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35866" />
-    <line
-       x1="1516.97"
-       y1="409.81"
-       x2="1516.09"
-       y2="410.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35868" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1223.41,685.42 1212.57,690.62 1212.18,690.54 "
-       id="polygon35870" />
-    <line
-       x1="1316.9399"
-       y1="562.09998"
-       x2="1318.54"
-       y2="565.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35872" />
-    <line
-       x1="1575.59"
-       y1="470"
-       x2="1575.7"
-       y2="471.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35874" />
-    <line
-       x1="1213.54"
-       y1="581.41998"
-       x2="1215.1"
-       y2="582.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35876" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1223.8,685.5 1212.98,690.86 1212.57,690.62 "
-       id="polygon35878" />
-    <line
-       x1="1292.63"
-       y1="528.92999"
-       x2="1295.45"
-       y2="531.97998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35880" />
-    <line
-       x1="1517.88"
-       y1="409.45999"
-       x2="1516.97"
-       y2="409.81"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35882" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1224.21,685.75 1213.37,691.26 1212.98,690.86 "
-       id="polygon35884" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1225.23,688.28 1213.86,693.81 1214.01,693.4 "
-       id="polygon35886" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1224.59,686.14 1213.69,691.76 1213.37,691.26 "
-       id="polygon35888" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1225.25,687.77 1214.01,693.4 1214.02,692.89 "
-       id="polygon35890" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1224.91,686.64 1213.91,692.32 1213.69,691.76 "
-       id="polygon35892" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1225.14,687.2 1214.02,692.89 1213.91,692.32 "
-       id="polygon35894" />
-    <line
-       x1="1315.13"
-       y1="558.70001"
-       x2="1316.9399"
-       y2="562.09998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35896" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1470.79,503.77 1470.69,503.2 1470.43,503.62 "
-       id="polygon35898" />
-    <line
-       x1="1295.45"
-       y1="531.97998"
-       x2="1298.23"
-       y2="535.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35900" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1470.79,504.57 1470.34,504.11 1470.43,504.63 "
-       id="polygon35902" />
-    <line
-       x1="1575.7"
-       y1="471.25"
-       x2="1575.6899"
-       y2="472.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35904" />
-    <line
-       x1="1518.8101"
-       y1="409.20999"
-       x2="1517.88"
-       y2="409.45999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35906" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1473.74,505.52 1473.11,505.54 1473.43,505.29 "
-       id="polygon35908" />
-    <line
-       x1="1313.13"
-       y1="555.27002"
-       x2="1315.13"
-       y2="558.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35910" />
-    <line
-       x1="1298.23"
-       y1="535.13"
-       x2="1300.97"
-       y2="538.35999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35912" />
-    <line
-       x1="1310.97"
-       y1="551.84003"
-       x2="1313.13"
-       y2="555.27002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35914" />
-    <line
-       x1="1215.1"
-       y1="582.59003"
-       x2="1215.46"
-       y2="583.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35916" />
-    <line
-       x1="1300.97"
-       y1="538.35999"
-       x2="1303.63"
-       y2="541.65997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35918" />
-    <line
-       x1="1308.65"
-       y1="548.41998"
-       x2="1310.97"
-       y2="551.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35920" />
-    <line
-       x1="1303.63"
-       y1="541.65997"
-       x2="1306.2"
-       y2="545.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35922" />
-    <line
-       x1="1519.75"
-       y1="409.04001"
-       x2="1518.8101"
-       y2="409.20999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35924" />
-    <line
-       x1="1306.2"
-       y1="545.02002"
-       x2="1308.65"
-       y2="548.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35926" />
-    <line
-       x1="1575.6899"
-       y1="472.53"
-       x2="1575.5699"
-       y2="473.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35928" />
-    <polygon
-       style="opacity:1;fill:#000079"
-       points="1200.6,695.71 1211.84,690.64 1211.59,690.91 "
-       id="polygon35930" />
-    <line
-       x1="1215.46"
-       y1="583.71997"
-       x2="1215.88"
-       y2="584.90997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35932" />
-    <line
-       x1="1520.7"
-       y1="408.95999"
-       x2="1519.75"
-       y2="409.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35934" />
-    <line
-       x1="1220.23"
-       y1="658.64001"
-       x2="1218.75"
-       y2="659.58002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35936" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1477.57,497.21 1474,505.1 1474.09,504.61 "
-       id="polygon35938" />
-    <line
-       x1="1575.5699"
-       y1="473.82001"
-       x2="1575.34"
-       y2="475.13"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35940" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1200.44,697.02 1189.18,702.03 1189.27,702.48 "
-       id="polygon35942" />
-    <line
-       x1="1218.75"
-       y1="659.58002"
-       x2="1201.04"
-       y2="686"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35944" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1200.45,696.61 1189.2,701.61 1189.18,702.03 "
-       id="polygon35946" />
-    <line
-       x1="1190.42"
-       y1="701.84003"
-       x2="1191.12"
-       y2="700.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35948" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1190.5,700.94 1201.76,695.93 1201.35,695.68 "
-       id="polygon35950" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1201.34,695.68 1212.58,690.61 1212.19,690.54 "
-       id="polygon35952" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="1470.69,503.2 1474.66,495 1474.25,495.31 "
-       id="polygon35954" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1473.89,496.22 1470.34,504.11 1470.43,504.63 "
-       id="polygon35956" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1202.36,699.16 1213.6,694.09 1213.86,693.81 "
-       id="polygon35958" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1473.99,496.74 1470.43,504.63 1470.7,505.12 "
-       id="polygon35960" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1201.75,695.93 1212.99,690.86 1212.58,690.61 "
-       id="polygon35962" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1476.89,497.94 1473.33,505.83 1473.74,505.52 "
-       id="polygon35964" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1202.62,698.89 1213.86,693.81 1214.01,693.4 "
-       id="polygon35966" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.26,497.23 1470.7,505.12 1471.12,505.54 "
-       id="polygon35968" />
-    <line
-       x1="1221.65"
-       y1="657.63"
-       x2="1220.23"
-       y2="658.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35970" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1476.37,498.1 1472.8,505.99 1473.33,505.83 "
-       id="polygon35972" />
-    <line
-       x1="1521.66"
-       y1="408.97"
-       x2="1520.7"
-       y2="408.95999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35974" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1202.13,696.33 1213.38,691.25 1212.99,690.86 "
-       id="polygon35976" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.68,497.65 1471.12,505.54 1471.64,505.84 "
-       id="polygon35978" />
-    <line
-       x1="1215.88"
-       y1="584.90997"
-       x2="1216.37"
-       y2="586.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35980" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1475.79,498.11 1472.23,506 1472.8,505.99 "
-       id="polygon35982" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1202.77,698.48 1214.01,693.4 1214.03,692.89 "
-       id="polygon35984" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1475.2,497.95 1471.64,505.84 1472.23,506 "
-       id="polygon35986" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1202.45,696.83 1213.7,691.76 1213.38,691.25 "
-       id="polygon35988" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1202.79,697.96 1214.03,692.89 1213.92,692.32 "
-       id="polygon35990" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1202.68,697.39 1213.92,692.32 1213.7,691.76 "
-       id="polygon35992" />
-    <line
-       x1="1575.34"
-       y1="475.13"
-       x2="1574.98"
-       y2="476.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35994" />
-    <line
-       x1="1222.98"
-       y1="656.54999"
-       x2="1221.65"
-       y2="657.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35996" />
-    <line
-       x1="1522.61"
-       y1="409.07001"
-       x2="1521.66"
-       y2="408.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line35998" />
-    <line
-       x1="1216.37"
-       y1="586.17999"
-       x2="1216.91"
-       y2="587.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36000" />
-    <polygon
-       style="opacity:1;fill:#000089"
-       points="1212.19,690.54 1201.34,695.68 1200.95,695.61 "
-       id="polygon36002" />
-    <line
-       x1="1224.23"
-       y1="655.40997"
-       x2="1222.98"
-       y2="656.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36004" />
-    <polygon
-       style="opacity:1;fill:#00008e"
-       points="1212.58,690.61 1201.75,695.93 1201.34,695.68 "
-       id="polygon36006" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1213.86,693.81 1202.36,699.16 1202.62,698.89 "
-       id="polygon36008" />
-    <line
-       x1="1574.98"
-       y1="476.45001"
-       x2="1574.52"
-       y2="477.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36010" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1212.99,690.86 1202.13,696.33 1201.75,695.93 "
-       id="polygon36012" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1214.01,693.4 1202.62,698.89 1202.77,698.48 "
-       id="polygon36014" />
-    <line
-       x1="1523.55"
-       y1="409.26001"
-       x2="1522.61"
-       y2="409.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36016" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1213.38,691.25 1202.45,696.83 1202.13,696.33 "
-       id="polygon36018" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1214.03,692.89 1202.77,698.48 1202.79,697.96 "
-       id="polygon36020" />
-    <line
-       x1="1225.39"
-       y1="654.20001"
-       x2="1224.23"
-       y2="655.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36022" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1213.7,691.76 1202.68,697.39 1202.45,696.83 "
-       id="polygon36024" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1213.92,692.32 1202.79,697.96 1202.68,697.39 "
-       id="polygon36026" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1470.43,504.63 1473.89,496.22 1473.99,496.74 "
-       id="polygon36028" />
-    <line
-       x1="1216.91"
-       y1="587.5"
-       x2="1217.51"
-       y2="588.89001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36030" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1473.74,505.52 1476.89,497.94 1477.3,497.63 "
-       id="polygon36032" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1470.7,505.12 1473.99,496.74 1474.26,497.23 "
-       id="polygon36034" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1473.33,505.83 1476.37,498.1 1476.89,497.94 "
-       id="polygon36036" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1471.12,505.54 1474.26,497.23 1474.68,497.65 "
-       id="polygon36038" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1472.8,505.99 1475.79,498.11 1476.37,498.1 "
-       id="polygon36040" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1471.64,505.84 1474.68,497.65 1475.2,497.95 "
-       id="polygon36042" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1472.23,506 1475.2,497.95 1475.79,498.11 "
-       id="polygon36044" />
-    <line
-       x1="1574.52"
-       y1="477.75"
-       x2="1573.95"
-       y2="479.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36046" />
-    <line
-       x1="1226.46"
-       y1="652.92999"
-       x2="1225.39"
-       y2="654.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36048" />
-    <line
-       x1="1524.48"
-       y1="409.54001"
-       x2="1523.55"
-       y2="409.26001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36050" />
-    <line
-       x1="1217.51"
-       y1="588.89001"
-       x2="1218.15"
-       y2="590.34003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36052" />
-    <line
-       x1="1227.45"
-       y1="651.59003"
-       x2="1226.46"
-       y2="652.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36054" />
-    <line
-       x1="1573.95"
-       y1="479.04999"
-       x2="1573.25"
-       y2="480.32999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36056" />
-    <line
-       x1="1218.15"
-       y1="590.34003"
-       x2="1218.83"
-       y2="591.84998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36058" />
-    <line
-       x1="1228.34"
-       y1="650.20001"
-       x2="1227.45"
-       y2="651.59003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36060" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1201.76,695.93 1190.89,701.33 1190.5,700.94 "
-       id="polygon36062" />
-    <line
-       x1="1191.12"
-       y1="700.78998"
-       x2="1191.12"
-       y2="700.78998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36064" />
-    <line
-       x1="1526.28"
-       y1="410.37"
-       x2="1525.39"
-       y2="409.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36066" />
-    <line
-       x1="1573.25"
-       y1="480.32999"
-       x2="1572.45"
-       y2="481.57999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36068" />
-    <line
-       x1="1229.14"
-       y1="648.72998"
-       x2="1228.34"
-       y2="650.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36070" />
-    <line
-       x1="1218.83"
-       y1="591.84998"
-       x2="1219.55"
-       y2="593.40997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36072" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1190.09,700.69 1201.35,695.68 1200.95,695.61 "
-       id="polygon36074" />
-    <polygon
-       style="opacity:1;fill:#00008a"
-       points="1200.95,695.61 1190.09,700.69 1189.7,700.61 "
-       id="polygon36076" />
-    <polygon
-       style="opacity:1;fill:#00008f"
-       points="1201.35,695.68 1190.5,700.94 1190.09,700.69 "
-       id="polygon36078" />
-    <line
-       x1="1201.04"
-       y1="686"
-       x2="1191.35"
-       y2="700.46002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36080" />
-    <polygon
-       style="opacity:1;fill:#0000be"
-       points="1191.11,704.18 1202.36,699.16 1202.62,698.89 "
-       id="polygon36082" />
-    <line
-       x1="1229.84"
-       y1="647.21997"
-       x2="1229.14"
-       y2="648.72998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36084" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1190.89,701.33 1202.14,696.32 1201.76,695.93 "
-       id="polygon36086" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1191.51,703.49 1202.77,698.48 1202.79,697.96 "
-       id="polygon36088" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1191.21,701.84 1202.46,696.83 1202.14,696.32 "
-       id="polygon36090" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1191.54,702.97 1202.79,697.96 1202.68,697.39 "
-       id="polygon36092" />
-    <line
-       x1="1572.45"
-       y1="481.57999"
-       x2="1571.54"
-       y2="482.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36094" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1191.43,702.4 1202.68,697.39 1202.46,696.83 "
-       id="polygon36096" />
-    <line
-       x1="1219.55"
-       y1="593.40997"
-       x2="1220.29"
-       y2="595.03003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36098" />
-    <line
-       x1="1230.45"
-       y1="645.64001"
-       x2="1229.84"
-       y2="647.21997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36100" />
-    <line
-       x1="1220.29"
-       y1="595.03003"
-       x2="1221.0601"
-       y2="596.70001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36102" />
-    <line
-       x1="1527.96"
-       y1="411.53"
-       x2="1527.14"
-       y2="410.91"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36104" />
-    <line
-       x1="1571.54"
-       y1="482.79999"
-       x2="1570.53"
-       y2="483.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36106" />
-    <line
-       x1="1230.97"
-       y1="644.02002"
-       x2="1230.45"
-       y2="645.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36108" />
-    <polygon
-       style="opacity:1;fill:#00007d"
-       points="1477.55,487.82 1473.98,495.73 1473.89,496.22 "
-       id="polygon36110" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1477.46,488.32 1473.89,496.22 1473.99,496.74 "
-       id="polygon36112" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1477.55,488.84 1473.99,496.74 1474.26,497.23 "
-       id="polygon36114" />
-    <polygon
-       style="opacity:1;fill:#0000b6"
-       points="1202.77,698.48 1191.36,703.91 1191.51,703.49 "
-       id="polygon36116" />
-    <line
-       x1="1221.0601"
-       y1="596.70001"
-       x2="1221.85"
-       y2="598.41998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36118" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1480.46,490.04 1476.89,497.94 1477.3,497.63 "
-       id="polygon36120" />
-    <line
-       x1="1231.4"
-       y1="642.34003"
-       x2="1230.97"
-       y2="644.02002"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36122" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1477.82,489.33 1474.26,497.23 1474.68,497.65 "
-       id="polygon36124" />
-    <polygon
-       style="opacity:1;fill:#000090"
-       points="1202.14,696.32 1191.21,701.84 1190.89,701.33 "
-       id="polygon36126" />
-    <polygon
-       style="opacity:1;fill:#0000af"
-       points="1202.79,697.96 1191.51,703.49 1191.54,702.97 "
-       id="polygon36128" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1479.94,490.2 1476.36,498.11 1476.89,497.94 "
-       id="polygon36130" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1478.24,489.75 1474.68,497.65 1475.2,497.95 "
-       id="polygon36132" />
-    <line
-       x1="1570.53"
-       y1="483.98001"
-       x2="1569.41"
-       y2="485.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36134" />
-    <polygon
-       style="opacity:1;fill:#000091"
-       points="1202.46,696.83 1191.43,702.4 1191.21,701.84 "
-       id="polygon36136" />
-    <polygon
-       style="opacity:1;fill:#0000a2"
-       points="1202.68,697.39 1191.54,702.97 1191.43,702.4 "
-       id="polygon36138" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1479.36,490.21 1475.79,498.11 1476.36,498.11 "
-       id="polygon36140" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1478.77,490.05 1475.2,497.95 1475.79,498.11 "
-       id="polygon36142" />
-    <line
-       x1="1231.73"
-       y1="640.60999"
-       x2="1231.4"
-       y2="642.34003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36144" />
-    <line
-       x1="1221.85"
-       y1="598.41998"
-       x2="1222.65"
-       y2="600.19"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36146" />
-    <line
-       x1="1569.41"
-       y1="485.10999"
-       x2="1568.2"
-       y2="486.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36148" />
-    <line
-       x1="1529.48"
-       y1="413.01001"
-       x2="1528.74"
-       y2="412.23001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36150" />
-    <line
-       x1="1231.97"
-       y1="638.84003"
-       x2="1231.73"
-       y2="640.60999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36152" />
-    <line
-       x1="1222.65"
-       y1="600.19"
-       x2="1223.45"
-       y2="602"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36154" />
-    <line
-       x1="1232.12"
-       y1="637.03003"
-       x2="1231.97"
-       y2="638.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36156" />
-    <line
-       x1="1223.45"
-       y1="602"
-       x2="1224.25"
-       y2="603.84003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36158" />
-    <line
-       x1="1568.2"
-       y1="486.20001"
-       x2="1566.88"
-       y2="487.22"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36160" />
-    <line
-       x1="1530.16"
-       y1="413.87"
-       x2="1529.48"
-       y2="413.01001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36162" />
-    <line
-       x1="1232.1801"
-       y1="635.17999"
-       x2="1232.12"
-       y2="637.03003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36164" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1473.99,496.74 1477.46,488.32 1477.55,488.84 "
-       id="polygon36166" />
-    <line
-       x1="1224.25"
-       y1="603.84003"
-       x2="1225.05"
-       y2="605.71997"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36168" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1477.3,497.63 1480.46,490.04 1480.88,489.73 "
-       id="polygon36170" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1474.26,497.23 1477.55,488.84 1477.82,489.33 "
-       id="polygon36172" />
-    <line
-       x1="1232.16"
-       y1="633.29999"
-       x2="1232.1801"
-       y2="635.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36174" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1476.89,497.94 1479.94,490.2 1480.46,490.04 "
-       id="polygon36176" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1474.68,497.65 1477.82,489.33 1478.24,489.75 "
-       id="polygon36178" />
-    <line
-       x1="1566.88"
-       y1="487.22"
-       x2="1565.48"
-       y2="488.17999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36180" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1476.36,498.11 1479.36,490.21 1479.94,490.2 "
-       id="polygon36182" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1475.2,497.95 1478.24,489.75 1478.77,490.05 "
-       id="polygon36184" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1475.79,498.11 1478.77,490.05 1479.36,490.21 "
-       id="polygon36186" />
-    <line
-       x1="1225.05"
-       y1="605.71997"
-       x2="1225.83"
-       y2="607.63"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36188" />
-    <line
-       x1="1530.8"
-       y1="414.79001"
-       x2="1530.16"
-       y2="413.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36190" />
-    <line
-       x1="1232.05"
-       y1="631.38"
-       x2="1232.16"
-       y2="633.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36192" />
-    <line
-       x1="1225.83"
-       y1="607.63"
-       x2="1226.59"
-       y2="609.57001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36194" />
-    <line
-       x1="1231.87"
-       y1="629.44"
-       x2="1232.05"
-       y2="631.38"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36196" />
-    <line
-       x1="1565.48"
-       y1="488.17999"
-       x2="1564"
-       y2="489.06"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36198" />
-    <line
-       x1="1226.59"
-       y1="609.57001"
-       x2="1227.3199"
-       y2="611.53003"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36200" />
-    <line
-       x1="1231.61"
-       y1="627.47998"
-       x2="1231.87"
-       y2="629.44"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36202" />
-    <line
-       x1="1227.3199"
-       y1="611.53003"
-       x2="1228.03"
-       y2="613.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36204" />
-    <line
-       x1="1231.28"
-       y1="625.5"
-       x2="1231.61"
-       y2="627.47998"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36206" />
-    <line
-       x1="1531.37"
-       y1="415.78"
-       x2="1530.8"
-       y2="414.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36208" />
-    <line
-       x1="1228.03"
-       y1="613.51001"
-       x2="1228.7"
-       y2="615.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36210" />
-    <line
-       x1="1230.88"
-       y1="623.51001"
-       x2="1231.28"
-       y2="625.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36212" />
-    <line
-       x1="1228.7"
-       y1="615.5"
-       x2="1229.3199"
-       y2="617.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36214" />
-    <line
-       x1="1230.42"
-       y1="621.51001"
-       x2="1230.88"
-       y2="623.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36216" />
-    <line
-       x1="1229.3199"
-       y1="617.5"
-       x2="1229.89"
-       y2="619.5"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36218" />
-    <line
-       x1="1229.89"
-       y1="619.5"
-       x2="1230.42"
-       y2="621.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36220" />
-    <line
-       x1="1564"
-       y1="489.06"
-       x2="1562.4301"
-       y2="489.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36222" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1477.84,488.36 1477.46,488.32 1477.55,488.84 "
-       id="polygon36224" />
-    <line
-       x1="1531.88"
-       y1="416.82999"
-       x2="1531.37"
-       y2="415.78"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36226" />
-    <line
-       x1="1562.4301"
-       y1="489.87"
-       x2="1560.79"
-       y2="490.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36228" />
-    <line
-       x1="1532.33"
-       y1="417.94"
-       x2="1531.88"
-       y2="416.82999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36230" />
-    <line
-       x1="1560.79"
-       y1="490.60001"
-       x2="1559.08"
-       y2="491.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36232" />
-    <line
-       x1="1559.08"
-       y1="491.23999"
-       x2="1557.3"
-       y2="491.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36234" />
-    <line
-       x1="1532.7"
-       y1="419.10001"
-       x2="1532.33"
-       y2="417.94"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36236" />
-    <line
-       x1="1557.3"
-       y1="491.79001"
-       x2="1555.48"
-       y2="492.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36238" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1484.75,481.4 1481.14,489.31 1481.23,488.82 "
-       id="polygon36240" />
-    <line
-       x1="1533.01"
-       y1="420.29999"
-       x2="1532.7"
-       y2="419.10001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36242" />
-    <polygon
-       style="opacity:1;fill:#000084"
-       points="1477.81,487.4 1481.83,479.18 1481.41,479.49 "
-       id="polygon36244" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1481.06,480.41 1477.46,488.32 1477.55,488.84 "
-       id="polygon36246" />
-    <line
-       x1="1555.48"
-       y1="492.23999"
-       x2="1553.6"
-       y2="492.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36248" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1481.16,480.93 1477.55,488.84 1477.82,489.33 "
-       id="polygon36250" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1481.43,481.42 1477.82,489.33 1478.24,489.75 "
-       id="polygon36252" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1483.54,482.3 1479.93,490.2 1480.46,490.04 "
-       id="polygon36254" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1481.85,481.84 1478.24,489.75 1478.77,490.05 "
-       id="polygon36256" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1482.96,482.3 1479.35,490.21 1479.93,490.2 "
-       id="polygon36258" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1482.38,482.14 1478.77,490.05 1479.35,490.21 "
-       id="polygon36260" />
-    <line
-       x1="1553.6"
-       y1="492.60001"
-       x2="1551.6801"
-       y2="492.85001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36262" />
-    <line
-       x1="1533.23"
-       y1="421.54999"
-       x2="1533.01"
-       y2="420.29999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36264" />
-    <line
-       x1="1551.6801"
-       y1="492.85001"
-       x2="1549.73"
-       y2="493"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36266" />
-    <line
-       x1="1533.38"
-       y1="422.84"
-       x2="1533.23"
-       y2="421.54999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36268" />
-    <line
-       x1="1549.73"
-       y1="493"
-       x2="1547.75"
-       y2="493.04001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36270" />
-    <line
-       x1="1547.75"
-       y1="493.04001"
-       x2="1545.75"
-       y2="492.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36272" />
-    <line
-       x1="1533.45"
-       y1="424.16"
-       x2="1533.38"
-       y2="422.84"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36274" />
-    <line
-       x1="1545.75"
-       y1="492.98001"
-       x2="1543.73"
-       y2="492.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36276" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1477.55,488.84 1481.06,480.41 1481.16,480.93 "
-       id="polygon36278" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1480.88,489.73 1484.07,482.14 1484.48,481.83 "
-       id="polygon36280" />
-    <polygon
-       style="opacity:1;fill:#000073"
-       points="1477.82,489.33 1481.16,480.93 1481.43,481.42 "
-       id="polygon36282" />
-    <line
-       x1="1543.73"
-       y1="492.79999"
-       x2="1541.71"
-       y2="492.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36284" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1480.46,490.04 1483.54,482.3 1484.07,482.14 "
-       id="polygon36286" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1478.24,489.75 1481.43,481.42 1481.85,481.84 "
-       id="polygon36288" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1479.93,490.2 1482.96,482.3 1483.54,482.3 "
-       id="polygon36290" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1478.77,490.05 1481.85,481.84 1482.38,482.14 "
-       id="polygon36292" />
-    <line
-       x1="1533.4399"
-       y1="425.51001"
-       x2="1533.45"
-       y2="424.16"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36294" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1479.35,490.21 1482.38,482.14 1482.96,482.3 "
-       id="polygon36296" />
-    <line
-       x1="1541.71"
-       y1="492.51001"
-       x2="1539.7"
-       y2="492.10999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36298" />
-    <line
-       x1="1539.7"
-       y1="492.10999"
-       x2="1537.6899"
-       y2="491.60001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36300" />
-    <line
-       x1="1537.6899"
-       y1="491.60001"
-       x2="1535.7"
-       y2="490.97"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36302" />
-    <line
-       x1="1533.34"
-       y1="426.87"
-       x2="1533.4399"
-       y2="425.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36304" />
-    <line
-       x1="1535.7"
-       y1="490.97"
-       x2="1533.73"
-       y2="490.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36306" />
-    <line
-       x1="1533.73"
-       y1="490.23999"
-       x2="1531.8"
-       y2="489.39999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36308" />
-    <line
-       x1="1531.8"
-       y1="489.39999"
-       x2="1529.91"
-       y2="488.45001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36310" />
-    <line
-       x1="1533.16"
-       y1="428.25"
-       x2="1533.34"
-       y2="426.87"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36312" />
-    <line
-       x1="1529.91"
-       y1="488.45001"
-       x2="1528.0699"
-       y2="487.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36314" />
-    <line
-       x1="1528.0699"
-       y1="487.39001"
-       x2="1526.27"
-       y2="486.23999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36316" />
-    <line
-       x1="1526.27"
-       y1="486.23999"
-       x2="1524.54"
-       y2="484.98001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36318" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1484.39,481.25 1484.48,481.83 1484.75,481.4 "
-       id="polygon36320" />
-    <line
-       x1="1532.89"
-       y1="429.64001"
-       x2="1533.16"
-       y2="428.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36322" />
-    <line
-       x1="1524.54"
-       y1="484.98001"
-       x2="1522.88"
-       y2="483.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36324" />
-    <line
-       x1="1522.88"
-       y1="483.64001"
-       x2="1521.28"
-       y2="482.20001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36326" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1481.73,481.27 1481.43,481.42 1481.85,481.84 "
-       id="polygon36328" />
-    <line
-       x1="1521.28"
-       y1="482.20001"
-       x2="1519.77"
-       y2="480.67999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36330" />
-    <line
-       x1="1519.77"
-       y1="480.67999"
-       x2="1518.34"
-       y2="479.07001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36332" />
-    <line
-       x1="1532.54"
-       y1="431.03"
-       x2="1532.89"
-       y2="429.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36334" />
-    <line
-       x1="1518.34"
-       y1="479.07001"
-       x2="1516.99"
-       y2="477.39001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36336" />
-    <line
-       x1="1516.99"
-       y1="477.39001"
-       x2="1515.74"
-       y2="475.64001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36338" />
-    <line
-       x1="1515.74"
-       y1="475.64001"
-       x2="1514.59"
-       y2="473.82001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36340" />
-    <line
-       x1="1514.59"
-       y1="473.82001"
-       x2="1513.54"
-       y2="471.95001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36342" />
-    <line
-       x1="1513.54"
-       y1="471.95001"
-       x2="1512.59"
-       y2="470.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36344" />
-    <line
-       x1="1532.09"
-       y1="432.41"
-       x2="1532.54"
-       y2="431.03"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36346" />
-    <line
-       x1="1512.59"
-       y1="470.03"
-       x2="1511.75"
-       y2="468.04999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36348" />
-    <line
-       x1="1531.5699"
-       y1="433.79001"
-       x2="1532.09"
-       y2="432.41"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36350" />
-    <polygon
-       style="opacity:1;fill:#0000e3"
-       points="1488.42,473.51 1484.75,481.41 1484.84,480.91 "
-       id="polygon36352" />
-    <line
-       x1="1530.96"
-       y1="435.14999"
-       x2="1531.5699"
-       y2="433.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36354" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1484.73,472.5 1481.06,480.4 1481.16,480.93 "
-       id="polygon36356" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1484.82,473.02 1481.16,480.93 1481.43,481.42 "
-       id="polygon36358" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1485.09,473.52 1481.43,481.42 1481.85,481.84 "
-       id="polygon36360" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1487.21,474.4 1483.54,482.3 1484.07,482.14 "
-       id="polygon36362" />
-    <line
-       x1="1530.26"
-       y1="436.48999"
-       x2="1530.96"
-       y2="435.14999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36364" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1485.52,473.94 1481.85,481.84 1482.38,482.14 "
-       id="polygon36366" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1486.63,474.41 1482.96,482.3 1483.54,482.3 "
-       id="polygon36368" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1486.05,474.25 1482.38,482.14 1482.96,482.3 "
-       id="polygon36370" />
-    <line
-       x1="1529.48"
-       y1="437.79999"
-       x2="1530.26"
-       y2="436.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36372" />
-    <line
-       x1="1528.63"
-       y1="439.07999"
-       x2="1529.48"
-       y2="437.79999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36374" />
-    <line
-       x1="1527.6899"
-       y1="440.32001"
-       x2="1528.63"
-       y2="439.07999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36376" />
-    <line
-       x1="1526.67"
-       y1="441.51001"
-       x2="1527.6899"
-       y2="440.32001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36378" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1481.16,480.93 1484.73,472.5 1484.82,473.02 "
-       id="polygon36380" />
-    <line
-       x1="1525.59"
-       y1="442.66"
-       x2="1526.67"
-       y2="441.51001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36382" />
-    <polygon
-       style="opacity:1;fill:#0000b4"
-       points="1484.48,481.83 1487.74,474.24 1488.16,473.93 "
-       id="polygon36384" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1481.43,481.42 1484.82,473.02 1485.09,473.52 "
-       id="polygon36386" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1484.07,482.14 1487.21,474.4 1487.74,474.24 "
-       id="polygon36388" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1481.85,481.84 1485.09,473.52 1485.52,473.94 "
-       id="polygon36390" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1483.54,482.3 1486.63,474.41 1487.21,474.4 "
-       id="polygon36392" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1482.38,482.14 1485.52,473.94 1486.05,474.25 "
-       id="polygon36394" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1482.96,482.3 1486.05,474.25 1486.63,474.41 "
-       id="polygon36396" />
-    <line
-       x1="1524.4301"
-       y1="443.75"
-       x2="1525.59"
-       y2="442.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36398" />
-    <line
-       x1="1523.21"
-       y1="444.79001"
-       x2="1524.4301"
-       y2="443.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36400" />
-    <line
-       x1="1521.92"
-       y1="445.75"
-       x2="1523.21"
-       y2="444.79001"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36402" />
-    <line
-       x1="1520.5699"
-       y1="446.66"
-       x2="1521.92"
-       y2="445.75"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36404" />
-    <line
-       x1="1519.1801"
-       y1="447.48999"
-       x2="1520.5699"
-       y2="446.66"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36406" />
-    <line
-       x1="1517.73"
-       y1="448.25"
-       x2="1519.1801"
-       y2="447.48999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36408" />
-    <line
-       x1="1516.23"
-       y1="448.92999"
-       x2="1517.73"
-       y2="448.25"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36410" />
-    <line
-       x1="1514.7"
-       y1="449.51999"
-       x2="1516.23"
-       y2="448.92999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36412" />
-    <polygon
-       style="opacity:1;fill:#000083"
-       points="1485.09,471.57 1489.28,463.38 1488.86,463.68 "
-       id="polygon36414" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1488.59,464.11 1484.82,472 1484.73,472.5 "
-       id="polygon36416" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1488.6,465.13 1484.82,473.02 1485.1,473.52 "
-       id="polygon36418" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1491.52,466.36 1487.74,474.25 1488.15,473.94 "
-       id="polygon36420" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1488.87,465.63 1485.1,473.52 1485.52,473.94 "
-       id="polygon36422" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1489.29,466.05 1485.52,473.94 1486.05,474.25 "
-       id="polygon36424" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1490.41,466.52 1486.63,474.41 1487.21,474.41 "
-       id="polygon36426" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1489.82,466.36 1486.05,474.25 1486.63,474.41 "
-       id="polygon36428" />
-    <polygon
-       style="opacity:1;fill:#00007c"
-       points="1484.73,472.5 1488.59,464.11 1488.5,464.61 "
-       id="polygon36430" />
-    <polygon
-       style="opacity:1;fill:#000078"
-       points="1484.82,473.02 1488.5,464.61 1488.6,465.13 "
-       id="polygon36432" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1488.15,473.94 1491.52,466.36 1491.94,466.05 "
-       id="polygon36434" />
-    <polygon
-       style="opacity:1;fill:#000072"
-       points="1485.1,473.52 1488.6,465.13 1488.87,465.63 "
-       id="polygon36436" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1491.93,466.06 1491.52,466.37 1494.25,461.07 "
-       id="polygon36438" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1487.74,474.25 1490.99,466.52 1491.52,466.36 "
-       id="polygon36440" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1485.52,473.94 1488.87,465.63 1489.29,466.05 "
-       id="polygon36442" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1487.21,474.41 1490.41,466.52 1490.99,466.52 "
-       id="polygon36444" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1486.05,474.25 1489.29,466.05 1489.82,466.36 "
-       id="polygon36446" />
-    <polygon
-       style="opacity:1;fill:#000081"
-       points="1486.63,474.41 1489.82,466.36 1490.41,466.52 "
-       id="polygon36448" />
-    <polygon
-       style="opacity:1;fill:#0000dd"
-       points="1490.88,466.19 1490.41,466.52 1490.99,466.52 "
-       id="polygon36450" />
-    <line
-       x1="1511.75"
-       y1="468.04999"
-       x2="1499.7"
-       y2="449.53"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36452" />
-    <polygon
-       style="opacity:1;fill:#0000b5"
-       points="1495.45,458.5 1491.52,466.37 1494.25,461.07 "
-       id="polygon36454" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1492.8,457.75 1488.88,465.62 1489.29,466.05 "
-       id="polygon36456" />
-    <polygon
-       style="opacity:1;fill:#0000a8"
-       points="1494.93,458.66 1490.99,466.53 1491.52,466.37 "
-       id="polygon36458" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1493.22,458.18 1489.29,466.05 1489.82,466.36 "
-       id="polygon36460" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1494.34,458.66 1490.41,466.52 1490.99,466.53 "
-       id="polygon36462" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1493.75,458.49 1489.82,466.36 1490.41,466.52 "
-       id="polygon36464" />
-    <line
-       x1="1499.7"
-       y1="449.53"
-       x2="1514.7"
-       y2="449.51999"
-       style="stroke:#0000ff;stroke-width:0.56999999;stroke-dasharray:none"
-       id="line36466" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1489.29,466.05 1492.8,457.75 1493.22,458.18 "
-       id="polygon36468" />
-    <polygon
-       style="opacity:1;fill:#000096"
-       points="1490.99,466.53 1494.34,458.66 1494.93,458.66 "
-       id="polygon36470" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1490.41,466.52 1493.75,458.49 1494.34,458.66 "
-       id="polygon36472" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1497.89,450.64 1493.75,458.49 1494.34,458.66 "
-       id="polygon36474" />
-    <polygon
-       style="opacity:1;fill:#000080"
-       points="1494.79,455.8 1498.93,447.95 1498.46,447.81 "
-       id="polygon36476" />
-    <polygon
-       style="opacity:1;fill:#0000a9"
-       points="1493.86,455.66 1498,447.8 1497.57,447.93 "
-       id="polygon36478" />
-    <polygon
-       style="opacity:1;fill:#000070"
-       points="1495.55,456.4 1499.69,448.54 1499.35,448.2 "
-       id="polygon36480" />
-    <polygon
-       style="opacity:1;fill:#0000db"
-       points="1498.46,447.81 1499.04,447.65 1498.46,447.48 "
-       id="polygon36482" />
-    <line
-       x1="1718.9399"
-       y1="597.44"
-       x2="1718.95"
-       y2="594.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36484" />
-    <line
-       x1="1713.71"
-       y1="586.89001"
-       x2="1718.95"
-       y2="594.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36486" />
-    <line
-       x1="1718.95"
-       y1="594.88"
-       x2="1715.26"
-       y2="593.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36488" />
-    <line
-       x1="1713.71"
-       y1="586.89001"
-       x2="1715.26"
-       y2="593.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36490" />
-    <line
-       x1="1715.26"
-       y1="593.90002"
-       x2="1711.55"
-       y2="595.46997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36492" />
-    <line
-       x1="1713.71"
-       y1="586.89001"
-       x2="1711.55"
-       y2="595.46997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36494" />
-    <line
-       x1="1711.55"
-       y1="595.46997"
-       x2="1711.54"
-       y2="598.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36496" />
-    <line
-       x1="1713.71"
-       y1="586.89001"
-       x2="1711.54"
-       y2="598.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36498" />
-    <line
-       x1="1711.54"
-       y1="598.03003"
-       x2="1715.23"
-       y2="599.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36500" />
-    <line
-       x1="1713.71"
-       y1="586.89001"
-       x2="1715.23"
-       y2="599.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36502" />
-    <line
-       x1="1715.23"
-       y1="599.01001"
-       x2="1718.9399"
-       y2="597.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36504" />
-    <line
-       x1="1718.9399"
-       y1="597.44"
-       x2="1713.71"
-       y2="586.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36506" />
-    <line
-       x1="1718.4301"
-       y1="594.25"
-       x2="1718.4399"
-       y2="591.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36508" />
-    <line
-       x1="1718.4399"
-       y1="591.70001"
-       x2="1714.75"
-       y2="590.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36510" />
-    <line
-       x1="1713.2"
-       y1="583.70001"
-       x2="1714.75"
-       y2="590.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36512" />
-    <line
-       x1="1714.75"
-       y1="590.71997"
-       x2="1711.04"
-       y2="592.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36514" />
-    <line
-       x1="1713.2"
-       y1="583.70001"
-       x2="1711.04"
-       y2="592.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36516" />
-    <line
-       x1="1713.2"
-       y1="583.70001"
-       x2="1711.02"
-       y2="594.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36518" />
-    <line
-       x1="1711.02"
-       y1="594.84003"
-       x2="1714.71"
-       y2="595.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36520" />
-    <line
-       x1="1713.2"
-       y1="583.70001"
-       x2="1714.71"
-       y2="595.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36522" />
-    <line
-       x1="1714.71"
-       y1="595.82001"
-       x2="1718.4301"
-       y2="594.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36524" />
-    <line
-       x1="1718.4301"
-       y1="594.25"
-       x2="1713.2"
-       y2="583.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36526" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1717.9301"
-       y2="588.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36528" />
-    <line
-       x1="1717.9301"
-       y1="588.51001"
-       x2="1714.24"
-       y2="587.53003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36530" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1714.24"
-       y2="587.53003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36532" />
-    <line
-       x1="1714.24"
-       y1="587.53003"
-       x2="1710.53"
-       y2="589.09998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36534" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1710.51"
-       y2="591.65002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36536" />
-    <line
-       x1="1710.51"
-       y1="591.65002"
-       x2="1714.2"
-       y2="592.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36538" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1714.2"
-       y2="592.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36540" />
-    <line
-       x1="1714.2"
-       y1="592.63"
-       x2="1717.92"
-       y2="591.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36542" />
-    <line
-       x1="1717.92"
-       y1="591.06"
-       x2="1712.6899"
-       y2="580.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36544" />
-    <line
-       x1="1702.05"
-       y1="588.19"
-       x2="1705.53"
-       y2="590.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36546" />
-    <line
-       x1="1705.53"
-       y1="590.76001"
-       x2="1706.09"
-       y2="594.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36548" />
-    <line
-       x1="1708.66"
-       y1="584.94"
-       x2="1706.09"
-       y2="594.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36550" />
-    <line
-       x1="1706.09"
-       y1="594.19"
-       x2="1703.16"
-       y2="595.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36552" />
-    <line
-       x1="1708.66"
-       y1="584.94"
-       x2="1703.16"
-       y2="595.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36554" />
-    <line
-       x1="1703.16"
-       y1="595.04999"
-       x2="1699.6801"
-       y2="592.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36556" />
-    <line
-       x1="1708.66"
-       y1="584.94"
-       x2="1699.6801"
-       y2="592.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36558" />
-    <line
-       x1="1699.6801"
-       y1="592.47998"
-       x2="1699.13"
-       y2="589.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36560" />
-    <line
-       x1="1699.13"
-       y1="589.04999"
-       x2="1702.05"
-       y2="588.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36562" />
-    <line
-       x1="1702.05"
-       y1="588.19"
-       x2="1708.66"
-       y2="584.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36564" />
-    <line
-       x1="1704.0699"
-       y1="585.96002"
-       x2="1707.55"
-       y2="588.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36566" />
-    <line
-       x1="1710.6801"
-       y1="582.71997"
-       x2="1708.11"
-       y2="591.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36568" />
-    <line
-       x1="1708.11"
-       y1="591.96002"
-       x2="1705.1801"
-       y2="592.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36570" />
-    <line
-       x1="1710.6801"
-       y1="582.71997"
-       x2="1705.1801"
-       y2="592.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36572" />
-    <line
-       x1="1705.1801"
-       y1="592.82001"
-       x2="1701.7"
-       y2="590.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36574" />
-    <line
-       x1="1710.6801"
-       y1="582.71997"
-       x2="1701.7"
-       y2="590.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36576" />
-    <line
-       x1="1701.7"
-       y1="590.25"
-       x2="1701.15"
-       y2="586.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36578" />
-    <line
-       x1="1710.6801"
-       y1="582.71997"
-       x2="1701.15"
-       y2="586.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36580" />
-    <line
-       x1="1701.15"
-       y1="586.83002"
-       x2="1704.0699"
-       y2="585.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36582" />
-    <line
-       x1="1704.0699"
-       y1="585.96002"
-       x2="1710.6801"
-       y2="582.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36584" />
-    <line
-       x1="1706.09"
-       y1="583.73999"
-       x2="1709.5699"
-       y2="586.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36586" />
-    <line
-       x1="1709.5699"
-       y1="586.29999"
-       x2="1710.12"
-       y2="589.72998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36588" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1710.12"
-       y2="589.72998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36590" />
-    <line
-       x1="1710.12"
-       y1="589.72998"
-       x2="1707.2"
-       y2="590.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36592" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1707.2"
-       y2="590.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36594" />
-    <line
-       x1="1707.2"
-       y1="590.59003"
-       x2="1703.72"
-       y2="588.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36596" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1703.72"
-       y2="588.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36598" />
-    <line
-       x1="1703.72"
-       y1="588.03003"
-       x2="1703.17"
-       y2="584.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36600" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1703.17"
-       y2="584.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36602" />
-    <line
-       x1="1703.17"
-       y1="584.60999"
-       x2="1706.09"
-       y2="583.73999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36604" />
-    <line
-       x1="1706.09"
-       y1="583.73999"
-       x2="1712.6899"
-       y2="580.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36606" />
-    <line
-       x1="1719.59"
-       y1="582.33002"
-       x2="1731.5699"
-       y2="581.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36608" />
-    <line
-       x1="1731.5699"
-       y1="581.28998"
-       x2="1732.11"
-       y2="584.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36610" />
-    <line
-       x1="1719.59"
-       y1="582.33002"
-       x2="1732.11"
-       y2="584.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36612" />
-    <line
-       x1="1732.11"
-       y1="584.71997"
-       x2="1730.52"
-       y2="588.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36614" />
-    <line
-       x1="1719.59"
-       y1="582.33002"
-       x2="1730.52"
-       y2="588.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36616" />
-    <line
-       x1="1730.52"
-       y1="588.5"
-       x2="1728.38"
-       y2="588.84998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36618" />
-    <line
-       x1="1719.59"
-       y1="582.33002"
-       x2="1728.38"
-       y2="588.84998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36620" />
-    <line
-       x1="1728.38"
-       y1="588.84998"
-       x2="1727.84"
-       y2="585.41998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36622" />
-    <line
-       x1="1719.59"
-       y1="582.33002"
-       x2="1727.84"
-       y2="585.41998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36624" />
-    <line
-       x1="1727.84"
-       y1="585.41998"
-       x2="1729.4301"
-       y2="581.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36626" />
-    <line
-       x1="1729.4301"
-       y1="581.64001"
-       x2="1719.59"
-       y2="582.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36628" />
-    <line
-       x1="1716.14"
-       y1="581.40997"
-       x2="1728.1"
-       y2="580.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36630" />
-    <line
-       x1="1728.1"
-       y1="580.38"
-       x2="1728.65"
-       y2="583.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36632" />
-    <line
-       x1="1716.14"
-       y1="581.40997"
-       x2="1728.65"
-       y2="583.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36634" />
-    <line
-       x1="1728.65"
-       y1="583.79999"
-       x2="1727.05"
-       y2="587.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36636" />
-    <line
-       x1="1716.14"
-       y1="581.40997"
-       x2="1727.05"
-       y2="587.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36638" />
-    <line
-       x1="1727.05"
-       y1="587.58002"
-       x2="1724.92"
-       y2="587.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36640" />
-    <line
-       x1="1724.92"
-       y1="587.92999"
-       x2="1724.37"
-       y2="584.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36642" />
-    <line
-       x1="1716.14"
-       y1="581.40997"
-       x2="1724.37"
-       y2="584.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36644" />
-    <line
-       x1="1724.37"
-       y1="584.5"
-       x2="1725.96"
-       y2="580.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36646" />
-    <line
-       x1="1725.96"
-       y1="580.71997"
-       x2="1716.14"
-       y2="581.40997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36648" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1724.64"
-       y2="579.46002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36650" />
-    <line
-       x1="1724.64"
-       y1="579.46002"
-       x2="1725.1899"
-       y2="582.89001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36652" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1725.1899"
-       y2="582.89001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36654" />
-    <line
-       x1="1725.1899"
-       y1="582.89001"
-       x2="1723.6"
-       y2="586.66998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36656" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1723.6"
-       y2="586.66998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36658" />
-    <line
-       x1="1723.6"
-       y1="586.66998"
-       x2="1721.46"
-       y2="587.02002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36660" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1721.46"
-       y2="587.02002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36662" />
-    <line
-       x1="1721.46"
-       y1="587.02002"
-       x2="1720.91"
-       y2="583.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36664" />
-    <line
-       x1="1712.6899"
-       y1="580.5"
-       x2="1720.91"
-       y2="583.59003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36666" />
-    <line
-       x1="1720.91"
-       y1="583.59003"
-       x2="1722.5"
-       y2="579.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36668" />
-    <line
-       x1="1722.5"
-       y1="579.81"
-       x2="1712.6899"
-       y2="580.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36670" />
-    <line
-       x1="536.78998"
-       y1="180.37"
-       x2="537.59003"
-       y2="178.14"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36672" />
-    <line
-       x1="531.03998"
-       y1="169.78999"
-       x2="537.59003"
-       y2="178.14"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36674" />
-    <line
-       x1="537.59003"
-       y1="178.14"
-       x2="534.53998"
-       y2="177.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36676" />
-    <line
-       x1="531.03998"
-       y1="169.78999"
-       x2="534.53998"
-       y2="177.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36678" />
-    <line
-       x1="534.53998"
-       y1="177.38"
-       x2="530.69"
-       y2="178.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36680" />
-    <line
-       x1="530.69"
-       y1="178.84"
-       x2="529.89001"
-       y2="181.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36682" />
-    <line
-       x1="531.03998"
-       y1="169.78999"
-       x2="529.89001"
-       y2="181.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36684" />
-    <line
-       x1="529.89001"
-       y1="181.07001"
-       x2="532.94"
-       y2="181.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36686" />
-    <line
-       x1="531.03998"
-       y1="169.78999"
-       x2="532.94"
-       y2="181.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36688" />
-    <line
-       x1="532.94"
-       y1="181.84"
-       x2="536.78998"
-       y2="180.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36690" />
-    <line
-       x1="536.78998"
-       y1="180.37"
-       x2="531.03998"
-       y2="169.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36692" />
-    <line
-       x1="535.89001"
-       y1="177.10001"
-       x2="536.69"
-       y2="174.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36694" />
-    <line
-       x1="536.69"
-       y1="174.87"
-       x2="533.64001"
-       y2="174.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36696" />
-    <line
-       x1="530.14001"
-       y1="166.52"
-       x2="533.64001"
-       y2="174.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36698" />
-    <line
-       x1="530.14001"
-       y1="166.52"
-       x2="528.98999"
-       y2="177.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36700" />
-    <line
-       x1="528.98999"
-       y1="177.8"
-       x2="532.03998"
-       y2="178.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36702" />
-    <line
-       x1="530.14001"
-       y1="166.52"
-       x2="532.03998"
-       y2="178.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36704" />
-    <line
-       x1="532.03998"
-       y1="178.57001"
-       x2="535.89001"
-       y2="177.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36706" />
-    <line
-       x1="535.89001"
-       y1="177.10001"
-       x2="530.14001"
-       y2="166.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36708" />
-    <line
-       x1="534.98999"
-       y1="173.82001"
-       x2="535.78998"
-       y2="171.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36710" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="535.78998"
-       y2="171.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36712" />
-    <line
-       x1="535.78998"
-       y1="171.60001"
-       x2="532.73999"
-       y2="170.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36714" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="532.73999"
-       y2="170.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36716" />
-    <line
-       x1="532.73999"
-       y1="170.84"
-       x2="528.89001"
-       y2="172.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36718" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="528.89001"
-       y2="172.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36720" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="528.09003"
-       y2="174.53999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36722" />
-    <line
-       x1="528.09003"
-       y1="174.53999"
-       x2="531.14001"
-       y2="175.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36724" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="531.14001"
-       y2="175.3"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36726" />
-    <line
-       x1="531.14001"
-       y1="175.3"
-       x2="534.98999"
-       y2="173.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36728" />
-    <line
-       x1="534.98999"
-       y1="173.82001"
-       x2="529.23999"
-       y2="163.24001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36730" />
-    <line
-       x1="524.21002"
-       y1="167.22"
-       x2="518.82001"
-       y2="172.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36732" />
-    <line
-       x1="518.82001"
-       y1="172.11"
-       x2="519.78998"
-       y2="175.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36734" />
-    <line
-       x1="524.21002"
-       y1="167.22"
-       x2="519.78998"
-       y2="175.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36736" />
-    <line
-       x1="519.78998"
-       y1="175.63"
-       x2="517.63"
-       y2="176.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36738" />
-    <line
-       x1="524.21002"
-       y1="167.22"
-       x2="517.63"
-       y2="176.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36740" />
-    <line
-       x1="517.63"
-       y1="176.73"
-       x2="514.5"
-       y2="174.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36742" />
-    <line
-       x1="524.21002"
-       y1="167.22"
-       x2="514.5"
-       y2="174.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36744" />
-    <line
-       x1="514.5"
-       y1="174.31"
-       x2="513.53003"
-       y2="170.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36746" />
-    <line
-       x1="524.21002"
-       y1="167.22"
-       x2="513.53003"
-       y2="170.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36748" />
-    <line
-       x1="513.53003"
-       y1="170.78999"
-       x2="515.69"
-       y2="169.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36750" />
-    <line
-       x1="515.69"
-       y1="169.69"
-       x2="524.21002"
-       y2="167.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36752" />
-    <line
-       x1="526.72998"
-       y1="165.23"
-       x2="521.34003"
-       y2="170.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36754" />
-    <line
-       x1="521.34003"
-       y1="170.11"
-       x2="522.31"
-       y2="173.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36756" />
-    <line
-       x1="522.31"
-       y1="173.63"
-       x2="520.15002"
-       y2="174.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36758" />
-    <line
-       x1="526.72998"
-       y1="165.23"
-       x2="520.15002"
-       y2="174.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36760" />
-    <line
-       x1="520.15002"
-       y1="174.73"
-       x2="517.02002"
-       y2="172.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36762" />
-    <line
-       x1="526.72998"
-       y1="165.23"
-       x2="517.02002"
-       y2="172.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36764" />
-    <line
-       x1="517.02002"
-       y1="172.31"
-       x2="516.04999"
-       y2="168.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36766" />
-    <line
-       x1="516.04999"
-       y1="168.8"
-       x2="518.21002"
-       y2="167.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36768" />
-    <line
-       x1="518.21002"
-       y1="167.7"
-       x2="526.72998"
-       y2="165.23"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36770" />
-    <line
-       x1="520.72998"
-       y1="165.7"
-       x2="523.85999"
-       y2="168.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36772" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="523.85999"
-       y2="168.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36774" />
-    <line
-       x1="523.85999"
-       y1="168.12"
-       x2="524.83002"
-       y2="171.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36776" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="524.83002"
-       y2="171.63"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36778" />
-    <line
-       x1="524.83002"
-       y1="171.63"
-       x2="522.66998"
-       y2="172.73"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36780" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="522.66998"
-       y2="172.73"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36782" />
-    <line
-       x1="522.66998"
-       y1="172.73"
-       x2="519.53998"
-       y2="170.32001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36784" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="519.53998"
-       y2="170.32001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36786" />
-    <line
-       x1="519.53998"
-       y1="170.32001"
-       x2="518.57001"
-       y2="166.8"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36788" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="518.57001"
-       y2="166.8"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36790" />
-    <line
-       x1="518.57001"
-       y1="166.8"
-       x2="520.72998"
-       y2="165.7"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36792" />
-    <line
-       x1="520.72998"
-       y1="165.7"
-       x2="529.23999"
-       y2="163.24001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36794" />
-    <line
-       x1="534.94"
-       y1="164.66"
-       x2="545.35999"
-       y2="163.17"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36796" />
-    <line
-       x1="545.35999"
-       y1="163.17"
-       x2="546.32001"
-       y2="166.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36798" />
-    <line
-       x1="534.94"
-       y1="164.66"
-       x2="546.32001"
-       y2="166.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36800" />
-    <line
-       x1="546.32001"
-       y1="166.69"
-       x2="544.47998"
-       y2="170.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36802" />
-    <line
-       x1="534.94"
-       y1="164.66"
-       x2="544.47998"
-       y2="170.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36804" />
-    <line
-       x1="544.47998"
-       y1="170.28999"
-       x2="541.65997"
-       y2="170.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36806" />
-    <line
-       x1="541.65997"
-       y1="170.39"
-       x2="540.70001"
-       y2="166.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36808" />
-    <line
-       x1="534.94"
-       y1="164.66"
-       x2="540.70001"
-       y2="166.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36810" />
-    <line
-       x1="540.70001"
-       y1="166.87"
-       x2="542.54999"
-       y2="163.25999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36812" />
-    <line
-       x1="542.54999"
-       y1="163.25999"
-       x2="534.94"
-       y2="164.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36814" />
-    <line
-       x1="532.09003"
-       y1="163.95"
-       x2="542.5"
-       y2="162.46001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36816" />
-    <line
-       x1="542.5"
-       y1="162.46001"
-       x2="543.46002"
-       y2="165.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36818" />
-    <line
-       x1="532.09003"
-       y1="163.95"
-       x2="543.46002"
-       y2="165.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36820" />
-    <line
-       x1="543.46002"
-       y1="165.98"
-       x2="541.62"
-       y2="169.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36822" />
-    <line
-       x1="532.09003"
-       y1="163.95"
-       x2="541.62"
-       y2="169.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36824" />
-    <line
-       x1="541.62"
-       y1="169.59"
-       x2="538.79999"
-       y2="169.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36826" />
-    <line
-       x1="538.79999"
-       y1="169.67999"
-       x2="537.84003"
-       y2="166.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36828" />
-    <line
-       x1="532.09003"
-       y1="163.95"
-       x2="537.84003"
-       y2="166.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36830" />
-    <line
-       x1="537.84003"
-       y1="166.16"
-       x2="539.69"
-       y2="162.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36832" />
-    <line
-       x1="539.69"
-       y1="162.55"
-       x2="532.09003"
-       y2="163.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36834" />
-    <line
-       x1="536.83002"
-       y1="161.84"
-       x2="539.64001"
-       y2="161.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36836" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="539.64001"
-       y2="161.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36838" />
-    <line
-       x1="539.64001"
-       y1="161.75"
-       x2="540.60999"
-       y2="165.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36840" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="540.60999"
-       y2="165.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36842" />
-    <line
-       x1="540.60999"
-       y1="165.27"
-       x2="538.76001"
-       y2="168.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36844" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="538.76001"
-       y2="168.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36846" />
-    <line
-       x1="538.76001"
-       y1="168.88"
-       x2="535.95001"
-       y2="168.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36848" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="535.95001"
-       y2="168.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36850" />
-    <line
-       x1="535.95001"
-       y1="168.97"
-       x2="534.97998"
-       y2="165.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36852" />
-    <line
-       x1="529.23999"
-       y1="163.24001"
-       x2="534.97998"
-       y2="165.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36854" />
-    <line
-       x1="534.97998"
-       y1="165.45"
-       x2="536.83002"
-       y2="161.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36856" />
-    <line
-       x1="536.83002"
-       y1="161.84"
-       x2="529.23999"
-       y2="163.24001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36858" />
-    <line
-       x1="1611.49"
-       y1="619.12"
-       x2="1611.58"
-       y2="616.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36860" />
-    <line
-       x1="1611.58"
-       y1="616.56"
-       x2="1607.95"
-       y2="615.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36862" />
-    <line
-       x1="1606.23"
-       y1="608.60999"
-       x2="1607.95"
-       y2="615.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36864" />
-    <line
-       x1="1607.95"
-       y1="615.57001"
-       x2="1604.24"
-       y2="617.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36866" />
-    <line
-       x1="1606.23"
-       y1="608.60999"
-       x2="1604.24"
-       y2="617.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36868" />
-    <line
-       x1="1606.23"
-       y1="608.60999"
-       x2="1604.14"
-       y2="619.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36870" />
-    <line
-       x1="1604.14"
-       y1="619.70001"
-       x2="1607.77"
-       y2="620.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36872" />
-    <line
-       x1="1606.23"
-       y1="608.60999"
-       x2="1607.77"
-       y2="620.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36874" />
-    <line
-       x1="1607.77"
-       y1="620.70001"
-       x2="1611.49"
-       y2="619.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36876" />
-    <line
-       x1="1611.49"
-       y1="619.12"
-       x2="1606.23"
-       y2="608.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36878" />
-    <line
-       x1="1610.95"
-       y1="615.95001"
-       x2="1611.04"
-       y2="613.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36880" />
-    <line
-       x1="1611.04"
-       y1="613.39001"
-       x2="1607.41"
-       y2="612.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36882" />
-    <line
-       x1="1605.6801"
-       y1="605.42999"
-       x2="1607.41"
-       y2="612.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36884" />
-    <line
-       x1="1607.41"
-       y1="612.40002"
-       x2="1603.6899"
-       y2="613.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36886" />
-    <line
-       x1="1605.6801"
-       y1="605.42999"
-       x2="1603.6"
-       y2="616.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36888" />
-    <line
-       x1="1603.6"
-       y1="616.53003"
-       x2="1607.23"
-       y2="617.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36890" />
-    <line
-       x1="1605.6801"
-       y1="605.42999"
-       x2="1607.23"
-       y2="617.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36892" />
-    <line
-       x1="1607.23"
-       y1="617.52002"
-       x2="1610.95"
-       y2="615.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36894" />
-    <line
-       x1="1610.95"
-       y1="615.95001"
-       x2="1605.6801"
-       y2="605.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36896" />
-    <line
-       x1="1610.4"
-       y1="612.78003"
-       x2="1610.49"
-       y2="610.21997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36898" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1610.49"
-       y2="610.21997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36900" />
-    <line
-       x1="1610.49"
-       y1="610.21997"
-       x2="1606.86"
-       y2="609.22998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36902" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1606.86"
-       y2="609.22998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36904" />
-    <line
-       x1="1606.86"
-       y1="609.22998"
-       x2="1603.14"
-       y2="610.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36906" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1603.05"
-       y2="613.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36908" />
-    <line
-       x1="1603.05"
-       y1="613.35999"
-       x2="1606.6801"
-       y2="614.34998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36910" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1606.6801"
-       y2="614.34998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36912" />
-    <line
-       x1="1606.6801"
-       y1="614.34998"
-       x2="1610.4"
-       y2="612.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36914" />
-    <line
-       x1="1610.4"
-       y1="612.78003"
-       x2="1605.13"
-       y2="602.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36916" />
-    <line
-       x1="1594.23"
-       y1="609.97998"
-       x2="1597.6801"
-       y2="612.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36918" />
-    <line
-       x1="1601.02"
-       y1="606.71002"
-       x2="1597.6801"
-       y2="612.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36920" />
-    <line
-       x1="1601.02"
-       y1="606.71002"
-       x2="1598.27"
-       y2="615.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36922" />
-    <line
-       x1="1598.27"
-       y1="615.96002"
-       x2="1595.41"
-       y2="616.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36924" />
-    <line
-       x1="1601.02"
-       y1="606.71002"
-       x2="1595.41"
-       y2="616.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36926" />
-    <line
-       x1="1595.41"
-       y1="616.79999"
-       x2="1591.97"
-       y2="614.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36928" />
-    <line
-       x1="1601.02"
-       y1="606.71002"
-       x2="1591.97"
-       y2="614.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36930" />
-    <line
-       x1="1591.97"
-       y1="614.23999"
-       x2="1591.38"
-       y2="610.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36932" />
-    <line
-       x1="1591.38"
-       y1="610.83002"
-       x2="1594.23"
-       y2="609.97998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36934" />
-    <line
-       x1="1594.23"
-       y1="609.97998"
-       x2="1601.02"
-       y2="606.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36936" />
-    <line
-       x1="1596.3"
-       y1="607.75"
-       x2="1599.74"
-       y2="610.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36938" />
-    <line
-       x1="1600.33"
-       y1="613.72998"
-       x2="1597.48"
-       y2="614.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36940" />
-    <line
-       x1="1603.0699"
-       y1="604.47998"
-       x2="1597.48"
-       y2="614.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36942" />
-    <line
-       x1="1597.48"
-       y1="614.57001"
-       x2="1594.04"
-       y2="612.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36944" />
-    <line
-       x1="1603.0699"
-       y1="604.47998"
-       x2="1594.04"
-       y2="612.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36946" />
-    <line
-       x1="1594.04"
-       y1="612.01001"
-       x2="1593.45"
-       y2="608.59998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36948" />
-    <line
-       x1="1603.0699"
-       y1="604.47998"
-       x2="1593.45"
-       y2="608.59998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36950" />
-    <line
-       x1="1593.45"
-       y1="608.59998"
-       x2="1596.3"
-       y2="607.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36952" />
-    <line
-       x1="1596.3"
-       y1="607.75"
-       x2="1603.0699"
-       y2="604.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36954" />
-    <line
-       x1="1598.36"
-       y1="605.52002"
-       x2="1601.8101"
-       y2="608.09003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36956" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1602.39"
-       y2="611.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36958" />
-    <line
-       x1="1602.39"
-       y1="611.5"
-       x2="1599.54"
-       y2="612.34003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36960" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1599.54"
-       y2="612.34003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36962" />
-    <line
-       x1="1599.54"
-       y1="612.34003"
-       x2="1596.1"
-       y2="609.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36964" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1596.1"
-       y2="609.78003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36966" />
-    <line
-       x1="1596.1"
-       y1="609.78003"
-       x2="1595.51"
-       y2="606.37"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36968" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1595.51"
-       y2="606.37"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36970" />
-    <line
-       x1="1595.51"
-       y1="606.37"
-       x2="1598.36"
-       y2="605.52002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36972" />
-    <line
-       x1="1598.36"
-       y1="605.52002"
-       x2="1605.13"
-       y2="602.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line36974" />
-    <line
-       x1="1611.92"
-       y1="604.09998"
-       x2="1623.74"
-       y2="603.09003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36976" />
-    <line
-       x1="1623.74"
-       y1="603.09003"
-       x2="1624.3199"
-       y2="606.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36978" />
-    <line
-       x1="1611.92"
-       y1="604.09998"
-       x2="1624.3199"
-       y2="606.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36980" />
-    <line
-       x1="1624.3199"
-       y1="606.5"
-       x2="1622.7"
-       y2="610.28003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36982" />
-    <line
-       x1="1611.92"
-       y1="604.09998"
-       x2="1622.7"
-       y2="610.28003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36984" />
-    <line
-       x1="1622.7"
-       y1="610.28003"
-       x2="1620.51"
-       y2="610.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36986" />
-    <line
-       x1="1611.92"
-       y1="604.09998"
-       x2="1620.51"
-       y2="610.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36988" />
-    <line
-       x1="1620.51"
-       y1="610.64001"
-       x2="1619.9301"
-       y2="607.22998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36990" />
-    <line
-       x1="1611.92"
-       y1="604.09998"
-       x2="1619.9301"
-       y2="607.22998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36992" />
-    <line
-       x1="1619.9301"
-       y1="607.22998"
-       x2="1621.54"
-       y2="603.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36994" />
-    <line
-       x1="1621.54"
-       y1="603.45001"
-       x2="1611.92"
-       y2="604.09998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36996" />
-    <line
-       x1="1608.52"
-       y1="603.17999"
-       x2="1620.33"
-       y2="602.16998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line36998" />
-    <line
-       x1="1620.33"
-       y1="602.16998"
-       x2="1620.91"
-       y2="605.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37000" />
-    <line
-       x1="1608.52"
-       y1="603.17999"
-       x2="1620.91"
-       y2="605.58002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37002" />
-    <line
-       x1="1620.91"
-       y1="605.58002"
-       x2="1619.3"
-       y2="609.34998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37004" />
-    <line
-       x1="1608.52"
-       y1="603.17999"
-       x2="1619.3"
-       y2="609.34998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37006" />
-    <line
-       x1="1619.3"
-       y1="609.34998"
-       x2="1617.1"
-       y2="609.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37008" />
-    <line
-       x1="1608.52"
-       y1="603.17999"
-       x2="1617.1"
-       y2="609.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37010" />
-    <line
-       x1="1617.1"
-       y1="609.71002"
-       x2="1616.52"
-       y2="606.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37012" />
-    <line
-       x1="1608.52"
-       y1="603.17999"
-       x2="1616.52"
-       y2="606.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37014" />
-    <line
-       x1="1616.52"
-       y1="606.29999"
-       x2="1618.14"
-       y2="602.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37016" />
-    <line
-       x1="1618.14"
-       y1="602.53003"
-       x2="1608.52"
-       y2="603.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37018" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1616.9301"
-       y2="601.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37020" />
-    <line
-       x1="1616.9301"
-       y1="601.25"
-       x2="1617.51"
-       y2="604.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37022" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1617.51"
-       y2="604.65997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37024" />
-    <line
-       x1="1617.51"
-       y1="604.65997"
-       x2="1615.9"
-       y2="608.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37026" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1615.9"
-       y2="608.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37028" />
-    <line
-       x1="1615.9"
-       y1="608.42999"
-       x2="1613.7"
-       y2="608.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37030" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1613.7"
-       y2="608.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37032" />
-    <line
-       x1="1613.7"
-       y1="608.78998"
-       x2="1613.12"
-       y2="605.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37034" />
-    <line
-       x1="1605.13"
-       y1="602.25"
-       x2="1613.12"
-       y2="605.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37036" />
-    <line
-       x1="1613.12"
-       y1="605.38"
-       x2="1614.73"
-       y2="601.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37038" />
-    <line
-       x1="1614.73"
-       y1="601.60999"
-       x2="1605.13"
-       y2="602.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37040" />
-    <line
-       x1="175.55"
-       y1="379.51999"
-       x2="176.60001"
-       y2="377.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37042" />
-    <line
-       x1="169.57001"
-       y1="368.97"
-       x2="176.60001"
-       y2="377.14001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37044" />
-    <line
-       x1="176.60001"
-       y1="377.14001"
-       x2="173.7"
-       y2="376.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37046" />
-    <line
-       x1="173.7"
-       y1="376.26999"
-       x2="169.77"
-       y2="377.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37048" />
-    <line
-       x1="169.77"
-       y1="377.79001"
-       x2="168.71001"
-       y2="380.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37050" />
-    <line
-       x1="168.71001"
-       y1="380.17001"
-       x2="169.57001"
-       y2="368.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37052" />
-    <line
-       x1="169.57001"
-       y1="368.97"
-       x2="168.71001"
-       y2="380.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37054" />
-    <line
-       x1="168.71001"
-       y1="380.17001"
-       x2="171.61"
-       y2="381.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37056" />
-    <line
-       x1="169.57001"
-       y1="368.97"
-       x2="171.61"
-       y2="381.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37058" />
-    <line
-       x1="171.61"
-       y1="381.04001"
-       x2="175.55"
-       y2="379.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37060" />
-    <line
-       x1="175.55"
-       y1="379.51999"
-       x2="169.57001"
-       y2="368.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37062" />
-    <line
-       x1="174.53"
-       y1="376.29001"
-       x2="175.57001"
-       y2="373.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37064" />
-    <line
-       x1="168.55"
-       y1="365.73001"
-       x2="175.57001"
-       y2="373.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37066" />
-    <line
-       x1="175.57001"
-       y1="373.91"
-       x2="172.67999"
-       y2="373.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37068" />
-    <line
-       x1="172.67999"
-       y1="373.04999"
-       x2="168.74001"
-       y2="374.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37070" />
-    <line
-       x1="168.55"
-       y1="365.73001"
-       x2="168.74001"
-       y2="374.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37072" />
-    <line
-       x1="168.74001"
-       y1="374.56"
-       x2="167.69"
-       y2="376.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37074" />
-    <line
-       x1="168.55"
-       y1="365.73001"
-       x2="167.69"
-       y2="376.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37076" />
-    <line
-       x1="167.69"
-       y1="376.94"
-       x2="170.58"
-       y2="377.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37078" />
-    <line
-       x1="168.55"
-       y1="365.73001"
-       x2="170.58"
-       y2="377.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37080" />
-    <line
-       x1="170.58"
-       y1="377.81"
-       x2="174.53"
-       y2="376.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37082" />
-    <line
-       x1="174.53"
-       y1="376.29001"
-       x2="168.55"
-       y2="365.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37084" />
-    <line
-       x1="173.5"
-       y1="373.06"
-       x2="174.55"
-       y2="370.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37086" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="174.55"
-       y2="370.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37088" />
-    <line
-       x1="174.55"
-       y1="370.67999"
-       x2="171.64999"
-       y2="369.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37090" />
-    <line
-       x1="171.64999"
-       y1="369.82001"
-       x2="167.71001"
-       y2="371.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37092" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="167.71001"
-       y2="371.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37094" />
-    <line
-       x1="167.71001"
-       y1="371.34"
-       x2="166.66"
-       y2="373.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37096" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="166.66"
-       y2="373.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37098" />
-    <line
-       x1="166.66"
-       y1="373.70999"
-       x2="169.55"
-       y2="374.57999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37100" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="169.55"
-       y2="374.57999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37102" />
-    <line
-       x1="169.55"
-       y1="374.57999"
-       x2="173.5"
-       y2="373.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37104" />
-    <line
-       x1="173.5"
-       y1="373.06"
-       x2="167.52"
-       y2="362.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37106" />
-    <line
-       x1="152.89"
-       y1="369.53"
-       x2="155.96001"
-       y2="372.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37108" />
-    <line
-       x1="162.12"
-       y1="366.70001"
-       x2="155.96001"
-       y2="372.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37110" />
-    <line
-       x1="155.96001"
-       y1="372.01999"
-       x2="157.07001"
-       y2="375.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37112" />
-    <line
-       x1="162.12"
-       y1="366.70001"
-       x2="157.07001"
-       y2="375.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37114" />
-    <line
-       x1="157.07001"
-       y1="375.48999"
-       x2="155.12"
-       y2="376.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37116" />
-    <line
-       x1="162.12"
-       y1="366.70001"
-       x2="155.12"
-       y2="376.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37118" />
-    <line
-       x1="155.12"
-       y1="376.47"
-       x2="152.05"
-       y2="373.98001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37120" />
-    <line
-       x1="162.12"
-       y1="366.70001"
-       x2="152.05"
-       y2="373.98001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37122" />
-    <line
-       x1="152.05"
-       y1="373.98001"
-       x2="150.94"
-       y2="370.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37124" />
-    <line
-       x1="150.94"
-       y1="370.51999"
-       x2="152.89"
-       y2="369.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37126" />
-    <line
-       x1="152.89"
-       y1="369.53"
-       x2="162.12"
-       y2="366.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37128" />
-    <line
-       x1="155.60001"
-       y1="367.42999"
-       x2="158.67"
-       y2="369.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37130" />
-    <line
-       x1="164.82001"
-       y1="364.60001"
-       x2="158.67"
-       y2="369.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37132" />
-    <line
-       x1="164.82001"
-       y1="364.60001"
-       x2="159.78"
-       y2="373.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37134" />
-    <line
-       x1="159.78"
-       y1="373.38"
-       x2="157.82001"
-       y2="374.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37136" />
-    <line
-       x1="164.82001"
-       y1="364.60001"
-       x2="157.82001"
-       y2="374.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37138" />
-    <line
-       x1="157.82001"
-       y1="374.37"
-       x2="154.75999"
-       y2="371.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37140" />
-    <line
-       x1="164.82001"
-       y1="364.60001"
-       x2="154.75999"
-       y2="371.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37142" />
-    <line
-       x1="154.75999"
-       y1="371.88"
-       x2="153.64999"
-       y2="368.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37144" />
-    <line
-       x1="164.82001"
-       y1="364.60001"
-       x2="153.64999"
-       y2="368.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37146" />
-    <line
-       x1="153.64999"
-       y1="368.41"
-       x2="155.60001"
-       y2="367.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37148" />
-    <line
-       x1="155.60001"
-       y1="367.42999"
-       x2="164.82001"
-       y2="364.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37150" />
-    <line
-       x1="158.31"
-       y1="365.32001"
-       x2="161.38"
-       y2="367.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37152" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="161.38"
-       y2="367.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37154" />
-    <line
-       x1="161.38"
-       y1="367.81"
-       x2="162.48"
-       y2="371.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37156" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="162.48"
-       y2="371.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37158" />
-    <line
-       x1="162.48"
-       y1="371.28"
-       x2="160.53"
-       y2="372.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37160" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="160.53"
-       y2="372.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37162" />
-    <line
-       x1="160.53"
-       y1="372.26001"
-       x2="157.46001"
-       y2="369.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37164" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="157.46001"
-       y2="369.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37166" />
-    <line
-       x1="157.46001"
-       y1="369.78"
-       x2="156.36"
-       y2="366.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37168" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="156.36"
-       y2="366.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37170" />
-    <line
-       x1="156.36"
-       y1="366.31"
-       x2="158.31"
-       y2="365.32001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37172" />
-    <line
-       x1="158.31"
-       y1="365.32001"
-       x2="167.52"
-       y2="362.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37174" />
-    <line
-       x1="179.97"
-       y1="363.04001"
-       x2="183.02"
-       y2="362.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37176" />
-    <line
-       x1="172.92999"
-       y1="364.10999"
-       x2="183.02"
-       y2="362.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37178" />
-    <line
-       x1="183.02"
-       y1="362.82999"
-       x2="184.12"
-       y2="366.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37180" />
-    <line
-       x1="172.92999"
-       y1="364.10999"
-       x2="184.12"
-       y2="366.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37182" />
-    <line
-       x1="184.12"
-       y1="366.29999"
-       x2="182.17"
-       y2="369.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37184" />
-    <line
-       x1="172.92999"
-       y1="364.10999"
-       x2="182.17"
-       y2="369.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37186" />
-    <line
-       x1="182.17"
-       y1="369.98999"
-       x2="179.12"
-       y2="370.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37188" />
-    <line
-       x1="172.92999"
-       y1="364.10999"
-       x2="179.12"
-       y2="370.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37190" />
-    <line
-       x1="179.12"
-       y1="370.20999"
-       x2="178.02"
-       y2="366.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37192" />
-    <line
-       x1="172.92999"
-       y1="364.10999"
-       x2="178.02"
-       y2="366.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37194" />
-    <line
-       x1="178.02"
-       y1="366.73001"
-       x2="179.97"
-       y2="363.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37196" />
-    <line
-       x1="179.97"
-       y1="363.04001"
-       x2="172.92999"
-       y2="364.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37198" />
-    <line
-       x1="170.22"
-       y1="363.29999"
-       x2="180.3"
-       y2="362.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37200" />
-    <line
-       x1="180.3"
-       y1="362.03"
-       x2="181.41"
-       y2="365.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37202" />
-    <line
-       x1="170.22"
-       y1="363.29999"
-       x2="181.41"
-       y2="365.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37204" />
-    <line
-       x1="181.41"
-       y1="365.5"
-       x2="179.46001"
-       y2="369.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37206" />
-    <line
-       x1="170.22"
-       y1="363.29999"
-       x2="179.46001"
-       y2="369.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37208" />
-    <line
-       x1="179.46001"
-       y1="369.17999"
-       x2="176.41"
-       y2="369.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37210" />
-    <line
-       x1="170.22"
-       y1="363.29999"
-       x2="176.41"
-       y2="369.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37212" />
-    <line
-       x1="176.41"
-       y1="369.39999"
-       x2="175.3"
-       y2="365.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37214" />
-    <line
-       x1="170.22"
-       y1="363.29999"
-       x2="175.3"
-       y2="365.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37216" />
-    <line
-       x1="175.3"
-       y1="365.92999"
-       x2="177.25"
-       y2="362.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37218" />
-    <line
-       x1="177.25"
-       y1="362.23999"
-       x2="170.22"
-       y2="363.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37220" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="177.59"
-       y2="361.23001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37222" />
-    <line
-       x1="177.59"
-       y1="361.23001"
-       x2="178.69"
-       y2="364.70001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37224" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="178.69"
-       y2="364.70001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37226" />
-    <line
-       x1="178.69"
-       y1="364.70001"
-       x2="176.74001"
-       y2="368.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37228" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="176.74001"
-       y2="368.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37230" />
-    <line
-       x1="176.74001"
-       y1="368.38"
-       x2="173.69"
-       y2="368.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37232" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="173.69"
-       y2="368.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37234" />
-    <line
-       x1="173.69"
-       y1="368.59"
-       x2="172.59"
-       y2="365.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37236" />
-    <line
-       x1="167.52"
-       y1="362.5"
-       x2="172.59"
-       y2="365.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37238" />
-    <line
-       x1="172.59"
-       y1="365.12"
-       x2="174.53999"
-       y2="361.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37240" />
-    <line
-       x1="174.53999"
-       y1="361.44"
-       x2="167.52"
-       y2="362.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37242" />
-    <line
-       x1="1647"
-       y1="465.92999"
-       x2="1647.0699"
-       y2="463.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37244" />
-    <line
-       x1="1647.0699"
-       y1="463.47"
-       x2="1643.4301"
-       y2="462.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37246" />
-    <line
-       x1="1641.77"
-       y1="455.35999"
-       x2="1643.4301"
-       y2="462.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37248" />
-    <line
-       x1="1643.4301"
-       y1="462.56"
-       x2="1639.73"
-       y2="464.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37250" />
-    <line
-       x1="1639.73"
-       y1="464.10001"
-       x2="1639.66"
-       y2="466.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37252" />
-    <line
-       x1="1641.77"
-       y1="455.35999"
-       x2="1639.66"
-       y2="466.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37254" />
-    <line
-       x1="1639.66"
-       y1="466.54999"
-       x2="1643.3"
-       y2="467.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37256" />
-    <line
-       x1="1641.77"
-       y1="455.35999"
-       x2="1643.3"
-       y2="467.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37258" />
-    <line
-       x1="1643.3"
-       y1="467.45999"
-       x2="1647"
-       y2="465.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37260" />
-    <line
-       x1="1647"
-       y1="465.92999"
-       x2="1641.77"
-       y2="455.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37262" />
-    <line
-       x1="1646.47"
-       y1="462.70999"
-       x2="1646.54"
-       y2="460.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37264" />
-    <line
-       x1="1646.54"
-       y1="460.25"
-       x2="1642.9"
-       y2="459.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37266" />
-    <line
-       x1="1641.23"
-       y1="452.13"
-       x2="1642.9"
-       y2="459.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37268" />
-    <line
-       x1="1642.9"
-       y1="459.34"
-       x2="1639.2"
-       y2="460.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37270" />
-    <line
-       x1="1641.23"
-       y1="452.13"
-       x2="1639.13"
-       y2="463.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37272" />
-    <line
-       x1="1639.13"
-       y1="463.34"
-       x2="1642.77"
-       y2="464.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37274" />
-    <line
-       x1="1641.23"
-       y1="452.13"
-       x2="1642.77"
-       y2="464.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37276" />
-    <line
-       x1="1642.77"
-       y1="464.25"
-       x2="1646.47"
-       y2="462.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37278" />
-    <line
-       x1="1646.47"
-       y1="462.70999"
-       x2="1641.23"
-       y2="452.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37280" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1646.01"
-       y2="457.04001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37282" />
-    <line
-       x1="1646.01"
-       y1="457.04001"
-       x2="1642.37"
-       y2="456.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37284" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1638.59"
-       y2="460.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37286" />
-    <line
-       x1="1638.59"
-       y1="460.12"
-       x2="1642.23"
-       y2="461.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37288" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1642.23"
-       y2="461.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37290" />
-    <line
-       x1="1642.23"
-       y1="461.03"
-       x2="1645.9399"
-       y2="459.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37292" />
-    <line
-       x1="1645.9399"
-       y1="459.48999"
-       x2="1640.7"
-       y2="448.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37294" />
-    <line
-       x1="1629.92"
-       y1="456.20999"
-       x2="1633.37"
-       y2="458.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37296" />
-    <line
-       x1="1633.37"
-       y1="458.73001"
-       x2="1633.9399"
-       y2="462.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37298" />
-    <line
-       x1="1636.63"
-       y1="453.20999"
-       x2="1633.9399"
-       y2="462.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37300" />
-    <line
-       x1="1633.9399"
-       y1="462.20001"
-       x2="1631.0699"
-       y2="463.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37302" />
-    <line
-       x1="1636.63"
-       y1="453.20999"
-       x2="1631.0699"
-       y2="463.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37304" />
-    <line
-       x1="1631.0699"
-       y1="463.13"
-       x2="1627.63"
-       y2="460.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37306" />
-    <line
-       x1="1636.63"
-       y1="453.20999"
-       x2="1627.63"
-       y2="460.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37308" />
-    <line
-       x1="1627.63"
-       y1="460.60999"
-       x2="1627.05"
-       y2="457.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37310" />
-    <line
-       x1="1636.63"
-       y1="453.20999"
-       x2="1627.05"
-       y2="457.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37312" />
-    <line
-       x1="1627.05"
-       y1="457.14999"
-       x2="1629.92"
-       y2="456.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37314" />
-    <line
-       x1="1629.92"
-       y1="456.20999"
-       x2="1636.63"
-       y2="453.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37316" />
-    <line
-       x1="1631.96"
-       y1="454.04999"
-       x2="1635.41"
-       y2="456.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37318" />
-    <line
-       x1="1635.41"
-       y1="456.57001"
-       x2="1635.98"
-       y2="460.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37320" />
-    <line
-       x1="1638.66"
-       y1="451.04999"
-       x2="1635.98"
-       y2="460.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37322" />
-    <line
-       x1="1635.98"
-       y1="460.04001"
-       x2="1633.12"
-       y2="460.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37324" />
-    <line
-       x1="1638.66"
-       y1="451.04999"
-       x2="1633.12"
-       y2="460.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37326" />
-    <line
-       x1="1633.12"
-       y1="460.97"
-       x2="1629.67"
-       y2="458.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37328" />
-    <line
-       x1="1638.66"
-       y1="451.04999"
-       x2="1629.67"
-       y2="458.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37330" />
-    <line
-       x1="1629.67"
-       y1="458.45001"
-       x2="1629.09"
-       y2="454.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37332" />
-    <line
-       x1="1638.66"
-       y1="451.04999"
-       x2="1629.09"
-       y2="454.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37334" />
-    <line
-       x1="1629.09"
-       y1="454.98999"
-       x2="1631.96"
-       y2="454.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37336" />
-    <line
-       x1="1631.96"
-       y1="454.04999"
-       x2="1638.66"
-       y2="451.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37338" />
-    <line
-       x1="1634.01"
-       y1="451.89999"
-       x2="1637.45"
-       y2="454.42001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37340" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1637.45"
-       y2="454.42001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37342" />
-    <line
-       x1="1637.45"
-       y1="454.42001"
-       x2="1638.03"
-       y2="457.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37344" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1638.03"
-       y2="457.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37346" />
-    <line
-       x1="1638.03"
-       y1="457.88"
-       x2="1635.16"
-       y2="458.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37348" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1635.16"
-       y2="458.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37350" />
-    <line
-       x1="1635.16"
-       y1="458.82001"
-       x2="1631.71"
-       y2="456.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37352" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1631.71"
-       y2="456.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37354" />
-    <line
-       x1="1631.71"
-       y1="456.29999"
-       x2="1631.14"
-       y2="452.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37356" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1631.14"
-       y2="452.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37358" />
-    <line
-       x1="1631.14"
-       y1="452.84"
-       x2="1634.01"
-       y2="451.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37360" />
-    <line
-       x1="1634.01"
-       y1="451.89999"
-       x2="1640.7"
-       y2="448.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37362" />
-    <line
-       x1="1647.5"
-       y1="450.60001"
-       x2="1659.34"
-       y2="449.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37364" />
-    <line
-       x1="1659.34"
-       y1="449.42001"
-       x2="1659.91"
-       y2="452.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37366" />
-    <line
-       x1="1647.5"
-       y1="450.60001"
-       x2="1659.91"
-       y2="452.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37368" />
-    <line
-       x1="1659.91"
-       y1="452.88"
-       x2="1658.3"
-       y2="456.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37370" />
-    <line
-       x1="1647.5"
-       y1="450.60001"
-       x2="1658.3"
-       y2="456.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37372" />
-    <line
-       x1="1658.3"
-       y1="456.60999"
-       x2="1656.14"
-       y2="456.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37374" />
-    <line
-       x1="1647.5"
-       y1="450.60001"
-       x2="1656.14"
-       y2="456.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37376" />
-    <line
-       x1="1656.14"
-       y1="456.88"
-       x2="1655.5699"
-       y2="453.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37378" />
-    <line
-       x1="1647.5"
-       y1="450.60001"
-       x2="1655.5699"
-       y2="453.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37380" />
-    <line
-       x1="1657.17"
-       y1="449.67999"
-       x2="1647.5"
-       y2="450.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37382" />
-    <line
-       x1="1644.1"
-       y1="449.75"
-       x2="1655.9301"
-       y2="448.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37384" />
-    <line
-       x1="1655.9301"
-       y1="448.57001"
-       x2="1656.5"
-       y2="452.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37386" />
-    <line
-       x1="1644.1"
-       y1="449.75"
-       x2="1656.5"
-       y2="452.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37388" />
-    <line
-       x1="1656.5"
-       y1="452.03"
-       x2="1654.89"
-       y2="455.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37390" />
-    <line
-       x1="1644.1"
-       y1="449.75"
-       x2="1654.89"
-       y2="455.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37392" />
-    <line
-       x1="1654.89"
-       y1="455.76001"
-       x2="1652.72"
-       y2="456.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37394" />
-    <line
-       x1="1644.1"
-       y1="449.75"
-       x2="1652.72"
-       y2="456.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37396" />
-    <line
-       x1="1652.72"
-       y1="456.03"
-       x2="1652.15"
-       y2="452.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37398" />
-    <line
-       x1="1644.1"
-       y1="449.75"
-       x2="1652.15"
-       y2="452.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37400" />
-    <line
-       x1="1652.15"
-       y1="452.57001"
-       x2="1653.76"
-       y2="448.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37402" />
-    <line
-       x1="1653.76"
-       y1="448.84"
-       x2="1644.1"
-       y2="449.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37404" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1652.52"
-       y2="447.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37406" />
-    <line
-       x1="1652.52"
-       y1="447.72"
-       x2="1653.09"
-       y2="451.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37408" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1653.09"
-       y2="451.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37410" />
-    <line
-       x1="1653.09"
-       y1="451.17999"
-       x2="1651.48"
-       y2="454.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37412" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1651.48"
-       y2="454.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37414" />
-    <line
-       x1="1651.48"
-       y1="454.91"
-       x2="1649.3101"
-       y2="455.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37416" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1649.3101"
-       y2="455.17999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37418" />
-    <line
-       x1="1649.3101"
-       y1="455.17999"
-       x2="1648.74"
-       y2="451.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37420" />
-    <line
-       x1="1640.7"
-       y1="448.91"
-       x2="1648.74"
-       y2="451.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37422" />
-    <line
-       x1="1648.74"
-       y1="451.72"
-       x2="1650.34"
-       y2="447.98999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37424" />
-    <line
-       x1="1650.34"
-       y1="447.98999"
-       x2="1640.7"
-       y2="448.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37426" />
-    <line
-       x1="124.76"
-       y1="417.20999"
-       x2="125.84"
-       y2="414.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37428" />
-    <line
-       x1="118.74"
-       y1="406.66"
-       x2="125.84"
-       y2="414.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37430" />
-    <line
-       x1="125.84"
-       y1="414.79999"
-       x2="122.96"
-       y2="413.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37432" />
-    <line
-       x1="119.01"
-       y1="415.44"
-       x2="117.92"
-       y2="417.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37434" />
-    <line
-       x1="118.74"
-       y1="406.66"
-       x2="117.92"
-       y2="417.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37436" />
-    <line
-       x1="117.92"
-       y1="417.85001"
-       x2="120.8"
-       y2="418.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37438" />
-    <line
-       x1="118.74"
-       y1="406.66"
-       x2="120.8"
-       y2="418.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37440" />
-    <line
-       x1="120.8"
-       y1="418.73001"
-       x2="124.76"
-       y2="417.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37442" />
-    <line
-       x1="124.76"
-       y1="417.20999"
-       x2="118.74"
-       y2="406.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37444" />
-    <line
-       x1="123.71"
-       y1="413.98999"
-       x2="124.8"
-       y2="411.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37446" />
-    <line
-       x1="117.69"
-       y1="403.44"
-       x2="124.8"
-       y2="411.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37448" />
-    <line
-       x1="124.8"
-       y1="411.57999"
-       x2="121.92"
-       y2="410.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37450" />
-    <line
-       x1="117.96"
-       y1="412.22"
-       x2="116.88"
-       y2="414.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37452" />
-    <line
-       x1="117.69"
-       y1="403.44"
-       x2="116.88"
-       y2="414.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37454" />
-    <line
-       x1="116.88"
-       y1="414.63"
-       x2="119.75"
-       y2="415.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37456" />
-    <line
-       x1="117.69"
-       y1="403.44"
-       x2="119.75"
-       y2="415.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37458" />
-    <line
-       x1="119.75"
-       y1="415.51999"
-       x2="123.71"
-       y2="413.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37460" />
-    <line
-       x1="123.71"
-       y1="413.98999"
-       x2="117.69"
-       y2="403.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37462" />
-    <line
-       x1="122.67"
-       y1="410.76999"
-       x2="123.75"
-       y2="408.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37464" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="123.75"
-       y2="408.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37466" />
-    <line
-       x1="123.75"
-       y1="408.35999"
-       x2="120.87"
-       y2="407.48001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37468" />
-    <line
-       x1="120.87"
-       y1="407.48001"
-       x2="116.91"
-       y2="409"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37470" />
-    <line
-       x1="116.91"
-       y1="409"
-       x2="115.83"
-       y2="411.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37472" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="115.83"
-       y2="411.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37474" />
-    <line
-       x1="115.83"
-       y1="411.41"
-       x2="118.7"
-       y2="412.29001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37476" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="118.7"
-       y2="412.29001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37478" />
-    <line
-       x1="118.7"
-       y1="412.29001"
-       x2="122.67"
-       y2="410.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37480" />
-    <line
-       x1="122.67"
-       y1="410.76999"
-       x2="116.64"
-       y2="400.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37482" />
-    <line
-       x1="111.19"
-       y1="404.45001"
-       x2="104.93"
-       y2="409.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37484" />
-    <line
-       x1="104.93"
-       y1="409.85001"
-       x2="106.05"
-       y2="413.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37486" />
-    <line
-       x1="111.19"
-       y1="404.45001"
-       x2="106.05"
-       y2="413.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37488" />
-    <line
-       x1="106.05"
-       y1="413.32001"
-       x2="104.13"
-       y2="414.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37490" />
-    <line
-       x1="111.19"
-       y1="404.45001"
-       x2="104.13"
-       y2="414.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37492" />
-    <line
-       x1="104.13"
-       y1="414.28"
-       x2="101.07"
-       y2="411.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37494" />
-    <line
-       x1="111.19"
-       y1="404.45001"
-       x2="101.07"
-       y2="411.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37496" />
-    <line
-       x1="101.07"
-       y1="411.78"
-       x2="99.940002"
-       y2="408.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37498" />
-    <line
-       x1="99.940002"
-       y1="408.32001"
-       x2="101.86"
-       y2="407.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37500" />
-    <line
-       x1="101.86"
-       y1="407.35001"
-       x2="111.19"
-       y2="404.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37502" />
-    <line
-       x1="113.92"
-       y1="402.32001"
-       x2="107.66"
-       y2="407.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37504" />
-    <line
-       x1="107.66"
-       y1="407.72"
-       x2="108.79"
-       y2="411.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37506" />
-    <line
-       x1="113.92"
-       y1="402.32001"
-       x2="108.79"
-       y2="411.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37508" />
-    <line
-       x1="108.79"
-       y1="411.19"
-       x2="106.86"
-       y2="412.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37510" />
-    <line
-       x1="113.92"
-       y1="402.32001"
-       x2="106.86"
-       y2="412.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37512" />
-    <line
-       x1="106.86"
-       y1="412.14999"
-       x2="103.8"
-       y2="409.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37514" />
-    <line
-       x1="113.92"
-       y1="402.32001"
-       x2="103.8"
-       y2="409.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37516" />
-    <line
-       x1="103.8"
-       y1="409.64999"
-       x2="102.67"
-       y2="406.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37518" />
-    <line
-       x1="102.67"
-       y1="406.19"
-       x2="104.6"
-       y2="405.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37520" />
-    <line
-       x1="104.6"
-       y1="405.23001"
-       x2="113.92"
-       y2="402.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37522" />
-    <line
-       x1="107.33"
-       y1="403.10001"
-       x2="110.39"
-       y2="405.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37524" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="110.39"
-       y2="405.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37526" />
-    <line
-       x1="110.39"
-       y1="405.60001"
-       x2="111.52"
-       y2="409.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37528" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="111.52"
-       y2="409.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37530" />
-    <line
-       x1="111.52"
-       y1="409.06"
-       x2="109.59"
-       y2="410.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37532" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="109.59"
-       y2="410.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37534" />
-    <line
-       x1="109.59"
-       y1="410.03"
-       x2="106.54"
-       y2="407.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37536" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="106.54"
-       y2="407.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37538" />
-    <line
-       x1="106.54"
-       y1="407.53"
-       x2="105.41"
-       y2="404.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37540" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="105.41"
-       y2="404.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37542" />
-    <line
-       x1="105.41"
-       y1="404.07001"
-       x2="107.33"
-       y2="403.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37544" />
-    <line
-       x1="107.33"
-       y1="403.10001"
-       x2="116.64"
-       y2="400.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37546" />
-    <line
-       x1="132.07001"
-       y1="400.62"
-       x2="133.19"
-       y2="404.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37548" />
-    <line
-       x1="122.02"
-       y1="401.85001"
-       x2="133.19"
-       y2="404.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37550" />
-    <line
-       x1="133.19"
-       y1="404.09"
-       x2="131.23"
-       y2="407.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37552" />
-    <line
-       x1="122.02"
-       y1="401.85001"
-       x2="131.23"
-       y2="407.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37554" />
-    <line
-       x1="131.23"
-       y1="407.79001"
-       x2="128.14"
-       y2="408.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37556" />
-    <line
-       x1="122.02"
-       y1="401.85001"
-       x2="128.14"
-       y2="408.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37558" />
-    <line
-       x1="128.14"
-       y1="408.03"
-       x2="127.02"
-       y2="404.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37560" />
-    <line
-       x1="122.02"
-       y1="401.85001"
-       x2="127.02"
-       y2="404.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37562" />
-    <line
-       x1="127.02"
-       y1="404.56"
-       x2="128.98"
-       y2="400.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37564" />
-    <line
-       x1="126.29"
-       y1="400.03"
-       x2="129.38"
-       y2="399.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37566" />
-    <line
-       x1="119.33"
-       y1="401.03"
-       x2="129.38"
-       y2="399.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37568" />
-    <line
-       x1="129.38"
-       y1="399.79999"
-       x2="130.5"
-       y2="403.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37570" />
-    <line
-       x1="119.33"
-       y1="401.03"
-       x2="130.5"
-       y2="403.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37572" />
-    <line
-       x1="130.5"
-       y1="403.26001"
-       x2="128.53"
-       y2="406.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37574" />
-    <line
-       x1="119.33"
-       y1="401.03"
-       x2="128.53"
-       y2="406.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37576" />
-    <line
-       x1="128.53"
-       y1="406.95999"
-       x2="125.44"
-       y2="407.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37578" />
-    <line
-       x1="119.33"
-       y1="401.03"
-       x2="125.44"
-       y2="407.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37580" />
-    <line
-       x1="125.44"
-       y1="407.20001"
-       x2="124.32"
-       y2="403.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37582" />
-    <line
-       x1="119.33"
-       y1="401.03"
-       x2="124.32"
-       y2="403.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37584" />
-    <line
-       x1="124.32"
-       y1="403.73001"
-       x2="126.29"
-       y2="400.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37586" />
-    <line
-       x1="126.29"
-       y1="400.03"
-       x2="119.33"
-       y2="401.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37588" />
-    <line
-       x1="123.59"
-       y1="399.20999"
-       x2="126.68"
-       y2="398.98001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37590" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="126.68"
-       y2="398.98001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37592" />
-    <line
-       x1="126.68"
-       y1="398.98001"
-       x2="127.8"
-       y2="402.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37594" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="127.8"
-       y2="402.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37596" />
-    <line
-       x1="127.8"
-       y1="402.44"
-       x2="125.84"
-       y2="406.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37598" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="125.84"
-       y2="406.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37600" />
-    <line
-       x1="125.84"
-       y1="406.14001"
-       x2="122.75"
-       y2="406.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37602" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="122.75"
-       y2="406.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37604" />
-    <line
-       x1="122.75"
-       y1="406.38"
-       x2="121.63"
-       y2="402.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37606" />
-    <line
-       x1="116.64"
-       y1="400.20999"
-       x2="121.63"
-       y2="402.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37608" />
-    <line
-       x1="121.63"
-       y1="402.91"
-       x2="123.59"
-       y2="399.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37610" />
-    <line
-       x1="123.59"
-       y1="399.20999"
-       x2="116.64"
-       y2="400.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37612" />
-    <line
-       x1="1405.0699"
-       y1="390.76001"
-       x2="1405.29"
-       y2="388.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37614" />
-    <line
-       x1="1401.8"
-       y1="387.5"
-       x2="1398.08"
-       y2="389.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37616" />
-    <line
-       x1="1399.74"
-       y1="380.22"
-       x2="1398.08"
-       y2="389.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37618" />
-    <line
-       x1="1399.74"
-       y1="380.22"
-       x2="1397.85"
-       y2="391.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37620" />
-    <line
-       x1="1397.85"
-       y1="391.39999"
-       x2="1401.35"
-       y2="392.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37622" />
-    <line
-       x1="1399.74"
-       y1="380.22"
-       x2="1401.35"
-       y2="392.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37624" />
-    <line
-       x1="1401.35"
-       y1="392.26999"
-       x2="1405.0699"
-       y2="390.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37626" />
-    <line
-       x1="1405.0699"
-       y1="390.76001"
-       x2="1399.74"
-       y2="380.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37628" />
-    <line
-       x1="1404.46"
-       y1="387.54001"
-       x2="1404.6899"
-       y2="385.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37630" />
-    <line
-       x1="1399.13"
-       y1="376.98999"
-       x2="1404.6899"
-       y2="385.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37632" />
-    <line
-       x1="1404.6899"
-       y1="385.14999"
-       x2="1401.1899"
-       y2="384.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37634" />
-    <line
-       x1="1399.13"
-       y1="376.98999"
-       x2="1401.1899"
-       y2="384.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37636" />
-    <line
-       x1="1399.13"
-       y1="376.98999"
-       x2="1397.47"
-       y2="385.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37638" />
-    <line
-       x1="1399.13"
-       y1="376.98999"
-       x2="1397.24"
-       y2="388.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37640" />
-    <line
-       x1="1397.24"
-       y1="388.17999"
-       x2="1400.74"
-       y2="389.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37642" />
-    <line
-       x1="1399.13"
-       y1="376.98999"
-       x2="1400.74"
-       y2="389.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37644" />
-    <line
-       x1="1400.74"
-       y1="389.04999"
-       x2="1404.46"
-       y2="387.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37646" />
-    <line
-       x1="1404.46"
-       y1="387.54001"
-       x2="1399.13"
-       y2="376.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37648" />
-    <line
-       x1="1403.85"
-       y1="384.31"
-       x2="1404.0699"
-       y2="381.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37650" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1404.0699"
-       y2="381.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37652" />
-    <line
-       x1="1404.0699"
-       y1="381.92999"
-       x2="1400.58"
-       y2="381.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37654" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1400.58"
-       y2="381.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37656" />
-    <line
-       x1="1400.58"
-       y1="381.06"
-       x2="1396.86"
-       y2="382.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37658" />
-    <line
-       x1="1396.86"
-       y1="382.57001"
-       x2="1396.63"
-       y2="384.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37660" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1396.63"
-       y2="384.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37662" />
-    <line
-       x1="1396.63"
-       y1="384.95999"
-       x2="1400.13"
-       y2="385.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37664" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1400.13"
-       y2="385.82999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37666" />
-    <line
-       x1="1400.13"
-       y1="385.82999"
-       x2="1403.85"
-       y2="384.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37668" />
-    <line
-       x1="1403.85"
-       y1="384.31"
-       x2="1398.52"
-       y2="373.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37670" />
-    <line
-       x1="1387.17"
-       y1="380.82001"
-       x2="1390.54"
-       y2="383.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37672" />
-    <line
-       x1="1394.25"
-       y1="377.97"
-       x2="1390.54"
-       y2="383.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37674" />
-    <line
-       x1="1394.25"
-       y1="377.97"
-       x2="1391.2"
-       y2="386.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37676" />
-    <line
-       x1="1391.2"
-       y1="386.76999"
-       x2="1388.49"
-       y2="387.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37678" />
-    <line
-       x1="1394.25"
-       y1="377.97"
-       x2="1388.49"
-       y2="387.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37680" />
-    <line
-       x1="1388.49"
-       y1="387.75"
-       x2="1385.13"
-       y2="385.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37682" />
-    <line
-       x1="1394.25"
-       y1="377.97"
-       x2="1385.13"
-       y2="385.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37684" />
-    <line
-       x1="1385.13"
-       y1="385.26001"
-       x2="1384.47"
-       y2="381.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37686" />
-    <line
-       x1="1384.47"
-       y1="381.79999"
-       x2="1387.17"
-       y2="380.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37688" />
-    <line
-       x1="1389.3101"
-       y1="378.70999"
-       x2="1392.6801"
-       y2="381.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37690" />
-    <line
-       x1="1396.38"
-       y1="375.85999"
-       x2="1392.6801"
-       y2="381.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37692" />
-    <line
-       x1="1392.6801"
-       y1="381.20001"
-       x2="1393.34"
-       y2="384.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37694" />
-    <line
-       x1="1396.38"
-       y1="375.85999"
-       x2="1393.34"
-       y2="384.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37696" />
-    <line
-       x1="1393.34"
-       y1="384.66"
-       x2="1390.63"
-       y2="385.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37698" />
-    <line
-       x1="1396.38"
-       y1="375.85999"
-       x2="1390.63"
-       y2="385.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37700" />
-    <line
-       x1="1390.63"
-       y1="385.64001"
-       x2="1387.27"
-       y2="383.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37702" />
-    <line
-       x1="1396.38"
-       y1="375.85999"
-       x2="1387.27"
-       y2="383.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37704" />
-    <line
-       x1="1387.27"
-       y1="383.14999"
-       x2="1386.61"
-       y2="379.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37706" />
-    <line
-       x1="1396.38"
-       y1="375.85999"
-       x2="1386.61"
-       y2="379.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37708" />
-    <line
-       x1="1386.61"
-       y1="379.69"
-       x2="1389.3101"
-       y2="378.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37710" />
-    <line
-       x1="1389.3101"
-       y1="378.70999"
-       x2="1396.38"
-       y2="375.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37712" />
-    <line
-       x1="1391.45"
-       y1="376.60999"
-       x2="1394.8199"
-       y2="379.09"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37714" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1394.8199"
-       y2="379.09"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37716" />
-    <line
-       x1="1394.8199"
-       y1="379.09"
-       x2="1395.47"
-       y2="382.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37718" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1395.47"
-       y2="382.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37720" />
-    <line
-       x1="1395.47"
-       y1="382.54999"
-       x2="1392.77"
-       y2="383.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37722" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1392.77"
-       y2="383.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37724" />
-    <line
-       x1="1392.77"
-       y1="383.53"
-       x2="1389.41"
-       y2="381.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37726" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1389.41"
-       y2="381.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37728" />
-    <line
-       x1="1389.41"
-       y1="381.04999"
-       x2="1388.75"
-       y2="377.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37730" />
-    <line
-       x1="1388.75"
-       y1="377.59"
-       x2="1391.45"
-       y2="376.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37732" />
-    <line
-       x1="1391.45"
-       y1="376.60999"
-       x2="1398.52"
-       y2="373.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37734" />
-    <line
-       x1="1405.05"
-       y1="375.38"
-       x2="1416.53"
-       y2="374.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37736" />
-    <line
-       x1="1416.53"
-       y1="374.12"
-       x2="1417.1801"
-       y2="377.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37738" />
-    <line
-       x1="1405.05"
-       y1="375.38"
-       x2="1417.1801"
-       y2="377.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37740" />
-    <line
-       x1="1417.1801"
-       y1="377.59"
-       x2="1415.54"
-       y2="381.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37742" />
-    <line
-       x1="1405.05"
-       y1="375.38"
-       x2="1415.54"
-       y2="381.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37744" />
-    <line
-       x1="1415.54"
-       y1="381.26999"
-       x2="1413.23"
-       y2="381.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37746" />
-    <line
-       x1="1405.05"
-       y1="375.38"
-       x2="1413.23"
-       y2="381.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37748" />
-    <line
-       x1="1413.23"
-       y1="381.5"
-       x2="1412.58"
-       y2="378.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37750" />
-    <line
-       x1="1412.58"
-       y1="378.03"
-       x2="1405.05"
-       y2="375.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37752" />
-    <line
-       x1="1405.05"
-       y1="375.38"
-       x2="1412.58"
-       y2="378.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37754" />
-    <line
-       x1="1412.58"
-       y1="378.03"
-       x2="1414.23"
-       y2="374.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37756" />
-    <line
-       x1="1414.23"
-       y1="374.34"
-       x2="1405.05"
-       y2="375.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37758" />
-    <line
-       x1="1401.79"
-       y1="374.57001"
-       x2="1413.25"
-       y2="373.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37760" />
-    <line
-       x1="1413.25"
-       y1="373.31"
-       x2="1413.91"
-       y2="376.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37762" />
-    <line
-       x1="1401.79"
-       y1="374.57001"
-       x2="1413.91"
-       y2="376.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37764" />
-    <line
-       x1="1413.91"
-       y1="376.78"
-       x2="1412.26"
-       y2="380.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37766" />
-    <line
-       x1="1401.79"
-       y1="374.57001"
-       x2="1412.26"
-       y2="380.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37768" />
-    <line
-       x1="1412.26"
-       y1="380.45999"
-       x2="1409.95"
-       y2="380.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37770" />
-    <line
-       x1="1409.95"
-       y1="380.67999"
-       x2="1409.3"
-       y2="377.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37772" />
-    <line
-       x1="1401.79"
-       y1="374.57001"
-       x2="1409.3"
-       y2="377.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37774" />
-    <line
-       x1="1409.3"
-       y1="377.22"
-       x2="1410.95"
-       y2="373.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37776" />
-    <line
-       x1="1410.95"
-       y1="373.53"
-       x2="1401.79"
-       y2="374.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37778" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1409.98"
-       y2="372.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37780" />
-    <line
-       x1="1409.98"
-       y1="372.51001"
-       x2="1410.63"
-       y2="375.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37782" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1410.63"
-       y2="375.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37784" />
-    <line
-       x1="1410.63"
-       y1="375.97"
-       x2="1408.98"
-       y2="379.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37786" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1408.98"
-       y2="379.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37788" />
-    <line
-       x1="1408.98"
-       y1="379.64999"
-       x2="1406.6801"
-       y2="379.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37790" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1406.6801"
-       y2="379.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37792" />
-    <line
-       x1="1406.6801"
-       y1="379.87"
-       x2="1406.02"
-       y2="376.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37794" />
-    <line
-       x1="1398.52"
-       y1="373.76999"
-       x2="1406.02"
-       y2="376.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37796" />
-    <line
-       x1="1406.02"
-       y1="376.41"
-       x2="1407.6801"
-       y2="372.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37798" />
-    <line
-       x1="1407.6801"
-       y1="372.72"
-       x2="1398.52"
-       y2="373.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37800" />
-    <line
-       x1="318.45001"
-       y1="146.72"
-       x2="319.39001"
-       y2="144.50999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37802" />
-    <line
-       x1="312.57001"
-       y1="136.11"
-       x2="319.39001"
-       y2="144.50999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37804" />
-    <line
-       x1="319.39001"
-       y1="144.50999"
-       x2="316.44"
-       y2="143.75999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37806" />
-    <line
-       x1="312.57001"
-       y1="136.11"
-       x2="316.44"
-       y2="143.75999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37808" />
-    <line
-       x1="312.57001"
-       y1="136.11"
-       x2="312.54999"
-       y2="145.23"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37810" />
-    <line
-       x1="312.54999"
-       y1="145.23"
-       x2="311.60001"
-       y2="147.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37812" />
-    <line
-       x1="312.57001"
-       y1="136.11"
-       x2="311.60001"
-       y2="147.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37814" />
-    <line
-       x1="311.60001"
-       y1="147.44"
-       x2="314.54999"
-       y2="148.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37816" />
-    <line
-       x1="312.57001"
-       y1="136.11"
-       x2="314.54999"
-       y2="148.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37818" />
-    <line
-       x1="314.54999"
-       y1="148.19"
-       x2="318.45001"
-       y2="146.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37820" />
-    <line
-       x1="318.45001"
-       y1="146.72"
-       x2="312.57001"
-       y2="136.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37822" />
-    <line
-       x1="317.47"
-       y1="143.42999"
-       x2="318.42001"
-       y2="141.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37824" />
-    <line
-       x1="311.59"
-       y1="132.81"
-       x2="318.42001"
-       y2="141.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37826" />
-    <line
-       x1="318.42001"
-       y1="141.22"
-       x2="315.47"
-       y2="140.48"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37828" />
-    <line
-       x1="311.59"
-       y1="132.81"
-       x2="315.47"
-       y2="140.48"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37830" />
-    <line
-       x1="311.59"
-       y1="132.81"
-       x2="311.57001"
-       y2="141.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37832" />
-    <line
-       x1="311.57001"
-       y1="141.94"
-       x2="310.62"
-       y2="144.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37834" />
-    <line
-       x1="311.59"
-       y1="132.81"
-       x2="310.62"
-       y2="144.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37836" />
-    <line
-       x1="310.62"
-       y1="144.14999"
-       x2="313.57001"
-       y2="144.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37838" />
-    <line
-       x1="311.59"
-       y1="132.81"
-       x2="313.57001"
-       y2="144.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37840" />
-    <line
-       x1="313.57001"
-       y1="144.89999"
-       x2="317.47"
-       y2="143.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37842" />
-    <line
-       x1="317.47"
-       y1="143.42999"
-       x2="311.59"
-       y2="132.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37844" />
-    <line
-       x1="316.5"
-       y1="140.14"
-       x2="317.45001"
-       y2="137.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37846" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="317.45001"
-       y2="137.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37848" />
-    <line
-       x1="317.45001"
-       y1="137.92999"
-       x2="314.48999"
-       y2="137.19"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37850" />
-    <line
-       x1="314.48999"
-       y1="137.19"
-       x2="310.60001"
-       y2="138.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37852" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="310.60001"
-       y2="138.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37854" />
-    <line
-       x1="310.60001"
-       y1="138.64999"
-       x2="309.64001"
-       y2="140.86"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37856" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="309.64001"
-       y2="140.86"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37858" />
-    <line
-       x1="309.64001"
-       y1="140.86"
-       x2="312.60001"
-       y2="141.61"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37860" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="312.60001"
-       y2="141.61"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37862" />
-    <line
-       x1="312.60001"
-       y1="141.61"
-       x2="316.5"
-       y2="140.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37864" />
-    <line
-       x1="316.5"
-       y1="140.14"
-       x2="310.62"
-       y2="129.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37866" />
-    <line
-       x1="296.45001"
-       y1="135.89"
-       x2="299.54001"
-       y2="138.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37868" />
-    <line
-       x1="305.38"
-       y1="133.48"
-       x2="299.54001"
-       y2="138.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37870" />
-    <line
-       x1="299.54001"
-       y1="138.31"
-       x2="300.59"
-       y2="141.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37872" />
-    <line
-       x1="305.38"
-       y1="133.48"
-       x2="300.59"
-       y2="141.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37874" />
-    <line
-       x1="300.59"
-       y1="141.85001"
-       x2="298.56"
-       y2="142.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37876" />
-    <line
-       x1="305.38"
-       y1="133.48"
-       x2="298.56"
-       y2="142.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37878" />
-    <line
-       x1="298.56"
-       y1="142.97"
-       x2="295.48001"
-       y2="140.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37880" />
-    <line
-       x1="305.38"
-       y1="133.48"
-       x2="295.48001"
-       y2="140.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37882" />
-    <line
-       x1="295.48001"
-       y1="140.55"
-       x2="294.42001"
-       y2="137.02"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37884" />
-    <line
-       x1="305.38"
-       y1="133.48"
-       x2="294.42001"
-       y2="137.02"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37886" />
-    <line
-       x1="294.42001"
-       y1="137.02"
-       x2="296.45001"
-       y2="135.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37888" />
-    <line
-       x1="296.45001"
-       y1="135.89"
-       x2="305.38"
-       y2="133.48"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37890" />
-    <line
-       x1="299.07999"
-       y1="133.91"
-       x2="302.16"
-       y2="136.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37892" />
-    <line
-       x1="308"
-       y1="131.49001"
-       x2="302.16"
-       y2="136.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37894" />
-    <line
-       x1="302.16"
-       y1="136.32001"
-       x2="303.22"
-       y2="139.86"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37896" />
-    <line
-       x1="308"
-       y1="131.49001"
-       x2="303.22"
-       y2="139.86"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37898" />
-    <line
-       x1="303.22"
-       y1="139.86"
-       x2="301.17999"
-       y2="140.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37900" />
-    <line
-       x1="308"
-       y1="131.49001"
-       x2="301.17999"
-       y2="140.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37902" />
-    <line
-       x1="301.17999"
-       y1="140.98"
-       x2="298.10001"
-       y2="138.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37904" />
-    <line
-       x1="308"
-       y1="131.49001"
-       x2="298.10001"
-       y2="138.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37906" />
-    <line
-       x1="298.10001"
-       y1="138.57001"
-       x2="297.04999"
-       y2="135.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37908" />
-    <line
-       x1="308"
-       y1="131.49001"
-       x2="297.04999"
-       y2="135.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37910" />
-    <line
-       x1="297.04999"
-       y1="135.03"
-       x2="299.07999"
-       y2="133.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37912" />
-    <line
-       x1="299.07999"
-       y1="133.91"
-       x2="308"
-       y2="131.49001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37914" />
-    <line
-       x1="301.70999"
-       y1="131.92"
-       x2="304.79001"
-       y2="134.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37916" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="304.79001"
-       y2="134.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37918" />
-    <line
-       x1="304.79001"
-       y1="134.34"
-       x2="305.84"
-       y2="137.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37920" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="305.84"
-       y2="137.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37922" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="303.81"
-       y2="138.99001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37924" />
-    <line
-       x1="303.81"
-       y1="138.99001"
-       x2="300.73001"
-       y2="136.58"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37926" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="300.73001"
-       y2="136.58"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37928" />
-    <line
-       x1="300.73001"
-       y1="136.58"
-       x2="299.67999"
-       y2="133.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37930" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="299.67999"
-       y2="133.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37932" />
-    <line
-       x1="299.67999"
-       y1="133.05"
-       x2="301.70999"
-       y2="131.92"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37934" />
-    <line
-       x1="301.70999"
-       y1="131.92"
-       x2="310.62"
-       y2="129.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37936" />
-    <line
-       x1="326.34"
-       y1="129.37"
-       x2="327.38"
-       y2="132.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37938" />
-    <line
-       x1="316.14001"
-       y1="130.89999"
-       x2="327.38"
-       y2="132.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37940" />
-    <line
-       x1="327.38"
-       y1="132.91"
-       x2="325.47"
-       y2="136.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37942" />
-    <line
-       x1="316.14001"
-       y1="130.89999"
-       x2="325.47"
-       y2="136.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37944" />
-    <line
-       x1="325.47"
-       y1="136.52"
-       x2="322.51999"
-       y2="136.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37946" />
-    <line
-       x1="322.51999"
-       y1="136.59"
-       x2="321.48001"
-       y2="133.05"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37948" />
-    <line
-       x1="316.14001"
-       y1="130.89999"
-       x2="321.48001"
-       y2="133.05"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37950" />
-    <line
-       x1="321.48001"
-       y1="133.05"
-       x2="323.39001"
-       y2="129.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37952" />
-    <line
-       x1="323.39001"
-       y1="129.44"
-       x2="316.14001"
-       y2="130.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37954" />
-    <line
-       x1="313.38"
-       y1="130.21001"
-       x2="323.57001"
-       y2="128.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37956" />
-    <line
-       x1="323.57001"
-       y1="128.67999"
-       x2="324.60999"
-       y2="132.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37958" />
-    <line
-       x1="313.38"
-       y1="130.21001"
-       x2="324.60999"
-       y2="132.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37960" />
-    <line
-       x1="324.60999"
-       y1="132.21001"
-       x2="322.70999"
-       y2="135.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37962" />
-    <line
-       x1="313.38"
-       y1="130.21001"
-       x2="322.70999"
-       y2="135.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37964" />
-    <line
-       x1="322.70999"
-       y1="135.82001"
-       x2="319.76001"
-       y2="135.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37966" />
-    <line
-       x1="319.76001"
-       y1="135.89999"
-       x2="318.70999"
-       y2="132.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37968" />
-    <line
-       x1="313.38"
-       y1="130.21001"
-       x2="318.70999"
-       y2="132.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37970" />
-    <line
-       x1="318.70999"
-       y1="132.36"
-       x2="320.62"
-       y2="128.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37972" />
-    <line
-       x1="317.85001"
-       y1="128.05"
-       x2="320.79999"
-       y2="127.98"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37974" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="320.79999"
-       y2="127.98"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37976" />
-    <line
-       x1="320.79999"
-       y1="127.98"
-       x2="321.85001"
-       y2="131.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37978" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="321.85001"
-       y2="131.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37980" />
-    <line
-       x1="321.85001"
-       y1="131.52"
-       x2="319.94"
-       y2="135.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37982" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="319.94"
-       y2="135.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37984" />
-    <line
-       x1="319.94"
-       y1="135.13"
-       x2="316.98999"
-       y2="135.2"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37986" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="316.98999"
-       y2="135.2"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37988" />
-    <line
-       x1="316.98999"
-       y1="135.2"
-       x2="315.95001"
-       y2="131.66"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37990" />
-    <line
-       x1="310.62"
-       y1="129.52"
-       x2="315.95001"
-       y2="131.66"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37992" />
-    <line
-       x1="315.95001"
-       y1="131.66"
-       x2="317.85001"
-       y2="128.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37994" />
-    <line
-       x1="317.85001"
-       y1="128.05"
-       x2="310.62"
-       y2="129.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line37996" />
-    <line
-       x1="1504.9301"
-       y1="466.10001"
-       x2="1505.08"
-       y2="463.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line37998" />
-    <line
-       x1="1505.08"
-       y1="463.64999"
-       x2="1501.53"
-       y2="462.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38000" />
-    <line
-       x1="1499.63"
-       y1="455.57001"
-       x2="1501.53"
-       y2="462.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38002" />
-    <line
-       x1="1501.53"
-       y1="462.75"
-       x2="1497.8199"
-       y2="464.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38004" />
-    <line
-       x1="1497.8199"
-       y1="464.28"
-       x2="1497.65"
-       y2="466.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38006" />
-    <line
-       x1="1499.63"
-       y1="455.57001"
-       x2="1497.65"
-       y2="466.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38008" />
-    <line
-       x1="1497.65"
-       y1="466.72"
-       x2="1501.21"
-       y2="467.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38010" />
-    <line
-       x1="1499.63"
-       y1="455.57001"
-       x2="1501.21"
-       y2="467.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38012" />
-    <line
-       x1="1501.21"
-       y1="467.63"
-       x2="1504.9301"
-       y2="466.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38014" />
-    <line
-       x1="1504.9301"
-       y1="466.10001"
-       x2="1499.63"
-       y2="455.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38016" />
-    <line
-       x1="1504.35"
-       y1="462.89001"
-       x2="1504.51"
-       y2="460.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38018" />
-    <line
-       x1="1504.51"
-       y1="460.45001"
-       x2="1500.95"
-       y2="459.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38020" />
-    <line
-       x1="1499.05"
-       y1="452.35999"
-       x2="1500.95"
-       y2="459.54001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38022" />
-    <line
-       x1="1500.95"
-       y1="459.54001"
-       x2="1497.23"
-       y2="461.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38024" />
-    <line
-       x1="1499.05"
-       y1="452.35999"
-       x2="1497.0699"
-       y2="463.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38026" />
-    <line
-       x1="1497.0699"
-       y1="463.51999"
-       x2="1500.63"
-       y2="464.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38028" />
-    <line
-       x1="1499.05"
-       y1="452.35999"
-       x2="1500.63"
-       y2="464.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38030" />
-    <line
-       x1="1500.63"
-       y1="464.42999"
-       x2="1504.35"
-       y2="462.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38032" />
-    <line
-       x1="1504.35"
-       y1="462.89001"
-       x2="1499.05"
-       y2="452.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38034" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1503.9301"
-       y2="457.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38036" />
-    <line
-       x1="1503.9301"
-       y1="457.23999"
-       x2="1500.37"
-       y2="456.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38038" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1500.37"
-       y2="456.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38040" />
-    <line
-       x1="1500.37"
-       y1="456.34"
-       x2="1496.66"
-       y2="457.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38042" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1496.49"
-       y2="460.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38044" />
-    <line
-       x1="1496.49"
-       y1="460.31"
-       x2="1500.05"
-       y2="461.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38046" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1500.05"
-       y2="461.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38048" />
-    <line
-       x1="1500.05"
-       y1="461.22"
-       x2="1503.77"
-       y2="459.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38050" />
-    <line
-       x1="1503.77"
-       y1="459.67999"
-       x2="1498.47"
-       y2="449.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38052" />
-    <line
-       x1="1487.35"
-       y1="456.42001"
-       x2="1490.75"
-       y2="458.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38054" />
-    <line
-       x1="1494.28"
-       y1="453.42999"
-       x2="1490.75"
-       y2="458.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38056" />
-    <line
-       x1="1494.28"
-       y1="453.42999"
-       x2="1491.38"
-       y2="462.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38058" />
-    <line
-       x1="1491.38"
-       y1="462.38"
-       x2="1488.61"
-       y2="463.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38060" />
-    <line
-       x1="1494.28"
-       y1="453.42999"
-       x2="1488.61"
-       y2="463.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38062" />
-    <line
-       x1="1488.61"
-       y1="463.32001"
-       x2="1485.21"
-       y2="460.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38064" />
-    <line
-       x1="1494.28"
-       y1="453.42999"
-       x2="1485.21"
-       y2="460.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38066" />
-    <line
-       x1="1485.21"
-       y1="460.79999"
-       x2="1484.58"
-       y2="457.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38068" />
-    <line
-       x1="1494.28"
-       y1="453.42999"
-       x2="1484.58"
-       y2="457.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38070" />
-    <line
-       x1="1484.58"
-       y1="457.35999"
-       x2="1487.35"
-       y2="456.42001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38072" />
-    <line
-       x1="1487.35"
-       y1="456.42001"
-       x2="1494.28"
-       y2="453.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38074" />
-    <line
-       x1="1489.45"
-       y1="454.26999"
-       x2="1492.86"
-       y2="456.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38076" />
-    <line
-       x1="1496.38"
-       y1="451.29001"
-       x2="1492.86"
-       y2="456.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38078" />
-    <line
-       x1="1496.38"
-       y1="451.29001"
-       x2="1493.48"
-       y2="460.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38080" />
-    <line
-       x1="1493.48"
-       y1="460.23001"
-       x2="1490.71"
-       y2="461.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38082" />
-    <line
-       x1="1496.38"
-       y1="451.29001"
-       x2="1490.71"
-       y2="461.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38084" />
-    <line
-       x1="1490.71"
-       y1="461.16"
-       x2="1487.3101"
-       y2="458.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38086" />
-    <line
-       x1="1496.38"
-       y1="451.29001"
-       x2="1487.3101"
-       y2="458.64999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38088" />
-    <line
-       x1="1487.3101"
-       y1="458.64999"
-       x2="1486.6801"
-       y2="455.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38090" />
-    <line
-       x1="1486.6801"
-       y1="455.20999"
-       x2="1489.45"
-       y2="454.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38092" />
-    <line
-       x1="1489.45"
-       y1="454.26999"
-       x2="1496.38"
-       y2="451.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38094" />
-    <line
-       x1="1491.55"
-       y1="452.13"
-       x2="1494.95"
-       y2="454.64001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38096" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1494.95"
-       y2="454.64001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38098" />
-    <line
-       x1="1494.95"
-       y1="454.64001"
-       x2="1495.58"
-       y2="458.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38100" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1495.58"
-       y2="458.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38102" />
-    <line
-       x1="1495.58"
-       y1="458.07999"
-       x2="1492.8"
-       y2="459.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38104" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1492.8"
-       y2="459.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38106" />
-    <line
-       x1="1492.8"
-       y1="459.01999"
-       x2="1489.41"
-       y2="456.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38108" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1489.41"
-       y2="456.51001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38110" />
-    <line
-       x1="1489.41"
-       y1="456.51001"
-       x2="1488.79"
-       y2="453.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38112" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1488.79"
-       y2="453.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38114" />
-    <line
-       x1="1488.79"
-       y1="453.06"
-       x2="1491.55"
-       y2="452.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38116" />
-    <line
-       x1="1491.55"
-       y1="452.13"
-       x2="1498.47"
-       y2="449.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38118" />
-    <line
-       x1="1516.75"
-       y1="449.64999"
-       x2="1517.37"
-       y2="453.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38120" />
-    <line
-       x1="1505.12"
-       y1="450.82999"
-       x2="1517.37"
-       y2="453.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38122" />
-    <line
-       x1="1517.37"
-       y1="453.10999"
-       x2="1515.74"
-       y2="456.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38124" />
-    <line
-       x1="1505.12"
-       y1="450.82999"
-       x2="1515.74"
-       y2="456.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38126" />
-    <line
-       x1="1515.74"
-       y1="456.82001"
-       x2="1513.49"
-       y2="457.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38128" />
-    <line
-       x1="1505.12"
-       y1="450.82999"
-       x2="1513.49"
-       y2="457.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38130" />
-    <line
-       x1="1513.49"
-       y1="457.09"
-       x2="1512.87"
-       y2="453.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38132" />
-    <line
-       x1="1505.12"
-       y1="450.82999"
-       x2="1512.87"
-       y2="453.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38134" />
-    <line
-       x1="1512.87"
-       y1="453.64001"
-       x2="1514.5"
-       y2="449.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38136" />
-    <line
-       x1="1514.5"
-       y1="449.92001"
-       x2="1505.12"
-       y2="450.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38138" />
-    <line
-       x1="1501.79"
-       y1="449.98001"
-       x2="1513.41"
-       y2="448.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38140" />
-    <line
-       x1="1513.41"
-       y1="448.81"
-       x2="1514.04"
-       y2="452.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38142" />
-    <line
-       x1="1501.79"
-       y1="449.98001"
-       x2="1514.04"
-       y2="452.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38144" />
-    <line
-       x1="1514.04"
-       y1="452.26001"
-       x2="1512.4"
-       y2="455.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38146" />
-    <line
-       x1="1501.79"
-       y1="449.98001"
-       x2="1512.4"
-       y2="455.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38148" />
-    <line
-       x1="1512.4"
-       y1="455.97"
-       x2="1510.15"
-       y2="456.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38150" />
-    <line
-       x1="1501.79"
-       y1="449.98001"
-       x2="1510.15"
-       y2="456.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38152" />
-    <line
-       x1="1510.15"
-       y1="456.23999"
-       x2="1509.54"
-       y2="452.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38154" />
-    <line
-       x1="1501.79"
-       y1="449.98001"
-       x2="1509.54"
-       y2="452.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38156" />
-    <line
-       x1="1509.54"
-       y1="452.79001"
-       x2="1511.17"
-       y2="449.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38158" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1510.08"
-       y2="447.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38160" />
-    <line
-       x1="1510.08"
-       y1="447.95999"
-       x2="1510.7"
-       y2="451.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38162" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1510.7"
-       y2="451.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38164" />
-    <line
-       x1="1510.7"
-       y1="451.41"
-       x2="1509.0699"
-       y2="455.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38166" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1509.0699"
-       y2="455.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38168" />
-    <line
-       x1="1509.0699"
-       y1="455.13"
-       x2="1506.8199"
-       y2="455.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38170" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1506.8199"
-       y2="455.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38172" />
-    <line
-       x1="1506.8199"
-       y1="455.39001"
-       x2="1506.2"
-       y2="451.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38174" />
-    <line
-       x1="1498.47"
-       y1="449.14001"
-       x2="1506.2"
-       y2="451.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38176" />
-    <line
-       x1="1506.2"
-       y1="451.94"
-       x2="1507.83"
-       y2="448.23001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38178" />
-    <line
-       x1="1507.83"
-       y1="448.23001"
-       x2="1498.47"
-       y2="449.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38180" />
-    <line
-       x1="444.06"
-       y1="149.46001"
-       x2="444.92001"
-       y2="147.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38182" />
-    <line
-       x1="438.26999"
-       y1="138.86"
-       x2="444.92001"
-       y2="147.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38184" />
-    <line
-       x1="444.92001"
-       y1="147.25"
-       x2="441.92001"
-       y2="146.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38186" />
-    <line
-       x1="438.26999"
-       y1="138.86"
-       x2="441.92001"
-       y2="146.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38188" />
-    <line
-       x1="438.26999"
-       y1="138.86"
-       x2="438.04999"
-       y2="147.96001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38190" />
-    <line
-       x1="438.26999"
-       y1="138.86"
-       x2="437.19"
-       y2="150.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38192" />
-    <line
-       x1="437.19"
-       y1="150.17999"
-       x2="440.20001"
-       y2="150.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38194" />
-    <line
-       x1="438.26999"
-       y1="138.86"
-       x2="440.20001"
-       y2="150.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38196" />
-    <line
-       x1="440.20001"
-       y1="150.92999"
-       x2="444.06"
-       y2="149.46001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38198" />
-    <line
-       x1="444.06"
-       y1="149.46001"
-       x2="438.26999"
-       y2="138.86"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38200" />
-    <line
-       x1="443.13"
-       y1="146.17999"
-       x2="443.98999"
-       y2="143.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38202" />
-    <line
-       x1="443.98999"
-       y1="143.97"
-       x2="440.98999"
-       y2="143.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38204" />
-    <line
-       x1="437.32999"
-       y1="135.58"
-       x2="440.98999"
-       y2="143.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38206" />
-    <line
-       x1="437.32999"
-       y1="135.58"
-       x2="437.12"
-       y2="144.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38208" />
-    <line
-       x1="437.32999"
-       y1="135.58"
-       x2="436.25"
-       y2="146.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38210" />
-    <line
-       x1="436.25"
-       y1="146.89999"
-       x2="439.26001"
-       y2="147.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38212" />
-    <line
-       x1="437.32999"
-       y1="135.58"
-       x2="439.26001"
-       y2="147.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38214" />
-    <line
-       x1="439.26001"
-       y1="147.64"
-       x2="443.13"
-       y2="146.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38216" />
-    <line
-       x1="443.13"
-       y1="146.17999"
-       x2="437.32999"
-       y2="135.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38218" />
-    <line
-       x1="442.20001"
-       y1="142.89"
-       x2="443.07001"
-       y2="140.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38220" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="443.07001"
-       y2="140.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38222" />
-    <line
-       x1="443.07001"
-       y1="140.69"
-       x2="440.06"
-       y2="139.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38224" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="440.06"
-       y2="139.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38226" />
-    <line
-       x1="440.06"
-       y1="139.94"
-       x2="436.19"
-       y2="141.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38228" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="436.19"
-       y2="141.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38230" />
-    <line
-       x1="436.19"
-       y1="141.41"
-       x2="435.32001"
-       y2="143.61"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38232" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="435.32001"
-       y2="143.61"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38234" />
-    <line
-       x1="435.32001"
-       y1="143.61"
-       x2="438.32999"
-       y2="144.36"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38236" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="438.32999"
-       y2="144.36"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38238" />
-    <line
-       x1="438.32999"
-       y1="144.36"
-       x2="442.20001"
-       y2="142.89"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38240" />
-    <line
-       x1="442.20001"
-       y1="142.89"
-       x2="436.39999"
-       y2="132.28999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38242" />
-    <line
-       x1="422.59"
-       y1="138.66"
-       x2="425.70001"
-       y2="141.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38244" />
-    <line
-       x1="431.29001"
-       y1="136.25"
-       x2="425.70001"
-       y2="141.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38246" />
-    <line
-       x1="425.70001"
-       y1="141.07001"
-       x2="426.70999"
-       y2="144.61"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38248" />
-    <line
-       x1="431.29001"
-       y1="136.25"
-       x2="426.70999"
-       y2="144.61"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38250" />
-    <line
-       x1="426.70999"
-       y1="144.61"
-       x2="424.60001"
-       y2="145.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38252" />
-    <line
-       x1="431.29001"
-       y1="136.25"
-       x2="424.60001"
-       y2="145.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38254" />
-    <line
-       x1="424.60001"
-       y1="145.72"
-       x2="421.5"
-       y2="143.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38256" />
-    <line
-       x1="431.29001"
-       y1="136.25"
-       x2="421.5"
-       y2="143.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38258" />
-    <line
-       x1="421.5"
-       y1="143.31"
-       x2="420.48999"
-       y2="139.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38260" />
-    <line
-       x1="431.29001"
-       y1="136.25"
-       x2="420.48999"
-       y2="139.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38262" />
-    <line
-       x1="420.48999"
-       y1="139.78"
-       x2="422.59"
-       y2="138.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38264" />
-    <line
-       x1="422.59"
-       y1="138.66"
-       x2="431.29001"
-       y2="136.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38266" />
-    <line
-       x1="433.84"
-       y1="134.27"
-       x2="428.26999"
-       y2="139.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38268" />
-    <line
-       x1="428.26999"
-       y1="139.09"
-       x2="429.26999"
-       y2="142.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38270" />
-    <line
-       x1="433.84"
-       y1="134.27"
-       x2="429.26999"
-       y2="142.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38272" />
-    <line
-       x1="429.26999"
-       y1="142.62"
-       x2="427.17001"
-       y2="143.74001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38274" />
-    <line
-       x1="433.84"
-       y1="134.27"
-       x2="427.17001"
-       y2="143.74001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38276" />
-    <line
-       x1="427.17001"
-       y1="143.74001"
-       x2="424.06"
-       y2="141.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38278" />
-    <line
-       x1="433.84"
-       y1="134.27"
-       x2="424.06"
-       y2="141.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38280" />
-    <line
-       x1="424.06"
-       y1="141.32001"
-       x2="423.04999"
-       y2="137.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38282" />
-    <line
-       x1="433.84"
-       y1="134.27"
-       x2="423.04999"
-       y2="137.8"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38284" />
-    <line
-       x1="423.04999"
-       y1="137.8"
-       x2="425.16"
-       y2="136.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38286" />
-    <line
-       x1="425.16"
-       y1="136.67999"
-       x2="433.84"
-       y2="134.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38288" />
-    <line
-       x1="427.72"
-       y1="134.7"
-       x2="430.82999"
-       y2="137.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38290" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="430.82999"
-       y2="137.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38292" />
-    <line
-       x1="430.82999"
-       y1="137.11"
-       x2="431.82999"
-       y2="140.64"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38294" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="431.82999"
-       y2="140.64"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38296" />
-    <line
-       x1="431.82999"
-       y1="140.64"
-       x2="429.73001"
-       y2="141.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38298" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="429.73001"
-       y2="141.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38300" />
-    <line
-       x1="429.73001"
-       y1="141.75"
-       x2="426.62"
-       y2="139.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38302" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="426.62"
-       y2="139.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38304" />
-    <line
-       x1="426.62"
-       y1="139.34"
-       x2="425.62"
-       y2="135.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38306" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="425.62"
-       y2="135.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38308" />
-    <line
-       x1="425.62"
-       y1="135.82001"
-       x2="427.72"
-       y2="134.7"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38310" />
-    <line
-       x1="427.72"
-       y1="134.7"
-       x2="436.39999"
-       y2="132.28999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38312" />
-    <line
-       x1="442.01999"
-       y1="133.67"
-       x2="452.34"
-       y2="132.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38314" />
-    <line
-       x1="452.34"
-       y1="132.14999"
-       x2="453.34"
-       y2="135.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38316" />
-    <line
-       x1="442.01999"
-       y1="133.67"
-       x2="453.34"
-       y2="135.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38318" />
-    <line
-       x1="453.34"
-       y1="135.67999"
-       x2="451.47"
-       y2="139.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38320" />
-    <line
-       x1="451.47"
-       y1="139.28999"
-       x2="448.60001"
-       y2="139.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38322" />
-    <line
-       x1="448.60001"
-       y1="139.36"
-       x2="447.60001"
-       y2="135.83"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38324" />
-    <line
-       x1="447.60001"
-       y1="135.83"
-       x2="449.48001"
-       y2="132.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38326" />
-    <line
-       x1="449.48001"
-       y1="132.22"
-       x2="442.01999"
-       y2="133.67"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38328" />
-    <line
-       x1="439.20999"
-       y1="132.98"
-       x2="449.51999"
-       y2="131.46001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38330" />
-    <line
-       x1="449.51999"
-       y1="131.46001"
-       x2="450.51999"
-       y2="134.99001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38332" />
-    <line
-       x1="450.51999"
-       y1="134.99001"
-       x2="448.64999"
-       y2="138.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38334" />
-    <line
-       x1="439.20999"
-       y1="132.98"
-       x2="448.64999"
-       y2="138.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38336" />
-    <line
-       x1="448.64999"
-       y1="138.59"
-       x2="445.78"
-       y2="138.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38338" />
-    <line
-       x1="445.78"
-       y1="138.66"
-       x2="444.78"
-       y2="135.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38340" />
-    <line
-       x1="444.78"
-       y1="135.13"
-       x2="446.66"
-       y2="131.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38342" />
-    <line
-       x1="446.66"
-       y1="131.53"
-       x2="439.20999"
-       y2="132.98"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38344" />
-    <line
-       x1="443.84"
-       y1="130.84"
-       x2="446.70999"
-       y2="130.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38346" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="446.70999"
-       y2="130.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38348" />
-    <line
-       x1="446.70999"
-       y1="130.77"
-       x2="447.70001"
-       y2="134.28999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38350" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="447.70001"
-       y2="134.28999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38352" />
-    <line
-       x1="447.70001"
-       y1="134.28999"
-       x2="445.82999"
-       y2="137.89"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38354" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="445.82999"
-       y2="137.89"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38356" />
-    <line
-       x1="445.82999"
-       y1="137.89"
-       x2="442.95999"
-       y2="137.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38358" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="442.95999"
-       y2="137.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38360" />
-    <line
-       x1="442.95999"
-       y1="137.97"
-       x2="441.95999"
-       y2="134.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38362" />
-    <line
-       x1="436.39999"
-       y1="132.28999"
-       x2="441.95999"
-       y2="134.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38364" />
-    <line
-       x1="441.95999"
-       y1="134.44"
-       x2="443.84"
-       y2="130.84"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38366" />
-    <line
-       x1="443.84"
-       y1="130.84"
-       x2="436.39999"
-       y2="132.28999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38368" />
-    <line
-       x1="1377.7"
-       y1="337.41"
-       x2="1377.9399"
-       y2="335.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38370" />
-    <line
-       x1="1377.9399"
-       y1="335.07001"
-       x2="1374.46"
-       y2="334.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38372" />
-    <line
-       x1="1372.36"
-       y1="326.85999"
-       x2="1374.46"
-       y2="334.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38374" />
-    <line
-       x1="1374.46"
-       y1="334.22"
-       x2="1370.74"
-       y2="335.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38376" />
-    <line
-       x1="1372.36"
-       y1="326.85999"
-       x2="1370.49"
-       y2="338.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38378" />
-    <line
-       x1="1370.49"
-       y1="338.07001"
-       x2="1373.97"
-       y2="338.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38380" />
-    <line
-       x1="1372.36"
-       y1="326.85999"
-       x2="1373.97"
-       y2="338.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38382" />
-    <line
-       x1="1373.97"
-       y1="338.92001"
-       x2="1377.7"
-       y2="337.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38384" />
-    <line
-       x1="1377.7"
-       y1="337.41"
-       x2="1372.36"
-       y2="326.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38386" />
-    <line
-       x1="1377.0699"
-       y1="334.17999"
-       x2="1377.3199"
-       y2="331.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38388" />
-    <line
-       x1="1371.74"
-       y1="323.63"
-       x2="1377.3199"
-       y2="331.82999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38390" />
-    <line
-       x1="1377.3199"
-       y1="331.82999"
-       x2="1373.84"
-       y2="330.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38392" />
-    <line
-       x1="1371.74"
-       y1="323.63"
-       x2="1373.84"
-       y2="330.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38394" />
-    <line
-       x1="1373.84"
-       y1="330.98999"
-       x2="1370.12"
-       y2="332.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38396" />
-    <line
-       x1="1371.74"
-       y1="323.63"
-       x2="1369.88"
-       y2="334.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38398" />
-    <line
-       x1="1369.88"
-       y1="334.84"
-       x2="1373.35"
-       y2="335.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38400" />
-    <line
-       x1="1371.74"
-       y1="323.63"
-       x2="1373.35"
-       y2="335.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38402" />
-    <line
-       x1="1373.35"
-       y1="335.67999"
-       x2="1377.0699"
-       y2="334.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38404" />
-    <line
-       x1="1377.0699"
-       y1="334.17999"
-       x2="1371.74"
-       y2="323.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38406" />
-    <line
-       x1="1376.46"
-       y1="330.94"
-       x2="1376.7"
-       y2="328.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38408" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1376.7"
-       y2="328.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38410" />
-    <line
-       x1="1376.7"
-       y1="328.60001"
-       x2="1373.22"
-       y2="327.76001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38412" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1373.22"
-       y2="327.76001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38414" />
-    <line
-       x1="1373.22"
-       y1="327.76001"
-       x2="1369.5"
-       y2="329.26001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38416" />
-    <line
-       x1="1369.5"
-       y1="329.26001"
-       x2="1371.12"
-       y2="320.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38418" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1369.25"
-       y2="331.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38420" />
-    <line
-       x1="1369.25"
-       y1="331.60999"
-       x2="1372.73"
-       y2="332.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38422" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1372.73"
-       y2="332.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38424" />
-    <line
-       x1="1372.73"
-       y1="332.45001"
-       x2="1376.46"
-       y2="330.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38426" />
-    <line
-       x1="1376.46"
-       y1="330.94"
-       x2="1371.12"
-       y2="320.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38428" />
-    <line
-       x1="1359.71"
-       y1="327.29001"
-       x2="1363.0699"
-       y2="329.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38430" />
-    <line
-       x1="1363.73"
-       y1="333.23001"
-       x2="1361.05"
-       y2="334.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38432" />
-    <line
-       x1="1366.83"
-       y1="324.53"
-       x2="1361.05"
-       y2="334.23999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38434" />
-    <line
-       x1="1361.05"
-       y1="334.23999"
-       x2="1357.7"
-       y2="331.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38436" />
-    <line
-       x1="1366.83"
-       y1="324.53"
-       x2="1357.7"
-       y2="331.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38438" />
-    <line
-       x1="1357.7"
-       y1="331.76999"
-       x2="1357.03"
-       y2="328.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38440" />
-    <line
-       x1="1357.03"
-       y1="328.29001"
-       x2="1359.71"
-       y2="327.29001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38442" />
-    <line
-       x1="1359.71"
-       y1="327.29001"
-       x2="1366.83"
-       y2="324.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38444" />
-    <line
-       x1="1361.86"
-       y1="325.20001"
-       x2="1365.21"
-       y2="327.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38446" />
-    <line
-       x1="1368.97"
-       y1="322.45001"
-       x2="1365.21"
-       y2="327.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38448" />
-    <line
-       x1="1368.97"
-       y1="322.45001"
-       x2="1365.88"
-       y2="331.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38450" />
-    <line
-       x1="1365.88"
-       y1="331.14999"
-       x2="1363.2"
-       y2="332.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38452" />
-    <line
-       x1="1368.97"
-       y1="322.45001"
-       x2="1363.2"
-       y2="332.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38454" />
-    <line
-       x1="1363.2"
-       y1="332.16"
-       x2="1359.85"
-       y2="329.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38456" />
-    <line
-       x1="1368.97"
-       y1="322.45001"
-       x2="1359.85"
-       y2="329.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38458" />
-    <line
-       x1="1359.85"
-       y1="329.69"
-       x2="1359.1801"
-       y2="326.20999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38460" />
-    <line
-       x1="1359.1801"
-       y1="326.20999"
-       x2="1361.86"
-       y2="325.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38462" />
-    <line
-       x1="1361.86"
-       y1="325.20001"
-       x2="1368.97"
-       y2="322.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38464" />
-    <line
-       x1="1364.01"
-       y1="323.13"
-       x2="1367.36"
-       y2="325.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38466" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1367.36"
-       y2="325.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38468" />
-    <line
-       x1="1367.36"
-       y1="325.59"
-       x2="1368.03"
-       y2="329.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38470" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1368.03"
-       y2="329.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38472" />
-    <line
-       x1="1368.03"
-       y1="329.07001"
-       x2="1365.35"
-       y2="330.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38474" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1365.35"
-       y2="330.07999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38476" />
-    <line
-       x1="1365.35"
-       y1="330.07999"
-       x2="1362"
-       y2="327.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38478" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1362"
-       y2="327.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38480" />
-    <line
-       x1="1362"
-       y1="327.60999"
-       x2="1361.33"
-       y2="324.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38482" />
-    <line
-       x1="1361.33"
-       y1="324.14001"
-       x2="1364.01"
-       y2="323.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38484" />
-    <line
-       x1="1364.01"
-       y1="323.13"
-       x2="1371.12"
-       y2="320.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38486" />
-    <line
-       x1="1377.62"
-       y1="321.95001"
-       x2="1389.05"
-       y2="320.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38488" />
-    <line
-       x1="1389.05"
-       y1="320.63"
-       x2="1389.71"
-       y2="324.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38490" />
-    <line
-       x1="1377.62"
-       y1="321.95001"
-       x2="1389.71"
-       y2="324.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38492" />
-    <line
-       x1="1389.71"
-       y1="324.10999"
-       x2="1388.0601"
-       y2="327.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38494" />
-    <line
-       x1="1377.62"
-       y1="321.95001"
-       x2="1388.0601"
-       y2="327.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38496" />
-    <line
-       x1="1388.0601"
-       y1="327.78"
-       x2="1385.74"
-       y2="327.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38498" />
-    <line
-       x1="1377.62"
-       y1="321.95001"
-       x2="1385.74"
-       y2="327.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38500" />
-    <line
-       x1="1385.74"
-       y1="327.95999"
-       x2="1385.08"
-       y2="324.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38502" />
-    <line
-       x1="1377.62"
-       y1="321.95001"
-       x2="1385.08"
-       y2="324.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38504" />
-    <line
-       x1="1385.08"
-       y1="324.48001"
-       x2="1386.74"
-       y2="320.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38506" />
-    <line
-       x1="1386.74"
-       y1="320.81"
-       x2="1377.62"
-       y2="321.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38508" />
-    <line
-       x1="1374.37"
-       y1="321.16"
-       x2="1385.79"
-       y2="319.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38510" />
-    <line
-       x1="1385.79"
-       y1="319.84"
-       x2="1386.45"
-       y2="323.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38512" />
-    <line
-       x1="1374.37"
-       y1="321.16"
-       x2="1386.45"
-       y2="323.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38514" />
-    <line
-       x1="1386.45"
-       y1="323.32001"
-       x2="1384.8"
-       y2="326.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38516" />
-    <line
-       x1="1374.37"
-       y1="321.16"
-       x2="1384.8"
-       y2="326.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38518" />
-    <line
-       x1="1384.8"
-       y1="326.98999"
-       x2="1382.48"
-       y2="327.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38520" />
-    <line
-       x1="1374.37"
-       y1="321.16"
-       x2="1382.48"
-       y2="327.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38522" />
-    <line
-       x1="1382.48"
-       y1="327.17999"
-       x2="1381.8199"
-       y2="323.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38524" />
-    <line
-       x1="1374.37"
-       y1="321.16"
-       x2="1381.8199"
-       y2="323.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38526" />
-    <line
-       x1="1381.8199"
-       y1="323.70001"
-       x2="1383.47"
-       y2="320.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38528" />
-    <line
-       x1="1383.47"
-       y1="320.03"
-       x2="1374.37"
-       y2="321.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38530" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1382.53"
-       y2="319.06"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38532" />
-    <line
-       x1="1382.53"
-       y1="319.06"
-       x2="1383.1899"
-       y2="322.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38534" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1383.1899"
-       y2="322.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38536" />
-    <line
-       x1="1383.1899"
-       y1="322.54001"
-       x2="1381.54"
-       y2="326.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38538" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1381.54"
-       y2="326.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38540" />
-    <line
-       x1="1381.54"
-       y1="326.20999"
-       x2="1379.22"
-       y2="326.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38542" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1379.22"
-       y2="326.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38544" />
-    <line
-       x1="1379.22"
-       y1="326.39001"
-       x2="1378.5601"
-       y2="322.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38546" />
-    <line
-       x1="1371.12"
-       y1="320.38"
-       x2="1378.5601"
-       y2="322.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38548" />
-    <line
-       x1="1378.5601"
-       y1="322.91"
-       x2="1380.21"
-       y2="319.25"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38550" />
-    <line
-       x1="1380.21"
-       y1="319.25"
-       x2="1371.12"
-       y2="320.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38552" />
-    <line
-       x1="187.86"
-       y1="462.89001"
-       x2="188.89999"
-       y2="460.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38554" />
-    <line
-       x1="181.88"
-       y1="452.38"
-       x2="188.89999"
-       y2="460.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38556" />
-    <line
-       x1="188.89999"
-       y1="460.45999"
-       x2="185.99001"
-       y2="459.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38558" />
-    <line
-       x1="181.88"
-       y1="452.38"
-       x2="181.00999"
-       y2="463.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38560" />
-    <line
-       x1="181.00999"
-       y1="463.51999"
-       x2="183.91"
-       y2="464.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38562" />
-    <line
-       x1="181.88"
-       y1="452.38"
-       x2="183.91"
-       y2="464.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38564" />
-    <line
-       x1="183.91"
-       y1="464.42999"
-       x2="187.86"
-       y2="462.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38566" />
-    <line
-       x1="187.86"
-       y1="462.89001"
-       x2="181.88"
-       y2="452.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38568" />
-    <line
-       x1="186.84"
-       y1="459.70001"
-       x2="187.88"
-       y2="457.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38570" />
-    <line
-       x1="180.86"
-       y1="449.17001"
-       x2="187.88"
-       y2="457.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38572" />
-    <line
-       x1="187.88"
-       y1="457.26001"
-       x2="184.97"
-       y2="456.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38574" />
-    <line
-       x1="184.97"
-       y1="456.35001"
-       x2="181.03"
-       y2="457.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38576" />
-    <line
-       x1="180.86"
-       y1="449.17001"
-       x2="179.98"
-       y2="460.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38578" />
-    <line
-       x1="179.98"
-       y1="460.32001"
-       x2="182.89"
-       y2="461.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38580" />
-    <line
-       x1="180.86"
-       y1="449.17001"
-       x2="182.89"
-       y2="461.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38582" />
-    <line
-       x1="182.89"
-       y1="461.23001"
-       x2="186.84"
-       y2="459.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38584" />
-    <line
-       x1="186.84"
-       y1="459.70001"
-       x2="180.86"
-       y2="449.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38586" />
-    <line
-       x1="185.81"
-       y1="456.48999"
-       x2="186.85001"
-       y2="454.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38588" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="186.85001"
-       y2="454.04999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38590" />
-    <line
-       x1="186.85001"
-       y1="454.04999"
-       x2="183.95"
-       y2="453.14999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38592" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="183.95"
-       y2="453.14999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38594" />
-    <line
-       x1="183.95"
-       y1="453.14999"
-       x2="180"
-       y2="454.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38596" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="180"
-       y2="454.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38598" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="178.96001"
-       y2="457.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38600" />
-    <line
-       x1="178.96001"
-       y1="457.12"
-       x2="181.86"
-       y2="458.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38602" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="181.86"
-       y2="458.01999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38604" />
-    <line
-       x1="181.86"
-       y1="458.01999"
-       x2="185.81"
-       y2="456.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38606" />
-    <line
-       x1="185.81"
-       y1="456.48999"
-       x2="179.83"
-       y2="445.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38608" />
-    <line
-       x1="174.44"
-       y1="450.23001"
-       x2="168.3"
-       y2="455.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38610" />
-    <line
-       x1="168.3"
-       y1="455.73001"
-       x2="169.41"
-       y2="459.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38612" />
-    <line
-       x1="174.44"
-       y1="450.23001"
-       x2="169.41"
-       y2="459.17001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38614" />
-    <line
-       x1="169.41"
-       y1="459.17001"
-       x2="167.44"
-       y2="460.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38616" />
-    <line
-       x1="167.44"
-       y1="460.10999"
-       x2="174.44"
-       y2="450.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38618" />
-    <line
-       x1="174.44"
-       y1="450.23001"
-       x2="167.44"
-       y2="460.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38620" />
-    <line
-       x1="167.44"
-       y1="460.10999"
-       x2="164.37"
-       y2="457.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38622" />
-    <line
-       x1="174.44"
-       y1="450.23001"
-       x2="164.37"
-       y2="457.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38624" />
-    <line
-       x1="164.37"
-       y1="457.60001"
-       x2="163.25999"
-       y2="454.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38626" />
-    <line
-       x1="163.25999"
-       y1="454.16"
-       x2="165.23"
-       y2="453.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38628" />
-    <line
-       x1="165.23"
-       y1="453.22"
-       x2="174.44"
-       y2="450.23001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38630" />
-    <line
-       x1="177.13"
-       y1="448.10001"
-       x2="171"
-       y2="453.57999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38632" />
-    <line
-       x1="177.13"
-       y1="448.10001"
-       x2="172.11"
-       y2="457.03"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38634" />
-    <line
-       x1="172.11"
-       y1="457.03"
-       x2="170.14"
-       y2="457.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38636" />
-    <line
-       x1="177.13"
-       y1="448.10001"
-       x2="170.14"
-       y2="457.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38638" />
-    <line
-       x1="170.14"
-       y1="457.95999"
-       x2="167.07001"
-       y2="455.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38640" />
-    <line
-       x1="177.13"
-       y1="448.10001"
-       x2="167.07001"
-       y2="455.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38642" />
-    <line
-       x1="167.07001"
-       y1="455.45999"
-       x2="165.96001"
-       y2="452.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38644" />
-    <line
-       x1="177.13"
-       y1="448.10001"
-       x2="165.96001"
-       y2="452.01001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38646" />
-    <line
-       x1="165.96001"
-       y1="452.01001"
-       x2="167.92999"
-       y2="451.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38648" />
-    <line
-       x1="167.92999"
-       y1="451.07001"
-       x2="177.13"
-       y2="448.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38650" />
-    <line
-       x1="170.63"
-       y1="448.92999"
-       x2="173.7"
-       y2="451.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38652" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="173.7"
-       y2="451.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38654" />
-    <line
-       x1="173.7"
-       y1="451.44"
-       x2="174.81"
-       y2="454.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38656" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="174.81"
-       y2="454.88"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38658" />
-    <line
-       x1="174.81"
-       y1="454.88"
-       x2="172.84"
-       y2="455.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38660" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="172.84"
-       y2="455.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38662" />
-    <line
-       x1="172.84"
-       y1="455.82001"
-       x2="169.77"
-       y2="453.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38664" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="169.77"
-       y2="453.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38666" />
-    <line
-       x1="169.77"
-       y1="453.31"
-       x2="168.67"
-       y2="449.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38668" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="168.67"
-       y2="449.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38670" />
-    <line
-       x1="168.67"
-       y1="449.87"
-       x2="170.63"
-       y2="448.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38672" />
-    <line
-       x1="170.63"
-       y1="448.92999"
-       x2="179.83"
-       y2="445.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38674" />
-    <line
-       x1="185.25999"
-       y1="447.64001"
-       x2="195.38"
-       y2="446.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38676" />
-    <line
-       x1="195.38"
-       y1="446.45999"
-       x2="196.47"
-       y2="449.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38678" />
-    <line
-       x1="185.25999"
-       y1="447.64001"
-       x2="196.47"
-       y2="449.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38680" />
-    <line
-       x1="196.47"
-       y1="449.91"
-       x2="194.52"
-       y2="453.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38682" />
-    <line
-       x1="185.25999"
-       y1="447.64001"
-       x2="194.52"
-       y2="453.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38684" />
-    <line
-       x1="194.52"
-       y1="453.62"
-       x2="191.48"
-       y2="453.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38686" />
-    <line
-       x1="191.48"
-       y1="453.89001"
-       x2="190.38"
-       y2="450.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38688" />
-    <line
-       x1="185.25999"
-       y1="447.64001"
-       x2="190.38"
-       y2="450.44"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38690" />
-    <line
-       x1="190.38"
-       y1="450.44"
-       x2="192.33"
-       y2="446.73001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38692" />
-    <line
-       x1="192.33"
-       y1="446.73001"
-       x2="185.25999"
-       y2="447.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38694" />
-    <line
-       x1="182.53999"
-       y1="446.79999"
-       x2="192.64999"
-       y2="445.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38696" />
-    <line
-       x1="192.64999"
-       y1="445.62"
-       x2="193.75"
-       y2="449.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38698" />
-    <line
-       x1="182.53999"
-       y1="446.79999"
-       x2="193.75"
-       y2="449.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38700" />
-    <line
-       x1="193.75"
-       y1="449.07001"
-       x2="191.8"
-       y2="452.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38702" />
-    <line
-       x1="182.53999"
-       y1="446.79999"
-       x2="191.8"
-       y2="452.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38704" />
-    <line
-       x1="191.8"
-       y1="452.78"
-       x2="188.75"
-       y2="453.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38706" />
-    <line
-       x1="182.53999"
-       y1="446.79999"
-       x2="188.75"
-       y2="453.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38708" />
-    <line
-       x1="188.75"
-       y1="453.04001"
-       x2="187.64999"
-       y2="449.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38710" />
-    <line
-       x1="182.53999"
-       y1="446.79999"
-       x2="187.64999"
-       y2="449.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38712" />
-    <line
-       x1="187.64999"
-       y1="449.60001"
-       x2="189.60001"
-       y2="445.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38714" />
-    <line
-       x1="189.60001"
-       y1="445.89001"
-       x2="182.53999"
-       y2="446.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38716" />
-    <line
-       x1="186.88"
-       y1="445.04001"
-       x2="189.92999"
-       y2="444.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38718" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="189.92999"
-       y2="444.78"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38720" />
-    <line
-       x1="189.92999"
-       y1="444.78"
-       x2="191.02"
-       y2="448.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38722" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="191.02"
-       y2="448.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38724" />
-    <line
-       x1="191.02"
-       y1="448.22"
-       x2="189.08"
-       y2="451.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38726" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="189.08"
-       y2="451.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38728" />
-    <line
-       x1="189.08"
-       y1="451.92999"
-       x2="186.03"
-       y2="452.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38730" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="186.03"
-       y2="452.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38732" />
-    <line
-       x1="186.03"
-       y1="452.20001"
-       x2="184.92999"
-       y2="448.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38734" />
-    <line
-       x1="179.83"
-       y1="445.95999"
-       x2="184.92999"
-       y2="448.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38736" />
-    <line
-       x1="184.92999"
-       y1="448.75"
-       x2="186.88"
-       y2="445.04001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38738" />
-    <line
-       x1="186.88"
-       y1="445.04001"
-       x2="179.83"
-       y2="445.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38740" />
-    <line
-       x1="1471.01"
-       y1="555.28998"
-       x2="1471.1899"
-       y2="552.78998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38742" />
-    <line
-       x1="1465.7"
-       y1="544.79999"
-       x2="1467.65"
-       y2="551.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38744" />
-    <line
-       x1="1467.65"
-       y1="551.83002"
-       x2="1463.9301"
-       y2="553.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38746" />
-    <line
-       x1="1465.7"
-       y1="544.79999"
-       x2="1463.9301"
-       y2="553.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38748" />
-    <line
-       x1="1463.9301"
-       y1="553.38"
-       x2="1463.74"
-       y2="555.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38750" />
-    <line
-       x1="1465.7"
-       y1="544.79999"
-       x2="1463.74"
-       y2="555.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38752" />
-    <line
-       x1="1463.74"
-       y1="555.89001"
-       x2="1467.29"
-       y2="556.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38754" />
-    <line
-       x1="1465.7"
-       y1="544.79999"
-       x2="1467.29"
-       y2="556.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38756" />
-    <line
-       x1="1467.29"
-       y1="556.84003"
-       x2="1471.01"
-       y2="555.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38758" />
-    <line
-       x1="1471.01"
-       y1="555.28998"
-       x2="1465.7"
-       y2="544.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38760" />
-    <line
-       x1="1470.42"
-       y1="552.10999"
-       x2="1470.6"
-       y2="549.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38762" />
-    <line
-       x1="1470.6"
-       y1="549.60999"
-       x2="1467.0601"
-       y2="548.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38764" />
-    <line
-       x1="1465.1"
-       y1="541.60999"
-       x2="1467.0601"
-       y2="548.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38766" />
-    <line
-       x1="1467.0601"
-       y1="548.65002"
-       x2="1463.34"
-       y2="550.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38768" />
-    <line
-       x1="1465.1"
-       y1="541.60999"
-       x2="1463.34"
-       y2="550.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38770" />
-    <line
-       x1="1465.1"
-       y1="541.60999"
-       x2="1463.15"
-       y2="552.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38772" />
-    <line
-       x1="1463.15"
-       y1="552.71002"
-       x2="1466.6899"
-       y2="553.65997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38774" />
-    <line
-       x1="1465.1"
-       y1="541.60999"
-       x2="1466.6899"
-       y2="553.65997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38776" />
-    <line
-       x1="1466.6899"
-       y1="553.65997"
-       x2="1470.42"
-       y2="552.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38778" />
-    <line
-       x1="1470.42"
-       y1="552.10999"
-       x2="1465.1"
-       y2="541.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38780" />
-    <line
-       x1="1469.83"
-       y1="548.92999"
-       x2="1470.01"
-       y2="546.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38782" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1470.01"
-       y2="546.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38784" />
-    <line
-       x1="1470.01"
-       y1="546.42999"
-       x2="1466.47"
-       y2="545.47998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38786" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1466.47"
-       y2="545.47998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38788" />
-    <line
-       x1="1466.47"
-       y1="545.47998"
-       x2="1462.75"
-       y2="547.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38790" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1462.75"
-       y2="547.03003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38792" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1462.5601"
-       y2="549.53003"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38794" />
-    <line
-       x1="1462.5601"
-       y1="549.53003"
-       x2="1466.1"
-       y2="550.47998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38796" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1466.1"
-       y2="550.47998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38798" />
-    <line
-       x1="1466.1"
-       y1="550.47998"
-       x2="1469.83"
-       y2="548.92999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38800" />
-    <line
-       x1="1469.83"
-       y1="548.92999"
-       x2="1464.51"
-       y2="538.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38802" />
-    <line
-       x1="1453.29"
-       y1="545.95001"
-       x2="1456.6801"
-       y2="548.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38804" />
-    <line
-       x1="1460.29"
-       y1="542.79999"
-       x2="1456.6801"
-       y2="548.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38806" />
-    <line
-       x1="1456.6801"
-       y1="548.47998"
-       x2="1457.3199"
-       y2="551.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38808" />
-    <line
-       x1="1460.29"
-       y1="542.79999"
-       x2="1457.3199"
-       y2="551.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38810" />
-    <line
-       x1="1457.3199"
-       y1="551.90997"
-       x2="1454.5699"
-       y2="552.78998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38812" />
-    <line
-       x1="1460.29"
-       y1="542.79999"
-       x2="1454.5699"
-       y2="552.78998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38814" />
-    <line
-       x1="1454.5699"
-       y1="552.78998"
-       x2="1451.1801"
-       y2="550.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38816" />
-    <line
-       x1="1460.29"
-       y1="542.79999"
-       x2="1451.1801"
-       y2="550.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38818" />
-    <line
-       x1="1451.1801"
-       y1="550.25"
-       x2="1450.54"
-       y2="546.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38820" />
-    <line
-       x1="1460.29"
-       y1="542.79999"
-       x2="1450.54"
-       y2="546.83002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38822" />
-    <line
-       x1="1450.54"
-       y1="546.83002"
-       x2="1453.29"
-       y2="545.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38824" />
-    <line
-       x1="1453.29"
-       y1="545.95001"
-       x2="1460.29"
-       y2="542.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38826" />
-    <line
-       x1="1455.41"
-       y1="543.76001"
-       x2="1458.8"
-       y2="546.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38828" />
-    <line
-       x1="1462.4"
-       y1="540.60999"
-       x2="1458.8"
-       y2="546.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38830" />
-    <line
-       x1="1458.8"
-       y1="546.28998"
-       x2="1459.45"
-       y2="549.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38832" />
-    <line
-       x1="1462.4"
-       y1="540.60999"
-       x2="1459.45"
-       y2="549.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38834" />
-    <line
-       x1="1459.45"
-       y1="549.71002"
-       x2="1456.6899"
-       y2="550.59003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38836" />
-    <line
-       x1="1462.4"
-       y1="540.60999"
-       x2="1456.6899"
-       y2="550.59003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38838" />
-    <line
-       x1="1456.6899"
-       y1="550.59003"
-       x2="1453.3"
-       y2="548.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38840" />
-    <line
-       x1="1462.4"
-       y1="540.60999"
-       x2="1453.3"
-       y2="548.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38842" />
-    <line
-       x1="1453.3"
-       y1="548.04999"
-       x2="1452.66"
-       y2="544.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38844" />
-    <line
-       x1="1452.66"
-       y1="544.64001"
-       x2="1455.41"
-       y2="543.76001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38846" />
-    <line
-       x1="1455.41"
-       y1="543.76001"
-       x2="1462.4"
-       y2="540.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38848" />
-    <line
-       x1="1457.53"
-       y1="541.57001"
-       x2="1460.92"
-       y2="544.09998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38850" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1460.92"
-       y2="544.09998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38852" />
-    <line
-       x1="1460.92"
-       y1="544.09998"
-       x2="1461.5601"
-       y2="547.52002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38854" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1461.5601"
-       y2="547.52002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38856" />
-    <line
-       x1="1461.5601"
-       y1="547.52002"
-       x2="1458.8"
-       y2="548.40002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38858" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1458.8"
-       y2="548.40002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38860" />
-    <line
-       x1="1458.8"
-       y1="548.40002"
-       x2="1455.41"
-       y2="545.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38862" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1455.41"
-       y2="545.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38864" />
-    <line
-       x1="1455.41"
-       y1="545.87"
-       x2="1454.78"
-       y2="542.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38866" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1454.78"
-       y2="542.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38868" />
-    <line
-       x1="1454.78"
-       y1="542.45001"
-       x2="1457.53"
-       y2="541.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38870" />
-    <line
-       x1="1457.53"
-       y1="541.57001"
-       x2="1464.51"
-       y2="538.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38872" />
-    <line
-       x1="1471.14"
-       y1="540.20001"
-       x2="1482.74"
-       y2="539.12"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38874" />
-    <line
-       x1="1482.74"
-       y1="539.12"
-       x2="1483.37"
-       y2="542.53998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38876" />
-    <line
-       x1="1471.14"
-       y1="540.20001"
-       x2="1483.37"
-       y2="542.53998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38878" />
-    <line
-       x1="1483.37"
-       y1="542.53998"
-       x2="1481.73"
-       y2="546.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38880" />
-    <line
-       x1="1471.14"
-       y1="540.20001"
-       x2="1481.73"
-       y2="546.28998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38882" />
-    <line
-       x1="1481.73"
-       y1="546.28998"
-       x2="1479.46"
-       y2="546.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38884" />
-    <line
-       x1="1471.14"
-       y1="540.20001"
-       x2="1479.46"
-       y2="546.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38886" />
-    <line
-       x1="1479.46"
-       y1="546.60999"
-       x2="1478.8199"
-       y2="543.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38888" />
-    <line
-       x1="1471.14"
-       y1="540.20001"
-       x2="1478.8199"
-       y2="543.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38890" />
-    <line
-       x1="1480.47"
-       y1="539.44"
-       x2="1471.14"
-       y2="540.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38892" />
-    <line
-       x1="1467.8199"
-       y1="539.31"
-       x2="1479.41"
-       y2="538.22998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38894" />
-    <line
-       x1="1479.41"
-       y1="538.22998"
-       x2="1480.05"
-       y2="541.65997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38896" />
-    <line
-       x1="1467.8199"
-       y1="539.31"
-       x2="1480.05"
-       y2="541.65997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38898" />
-    <line
-       x1="1480.05"
-       y1="541.65997"
-       x2="1478.41"
-       y2="545.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38900" />
-    <line
-       x1="1467.8199"
-       y1="539.31"
-       x2="1478.41"
-       y2="545.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38902" />
-    <line
-       x1="1478.41"
-       y1="545.39001"
-       x2="1476.13"
-       y2="545.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38904" />
-    <line
-       x1="1467.8199"
-       y1="539.31"
-       x2="1476.13"
-       y2="545.71997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38906" />
-    <line
-       x1="1476.13"
-       y1="545.71997"
-       x2="1475.5"
-       y2="542.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38908" />
-    <line
-       x1="1467.8199"
-       y1="539.31"
-       x2="1475.5"
-       y2="542.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38910" />
-    <line
-       x1="1477.14"
-       y1="538.54999"
-       x2="1467.8199"
-       y2="539.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38912" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1476.09"
-       y2="537.34998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38914" />
-    <line
-       x1="1476.09"
-       y1="537.34998"
-       x2="1476.73"
-       y2="540.77002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38916" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1476.73"
-       y2="540.77002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38918" />
-    <line
-       x1="1476.73"
-       y1="540.77002"
-       x2="1475.09"
-       y2="544.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38920" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1475.09"
-       y2="544.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38922" />
-    <line
-       x1="1475.09"
-       y1="544.5"
-       x2="1472.8101"
-       y2="544.83002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38924" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1472.8101"
-       y2="544.83002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38926" />
-    <line
-       x1="1472.8101"
-       y1="544.83002"
-       x2="1472.1801"
-       y2="541.40997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38928" />
-    <line
-       x1="1464.51"
-       y1="538.42999"
-       x2="1472.1801"
-       y2="541.40997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38930" />
-    <line
-       x1="1472.1801"
-       y1="541.40997"
-       x2="1473.8199"
-       y2="537.66998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38932" />
-    <line
-       x1="1473.8199"
-       y1="537.66998"
-       x2="1464.51"
-       y2="538.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38934" />
-    <line
-       x1="158.05"
-       y1="263.17999"
-       x2="159.10001"
-       y2="260.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38936" />
-    <line
-       x1="159.10001"
-       y1="260.88"
-       x2="156.21001"
-       y2="260.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38938" />
-    <line
-       x1="152.06"
-       y1="252.58"
-       x2="151.22"
-       y2="263.85999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38940" />
-    <line
-       x1="151.22"
-       y1="263.85999"
-       x2="154.10001"
-       y2="264.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38942" />
-    <line
-       x1="152.06"
-       y1="252.58"
-       x2="154.10001"
-       y2="264.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38944" />
-    <line
-       x1="154.10001"
-       y1="264.67001"
-       x2="158.05"
-       y2="263.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38946" />
-    <line
-       x1="158.05"
-       y1="263.17999"
-       x2="152.06"
-       y2="252.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38948" />
-    <line
-       x1="157.02"
-       y1="259.92001"
-       x2="158.07001"
-       y2="257.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38950" />
-    <line
-       x1="151.03"
-       y1="249.31"
-       x2="158.07001"
-       y2="257.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38952" />
-    <line
-       x1="158.07001"
-       y1="257.62"
-       x2="155.17999"
-       y2="256.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38954" />
-    <line
-       x1="151.25"
-       y1="258.29999"
-       x2="150.17999"
-       y2="260.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38956" />
-    <line
-       x1="151.03"
-       y1="249.31"
-       x2="150.17999"
-       y2="260.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38958" />
-    <line
-       x1="150.17999"
-       y1="260.60001"
-       x2="153.07001"
-       y2="261.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38960" />
-    <line
-       x1="151.03"
-       y1="249.31"
-       x2="153.07001"
-       y2="261.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38962" />
-    <line
-       x1="153.07001"
-       y1="261.41"
-       x2="157.02"
-       y2="259.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38964" />
-    <line
-       x1="157.02"
-       y1="259.92001"
-       x2="151.03"
-       y2="249.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38966" />
-    <line
-       x1="155.98"
-       y1="256.64999"
-       x2="157.03999"
-       y2="254.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38968" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="157.03999"
-       y2="254.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38970" />
-    <line
-       x1="157.03999"
-       y1="254.35001"
-       x2="154.14999"
-       y2="253.55"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38972" />
-    <line
-       x1="154.14999"
-       y1="253.55"
-       x2="150.21001"
-       y2="255.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38974" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="150.21001"
-       y2="255.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38976" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="149.14999"
-       y2="257.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38978" />
-    <line
-       x1="149.14999"
-       y1="257.34"
-       x2="152.03999"
-       y2="258.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38980" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="152.03999"
-       y2="258.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38982" />
-    <line
-       x1="152.03999"
-       y1="258.14001"
-       x2="155.98"
-       y2="256.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38984" />
-    <line
-       x1="155.98"
-       y1="256.64999"
-       x2="149.99001"
-       y2="246.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line38986" />
-    <line
-       x1="135.34"
-       y1="252.75"
-       x2="138.39999"
-       y2="255.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38988" />
-    <line
-       x1="144.59"
-       y1="250.13"
-       x2="138.39999"
-       y2="255.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38990" />
-    <line
-       x1="138.39999"
-       y1="255.21001"
-       x2="139.52"
-       y2="258.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38992" />
-    <line
-       x1="144.59"
-       y1="250.13"
-       x2="139.52"
-       y2="258.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38994" />
-    <line
-       x1="139.52"
-       y1="258.72"
-       x2="137.57001"
-       y2="259.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38996" />
-    <line
-       x1="144.59"
-       y1="250.13"
-       x2="137.57001"
-       y2="259.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line38998" />
-    <line
-       x1="137.57001"
-       y1="259.76999"
-       x2="134.52"
-       y2="257.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39000" />
-    <line
-       x1="144.59"
-       y1="250.13"
-       x2="134.52"
-       y2="257.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39002" />
-    <line
-       x1="134.52"
-       y1="257.32001"
-       x2="133.39999"
-       y2="253.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39004" />
-    <line
-       x1="144.59"
-       y1="250.13"
-       x2="133.39999"
-       y2="253.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39006" />
-    <line
-       x1="133.39999"
-       y1="253.81"
-       x2="135.34"
-       y2="252.75"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39008" />
-    <line
-       x1="135.34"
-       y1="252.75"
-       x2="144.59"
-       y2="250.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39010" />
-    <line
-       x1="138.05"
-       y1="250.7"
-       x2="141.11"
-       y2="253.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39012" />
-    <line
-       x1="147.28999"
-       y1="248.08"
-       x2="141.11"
-       y2="253.16"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39014" />
-    <line
-       x1="141.11"
-       y1="253.16"
-       x2="142.23"
-       y2="256.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39016" />
-    <line
-       x1="147.28999"
-       y1="248.08"
-       x2="142.23"
-       y2="256.67001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39018" />
-    <line
-       x1="142.23"
-       y1="256.67001"
-       x2="140.28999"
-       y2="257.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39020" />
-    <line
-       x1="147.28999"
-       y1="248.08"
-       x2="140.28999"
-       y2="257.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39022" />
-    <line
-       x1="140.28999"
-       y1="257.72"
-       x2="137.23"
-       y2="255.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39024" />
-    <line
-       x1="147.28999"
-       y1="248.08"
-       x2="137.23"
-       y2="255.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39026" />
-    <line
-       x1="137.23"
-       y1="255.27"
-       x2="136.11"
-       y2="251.75999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39028" />
-    <line
-       x1="136.11"
-       y1="251.75999"
-       x2="138.05"
-       y2="250.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39030" />
-    <line
-       x1="138.05"
-       y1="250.7"
-       x2="147.28999"
-       y2="248.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39032" />
-    <line
-       x1="140.77"
-       y1="248.66"
-       x2="143.82001"
-       y2="251.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39034" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="143.82001"
-       y2="251.11"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39036" />
-    <line
-       x1="143.82001"
-       y1="251.11"
-       x2="144.94"
-       y2="254.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39038" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="144.94"
-       y2="254.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39040" />
-    <line
-       x1="144.94"
-       y1="254.62"
-       x2="142.99001"
-       y2="255.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39042" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="142.99001"
-       y2="255.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39044" />
-    <line
-       x1="142.99001"
-       y1="255.67999"
-       x2="139.94"
-       y2="253.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39046" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="139.94"
-       y2="253.22"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39048" />
-    <line
-       x1="139.94"
-       y1="253.22"
-       x2="138.82001"
-       y2="249.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39050" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="138.82001"
-       y2="249.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39052" />
-    <line
-       x1="138.82001"
-       y1="249.72"
-       x2="140.77"
-       y2="248.66"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39054" />
-    <line
-       x1="140.77"
-       y1="248.66"
-       x2="149.99001"
-       y2="246.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39056" />
-    <line
-       x1="155.39"
-       y1="247.53999"
-       x2="165.45"
-       y2="246.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39058" />
-    <line
-       x1="165.45"
-       y1="246.13"
-       x2="166.55"
-       y2="249.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39060" />
-    <line
-       x1="155.39"
-       y1="247.53999"
-       x2="166.55"
-       y2="249.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39062" />
-    <line
-       x1="166.55"
-       y1="249.64"
-       x2="164.60001"
-       y2="253.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39064" />
-    <line
-       x1="155.39"
-       y1="247.53999"
-       x2="164.60001"
-       y2="253.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39066" />
-    <line
-       x1="164.60001"
-       y1="253.3"
-       x2="161.53999"
-       y2="253.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39068" />
-    <line
-       x1="161.53999"
-       y1="253.45"
-       x2="160.42999"
-       y2="249.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39070" />
-    <line
-       x1="155.39"
-       y1="247.53999"
-       x2="160.42999"
-       y2="249.92999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39072" />
-    <line
-       x1="160.42999"
-       y1="249.92999"
-       x2="162.39"
-       y2="246.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39074" />
-    <line
-       x1="162.39"
-       y1="246.27"
-       x2="155.39"
-       y2="247.53999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39076" />
-    <line
-       x1="152.69"
-       y1="246.78999"
-       x2="162.74001"
-       y2="245.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39078" />
-    <line
-       x1="162.74001"
-       y1="245.38"
-       x2="163.85001"
-       y2="248.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39080" />
-    <line
-       x1="152.69"
-       y1="246.78999"
-       x2="163.85001"
-       y2="248.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39082" />
-    <line
-       x1="163.85001"
-       y1="248.89"
-       x2="161.89"
-       y2="252.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39084" />
-    <line
-       x1="152.69"
-       y1="246.78999"
-       x2="161.89"
-       y2="252.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39086" />
-    <line
-       x1="161.89"
-       y1="252.55"
-       x2="158.84"
-       y2="252.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39088" />
-    <line
-       x1="158.84"
-       y1="252.69"
-       x2="157.73"
-       y2="249.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39090" />
-    <line
-       x1="152.69"
-       y1="246.78999"
-       x2="157.73"
-       y2="249.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39092" />
-    <line
-       x1="157.73"
-       y1="249.17999"
-       x2="159.67999"
-       y2="245.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39094" />
-    <line
-       x1="159.67999"
-       y1="245.52"
-       x2="152.69"
-       y2="246.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39096" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="160.03999"
-       y2="244.64"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39098" />
-    <line
-       x1="160.03999"
-       y1="244.64"
-       x2="161.14"
-       y2="248.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39100" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="161.14"
-       y2="248.14"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39102" />
-    <line
-       x1="161.14"
-       y1="248.14"
-       x2="159.19"
-       y2="251.78999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39104" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="159.19"
-       y2="251.78999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39106" />
-    <line
-       x1="159.19"
-       y1="251.78999"
-       x2="156.13"
-       y2="251.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39108" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="156.13"
-       y2="251.94"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39110" />
-    <line
-       x1="156.13"
-       y1="251.94"
-       x2="155.02"
-       y2="248.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39112" />
-    <line
-       x1="149.99001"
-       y1="246.03999"
-       x2="155.02"
-       y2="248.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39114" />
-    <line
-       x1="155.02"
-       y1="248.42999"
-       x2="156.98"
-       y2="244.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39116" />
-    <line
-       x1="156.98"
-       y1="244.77"
-       x2="149.99001"
-       y2="246.03999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39118" />
-    <line
-       x1="1455.48"
-       y1="316.79999"
-       x2="1455.6801"
-       y2="314.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39120" />
-    <line
-       x1="1450.1801"
-       y1="306.22"
-       x2="1455.6801"
-       y2="314.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39122" />
-    <line
-       x1="1455.6801"
-       y1="314.45999"
-       x2="1452.16"
-       y2="313.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39124" />
-    <line
-       x1="1452.16"
-       y1="313.63"
-       x2="1448.45"
-       y2="315.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39126" />
-    <line
-       x1="1450.1801"
-       y1="306.22"
-       x2="1448.45"
-       y2="315.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39128" />
-    <line
-       x1="1450.1801"
-       y1="306.22"
-       x2="1448.25"
-       y2="317.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39130" />
-    <line
-       x1="1448.25"
-       y1="317.47"
-       x2="1451.77"
-       y2="318.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39132" />
-    <line
-       x1="1450.1801"
-       y1="306.22"
-       x2="1451.77"
-       y2="318.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39134" />
-    <line
-       x1="1451.77"
-       y1="318.29999"
-       x2="1455.48"
-       y2="316.79999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39136" />
-    <line
-       x1="1455.48"
-       y1="316.79999"
-       x2="1450.1801"
-       y2="306.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39138" />
-    <line
-       x1="1454.89"
-       y1="313.54999"
-       x2="1455.09"
-       y2="311.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39140" />
-    <line
-       x1="1455.09"
-       y1="311.22"
-       x2="1451.5699"
-       y2="310.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39142" />
-    <line
-       x1="1449.59"
-       y1="302.97"
-       x2="1451.5699"
-       y2="310.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39144" />
-    <line
-       x1="1451.5699"
-       y1="310.39001"
-       x2="1447.85"
-       y2="311.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39146" />
-    <line
-       x1="1449.59"
-       y1="302.97"
-       x2="1447.66"
-       y2="314.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39148" />
-    <line
-       x1="1447.66"
-       y1="314.22"
-       x2="1451.1801"
-       y2="315.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39150" />
-    <line
-       x1="1449.59"
-       y1="302.97"
-       x2="1451.1801"
-       y2="315.04999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39152" />
-    <line
-       x1="1451.1801"
-       y1="315.04999"
-       x2="1454.89"
-       y2="313.54999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39154" />
-    <line
-       x1="1454.89"
-       y1="313.54999"
-       x2="1449.59"
-       y2="302.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39156" />
-    <line
-       x1="1454.3"
-       y1="310.29999"
-       x2="1454.49"
-       y2="307.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39158" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1454.49"
-       y2="307.97"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39160" />
-    <line
-       x1="1454.49"
-       y1="307.97"
-       x2="1450.97"
-       y2="307.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39162" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1450.97"
-       y2="307.14001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39164" />
-    <line
-       x1="1450.97"
-       y1="307.14001"
-       x2="1447.26"
-       y2="308.64001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39166" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1447.0601"
-       y2="310.98001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39168" />
-    <line
-       x1="1447.0601"
-       y1="310.98001"
-       x2="1450.58"
-       y2="311.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39170" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1450.58"
-       y2="311.81"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39172" />
-    <line
-       x1="1450.58"
-       y1="311.81"
-       x2="1454.3"
-       y2="310.29999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39174" />
-    <line
-       x1="1454.3"
-       y1="310.29999"
-       x2="1448.99"
-       y2="299.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39176" />
-    <line
-       x1="1437.78"
-       y1="306.57001"
-       x2="1441.16"
-       y2="309.04001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39178" />
-    <line
-       x1="1441.8"
-       y1="312.54001"
-       x2="1439.0699"
-       y2="313.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39180" />
-    <line
-       x1="1444.77"
-       y1="303.85001"
-       x2="1439.0699"
-       y2="313.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39182" />
-    <line
-       x1="1439.0699"
-       y1="313.56"
-       x2="1435.6899"
-       y2="311.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39184" />
-    <line
-       x1="1444.77"
-       y1="303.85001"
-       x2="1435.6899"
-       y2="311.09"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39186" />
-    <line
-       x1="1435.6899"
-       y1="311.09"
-       x2="1435.05"
-       y2="307.60001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39188" />
-    <line
-       x1="1435.05"
-       y1="307.60001"
-       x2="1437.78"
-       y2="306.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39190" />
-    <line
-       x1="1437.78"
-       y1="306.57001"
-       x2="1444.77"
-       y2="303.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39192" />
-    <line
-       x1="1439.9"
-       y1="304.5"
-       x2="1443.27"
-       y2="306.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39194" />
-    <line
-       x1="1446.88"
-       y1="301.79001"
-       x2="1443.27"
-       y2="306.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39196" />
-    <line
-       x1="1443.91"
-       y1="310.45999"
-       x2="1441.1801"
-       y2="311.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39198" />
-    <line
-       x1="1446.88"
-       y1="301.79001"
-       x2="1441.1801"
-       y2="311.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39200" />
-    <line
-       x1="1441.1801"
-       y1="311.48001"
-       x2="1437.8101"
-       y2="309.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39202" />
-    <line
-       x1="1446.88"
-       y1="301.79001"
-       x2="1437.8101"
-       y2="309.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39204" />
-    <line
-       x1="1437.8101"
-       y1="309.01999"
-       x2="1437.17"
-       y2="305.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39206" />
-    <line
-       x1="1437.17"
-       y1="305.53"
-       x2="1439.9"
-       y2="304.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39208" />
-    <line
-       x1="1439.9"
-       y1="304.5"
-       x2="1446.88"
-       y2="301.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39210" />
-    <line
-       x1="1442.02"
-       y1="302.42999"
-       x2="1445.39"
-       y2="304.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39212" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1445.39"
-       y2="304.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39214" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1446.03"
-       y2="308.39001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39216" />
-    <line
-       x1="1446.03"
-       y1="308.39001"
-       x2="1443.3"
-       y2="309.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39218" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1443.3"
-       y2="309.41"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39220" />
-    <line
-       x1="1443.3"
-       y1="309.41"
-       x2="1439.9301"
-       y2="306.95001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39222" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1439.9301"
-       y2="306.95001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39224" />
-    <line
-       x1="1439.9301"
-       y1="306.95001"
-       x2="1439.29"
-       y2="303.45999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39226" />
-    <line
-       x1="1442.02"
-       y1="302.42999"
-       x2="1448.99"
-       y2="299.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39228" />
-    <line
-       x1="1455.58"
-       y1="301.26999"
-       x2="1467.11"
-       y2="299.92001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39230" />
-    <line
-       x1="1467.11"
-       y1="299.92001"
-       x2="1467.75"
-       y2="303.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39232" />
-    <line
-       x1="1455.58"
-       y1="301.26999"
-       x2="1467.75"
-       y2="303.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39234" />
-    <line
-       x1="1467.75"
-       y1="303.41"
-       x2="1466.11"
-       y2="307.07999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39236" />
-    <line
-       x1="1455.58"
-       y1="301.26999"
-       x2="1466.11"
-       y2="307.07999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39238" />
-    <line
-       x1="1466.11"
-       y1="307.07999"
-       x2="1463.84"
-       y2="307.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39240" />
-    <line
-       x1="1455.58"
-       y1="301.26999"
-       x2="1463.84"
-       y2="307.26001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39242" />
-    <line
-       x1="1463.84"
-       y1="307.26001"
-       x2="1463.2"
-       y2="303.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39244" />
-    <line
-       x1="1455.58"
-       y1="301.26999"
-       x2="1463.2"
-       y2="303.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39246" />
-    <line
-       x1="1463.2"
-       y1="303.76999"
-       x2="1464.84"
-       y2="300.10001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39248" />
-    <line
-       x1="1464.84"
-       y1="300.10001"
-       x2="1455.58"
-       y2="301.26999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39250" />
-    <line
-       x1="1452.29"
-       y1="300.48999"
-       x2="1463.8101"
-       y2="299.14999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39252" />
-    <line
-       x1="1463.8101"
-       y1="299.14999"
-       x2="1464.45"
-       y2="302.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39254" />
-    <line
-       x1="1452.29"
-       y1="300.48999"
-       x2="1464.45"
-       y2="302.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39256" />
-    <line
-       x1="1464.45"
-       y1="302.64001"
-       x2="1462.8101"
-       y2="306.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39258" />
-    <line
-       x1="1452.29"
-       y1="300.48999"
-       x2="1462.8101"
-       y2="306.29999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39260" />
-    <line
-       x1="1462.8101"
-       y1="306.29999"
-       x2="1460.54"
-       y2="306.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39262" />
-    <line
-       x1="1452.29"
-       y1="300.48999"
-       x2="1460.54"
-       y2="306.48001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39264" />
-    <line
-       x1="1460.54"
-       y1="306.48001"
-       x2="1459.9"
-       y2="302.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39266" />
-    <line
-       x1="1452.29"
-       y1="300.48999"
-       x2="1459.9"
-       y2="302.98999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39268" />
-    <line
-       x1="1459.9"
-       y1="302.98999"
-       x2="1461.54"
-       y2="299.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39270" />
-    <line
-       x1="1461.54"
-       y1="299.32001"
-       x2="1452.29"
-       y2="300.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39272" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1460.51"
-       y2="298.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39274" />
-    <line
-       x1="1460.51"
-       y1="298.38"
-       x2="1461.14"
-       y2="301.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39276" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1461.14"
-       y2="301.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39278" />
-    <line
-       x1="1461.14"
-       y1="301.87"
-       x2="1459.51"
-       y2="305.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39280" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1459.51"
-       y2="305.53"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39282" />
-    <line
-       x1="1459.51"
-       y1="305.53"
-       x2="1457.23"
-       y2="305.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39284" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1457.23"
-       y2="305.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39286" />
-    <line
-       x1="1457.23"
-       y1="305.70999"
-       x2="1456.6"
-       y2="302.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39288" />
-    <line
-       x1="1448.99"
-       y1="299.72"
-       x2="1456.6"
-       y2="302.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39290" />
-    <line
-       x1="1456.6"
-       y1="302.20999"
-       x2="1458.24"
-       y2="298.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39292" />
-    <line
-       x1="1458.24"
-       y1="298.54999"
-       x2="1448.99"
-       y2="299.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39294" />
-    <line
-       x1="471.20999"
-       y1="144.22"
-       x2="472.06"
-       y2="142.02"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39296" />
-    <line
-       x1="472.06"
-       y1="142.02"
-       x2="469.04001"
-       y2="141.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39298" />
-    <line
-       x1="465.42999"
-       y1="133.63"
-       x2="469.04001"
-       y2="141.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39300" />
-    <line
-       x1="469.04001"
-       y1="141.27"
-       x2="465.17999"
-       y2="142.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39302" />
-    <line
-       x1="465.42999"
-       y1="133.63"
-       x2="465.17999"
-       y2="142.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39304" />
-    <line
-       x1="465.42999"
-       y1="133.63"
-       x2="464.34"
-       y2="144.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39306" />
-    <line
-       x1="464.34"
-       y1="144.94"
-       x2="467.35001"
-       y2="145.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39308" />
-    <line
-       x1="465.42999"
-       y1="133.63"
-       x2="467.35001"
-       y2="145.69"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39310" />
-    <line
-       x1="467.35001"
-       y1="145.69"
-       x2="471.20999"
-       y2="144.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39312" />
-    <line
-       x1="471.20999"
-       y1="144.22"
-       x2="465.42999"
-       y2="133.63"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39314" />
-    <line
-       x1="470.29999"
-       y1="140.94"
-       x2="471.14001"
-       y2="138.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39316" />
-    <line
-       x1="464.51001"
-       y1="130.34"
-       x2="471.14001"
-       y2="138.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39318" />
-    <line
-       x1="471.14001"
-       y1="138.73"
-       x2="468.12"
-       y2="137.99001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39320" />
-    <line
-       x1="464.51001"
-       y1="130.34"
-       x2="468.12"
-       y2="137.99001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39322" />
-    <line
-       x1="464.51001"
-       y1="130.34"
-       x2="464.26001"
-       y2="139.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39324" />
-    <line
-       x1="464.26001"
-       y1="139.45"
-       x2="463.41"
-       y2="141.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39326" />
-    <line
-       x1="464.51001"
-       y1="130.34"
-       x2="463.41"
-       y2="141.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39328" />
-    <line
-       x1="463.41"
-       y1="141.66"
-       x2="466.42999"
-       y2="142.39999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39330" />
-    <line
-       x1="466.42999"
-       y1="142.39999"
-       x2="470.29999"
-       y2="140.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39332" />
-    <line
-       x1="470.29999"
-       y1="140.94"
-       x2="464.51001"
-       y2="130.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39334" />
-    <line
-       x1="469.38"
-       y1="137.66"
-       x2="470.22"
-       y2="135.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39336" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="470.22"
-       y2="135.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39338" />
-    <line
-       x1="470.22"
-       y1="135.45"
-       x2="467.20001"
-       y2="134.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39340" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="467.20001"
-       y2="134.71001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39342" />
-    <line
-       x1="467.20001"
-       y1="134.71001"
-       x2="463.34"
-       y2="136.17"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39344" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="463.34"
-       y2="136.17"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39346" />
-    <line
-       x1="463.34"
-       y1="136.17"
-       x2="462.48999"
-       y2="138.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39348" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="462.48999"
-       y2="138.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39350" />
-    <line
-       x1="462.48999"
-       y1="138.38"
-       x2="465.51001"
-       y2="139.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39352" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="465.51001"
-       y2="139.12"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39354" />
-    <line
-       x1="465.51001"
-       y1="139.12"
-       x2="469.38"
-       y2="137.66"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39356" />
-    <line
-       x1="469.38"
-       y1="137.66"
-       x2="463.59"
-       y2="127.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39358" />
-    <line
-       x1="449.85999"
-       y1="133.41"
-       x2="452.97"
-       y2="135.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39360" />
-    <line
-       x1="458.5"
-       y1="131"
-       x2="452.97"
-       y2="135.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39362" />
-    <line
-       x1="452.97"
-       y1="135.82001"
-       x2="453.97"
-       y2="139.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39364" />
-    <line
-       x1="458.5"
-       y1="131"
-       x2="453.97"
-       y2="139.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39366" />
-    <line
-       x1="453.97"
-       y1="139.35001"
-       x2="451.85001"
-       y2="140.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39368" />
-    <line
-       x1="458.5"
-       y1="131"
-       x2="451.85001"
-       y2="140.47"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39370" />
-    <line
-       x1="451.85001"
-       y1="140.47"
-       x2="448.73001"
-       y2="138.06"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39372" />
-    <line
-       x1="458.5"
-       y1="131"
-       x2="448.73001"
-       y2="138.06"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39374" />
-    <line
-       x1="448.73001"
-       y1="138.06"
-       x2="447.73999"
-       y2="134.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39376" />
-    <line
-       x1="458.5"
-       y1="131"
-       x2="447.73999"
-       y2="134.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39378" />
-    <line
-       x1="447.73999"
-       y1="134.53"
-       x2="449.85999"
-       y2="133.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39380" />
-    <line
-       x1="449.85999"
-       y1="133.41"
-       x2="458.5"
-       y2="131"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39382" />
-    <line
-       x1="461.04999"
-       y1="129.02"
-       x2="455.51999"
-       y2="133.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39384" />
-    <line
-       x1="455.51999"
-       y1="133.84"
-       x2="456.51999"
-       y2="137.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39386" />
-    <line
-       x1="456.51999"
-       y1="137.37"
-       x2="454.39999"
-       y2="138.48"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39388" />
-    <line
-       x1="461.04999"
-       y1="129.02"
-       x2="454.39999"
-       y2="138.48"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39390" />
-    <line
-       x1="454.39999"
-       y1="138.48"
-       x2="451.29001"
-       y2="136.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39392" />
-    <line
-       x1="461.04999"
-       y1="129.02"
-       x2="451.29001"
-       y2="136.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39394" />
-    <line
-       x1="451.29001"
-       y1="136.08"
-       x2="450.29001"
-       y2="132.55"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39396" />
-    <line
-       x1="450.29001"
-       y1="132.55"
-       x2="452.41"
-       y2="131.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39398" />
-    <line
-       x1="452.41"
-       y1="131.42999"
-       x2="461.04999"
-       y2="129.02"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39400" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="458.07001"
-       y2="131.86"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39402" />
-    <line
-       x1="458.07001"
-       y1="131.86"
-       x2="459.07001"
-       y2="135.39"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39404" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="459.07001"
-       y2="135.39"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39406" />
-    <line
-       x1="459.07001"
-       y1="135.39"
-       x2="456.95001"
-       y2="136.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39408" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="456.95001"
-       y2="136.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39410" />
-    <line
-       x1="456.95001"
-       y1="136.5"
-       x2="453.84"
-       y2="134.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39412" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="453.84"
-       y2="134.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39414" />
-    <line
-       x1="453.84"
-       y1="134.10001"
-       x2="452.84"
-       y2="130.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39416" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="452.84"
-       y2="130.57001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39418" />
-    <line
-       x1="452.84"
-       y1="130.57001"
-       x2="454.95999"
-       y2="129.45"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39420" />
-    <line
-       x1="454.95999"
-       y1="129.45"
-       x2="463.59"
-       y2="127.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39422" />
-    <line
-       x1="476.73001"
-       y1="126.97"
-       x2="479.57999"
-       y2="126.9"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39424" />
-    <line
-       x1="469.23001"
-       y1="128.42999"
-       x2="479.57999"
-       y2="126.9"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39426" />
-    <line
-       x1="479.57999"
-       y1="126.9"
-       x2="480.57001"
-       y2="130.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39428" />
-    <line
-       x1="469.23001"
-       y1="128.42999"
-       x2="480.57001"
-       y2="130.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39430" />
-    <line
-       x1="480.57001"
-       y1="130.42999"
-       x2="478.70001"
-       y2="134.03999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39432" />
-    <line
-       x1="469.23001"
-       y1="128.42999"
-       x2="478.70001"
-       y2="134.03999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39434" />
-    <line
-       x1="478.70001"
-       y1="134.03999"
-       x2="475.85999"
-       y2="134.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39436" />
-    <line
-       x1="475.85999"
-       y1="134.11"
-       x2="474.87"
-       y2="130.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39438" />
-    <line
-       x1="469.23001"
-       y1="128.42999"
-       x2="474.87"
-       y2="130.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39440" />
-    <line
-       x1="474.87"
-       y1="130.57001"
-       x2="476.73001"
-       y2="126.97"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39442" />
-    <line
-       x1="476.73001"
-       y1="126.97"
-       x2="469.23001"
-       y2="128.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39444" />
-    <line
-       x1="466.41"
-       y1="127.74"
-       x2="476.75"
-       y2="126.21"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39446" />
-    <line
-       x1="476.75"
-       y1="126.21"
-       x2="477.73999"
-       y2="129.74001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39448" />
-    <line
-       x1="466.41"
-       y1="127.74"
-       x2="477.73999"
-       y2="129.74001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39450" />
-    <line
-       x1="477.73999"
-       y1="129.74001"
-       x2="475.88"
-       y2="133.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39452" />
-    <line
-       x1="466.41"
-       y1="127.74"
-       x2="475.88"
-       y2="133.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39454" />
-    <line
-       x1="475.88"
-       y1="133.34"
-       x2="473.01999"
-       y2="133.41"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39456" />
-    <line
-       x1="473.01999"
-       y1="133.41"
-       x2="472.04001"
-       y2="129.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39458" />
-    <line
-       x1="466.41"
-       y1="127.74"
-       x2="472.04001"
-       y2="129.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39460" />
-    <line
-       x1="472.04001"
-       y1="129.88"
-       x2="473.89999"
-       y2="126.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39462" />
-    <line
-       x1="473.89999"
-       y1="126.28"
-       x2="466.41"
-       y2="127.74"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39464" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="473.92001"
-       y2="125.52"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39466" />
-    <line
-       x1="473.92001"
-       y1="125.52"
-       x2="474.91"
-       y2="129.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39468" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="474.91"
-       y2="129.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39470" />
-    <line
-       x1="474.91"
-       y1="129.05"
-       x2="473.04999"
-       y2="132.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39472" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="473.04999"
-       y2="132.64999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39474" />
-    <line
-       x1="473.04999"
-       y1="132.64999"
-       x2="470.20001"
-       y2="132.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39476" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="470.20001"
-       y2="132.72"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39478" />
-    <line
-       x1="470.20001"
-       y1="132.72"
-       x2="469.20999"
-       y2="129.19"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39480" />
-    <line
-       x1="463.59"
-       y1="127.05"
-       x2="469.20999"
-       y2="129.19"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39482" />
-    <line
-       x1="469.20999"
-       y1="129.19"
-       x2="471.07001"
-       y2="125.59"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39484" />
-    <line
-       x1="471.07001"
-       y1="125.59"
-       x2="463.59"
-       y2="127.05"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39486" />
-    <line
-       x1="1197.05"
-       y1="719.09998"
-       x2="1197.42"
-       y2="716.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39488" />
-    <line
-       x1="1197.42"
-       y1="716.47998"
-       x2="1194.02"
-       y2="715.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39490" />
-    <line
-       x1="1191.6"
-       y1="708.70001"
-       x2="1194.02"
-       y2="715.45001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39492" />
-    <line
-       x1="1194.02"
-       y1="715.45001"
-       x2="1190.25"
-       y2="717.03003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39494" />
-    <line
-       x1="1189.88"
-       y1="719.64001"
-       x2="1191.6"
-       y2="708.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39496" />
-    <line
-       x1="1191.6"
-       y1="708.70001"
-       x2="1189.88"
-       y2="719.64001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39498" />
-    <line
-       x1="1189.88"
-       y1="719.64001"
-       x2="1193.28"
-       y2="720.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39500" />
-    <line
-       x1="1191.6"
-       y1="708.70001"
-       x2="1193.28"
-       y2="720.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39502" />
-    <line
-       x1="1193.28"
-       y1="720.67999"
-       x2="1197.05"
-       y2="719.09998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39504" />
-    <line
-       x1="1197.05"
-       y1="719.09998"
-       x2="1191.6"
-       y2="708.70001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39506" />
-    <line
-       x1="1196.37"
-       y1="715.97998"
-       x2="1196.73"
-       y2="713.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39508" />
-    <line
-       x1="1190.91"
-       y1="705.57001"
-       x2="1196.73"
-       y2="713.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39510" />
-    <line
-       x1="1196.73"
-       y1="713.35999"
-       x2="1193.33"
-       y2="712.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39512" />
-    <line
-       x1="1190.91"
-       y1="705.57001"
-       x2="1193.33"
-       y2="712.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39514" />
-    <line
-       x1="1193.33"
-       y1="712.33002"
-       x2="1189.5601"
-       y2="713.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39516" />
-    <line
-       x1="1190.91"
-       y1="705.57001"
-       x2="1189.1899"
-       y2="716.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39518" />
-    <line
-       x1="1189.1899"
-       y1="716.52002"
-       x2="1192.6"
-       y2="717.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39520" />
-    <line
-       x1="1190.91"
-       y1="705.57001"
-       x2="1192.6"
-       y2="717.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39522" />
-    <line
-       x1="1192.6"
-       y1="717.56"
-       x2="1196.37"
-       y2="715.97998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39524" />
-    <line
-       x1="1196.37"
-       y1="715.97998"
-       x2="1190.91"
-       y2="705.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39526" />
-    <line
-       x1="1195.6899"
-       y1="712.85999"
-       x2="1196.05"
-       y2="710.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39528" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1196.05"
-       y2="710.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39530" />
-    <line
-       x1="1196.05"
-       y1="710.23999"
-       x2="1192.65"
-       y2="709.21002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39532" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1192.65"
-       y2="709.21002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39534" />
-    <line
-       x1="1192.65"
-       y1="709.21002"
-       x2="1188.88"
-       y2="710.78998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39536" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1188.51"
-       y2="713.40002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39538" />
-    <line
-       x1="1188.51"
-       y1="713.40002"
-       x2="1191.91"
-       y2="714.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39540" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1191.91"
-       y2="714.42999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39542" />
-    <line
-       x1="1191.91"
-       y1="714.42999"
-       x2="1195.6899"
-       y2="712.85999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39544" />
-    <line
-       x1="1195.6899"
-       y1="712.85999"
-       x2="1190.23"
-       y2="702.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39546" />
-    <line
-       x1="1178.29"
-       y1="710.40002"
-       x2="1181.62"
-       y2="712.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39548" />
-    <line
-       x1="1185.75"
-       y1="706.96002"
-       x2="1181.62"
-       y2="712.96997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39550" />
-    <line
-       x1="1185.75"
-       y1="706.96002"
-       x2="1182.36"
-       y2="716.33002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39552" />
-    <line
-       x1="1182.36"
-       y1="716.33002"
-       x2="1179.77"
-       y2="717.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39554" />
-    <line
-       x1="1185.75"
-       y1="706.96002"
-       x2="1179.77"
-       y2="717.10999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39556" />
-    <line
-       x1="1179.77"
-       y1="717.10999"
-       x2="1176.45"
-       y2="714.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39558" />
-    <line
-       x1="1185.75"
-       y1="706.96002"
-       x2="1176.45"
-       y2="714.53003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39560" />
-    <line
-       x1="1176.45"
-       y1="714.53003"
-       x2="1175.71"
-       y2="711.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39562" />
-    <line
-       x1="1175.71"
-       y1="711.17999"
-       x2="1178.29"
-       y2="710.40002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39564" />
-    <line
-       x1="1178.29"
-       y1="710.40002"
-       x2="1185.75"
-       y2="706.96002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39566" />
-    <line
-       x1="1180.54"
-       y1="708.13"
-       x2="1183.86"
-       y2="710.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39568" />
-    <line
-       x1="1187.99"
-       y1="704.71002"
-       x2="1183.86"
-       y2="710.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39570" />
-    <line
-       x1="1187.99"
-       y1="704.71002"
-       x2="1184.6"
-       y2="714.06"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39572" />
-    <line
-       x1="1184.6"
-       y1="714.06"
-       x2="1182.01"
-       y2="714.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39574" />
-    <line
-       x1="1187.99"
-       y1="704.71002"
-       x2="1182.01"
-       y2="714.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39576" />
-    <line
-       x1="1182.01"
-       y1="714.84003"
-       x2="1178.6899"
-       y2="712.27002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39578" />
-    <line
-       x1="1187.99"
-       y1="704.71002"
-       x2="1178.6899"
-       y2="712.27002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39580" />
-    <line
-       x1="1178.6899"
-       y1="712.27002"
-       x2="1177.95"
-       y2="708.90997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39582" />
-    <line
-       x1="1177.95"
-       y1="708.90997"
-       x2="1180.54"
-       y2="708.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39584" />
-    <line
-       x1="1180.54"
-       y1="708.13"
-       x2="1187.99"
-       y2="704.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39586" />
-    <line
-       x1="1182.78"
-       y1="705.87"
-       x2="1186.1"
-       y2="708.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39588" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1186.1"
-       y2="708.44"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39590" />
-    <line
-       x1="1186.1"
-       y1="708.44"
-       x2="1186.84"
-       y2="711.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39592" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1186.84"
-       y2="711.79999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39594" />
-    <line
-       x1="1186.84"
-       y1="711.79999"
-       x2="1184.25"
-       y2="712.58002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39596" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1184.25"
-       y2="712.58002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39598" />
-    <line
-       x1="1184.25"
-       y1="712.58002"
-       x2="1180.9301"
-       y2="710.01001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39600" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1180.9301"
-       y2="710.01001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39602" />
-    <line
-       x1="1180.9301"
-       y1="710.01001"
-       x2="1180.2"
-       y2="706.65002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39604" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1180.2"
-       y2="706.65002"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39606" />
-    <line
-       x1="1180.2"
-       y1="706.65002"
-       x2="1182.78"
-       y2="705.87"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39608" />
-    <line
-       x1="1182.78"
-       y1="705.87"
-       x2="1190.23"
-       y2="702.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39610" />
-    <line
-       x1="1196.59"
-       y1="704.37"
-       x2="1207.88"
-       y2="703.47998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39612" />
-    <line
-       x1="1207.88"
-       y1="703.47998"
-       x2="1208.6"
-       y2="706.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39614" />
-    <line
-       x1="1196.59"
-       y1="704.37"
-       x2="1208.6"
-       y2="706.84003"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39616" />
-    <line
-       x1="1208.6"
-       y1="706.84003"
-       x2="1206.9"
-       y2="710.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39618" />
-    <line
-       x1="1196.59"
-       y1="704.37"
-       x2="1206.9"
-       y2="710.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39620" />
-    <line
-       x1="1206.9"
-       y1="710.60999"
-       x2="1204.46"
-       y2="711.03998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39622" />
-    <line
-       x1="1196.59"
-       y1="704.37"
-       x2="1204.46"
-       y2="711.03998"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39624" />
-    <line
-       x1="1204.46"
-       y1="711.03998"
-       x2="1203.73"
-       y2="707.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39626" />
-    <line
-       x1="1196.59"
-       y1="704.37"
-       x2="1203.73"
-       y2="707.67999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39628" />
-    <line
-       x1="1203.73"
-       y1="707.67999"
-       x2="1205.4399"
-       y2="703.90002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39630" />
-    <line
-       x1="1205.4399"
-       y1="703.90002"
-       x2="1196.59"
-       y2="704.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39632" />
-    <line
-       x1="1193.41"
-       y1="703.40997"
-       x2="1204.6801"
-       y2="702.52002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39634" />
-    <line
-       x1="1204.6801"
-       y1="702.52002"
-       x2="1205.41"
-       y2="705.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39636" />
-    <line
-       x1="1193.41"
-       y1="703.40997"
-       x2="1205.41"
-       y2="705.88"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39638" />
-    <line
-       x1="1205.41"
-       y1="705.88"
-       x2="1203.7"
-       y2="709.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39640" />
-    <line
-       x1="1193.41"
-       y1="703.40997"
-       x2="1203.7"
-       y2="709.65002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39642" />
-    <line
-       x1="1203.7"
-       y1="709.65002"
-       x2="1201.27"
-       y2="710.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39644" />
-    <line
-       x1="1193.41"
-       y1="703.40997"
-       x2="1201.27"
-       y2="710.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39646" />
-    <line
-       x1="1201.27"
-       y1="710.07001"
-       x2="1200.54"
-       y2="706.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39648" />
-    <line
-       x1="1193.41"
-       y1="703.40997"
-       x2="1200.54"
-       y2="706.71002"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39650" />
-    <line
-       x1="1200.54"
-       y1="706.71002"
-       x2="1202.24"
-       y2="702.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39652" />
-    <line
-       x1="1202.24"
-       y1="702.94"
-       x2="1193.41"
-       y2="703.40997"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39654" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1201.49"
-       y2="701.56"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39656" />
-    <line
-       x1="1201.49"
-       y1="701.56"
-       x2="1202.22"
-       y2="704.90997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39658" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1202.22"
-       y2="704.90997"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39660" />
-    <line
-       x1="1202.22"
-       y1="704.90997"
-       x2="1200.52"
-       y2="708.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39662" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1200.52"
-       y2="708.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39664" />
-    <line
-       x1="1200.52"
-       y1="708.69"
-       x2="1198.0699"
-       y2="709.10999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39666" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1198.0699"
-       y2="709.10999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39668" />
-    <line
-       x1="1198.0699"
-       y1="709.10999"
-       x2="1197.34"
-       y2="705.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39670" />
-    <line
-       x1="1190.23"
-       y1="702.45001"
-       x2="1197.34"
-       y2="705.75"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39672" />
-    <line
-       x1="1197.34"
-       y1="705.75"
-       x2="1199.05"
-       y2="701.97998"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39674" />
-    <line
-       x1="1199.05"
-       y1="701.97998"
-       x2="1190.23"
-       y2="702.45001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39676" />
-    <line
-       x1="497.26999"
-       y1="238.84"
-       x2="498.10001"
-       y2="236.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39678" />
-    <line
-       x1="491.5"
-       y1="228.28999"
-       x2="498.10001"
-       y2="236.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39680" />
-    <line
-       x1="498.10001"
-       y1="236.57001"
-       x2="495.07001"
-       y2="235.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39682" />
-    <line
-       x1="491.5"
-       y1="228.28999"
-       x2="495.07001"
-       y2="235.78"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39684" />
-    <line
-       x1="491.5"
-       y1="228.28999"
-       x2="491.20999"
-       y2="237.25999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39686" />
-    <line
-       x1="491.20999"
-       y1="237.25999"
-       x2="490.38"
-       y2="239.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39688" />
-    <line
-       x1="491.5"
-       y1="228.28999"
-       x2="490.38"
-       y2="239.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39690" />
-    <line
-       x1="490.38"
-       y1="239.53"
-       x2="493.41"
-       y2="240.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39692" />
-    <line
-       x1="491.5"
-       y1="228.28999"
-       x2="493.41"
-       y2="240.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39694" />
-    <line
-       x1="493.41"
-       y1="240.32001"
-       x2="497.26999"
-       y2="238.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39696" />
-    <line
-       x1="497.26999"
-       y1="238.84"
-       x2="491.5"
-       y2="228.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39698" />
-    <line
-       x1="496.35999"
-       y1="235.59"
-       x2="497.19"
-       y2="233.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39700" />
-    <line
-       x1="490.59"
-       y1="225.03999"
-       x2="497.19"
-       y2="233.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39702" />
-    <line
-       x1="497.19"
-       y1="233.32001"
-       x2="494.16"
-       y2="232.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39704" />
-    <line
-       x1="490.59"
-       y1="225.03999"
-       x2="494.16"
-       y2="232.53"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39706" />
-    <line
-       x1="494.16"
-       y1="232.53"
-       x2="490.29999"
-       y2="234.00999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39708" />
-    <line
-       x1="490.59"
-       y1="225.03999"
-       x2="490.29999"
-       y2="234.00999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39710" />
-    <line
-       x1="490.29999"
-       y1="234.00999"
-       x2="489.47"
-       y2="236.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39712" />
-    <line
-       x1="490.59"
-       y1="225.03999"
-       x2="489.47"
-       y2="236.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39714" />
-    <line
-       x1="489.47"
-       y1="236.28"
-       x2="492.5"
-       y2="237.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39716" />
-    <line
-       x1="490.59"
-       y1="225.03999"
-       x2="492.5"
-       y2="237.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39718" />
-    <line
-       x1="492.5"
-       y1="237.07001"
-       x2="496.35999"
-       y2="235.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39720" />
-    <line
-       x1="496.35999"
-       y1="235.59"
-       x2="490.59"
-       y2="225.03999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39722" />
-    <line
-       x1="495.45001"
-       y1="232.34"
-       x2="496.28"
-       y2="230.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39724" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="496.28"
-       y2="230.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39726" />
-    <line
-       x1="496.28"
-       y1="230.07001"
-       x2="493.25"
-       y2="229.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39728" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="493.25"
-       y2="229.28"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39730" />
-    <line
-       x1="493.25"
-       y1="229.28"
-       x2="489.39001"
-       y2="230.75999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39732" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="489.39001"
-       y2="230.75999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39734" />
-    <line
-       x1="489.39001"
-       y1="230.75999"
-       x2="488.54999"
-       y2="233.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39736" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="488.54999"
-       y2="233.03"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39738" />
-    <line
-       x1="488.54999"
-       y1="233.03"
-       x2="491.59"
-       y2="233.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39740" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="491.59"
-       y2="233.82001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39742" />
-    <line
-       x1="491.59"
-       y1="233.82001"
-       x2="495.45001"
-       y2="232.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39744" />
-    <line
-       x1="495.45001"
-       y1="232.34"
-       x2="489.67999"
-       y2="221.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39746" />
-    <line
-       x1="476"
-       y1="228.38"
-       x2="479.13"
-       y2="230.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39748" />
-    <line
-       x1="484.60999"
-       y1="225.81"
-       x2="479.13"
-       y2="230.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39750" />
-    <line
-       x1="479.13"
-       y1="230.82001"
-       x2="480.12"
-       y2="234.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39752" />
-    <line
-       x1="480.12"
-       y1="234.32001"
-       x2="477.98001"
-       y2="235.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39754" />
-    <line
-       x1="484.60999"
-       y1="225.81"
-       x2="477.98001"
-       y2="235.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39756" />
-    <line
-       x1="477.98001"
-       y1="235.38"
-       x2="474.85999"
-       y2="232.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39758" />
-    <line
-       x1="484.60999"
-       y1="225.81"
-       x2="474.85999"
-       y2="232.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39760" />
-    <line
-       x1="474.85999"
-       y1="232.95"
-       x2="473.87"
-       y2="229.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39762" />
-    <line
-       x1="484.60999"
-       y1="225.81"
-       x2="473.87"
-       y2="229.45"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39764" />
-    <line
-       x1="473.87"
-       y1="229.45"
-       x2="476"
-       y2="228.38"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39766" />
-    <line
-       x1="476"
-       y1="228.38"
-       x2="484.60999"
-       y2="225.81"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39768" />
-    <line
-       x1="478.54999"
-       y1="226.36"
-       x2="481.67001"
-       y2="228.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39770" />
-    <line
-       x1="487.14001"
-       y1="223.78999"
-       x2="481.67001"
-       y2="228.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39772" />
-    <line
-       x1="481.67001"
-       y1="228.78999"
-       x2="482.66"
-       y2="232.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39774" />
-    <line
-       x1="487.14001"
-       y1="223.78999"
-       x2="482.66"
-       y2="232.28999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39776" />
-    <line
-       x1="482.66"
-       y1="232.28999"
-       x2="480.51999"
-       y2="233.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39778" />
-    <line
-       x1="487.14001"
-       y1="223.78999"
-       x2="480.51999"
-       y2="233.35001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39780" />
-    <line
-       x1="480.51999"
-       y1="233.35001"
-       x2="477.39999"
-       y2="230.92"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39782" />
-    <line
-       x1="487.14001"
-       y1="223.78999"
-       x2="477.39999"
-       y2="230.92"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39784" />
-    <line
-       x1="477.39999"
-       y1="230.92"
-       x2="476.41"
-       y2="227.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39786" />
-    <line
-       x1="487.14001"
-       y1="223.78999"
-       x2="476.41"
-       y2="227.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39788" />
-    <line
-       x1="476.41"
-       y1="227.42999"
-       x2="478.54999"
-       y2="226.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39790" />
-    <line
-       x1="478.54999"
-       y1="226.36"
-       x2="487.14001"
-       y2="223.78999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39792" />
-    <line
-       x1="481.09"
-       y1="224.34"
-       x2="484.20999"
-       y2="226.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39794" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="484.20999"
-       y2="226.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39796" />
-    <line
-       x1="484.20999"
-       y1="226.77"
-       x2="485.20001"
-       y2="230.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39798" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="485.20001"
-       y2="230.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39800" />
-    <line
-       x1="485.20001"
-       y1="230.27"
-       x2="483.04999"
-       y2="231.33"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39802" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="483.04999"
-       y2="231.33"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39804" />
-    <line
-       x1="483.04999"
-       y1="231.33"
-       x2="479.94"
-       y2="228.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39806" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="479.94"
-       y2="228.89999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39808" />
-    <line
-       x1="479.94"
-       y1="228.89999"
-       x2="478.95001"
-       y2="225.39999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39810" />
-    <line
-       x1="478.95001"
-       y1="225.39999"
-       x2="481.09"
-       y2="224.34"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39812" />
-    <line
-       x1="481.09"
-       y1="224.34"
-       x2="489.67999"
-       y2="221.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39814" />
-    <line
-       x1="495.34"
-       y1="223.24001"
-       x2="505.73001"
-       y2="221.82001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39816" />
-    <line
-       x1="505.73001"
-       y1="221.82001"
-       x2="506.70999"
-       y2="225.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39818" />
-    <line
-       x1="495.34"
-       y1="223.24001"
-       x2="506.70999"
-       y2="225.32001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39820" />
-    <line
-       x1="506.70999"
-       y1="225.32001"
-       x2="504.85001"
-       y2="228.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39822" />
-    <line
-       x1="495.34"
-       y1="223.24001"
-       x2="504.85001"
-       y2="228.95"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39824" />
-    <line
-       x1="504.85001"
-       y1="228.95"
-       x2="502.01001"
-       y2="229.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39826" />
-    <line
-       x1="502.01001"
-       y1="229.07001"
-       x2="501.03"
-       y2="225.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39828" />
-    <line
-       x1="495.34"
-       y1="223.24001"
-       x2="501.03"
-       y2="225.57001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39830" />
-    <line
-       x1="501.03"
-       y1="225.57001"
-       x2="502.89001"
-       y2="221.94"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39832" />
-    <line
-       x1="502.89001"
-       y1="221.94"
-       x2="495.34"
-       y2="223.24001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39834" />
-    <line
-       x1="492.51001"
-       y1="222.50999"
-       x2="502.89001"
-       y2="221.08"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39836" />
-    <line
-       x1="502.89001"
-       y1="221.08"
-       x2="503.85999"
-       y2="224.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39838" />
-    <line
-       x1="492.51001"
-       y1="222.50999"
-       x2="503.85999"
-       y2="224.58"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39840" />
-    <line
-       x1="503.85999"
-       y1="224.58"
-       x2="502"
-       y2="228.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39842" />
-    <line
-       x1="492.51001"
-       y1="222.50999"
-       x2="502"
-       y2="228.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39844" />
-    <line
-       x1="502"
-       y1="228.21001"
-       x2="499.17001"
-       y2="228.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39846" />
-    <line
-       x1="499.17001"
-       y1="228.34"
-       x2="498.19"
-       y2="224.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39848" />
-    <line
-       x1="492.51001"
-       y1="222.50999"
-       x2="498.19"
-       y2="224.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39850" />
-    <line
-       x1="498.19"
-       y1="224.84"
-       x2="500.04999"
-       y2="221.21001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39852" />
-    <line
-       x1="500.04999"
-       y1="221.21001"
-       x2="492.51001"
-       y2="222.50999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39854" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="500.04001"
-       y2="220.35001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39856" />
-    <line
-       x1="500.04001"
-       y1="220.35001"
-       x2="501.01999"
-       y2="223.85001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39858" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="501.01999"
-       y2="223.85001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39860" />
-    <line
-       x1="501.01999"
-       y1="223.85001"
-       x2="499.16"
-       y2="227.47"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39862" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="499.16"
-       y2="227.47"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39864" />
-    <line
-       x1="499.16"
-       y1="227.47"
-       x2="496.32001"
-       y2="227.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39866" />
-    <line
-       x1="496.32001"
-       y1="227.60001"
-       x2="489.67999"
-       y2="221.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39868" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="496.32001"
-       y2="227.60001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39870" />
-    <line
-       x1="496.32001"
-       y1="227.60001"
-       x2="495.35001"
-       y2="224.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39872" />
-    <line
-       x1="489.67999"
-       y1="221.77"
-       x2="495.35001"
-       y2="224.10001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39874" />
-    <line
-       x1="495.35001"
-       y1="224.10001"
-       x2="497.20999"
-       y2="220.48"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39876" />
-    <line
-       x1="497.20999"
-       y1="220.48"
-       x2="489.67999"
-       y2="221.77"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39878" />
-    <line
-       x1="1602.09"
-       y1="410.42999"
-       x2="1602.1899"
-       y2="408.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39880" />
-    <line
-       x1="1602.1899"
-       y1="408.01999"
-       x2="1598.58"
-       y2="407.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39882" />
-    <line
-       x1="1596.84"
-       y1="399.85001"
-       x2="1598.58"
-       y2="407.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39884" />
-    <line
-       x1="1598.58"
-       y1="407.13"
-       x2="1594.88"
-       y2="408.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39886" />
-    <line
-       x1="1596.84"
-       y1="399.85001"
-       x2="1594.88"
-       y2="408.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39888" />
-    <line
-       x1="1594.88"
-       y1="408.66"
-       x2="1594.78"
-       y2="411.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39890" />
-    <line
-       x1="1596.84"
-       y1="399.85001"
-       x2="1594.78"
-       y2="411.07001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39892" />
-    <line
-       x1="1594.78"
-       y1="411.07001"
-       x2="1598.39"
-       y2="411.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39894" />
-    <line
-       x1="1596.84"
-       y1="399.85001"
-       x2="1598.39"
-       y2="411.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39896" />
-    <line
-       x1="1598.39"
-       y1="411.95001"
-       x2="1602.09"
-       y2="410.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39898" />
-    <line
-       x1="1602.09"
-       y1="410.42999"
-       x2="1596.84"
-       y2="399.85001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39900" />
-    <line
-       x1="1601.55"
-       y1="407.20001"
-       x2="1601.64"
-       y2="404.79001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39902" />
-    <line
-       x1="1601.64"
-       y1="404.79001"
-       x2="1598.04"
-       y2="403.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39904" />
-    <line
-       x1="1596.3"
-       y1="396.60999"
-       x2="1598.04"
-       y2="403.89999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39906" />
-    <line
-       x1="1598.04"
-       y1="403.89999"
-       x2="1594.33"
-       y2="405.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39908" />
-    <line
-       x1="1596.3"
-       y1="396.60999"
-       x2="1594.33"
-       y2="405.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39910" />
-    <line
-       x1="1596.3"
-       y1="396.60999"
-       x2="1594.23"
-       y2="407.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39912" />
-    <line
-       x1="1594.23"
-       y1="407.84"
-       x2="1597.84"
-       y2="408.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39914" />
-    <line
-       x1="1596.3"
-       y1="396.60999"
-       x2="1597.84"
-       y2="408.72"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39916" />
-    <line
-       x1="1597.84"
-       y1="408.72"
-       x2="1601.55"
-       y2="407.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39918" />
-    <line
-       x1="1601.55"
-       y1="407.20001"
-       x2="1596.3"
-       y2="396.60999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39920" />
-    <line
-       x1="1601"
-       y1="403.95999"
-       x2="1601.1"
-       y2="401.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39922" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1601.1"
-       y2="401.54999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39924" />
-    <line
-       x1="1601.1"
-       y1="401.54999"
-       x2="1597.49"
-       y2="400.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39926" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1597.49"
-       y2="400.67999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39928" />
-    <line
-       x1="1597.49"
-       y1="400.67999"
-       x2="1593.78"
-       y2="402.20001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39930" />
-    <line
-       x1="1593.78"
-       y1="402.20001"
-       x2="1593.6801"
-       y2="404.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39932" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1593.6801"
-       y2="404.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39934" />
-    <line
-       x1="1593.6801"
-       y1="404.60999"
-       x2="1597.29"
-       y2="405.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39936" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1597.29"
-       y2="405.48999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39938" />
-    <line
-       x1="1597.29"
-       y1="405.48999"
-       x2="1601"
-       y2="403.95999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39940" />
-    <line
-       x1="1601"
-       y1="403.95999"
-       x2="1595.75"
-       y2="393.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39942" />
-    <line
-       x1="1584.87"
-       y1="400.51999"
-       x2="1588.3"
-       y2="403.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39944" />
-    <line
-       x1="1591.64"
-       y1="397.62"
-       x2="1588.89"
-       y2="406.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39946" />
-    <line
-       x1="1588.89"
-       y1="406.5"
-       x2="1586.05"
-       y2="407.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39948" />
-    <line
-       x1="1591.64"
-       y1="397.62"
-       x2="1586.05"
-       y2="407.45999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39950" />
-    <line
-       x1="1586.05"
-       y1="407.45999"
-       x2="1582.63"
-       y2="404.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39952" />
-    <line
-       x1="1591.64"
-       y1="397.62"
-       x2="1582.63"
-       y2="404.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39954" />
-    <line
-       x1="1582.63"
-       y1="404.95999"
-       x2="1582.04"
-       y2="401.48999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39956" />
-    <line
-       x1="1582.04"
-       y1="401.48999"
-       x2="1584.87"
-       y2="400.51999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39958" />
-    <line
-       x1="1584.87"
-       y1="400.51999"
-       x2="1591.64"
-       y2="397.62"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39960" />
-    <line
-       x1="1586.9301"
-       y1="398.39001"
-       x2="1590.36"
-       y2="400.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39962" />
-    <line
-       x1="1593.7"
-       y1="395.5"
-       x2="1590.95"
-       y2="404.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39964" />
-    <line
-       x1="1590.95"
-       y1="404.37"
-       x2="1588.11"
-       y2="405.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39966" />
-    <line
-       x1="1593.7"
-       y1="395.5"
-       x2="1588.11"
-       y2="405.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39968" />
-    <line
-       x1="1588.11"
-       y1="405.34"
-       x2="1584.6899"
-       y2="402.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39970" />
-    <line
-       x1="1593.7"
-       y1="395.5"
-       x2="1584.6899"
-       y2="402.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39972" />
-    <line
-       x1="1584.6899"
-       y1="402.84"
-       x2="1584.1"
-       y2="399.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39974" />
-    <line
-       x1="1593.7"
-       y1="395.5"
-       x2="1584.1"
-       y2="399.35999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39976" />
-    <line
-       x1="1584.1"
-       y1="399.35999"
-       x2="1586.9301"
-       y2="398.39001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39978" />
-    <line
-       x1="1586.9301"
-       y1="398.39001"
-       x2="1593.7"
-       y2="395.5"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line39980" />
-    <line
-       x1="1588.99"
-       y1="396.26999"
-       x2="1592.42"
-       y2="398.76999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39982" />
-    <line
-       x1="1592.42"
-       y1="398.76999"
-       x2="1593.01"
-       y2="402.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39984" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1593.01"
-       y2="402.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39986" />
-    <line
-       x1="1593.01"
-       y1="402.23999"
-       x2="1590.17"
-       y2="403.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39988" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1590.17"
-       y2="403.20999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39990" />
-    <line
-       x1="1590.17"
-       y1="403.20999"
-       x2="1586.75"
-       y2="400.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39992" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1586.75"
-       y2="400.70999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39994" />
-    <line
-       x1="1586.75"
-       y1="400.70999"
-       x2="1586.16"
-       y2="397.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39996" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1586.16"
-       y2="397.23999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line39998" />
-    <line
-       x1="1586.16"
-       y1="397.23999"
-       x2="1588.99"
-       y2="396.26999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40000" />
-    <line
-       x1="1588.99"
-       y1="396.26999"
-       x2="1595.75"
-       y2="393.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40002" />
-    <line
-       x1="1602.5"
-       y1="395.01999"
-       x2="1614.26"
-       y2="393.76999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40004" />
-    <line
-       x1="1614.26"
-       y1="393.76999"
-       x2="1614.84"
-       y2="397.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40006" />
-    <line
-       x1="1602.5"
-       y1="395.01999"
-       x2="1614.84"
-       y2="397.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40008" />
-    <line
-       x1="1614.84"
-       y1="397.25"
-       x2="1613.23"
-       y2="400.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40010" />
-    <line
-       x1="1602.5"
-       y1="395.01999"
-       x2="1613.23"
-       y2="400.95999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40012" />
-    <line
-       x1="1613.23"
-       y1="400.95999"
-       x2="1611.04"
-       y2="401.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40014" />
-    <line
-       x1="1602.5"
-       y1="395.01999"
-       x2="1611.04"
-       y2="401.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40016" />
-    <line
-       x1="1611.04"
-       y1="401.20001"
-       x2="1610.45"
-       y2="397.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40018" />
-    <line
-       x1="1602.5"
-       y1="395.01999"
-       x2="1610.45"
-       y2="397.70999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40020" />
-    <line
-       x1="1612.0601"
-       y1="394"
-       x2="1602.5"
-       y2="395.01999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40022" />
-    <line
-       x1="1599.12"
-       y1="394.20001"
-       x2="1610.87"
-       y2="392.95001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40024" />
-    <line
-       x1="1610.87"
-       y1="392.95001"
-       x2="1611.45"
-       y2="396.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40026" />
-    <line
-       x1="1599.12"
-       y1="394.20001"
-       x2="1611.45"
-       y2="396.42999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40028" />
-    <line
-       x1="1611.45"
-       y1="396.42999"
-       x2="1609.84"
-       y2="400.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40030" />
-    <line
-       x1="1599.12"
-       y1="394.20001"
-       x2="1609.84"
-       y2="400.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40032" />
-    <line
-       x1="1609.84"
-       y1="400.13"
-       x2="1607.65"
-       y2="400.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40034" />
-    <line
-       x1="1599.12"
-       y1="394.20001"
-       x2="1607.65"
-       y2="400.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40036" />
-    <line
-       x1="1607.65"
-       y1="400.37"
-       x2="1607.0699"
-       y2="396.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40038" />
-    <line
-       x1="1599.12"
-       y1="394.20001"
-       x2="1607.0699"
-       y2="396.89001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40040" />
-    <line
-       x1="1607.0699"
-       y1="396.89001"
-       x2="1608.6801"
-       y2="393.17999"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40042" />
-    <line
-       x1="1608.6801"
-       y1="393.17999"
-       x2="1599.12"
-       y2="394.20001"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40044" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1607.49"
-       y2="392.13"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40046" />
-    <line
-       x1="1607.49"
-       y1="392.13"
-       x2="1608.0699"
-       y2="395.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40048" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1608.0699"
-       y2="395.60999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40050" />
-    <line
-       x1="1608.0699"
-       y1="395.60999"
-       x2="1606.46"
-       y2="399.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40052" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1606.46"
-       y2="399.31"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40054" />
-    <line
-       x1="1606.46"
-       y1="399.31"
-       x2="1604.27"
-       y2="399.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40056" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1604.27"
-       y2="399.54001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40058" />
-    <line
-       x1="1604.27"
-       y1="399.54001"
-       x2="1603.6801"
-       y2="396.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40060" />
-    <line
-       x1="1595.75"
-       y1="393.38"
-       x2="1603.6801"
-       y2="396.07001"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40062" />
-    <line
-       x1="1603.6801"
-       y1="396.07001"
-       x2="1605.29"
-       y2="392.35999"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40064" />
-    <line
-       x1="1605.29"
-       y1="392.35999"
-       x2="1595.75"
-       y2="393.38"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40066" />
-    <line
-       x1="414.91"
-       y1="124.13"
-       x2="415.79001"
-       y2="121.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40068" />
-    <line
-       x1="415.79001"
-       y1="121.93"
-       x2="412.79001"
-       y2="121.2"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40070" />
-    <line
-       x1="409.09"
-       y1="113.52"
-       x2="408.04001"
-       y2="124.85"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40072" />
-    <line
-       x1="408.04001"
-       y1="124.85"
-       x2="411.03"
-       y2="125.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40074" />
-    <line
-       x1="409.09"
-       y1="113.52"
-       x2="411.03"
-       y2="125.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40076" />
-    <line
-       x1="411.03"
-       y1="125.59"
-       x2="414.91"
-       y2="124.13"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40078" />
-    <line
-       x1="414.91"
-       y1="124.13"
-       x2="409.09"
-       y2="113.52"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40080" />
-    <line
-       x1="413.97"
-       y1="120.84"
-       x2="414.85001"
-       y2="118.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40082" />
-    <line
-       x1="414.85001"
-       y1="118.64"
-       x2="411.85999"
-       y2="117.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40084" />
-    <line
-       x1="408.14999"
-       y1="110.22"
-       x2="411.85999"
-       y2="117.91"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40086" />
-    <line
-       x1="411.85999"
-       y1="117.91"
-       x2="407.98001"
-       y2="119.37"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40088" />
-    <line
-       x1="408.14999"
-       y1="110.22"
-       x2="407.10001"
-       y2="121.56"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40090" />
-    <line
-       x1="407.10001"
-       y1="121.56"
-       x2="410.09"
-       y2="122.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40092" />
-    <line
-       x1="408.14999"
-       y1="110.22"
-       x2="410.09"
-       y2="122.3"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40094" />
-    <line
-       x1="410.09"
-       y1="122.3"
-       x2="413.97"
-       y2="120.84"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40096" />
-    <line
-       x1="413.97"
-       y1="120.84"
-       x2="408.14999"
-       y2="110.22"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40098" />
-    <line
-       x1="413.03"
-       y1="117.54"
-       x2="413.91"
-       y2="115.35"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40100" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="413.91"
-       y2="115.35"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40102" />
-    <line
-       x1="413.91"
-       y1="115.35"
-       x2="410.91"
-       y2="114.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40104" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="410.91"
-       y2="114.62"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40106" />
-    <line
-       x1="410.91"
-       y1="114.62"
-       x2="407.04001"
-       y2="116.08"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40108" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="407.04001"
-       y2="116.08"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40110" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="406.16"
-       y2="118.27"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40112" />
-    <line
-       x1="406.16"
-       y1="118.27"
-       x2="409.14999"
-       y2="119"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40114" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="409.14999"
-       y2="119"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40116" />
-    <line
-       x1="409.14999"
-       y1="119"
-       x2="413.03"
-       y2="117.54"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40118" />
-    <line
-       x1="413.03"
-       y1="117.54"
-       x2="407.20999"
-       y2="106.92"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40120" />
-    <line
-       x1="393.32001"
-       y1="113.23"
-       x2="396.42001"
-       y2="115.64"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40122" />
-    <line
-       x1="396.42001"
-       y1="115.64"
-       x2="397.44"
-       y2="119.18"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40124" />
-    <line
-       x1="397.44"
-       y1="119.18"
-       x2="395.35001"
-       y2="120.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40126" />
-    <line
-       x1="402.07001"
-       y1="110.86"
-       x2="395.35001"
-       y2="120.31"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40128" />
-    <line
-       x1="395.35001"
-       y1="120.31"
-       x2="392.25"
-       y2="117.9"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40130" />
-    <line
-       x1="402.07001"
-       y1="110.86"
-       x2="392.25"
-       y2="117.9"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40132" />
-    <line
-       x1="392.25"
-       y1="117.9"
-       x2="391.23001"
-       y2="114.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40134" />
-    <line
-       x1="402.07001"
-       y1="110.86"
-       x2="391.23001"
-       y2="114.36"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40136" />
-    <line
-       x1="391.23001"
-       y1="114.36"
-       x2="393.32001"
-       y2="113.23"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40138" />
-    <line
-       x1="393.32001"
-       y1="113.23"
-       x2="402.07001"
-       y2="110.86"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40140" />
-    <line
-       x1="395.89999"
-       y1="111.25"
-       x2="399"
-       y2="113.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40142" />
-    <line
-       x1="404.64001"
-       y1="108.89"
-       x2="399"
-       y2="113.66"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40144" />
-    <line
-       x1="399"
-       y1="113.66"
-       x2="400.01999"
-       y2="117.2"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40146" />
-    <line
-       x1="404.64001"
-       y1="108.89"
-       x2="400.01999"
-       y2="117.2"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40148" />
-    <line
-       x1="400.01999"
-       y1="117.2"
-       x2="397.92999"
-       y2="118.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40150" />
-    <line
-       x1="404.64001"
-       y1="108.89"
-       x2="397.92999"
-       y2="118.34"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40152" />
-    <line
-       x1="397.92999"
-       y1="118.34"
-       x2="394.82999"
-       y2="115.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40154" />
-    <line
-       x1="404.64001"
-       y1="108.89"
-       x2="394.82999"
-       y2="115.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40156" />
-    <line
-       x1="394.82999"
-       y1="115.93"
-       x2="393.81"
-       y2="112.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40158" />
-    <line
-       x1="404.64001"
-       y1="108.89"
-       x2="393.81"
-       y2="112.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40160" />
-    <line
-       x1="393.81"
-       y1="112.39"
-       x2="395.89999"
-       y2="111.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40162" />
-    <line
-       x1="395.89999"
-       y1="111.25"
-       x2="404.64001"
-       y2="108.89"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40164" />
-    <line
-       x1="398.48001"
-       y1="109.29"
-       x2="401.57999"
-       y2="111.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40166" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="401.57999"
-       y2="111.69"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40168" />
-    <line
-       x1="401.57999"
-       y1="111.69"
-       x2="402.59"
-       y2="115.23"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40170" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="402.59"
-       y2="115.23"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40172" />
-    <line
-       x1="402.59"
-       y1="115.23"
-       x2="400.5"
-       y2="116.36"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40174" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="400.5"
-       y2="116.36"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40176" />
-    <line
-       x1="400.5"
-       y1="116.36"
-       x2="397.41"
-       y2="113.96"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40178" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="397.41"
-       y2="113.96"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40180" />
-    <line
-       x1="397.41"
-       y1="113.96"
-       x2="396.39001"
-       y2="110.42"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40182" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="396.39001"
-       y2="110.42"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40184" />
-    <line
-       x1="396.39001"
-       y1="110.42"
-       x2="398.48001"
-       y2="109.29"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40186" />
-    <line
-       x1="398.48001"
-       y1="109.29"
-       x2="407.20999"
-       y2="106.92"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40188" />
-    <line
-       x1="412.79999"
-       y1="108.28"
-       x2="423.10001"
-       y2="106.73"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40190" />
-    <line
-       x1="423.10001"
-       y1="106.73"
-       x2="424.10001"
-       y2="110.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40192" />
-    <line
-       x1="412.79999"
-       y1="108.28"
-       x2="424.10001"
-       y2="110.27"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40194" />
-    <line
-       x1="424.10001"
-       y1="110.27"
-       x2="422.23001"
-       y2="113.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40196" />
-    <line
-       x1="412.79999"
-       y1="108.28"
-       x2="422.23001"
-       y2="113.87"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40198" />
-    <line
-       x1="422.23001"
-       y1="113.87"
-       x2="419.34"
-       y2="113.93"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40200" />
-    <line
-       x1="419.34"
-       y1="113.93"
-       x2="418.32999"
-       y2="110.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40202" />
-    <line
-       x1="412.79999"
-       y1="108.28"
-       x2="418.32999"
-       y2="110.39"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40204" />
-    <line
-       x1="418.32999"
-       y1="110.39"
-       x2="420.20999"
-       y2="106.79"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40206" />
-    <line
-       x1="420.20999"
-       y1="106.79"
-       x2="412.79999"
-       y2="108.28"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40208" />
-    <line
-       x1="410"
-       y1="107.6"
-       x2="420.29001"
-       y2="106.05"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40210" />
-    <line
-       x1="420.29001"
-       y1="106.05"
-       x2="421.29999"
-       y2="109.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40212" />
-    <line
-       x1="410"
-       y1="107.6"
-       x2="421.29999"
-       y2="109.59"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40214" />
-    <line
-       x1="421.29999"
-       y1="109.59"
-       x2="419.42001"
-       y2="113.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40216" />
-    <line
-       x1="410"
-       y1="107.6"
-       x2="419.42001"
-       y2="113.19"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40218" />
-    <line
-       x1="419.42001"
-       y1="113.19"
-       x2="416.53"
-       y2="113.25"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40220" />
-    <line
-       x1="416.53"
-       y1="113.25"
-       x2="415.51999"
-       y2="109.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40222" />
-    <line
-       x1="410"
-       y1="107.6"
-       x2="415.51999"
-       y2="109.7"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40224" />
-    <line
-       x1="415.51999"
-       y1="109.7"
-       x2="417.39999"
-       y2="106.11"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40226" />
-    <line
-       x1="417.39999"
-       y1="106.11"
-       x2="410"
-       y2="107.6"
-       style="stroke:#0000ff;stroke-width:0.5;stroke-dasharray:none"
-       id="line40228" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="417.48001"
-       y2="105.37"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40230" />
-    <line
-       x1="417.48001"
-       y1="105.37"
-       x2="418.48999"
-       y2="108.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40232" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="418.48999"
-       y2="108.91"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40234" />
-    <line
-       x1="418.48999"
-       y1="108.91"
-       x2="416.60999"
-       y2="112.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40236" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="416.60999"
-       y2="112.5"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40238" />
-    <line
-       x1="416.60999"
-       y1="112.5"
-       x2="413.73001"
-       y2="112.56"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40240" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="413.73001"
-       y2="112.56"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40242" />
-    <line
-       x1="413.73001"
-       y1="112.56"
-       x2="412.72"
-       y2="109.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40244" />
-    <line
-       x1="407.20999"
-       y1="106.92"
-       x2="412.72"
-       y2="109.02"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40246" />
-    <line
-       x1="412.72"
-       y1="109.02"
-       x2="414.60001"
-       y2="105.42"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40248" />
-    <line
-       x1="414.60001"
-       y1="105.42"
-       x2="407.20999"
-       y2="106.92"
-       style="stroke:#ff7900;stroke-width:0.5;stroke-dasharray:none"
-       id="line40250" />
-    <g
-       transform="translate(107.592,63.758222)"
-       id="g65222">
-      <polygon
-         id="polygon40348"
-         points="135.66,689.33 136.29,688.4 135.82,687.65 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40350"
-         points="135.66,689.33 135.82,687.65 134.43,687.37 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40352"
-         points="135.66,689.33 134.43,687.37 132.65,687.66 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40354"
-         points="135.66,689.33 132.65,687.66 131.16,688.41 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40356"
-         points="135.66,689.33 131.16,688.41 130.53,689.34 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40358"
-         points="135.66,689.33 130.53,689.34 131,690.09 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40360"
-         points="135.66,689.33 131,690.09 132.39,690.37 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40362"
-         points="135.66,689.33 132.39,690.37 134.17,690.08 "
-         style="opacity:1;fill:#c30000"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40398"
-         points="139.15,712.72 137.95,712.93 137.43,714.04 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40400"
-         points="139.15,712.72 137.43,714.04 137.81,715.61 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40402"
-         points="139.15,712.72 137.81,715.61 138.93,717.04 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40404"
-         points="139.15,712.72 138.93,717.04 140.38,717.79 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40406"
-         points="139.15,712.72 140.38,717.79 141.58,717.58 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40408"
-         points="139.15,712.72 141.58,717.58 142.09,716.48 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40410"
-         points="139.15,712.72 142.09,716.48 141.71,714.91 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40412"
-         points="139.15,712.72 141.71,714.91 140.59,713.47 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40418"
-         points="141.58,717.58 160.35,702.72 160.86,701.62 "
-         style="opacity:1;fill:#007f00"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40420"
-         points="160.86,701.62 142.09,716.48 141.58,717.58 "
-         style="opacity:1;fill:#007f00"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40440"
-         points="158.53,700.4 156.9,693.63 153.69,694.21 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40442"
-         points="158.53,700.4 153.69,694.21 152.32,697.15 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40444"
-         points="158.53,700.4 152.32,697.15 153.33,701.33 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40446"
-         points="158.53,700.4 153.33,701.33 156.32,705.16 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40448"
-         points="158.53,700.4 156.32,705.16 160.16,707.16 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40450"
-         points="158.53,700.4 160.16,707.16 163.38,706.59 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40452"
-         points="158.53,700.4 163.38,706.59 164.75,703.65 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40454"
-         points="158.53,700.4 164.75,703.65 163.74,699.46 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40456"
-         points="158.53,700.4 163.74,699.46 160.74,695.64 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40458"
-         points="158.53,700.4 160.74,695.64 156.9,693.63 "
-         style="opacity:1;fill:#00b700"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40460"
-         points="139.15,712.72 138.21,714.04 137.86,715.83 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40462"
-         points="139.15,712.72 137.86,715.83 138.23,717.4 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40464"
-         points="139.15,712.72 138.23,717.4 139.2,718.15 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40466"
-         points="139.15,712.72 139.2,718.15 140.38,717.79 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40468"
-         points="139.15,712.72 140.38,717.79 141.32,716.47 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40470"
-         points="139.15,712.72 141.32,716.47 141.67,714.68 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40472"
-         points="139.15,712.72 141.67,714.68 141.29,713.11 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40474"
-         points="139.15,712.72 141.29,713.11 140.33,712.36 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40502"
-         points="116.36,710.5 114.73,703.74 112.21,707.27 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40504"
-         points="116.36,710.5 112.21,707.27 111.27,712.04 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40506"
-         points="116.36,710.5 111.27,712.04 112.28,716.22 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40508"
-         points="116.36,710.5 112.28,716.22 114.84,718.21 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40510"
-         points="116.36,710.5 114.84,718.21 117.98,717.27 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40512"
-         points="116.36,710.5 117.98,717.27 120.5,713.74 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40514"
-         points="116.36,710.5 120.5,713.74 121.43,708.97 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40516"
-         points="116.36,710.5 121.43,708.97 120.43,704.79 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40518"
-         points="116.36,710.5 120.43,704.79 117.87,702.79 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <polygon
-         id="polygon40520"
-         points="116.36,710.5 117.87,702.79 114.73,703.74 "
-         style="opacity:1;fill:#000087"
-         transform="translate(410.44355,-67.743111)" />
-      <text
-         id="text40640"
-         style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-         y="631.93689"
-         x="641.55353">Step: Standard_Buckling</text>
-      <text
-         id="text40642"
-         style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-         y="640.73688"
-         x="641.55353">Mode 8: EigenValue = 2606.9</text>
-      <text
-         id="text40644"
-         style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-         y="649.53693"
-         x="641.55353">Primary Var: U, Magnitude</text>
-      <text
-         id="text40646"
-         style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-         y="658.33691"
-         x="641.55353">Deformed Var: U Deformation Scale Factor: +1.000e+00</text>
-      <text
-         id="text40650"
-         style="font-style:normal;font-weight:normal;font-size:8px;font-family:verdana;fill:#000000"
-         y="577.85687"
-         x="641.55353">ODB: Job-1.odb Abaqus/Standard 6.14-3 Thu May 10 18:57:31 GMT Daylight Time 2018</text>
-      <text
-         id="text40652"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="599.33691"
-         x="534.00354">X</text>
-      <text
-         id="text40654"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="621.47687"
-         x="582.25354">Y</text>
-      <text
-         id="text40656"
-         style="font-style:normal;font-weight:bold;font-size:10px;font-family:verdana;fill:#000000"
-         y="640.8869"
-         x="501.74356">Z</text>
-    </g>
-  </g>
-</svg>
diff --git a/docs/source/images/Spindle_mode2.eps b/docs/source/images/Spindle_mode2.eps
deleted file mode 100644
index d10c0fba6c889ad8b16738dc3da7977bf7bde7ca..0000000000000000000000000000000000000000
Binary files a/docs/source/images/Spindle_mode2.eps and /dev/null differ
diff --git a/docs/source/images/Spindle_mode2.svg b/docs/source/images/Spindle_mode2.svg
deleted file mode 100644
index d76e59a6c3e3741c16143cf932ba450f1ae77966..0000000000000000000000000000000000000000
--- a/docs/source/images/Spindle_mode2.svg
+++ /dev/null
@@ -1,7448 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
-"http://www.w3.org/Graphics/SVG/1.1/DTD/svg10.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width=" 500.00" height="225.00" >
-
-<svg x="0.00" y="0.02" width=" 500.00" height="224.96" >
-<rect x="0" y="0" width="500.00" height="224.96" 	 style= "fill: #FFFFFF; " /> 
-<line x1="126.52" y1="108.91"  x2="129.75" y2="108.08" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.98" y1="110.78"  x2="129.75" y2="108.08" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.75" y1="108.08"  x2="127.53" y2="105.91" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.75" y1="108.08"  x2="127.16" y2="109.05" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="132.20" y1="111.02"  x2="129.64" y2="108.21" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.91" y1="108.67"  x2="127.15" y2="111.37" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="125.67" y1="111.82"  x2="128.08" y2="109.26" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.53" y1="105.91"  x2="127.42" y2="105.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="125.67" y1="111.82"  x2="124.94" y2="110.88" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="124.85" y1="110.09"  x2="128.08" y2="109.26" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.09" y1="104.97"  x2="126.98" y2="104.54" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="138.66" y1="114.71"  x2="138.75" y2="114.37" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.72" y1="118.11"  x2="136.95" y2="117.86" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.82" y1="114.04"  x2="138.86" y2="113.71" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.50" y1="110.23"  x2="128.08" y2="109.26" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.60" y1="107.29"  x2="132.45" y2="107.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.31" y1="108.05"  x2="130.35" y2="108.21" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="138.88" y1="113.06"  x2="138.86" y2="112.75" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.96" y1="108.34"  x2="133.63" y2="109.28" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="135.79" y1="118.98"  x2="136.02" y2="118.79" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.52" y1="109.65"  x2="130.67" y2="109.10" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.65" y1="103.84"  x2="126.64" y2="104.04" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.71" y1="107.92"  x2="131.60" y2="107.29" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.64" y1="108.21"  x2="129.28" y2="105.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000D9; opacity:1.00 " points="129.37,107.97 129.62,107.80 129.65,107.96 " />
-<line x1="130.67" y1="109.10"  x2="130.71" y2="107.92" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="133.46" y1="110.53"  x2="133.32" y2="110.57" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.44" y1="99.09"  x2="129.28" y2="105.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.39" y1="110.34"  x2="136.22" y2="110.30" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.74" y1="109.91"  x2="131.88" y2="109.36" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.92" y1="108.18"  x2="132.81" y2="107.54" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.88" y1="109.36"  x2="131.92" y2="108.18" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="142.61" y1="122.12"  x2="142.79" y2="121.80" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="129.40,107.04 129.37,106.86 129.66,106.95 " />
-<line x1="128.30" y1="88.68"  x2="128.57" y2="88.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.38" y1="124.60"  x2="140.61" y2="124.43" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.88" y1="94.92"  x2="126.83" y2="94.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.67" y1="119.27"  x2="133.67" y2="119.39" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.75" y1="125.00"  x2="139.95" y2="124.88" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.32" y1="96.85"  x2="127.17" y2="96.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000D1; opacity:1.00 " points="129.38,106.03 129.89,106.79 129.61,105.87 " />
-<polygon style= "fill: #0000DA; opacity:1.00 " points="128.35,105.89 128.66,105.89 128.57,106.04 " />
-<line x1="138.79" y1="125.22"  x2="138.91" y2="125.23" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.34" y1="118.07"  x2="134.18" y2="118.27" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.61" y1="128.77"  x2="146.84" y2="128.49" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.47" y1="117.06"  x2="135.21" y2="117.26" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.44" y1="115.41"  x2="139.09" y2="115.46" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.54" y1="123.63"  x2="148.50" y2="123.33" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.66" y1="116.31"  x2="136.35" y2="116.49" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="124.49"  x2="150.93" y2="121.52" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="124.49"  x2="150.29" y2="124.85" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="124.49"  x2="150.76" y2="124.98" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="148.34" y1="122.77"  x2="148.23" y2="122.51" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.91" y1="119.41"  x2="149.93" y2="119.21" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="124.49"  x2="152.19" y2="125.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="124.49"  x2="152.23" y2="124.37" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.45" y1="123.41"  x2="150.45" y2="123.41" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.57" y1="125.68"  x2="146.36" y2="126.53" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003E1; opacity:1.00 " points="129.46,104.75 129.30,104.97 129.59,105.38 " />
-<line x1="150.06" y1="119.66"  x2="150.35" y2="122.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000A6; opacity:1.00 " points="149.88,123.55 151.38,125.20 150.14,123.49 " />
-<line x1="149.41" y1="126.43"  x2="150.76" y2="124.98" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="148.68" y1="125.49"  x2="150.29" y2="124.85" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="138.58" y1="124.45"  x2="138.53" y2="124.60" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="150.93" y1="121.52"  x2="150.05" y2="122.16" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="147.55" y1="121.63"  x2="147.33" y2="121.46" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="150.50" y1="120.59"  x2="149.61" y2="121.23" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="152.45" y1="124.77"  x2="155.20" y2="124.55" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.04" y1="126.09"  x2="152.19" y2="125.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="147.76" y1="127.62"  x2="147.83" y2="128.40" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.06" y1="119.66"  x2="149.18" y2="120.30" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="152.23" y1="124.37"  x2="153.11" y2="123.73" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.73" y1="123.87"  x2="154.57" y2="124.41" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="154.36" y1="124.02"  x2="152.45" y2="124.77" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.43" y1="125.84"  x2="152.45" y2="124.77" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002B9; opacity:1.00 " points="128.81,105.22 128.53,105.23 128.29,104.62 " />
-<line x1="153.47" y1="124.65"  x2="152.45" y2="124.77" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="143.65" y1="130.72"  x2="143.77" y2="130.73" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.27" y1="120.97"  x2="145.97" y2="120.91" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009D; opacity:1.00 " points="149.63,123.54 148.36,121.83 149.88,123.55 " />
-<polygon style= "fill: #0000A7; opacity:1.00 " points="149.88,123.55 148.61,121.85 150.14,123.49 " />
-<line x1="139.37" y1="123.34"  x2="139.18" y2="123.54" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.16" y1="125.74"  x2="154.28" y2="126.38" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="152.81" y1="125.69"  x2="152.85" y2="124.51" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.59" y1="130.64"  x2="153.61" y2="130.46" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000BD; opacity:1.00 " points="149.12,121.66 150.59,123.17 149.32,121.47 " />
-<line x1="153.61" y1="129.73"  x2="153.59" y2="129.56" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.24" y1="121.10"  x2="142.88" y2="121.21" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.53" y1="121.33"  x2="142.19" y2="121.47" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.39" y1="128.70"  x2="153.32" y2="128.54" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.36" y1="130.37"  x2="143.37" y2="130.47" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000F6; opacity:1.00 " points="149.47,121.24 149.37,121.01 149.54,120.99 " />
-<line x1="153.12" y1="128.01"  x2="152.99" y2="127.76" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.25" y1="134.72"  x2="146.07" y2="135.04" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="147.25" y1="134.72"  x2="146.88" y2="135.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="145.06" y1="132.59"  x2="147.25" y2="134.72" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="146.96" y1="131.77"  x2="147.25" y2="134.72" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="152.23" y1="126.96"  x2="151.99" y2="126.81" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.25" y1="134.72"  x2="146.55" y2="135.00" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="147.25" y1="134.72"  x2="146.86" y2="135.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.95" y1="129.65"  x2="145.96" y2="129.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.73" y1="126.68"  x2="151.46" y2="126.57" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005BE; opacity:1.00 " points="128.48,103.64 128.30,103.71 128.73,104.25 " />
-<polygon style= "fill: #0000CB; opacity:1.00 " points="148.02,119.77 149.46,121.24 148.17,119.54 " />
-<line x1="147.25" y1="134.72"  x2="148.22" y2="135.81" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="143.20" y1="138.50"  x2="142.47" y2="137.56" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.18" y1="103.10"  x2="128.20" y2="103.16" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000AB; opacity:1.00 " points="147.57,120.09 149.12,121.66 147.82,119.96 " />
-<polygon style= "fill: #0000C4; opacity:1.00 " points="146.71,132.96 147.95,134.98 146.90,132.77 " />
-<line x1="143.86" y1="138.66"  x2="145.61" y2="135.92" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000098; opacity:1.00 " points="145.94,133.22 147.27,135.40 146.21,133.20 " />
-<line x1="145.44" y1="136.68"  x2="146.86" y2="135.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.70" y1="135.74"  x2="146.55" y2="135.00" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="145.51" y1="137.45"  x2="146.88" y2="135.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.05" y1="135.58"  x2="146.07" y2="135.04" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="146.09" y1="129.91"  x2="146.38" y2="132.88" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="143.79" y1="137.88"  x2="145.61" y2="135.92" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.55" y1="126.36"  x2="150.23" y2="126.34" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.49" y1="119.48"  x2="147.57" y2="119.59" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.22" y1="136.18"  x2="143.88" y2="136.34" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.70" y1="135.74"  x2="145.44" y2="136.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="148.84" y1="135.96"  x2="147.87" y2="134.87" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.61" y1="137.28"  x2="144.69" y2="138.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000F7; opacity:1.00 " points="147.31,120.16 147.54,119.95 147.57,120.09 " />
-<line x1="145.64" y1="131.48"  x2="145.64" y2="131.48" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="151.19" y1="136.00"  x2="148.48" y2="135.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="149.55" y1="126.35"  x2="149.20" y2="126.38" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="145.20" y1="128.04"  x2="144.93" y2="128.25" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.39" y1="136.78"  x2="143.05" y2="136.95" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="145.21" y1="130.56"  x2="144.19" y2="130.74" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="148.26" y1="134.63"  x2="149.14" y2="133.99" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="128.60,101.98 128.47,102.11 128.38,101.83 " />
-<line x1="149.76" y1="134.14"  x2="150.61" y2="134.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.38" y1="134.29"  x2="148.48" y2="135.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="146.41" y1="127.30"  x2="146.08" y2="127.47" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.07" y1="126.98"  x2="146.73" y2="127.13" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.05" y1="136.95"  x2="143.79" y2="137.88" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="149.50" y1="134.93"  x2="148.48" y2="135.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000099; opacity:1.00 " points="145.95,133.23 144.87,131.04 146.21,133.20 " />
-<polygon style= "fill: #0000AE; opacity:1.00 " points="146.48,133.11 145.40,130.92 146.71,132.96 " />
-<polygon style= "fill: #0002A7; opacity:1.00 " points="147.38,119.89 147.15,119.95 145.99,118.47 " />
-<line x1="151.19" y1="136.00"  x2="150.30" y2="136.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="148.84" y1="135.96"  x2="148.88" y2="134.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C4; opacity:1.00 " points="145.64,130.77 146.90,132.77 145.82,130.58 " />
-<line x1="150.22" y1="134.91"  x2="150.10" y2="134.93" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000AE; opacity:1.00 " points="145.40,130.92 146.71,132.96 145.64,130.77 " />
-<line x1="152.38" y1="135.73"  x2="152.29" y2="135.64" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.21" y1="135.00"  x2="151.09" y2="134.96" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="146.65,117.00 146.54,117.14 146.43,116.91 " />
-<line x1="149.46" y1="136.11"  x2="149.50" y2="134.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.79" y1="141.13"  x2="150.98" y2="141.04" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BAF; opacity:1.00 " points="127.60,102.98 127.43,102.61 127.45,102.94 " />
-<polygon style= "fill: #00029E; opacity:1.00 " points="145.99,118.47 145.74,118.46 144.87,117.37 " />
-<line x1="119.98" y1="67.09"  x2="120.87" y2="66.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.15" y1="86.92"  x2="138.89" y2="87.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.73" y1="65.62"  x2="123.69" y2="65.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000099; opacity:1.00 " points="144.87,131.04 143.77,128.85 145.13,131.02 " />
-<line x1="119.11" y1="67.67"  x2="119.98" y2="67.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BD; opacity:1.00 " points="146.70,118.08 146.50,118.27 145.63,117.18 " />
-<polygon style= "fill: #0000AF; opacity:1.00 " points="145.40,130.92 144.30,128.74 145.64,130.77 " />
-<line x1="118.29" y1="68.30"  x2="119.11" y2="67.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.68" y1="141.31"  x2="149.85" y2="141.32" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.94" y1="133.89"  x2="155.22" y2="136.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000085; opacity:1.00 " points="143.16,128.33 144.31,130.71 143.21,128.53 " />
-<line x1="152.69" y1="137.86"  x2="155.22" y2="136.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.22" y1="136.84"  x2="154.06" y2="134.53" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.45" y1="139.68"  x2="153.58" y2="138.04" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C4; opacity:1.00 " points="144.54,128.59 145.82,130.58 144.73,128.39 " />
-<line x1="154.40" y1="137.44"  x2="151.86" y2="138.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.54" y1="64.17"  x2="128.48" y2="64.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.08" y1="132.04"  x2="154.36" y2="134.99" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.45" y1="71.17"  x2="116.08" y2="70.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.06" y1="134.53"  x2="154.06" y2="134.53" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.48" y1="64.03"  x2="129.40" y2="63.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.78" y1="140.00"  x2="153.58" y2="138.04" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005BD; opacity:1.00 " points="145.70,117.11 145.63,117.18 145.16,116.59 " />
-<polygon style= "fill: #000494; opacity:1.00 " points="144.39,116.77 144.18,116.68 144.73,117.31 " />
-<line x1="138.55" y1="87.79"  x2="138.14" y2="88.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.20" y1="138.30"  x2="151.86" y2="138.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.83" y1="138.08"  x2="155.84" y2="136.99" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.84" y1="136.99"  x2="156.83" y2="138.08" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="152.60" y1="139.40"  x2="152.67" y2="140.18" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.63" y1="133.61"  x2="153.63" y2="133.61" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.40" y1="63.95"  x2="130.29" y2="63.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.60" y1="140.49"  x2="148.66" y2="140.64" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="159.18" y1="138.13"  x2="156.46" y2="137.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="159.21" y1="136.95"  x2="156.46" y2="137.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="145.51,116.16 145.35,116.13 145.57,115.91 " />
-<line x1="150.38" y1="138.90"  x2="151.04" y2="139.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.20" y1="132.68"  x2="153.20" y2="132.68" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.25" y1="136.75"  x2="157.13" y2="136.11" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C8; opacity:1.00 " points="154.48,134.67 153.04,132.36 154.59,134.45 " />
-<line x1="158.38" y1="136.41"  x2="156.46" y2="137.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.29" y1="63.91"  x2="131.15" y2="63.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C4; opacity:1.00 " points="144.08,127.40 144.73,128.39 143.99,127.50 " />
-<polygon style= "fill: #000099; opacity:1.00 " points="143.35,127.75 144.04,128.83 143.22,127.77 " />
-<line x1="151.04" y1="139.07"  x2="151.78" y2="140.00" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.50" y1="137.05"  x2="156.46" y2="137.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.57" y1="74.49"  x2="113.94" y2="73.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.89" y1="142.23"  x2="155.02" y2="142.02" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.15" y1="63.92"  x2="131.97" y2="63.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.55" y1="139.45"  x2="148.52" y2="139.63" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017D; opacity:1.00 " points="142.88,127.67 142.78,127.61 142.22,126.52 " />
-<polygon style= "fill: #0005AB; opacity:1.00 " points="145.16,116.59 144.91,116.72 143.60,115.09 " />
-<line x1="137.65" y1="88.61"  x2="137.10" y2="89.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="156.83" y1="138.08"  x2="156.87" y2="136.90" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EBE; opacity:1.00 " points="127.58,101.66 127.31,101.75 127.73,102.23 " />
-<polygon style= "fill: #0002AF; opacity:1.00 " points="143.87,127.58 143.75,127.65 143.19,126.56 " />
-<line x1="153.53" y1="143.52"  x2="153.72" y2="143.41" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.97" y1="63.98"  x2="132.75" y2="64.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.06" y1="76.25"  x2="113.28" y2="75.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.29" y1="138.13"  x2="149.14" y2="138.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006CB; opacity:1.00 " points="144.20,114.53 144.05,114.75 145.51,116.16 " />
-<line x1="112.92" y1="77.14"  x2="113.06" y2="76.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="152.47" y1="136.81"  x2="152.22" y2="136.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.45" y1="138.23"  x2="157.50" y2="137.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.48" y1="137.23"  x2="150.25" y2="137.35" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.20" y1="136.95"  x2="150.95" y2="137.03" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="152.58" y1="143.80"  x2="152.76" y2="143.78" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000CC; opacity:1.00 " points="153.14,132.14 151.68,129.84 153.17,131.93 " />
-<line x1="112.86" y1="78.04"  x2="112.92" y2="77.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.47" y1="114.41"  x2="143.56" y2="114.52" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.48" y1="89.35"  x2="135.80" y2="89.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.48" y1="64.23"  x2="134.16" y2="64.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BF7; opacity:1.00 " points="143.29,115.10 143.52,114.89 143.55,115.04 " />
-<line x1="112.87" y1="78.93"  x2="112.86" y2="78.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000299; opacity:1.00 " points="142.66,126.68 141.54,124.49 142.93,126.65 " />
-<polygon style= "fill: #0003C4; opacity:1.00 " points="143.43,126.41 142.31,124.22 143.62,126.21 " />
-<polygon style= "fill: #0002AF; opacity:1.00 " points="143.19,126.56 142.07,124.38 143.43,126.41 " />
-<line x1="135.80" y1="89.68"  x2="135.06" y2="89.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.96" y1="79.81"  x2="112.87" y2="78.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.50" y1="143.48"  x2="151.62" y2="143.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017E; opacity:1.00 " points="141.10,124.34 142.42,126.63 141.29,124.45 " />
-<polygon style= "fill: #0003D1; opacity:1.00 " points="142.50,124.03 143.74,125.99 142.61,123.81 " />
-<polygon style= "fill: #0007A7; opacity:1.00 " points="143.29,115.10 141.93,113.41 143.55,115.04 " />
-<line x1="135.06" y1="89.98"  x2="134.27" y2="90.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013D1; opacity:1.00 " points="127.44,100.71 127.23,100.86 127.71,101.39 " />
-<line x1="134.77" y1="64.66"  x2="135.33" y2="64.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.39" y1="81.54"  x2="113.14" y2="80.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.33" y1="64.92"  x2="135.82" y2="65.22" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="158.07" y1="143.05"  x2="158.10" y2="142.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="142.59,111.93 142.48,112.06 142.37,111.84 " />
-<polygon style= "fill: #0018DD; opacity:1.00 " points="127.65,100.14 127.48,99.90 127.65,99.87 " />
-<polygon style= "fill: #00029A; opacity:1.00 " points="141.41,123.87 141.80,124.47 141.22,123.89 " />
-<line x1="133.43" y1="90.46"  x2="132.54" y2="90.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.07" y1="142.12"  x2="151.05" y2="142.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.11" y1="83.20"  x2="113.71" y2="82.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C8; opacity:1.00 " points="150.09,127.75 151.68,129.83 150.20,127.53 " />
-<line x1="157.55" y1="140.66"  x2="157.41" y2="140.46" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BF7; opacity:1.00 " points="142.35,113.09 142.44,113.21 142.52,112.93 " />
-<line x1="156.47" y1="145.79"  x2="156.66" y2="145.64" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.59" y1="84.00"  x2="114.11" y2="83.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.54" y1="90.65"  x2="131.61" y2="90.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.07" y1="140.11"  x2="156.88" y2="139.95" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.32" y1="141.35"  x2="151.23" y2="141.54" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.90" y1="146.11"  x2="156.09" y2="146.02" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.13" y1="84.76"  x2="114.59" y2="84.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.61" y1="90.79"  x2="130.65" y2="90.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="140.16,122.26 139.96,122.15 140.93,123.81 " />
-<polygon style= "fill: #0006D1; opacity:1.00 " points="141.48,121.62 141.36,121.84 142.27,123.26 " />
-<line x1="152.19" y1="140.27"  x2="152.01" y2="140.43" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005AF; opacity:1.00 " points="141.17,122.04 140.93,122.19 141.93,123.66 " />
-<line x1="153.51" y1="139.51"  x2="153.27" y2="139.60" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.65" y1="90.88"  x2="129.66" y2="90.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.41" y1="86.18"  x2="115.73" y2="85.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00099E; opacity:1.00 " points="141.57,113.04 141.38,113.03 140.30,111.70 " />
-<line x1="159.63" y1="120.34"  x2="159.25" y2="120.75" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="159.25" y1="120.75"  x2="158.88" y2="121.15" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.66" y1="90.93"  x2="128.66" y2="90.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BBD; opacity:1.00 " points="142.30,112.69 142.14,112.84 141.07,111.50 " />
-<line x1="160.75" y1="119.16"  x2="160.38" y2="119.55" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="158.14" y1="121.96"  x2="157.79" y2="122.38" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.79" y1="146.30"  x2="154.96" y2="146.31" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.14" y1="86.84"  x2="116.41" y2="86.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="161.48" y1="118.39"  x2="161.12" y2="118.78" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.44" y1="122.79"  x2="157.10" y2="123.20" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.66" y1="90.92"  x2="127.63" y2="90.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000994; opacity:1.00 " points="140.30,111.70 140.08,111.61 141.33,113.01 " />
-<polygon style= "fill: #000DD0; opacity:1.00 " points="141.49,110.83 141.42,111.08 142.55,112.21 " />
-<line x1="118.76" y1="88.02"  x2="117.93" y2="87.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="162.50" y1="117.28"  x2="162.17" y2="117.65" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="156.47" y1="124.03"  x2="156.18" y2="124.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.64" y1="88.54"  x2="118.76" y2="88.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.57" y1="89.01"  x2="119.64" y2="88.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.52" y1="89.43"  x2="120.57" y2="89.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.51" y1="90.12"  x2="122.50" y2="89.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.50" y1="89.80"  x2="121.52" y2="89.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="139.20,120.42 139.03,120.32 140.16,122.26 " />
-<line x1="150.82" y1="95.03"  x2="149.83" y2="95.55" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.81" y1="94.52"  x2="150.82" y2="95.03" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.83" y1="95.55"  x2="148.84" y2="96.07" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.64" y1="125.27"  x2="155.41" y2="125.68" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00049A; opacity:1.00 " points="139.71,120.43 139.48,120.46 140.67,122.28 " />
-<polygon style= "fill: #0005AF; opacity:1.00 " points="140.21,120.19 140.01,120.32 141.17,122.04 " />
-<line x1="152.79" y1="94.02"  x2="151.81" y2="94.52" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.84" y1="96.07"  x2="147.86" y2="96.61" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="163.86" y1="116.17"  x2="163.11" y2="116.56" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.76" y1="93.52"  x2="152.79" y2="94.02" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.86" y1="96.61"  x2="146.91" y2="97.14" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.47" y1="122.85"  x2="133.02" y2="123.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.66" y1="145.32"  x2="153.71" y2="145.48" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.54" y1="126.48"  x2="129.15" y2="126.93" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.70" y1="93.04"  x2="153.76" y2="93.52" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.09" y1="66.68"  x2="137.21" y2="67.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.91" y1="97.14"  x2="145.97" y2="97.68" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.15" y1="126.93"  x2="128.79" y2="127.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.19" y1="126.09"  x2="155.00" y2="126.50" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003C8; opacity:1.00 " points="148.60,125.44 147.10,123.12 148.70,125.22 " />
-<line x1="134.37" y1="122.16"  x2="133.92" y2="122.50" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAB; opacity:1.00 " points="140.27,110.73 141.07,111.50 140.14,110.80 " />
-<line x1="164.57" y1="115.79"  x2="163.86" y2="116.17" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.63" y1="92.57"  x2="154.70" y2="93.04" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="145.97" y1="97.68"  x2="145.06" y2="98.23" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003C6; opacity:1.00 " points="147.23,122.70 148.68,124.82 147.18,122.51 " />
-<line x1="160.44" y1="143.70"  x2="160.38" y2="143.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="156.51" y1="92.12"  x2="155.63" y2="92.57" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.67" y1="144.43"  x2="153.63" y2="144.62" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.66" y1="121.20"  x2="135.24" y2="121.51" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="160.71" y1="144.92"  x2="160.71" y2="144.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="160.14" y1="143.16"  x2="160.00" y2="142.96" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.51" y1="129.29"  x2="127.25" y2="129.78" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.69" y1="127.30"  x2="154.57" y2="127.71" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FCB; opacity:1.00 " points="140.75,110.24 140.05,109.36 140.67,110.35 " />
-<line x1="157.36" y1="91.68"  x2="156.51" y2="92.12" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="144.19" y1="98.77"  x2="143.36" y2="99.31" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068D; opacity:1.00 " points="139.02,120.07 137.87,117.87 139.26,120.12 " />
-<line x1="154.26" y1="143.29"  x2="154.12" y2="143.47" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="158.37" y1="141.90"  x2="158.13" y2="141.84" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DAB; opacity:1.00 " points="139.69,109.79 139.45,109.93 140.27,110.73 " />
-<line x1="139.45" y1="109.41"  x2="139.54" y2="109.52" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.48" y1="128.10"  x2="154.41" y2="128.49" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="165.79" y1="115.08"  x2="165.21" y2="115.43" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="155.38" y1="142.33"  x2="155.17" y2="142.46" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0009D1; opacity:1.00 " points="139.07,117.45 140.34,119.43 139.20,117.22 " />
-<line x1="145.85" y1="69.66"  x2="144.86" y2="70.18" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.63" y1="131.27"  x2="126.48" y2="131.77" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.84" y1="69.15"  x2="145.85" y2="69.66" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="144.86" y1="70.18"  x2="143.86" y2="70.71" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.82" y1="68.64"  x2="146.84" y2="69.15" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.86" y1="70.71"  x2="142.88" y2="71.24" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008AF; opacity:1.00 " points="138.64,117.79 140.03,119.84 138.89,117.64 " />
-<polygon style= "fill: #0007A2; opacity:1.00 " points="138.38,117.89 139.79,120.00 138.64,117.79 " />
-<line x1="158.92" y1="90.84"  x2="158.16" y2="91.25" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.57" y1="99.86"  x2="141.83" y2="100.39" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.79" y1="68.14"  x2="147.82" y2="68.64" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.88" y1="71.24"  x2="141.92" y2="71.77" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.23" y1="67.96"  x2="137.12" y2="68.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="166.30" y1="114.76"  x2="165.79" y2="115.08" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.74" y1="67.66"  x2="148.79" y2="68.14" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.92" y1="71.77"  x2="140.98" y2="72.31" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.37" y1="129.26"  x2="154.39" y2="129.64" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="159.62" y1="90.45"  x2="158.92" y2="90.84" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="150.66" y1="67.18"  x2="149.74" y2="67.66" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.98" y1="154.76"  x2="129.98" y2="154.76" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.22" y1="153.57"  x2="128.00" y2="151.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.66" y1="154.48"  x2="129.90" y2="153.05" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.27" y1="154.91"  x2="130.27" y2="154.91" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="130.78" y1="154.60"  x2="127.40" y2="141.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000089; opacity:1.00 " points="130.55,154.93 130.29,151.75 130.83,154.91 " />
-<line x1="151.55" y1="66.71"  x2="150.66" y2="67.18" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.07" y1="72.84"  x2="139.19" y2="73.38" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068D; opacity:1.00 " points="137.54,116.99 138.11,117.91 137.40,116.97 " />
-<line x1="128.08" y1="155.54"  x2="129.98" y2="154.76" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DA7; opacity:1.00 " points="138.23,108.40 138.00,108.46 139.45,109.93 " />
-<line x1="127.56" y1="150.54"  x2="129.78" y2="152.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.45" y1="152.21"  x2="129.90" y2="153.05" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.53" y1="127.79"  x2="129.91" y2="127.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.81" y1="156.48"  x2="130.27" y2="154.91" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.27" y1="90.07"  x2="159.62" y2="90.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008AF; opacity:1.00 " points="138.42,116.74 138.32,116.80 138.89,117.64 " />
-<line x1="127.81" y1="130.25"  x2="128.13" y2="129.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.15" y1="100.93"  x2="140.53" y2="101.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.30" y1="126.89"  x2="130.69" y2="126.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.52" y1="130.77"  x2="127.81" y2="130.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.34" y1="149.42"  x2="129.35" y2="149.24" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000089; opacity:1.00 " points="130.29,151.75 130.83,154.91 130.57,151.73 " />
-<polygon style= "fill: #0005B6; opacity:1.00 " points="145.54,120.06 144.03,117.73 145.35,119.98 " />
-<line x1="154.52" y1="130.38"  x2="154.63" y2="130.74" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.59" y1="158.29"  x2="125.85" y2="157.35" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="125.77" y1="156.59"  x2="129.00" y2="155.70" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.00" y1="151.46"  x2="127.89" y2="150.99" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.00" y1="155.70"  x2="127.23" y2="158.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="126.75" y1="132.35"  x2="126.98" y2="131.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.48" y1="125.62"  x2="131.87" y2="125.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.41" y1="48.20"  x2="119.34" y2="47.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.50" y1="48.74"  x2="118.41" y2="48.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.93" y1="68.84"  x2="136.66" y2="69.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.43" y1="155.37"  x2="128.08" y2="155.54" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DD1; opacity:1.00 " points="138.73,116.32 138.05,115.01 138.68,116.41 " />
-<line x1="126.54" y1="132.89"  x2="126.75" y2="132.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.85" y1="157.35"  x2="125.77" y2="156.59" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="153.20" y1="65.82"  x2="152.39" y2="66.26" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.26" y1="46.85"  x2="122.24" y2="46.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.57" y1="150.37"  x2="129.78" y2="152.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="138.36" y1="73.91"  x2="137.57" y2="74.44" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.78" y1="49.95"  x2="116.62" y2="49.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.53" y1="101.45"  x2="139.98" y2="101.98" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.30" y1="135.27"  x2="126.40" y2="135.77" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.24" y1="46.50"  x2="123.22" y2="46.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.26" y1="124.85"  x2="132.65" y2="124.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.77" y1="131.10"  x2="154.93" y2="131.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.99" y1="50.63"  x2="115.78" y2="49.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0011BD; opacity:1.00 " points="138.53,107.87 138.32,108.06 138.50,108.24 " />
-<line x1="126.20" y1="133.97"  x2="126.36" y2="133.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.85" y1="44.18"  x2="139.86" y2="44.70" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.08" y1="155.54"  x2="128.81" y2="156.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="141.85" y1="43.66"  x2="140.85" y2="44.18" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.86" y1="44.70"  x2="138.86" y2="45.23" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009E; opacity:1.00 " points="130.57,151.74 130.34,148.58 130.84,151.68 " />
-<line x1="123.22" y1="46.20"  x2="124.20" y2="45.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.98" y1="157.09"  x2="128.07" y2="157.86" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="114.24" y1="51.33"  x2="114.99" y2="50.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.83" y1="43.15"  x2="141.85" y2="43.66" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.86" y1="45.23"  x2="137.88" y2="45.76" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.01" y1="151.29"  x2="128.00" y2="151.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.90" y1="150.64"  x2="129.01" y2="151.29" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA2; opacity:1.00 " points="137.50,115.58 137.23,115.67 138.07,116.93 " />
-<line x1="137.57" y1="74.44"  x2="136.82" y2="74.97" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.80" y1="42.65"  x2="142.83" y2="43.15" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.20" y1="45.95"  x2="125.16" y2="45.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.88" y1="45.76"  x2="136.91" y2="46.29" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.54" y1="136.25"  x2="126.70" y2="136.73" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.87" y1="154.81"  x2="134.59" y2="154.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.55" y1="52.07"  x2="114.24" y2="51.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.97" y1="135.06"  x2="126.07" y2="134.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.25" y1="156.15"  x2="127.98" y2="157.09" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="167.41" y1="113.89"  x2="167.12" y2="114.16" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009E; opacity:1.00 " points="130.34,148.58 130.84,151.68 130.61,148.52 " />
-<line x1="127.14" y1="157.70"  x2="127.23" y2="158.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="129.46" y1="149.71"  x2="128.57" y2="150.37" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="144.75" y1="42.16"  x2="143.80" y2="42.65" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.63" y1="154.45"  x2="132.52" y2="153.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00008A; opacity:1.00 " points="130.05,148.60 130.57,151.74 130.34,148.58 " />
-<line x1="136.91" y1="46.29"  x2="135.97" y2="46.82" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.70" y1="136.73"  x2="126.89" y2="137.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.16" y1="45.76"  x2="126.12" y2="45.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.91" y1="52.85"  x2="113.55" y2="52.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.59" y1="155.63"  x2="131.63" y2="154.45" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="125.85" y1="136.14"  x2="125.89" y2="135.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.65" y1="64.98"  x2="153.95" y2="65.39" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="145.67" y1="41.67"  x2="144.75" y2="42.16" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.41" y1="156.76"  x2="127.14" y2="157.70" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0011BD; opacity:1.00 " points="138.32,108.06 136.96,106.31 138.53,107.87 " />
-<line x1="135.97" y1="46.82"  x2="135.05" y2="47.34" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.82" y1="74.97"  x2="136.14" y2="75.49" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.33" y1="53.65"  x2="112.91" y2="52.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.12" y1="45.61"  x2="127.05" y2="45.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.32" y1="69.70"  x2="135.90" y2="70.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.05" y1="156.31"  x2="132.20" y2="155.79" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.59" y1="132.46"  x2="155.86" y2="132.79" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.59" y1="154.64"  x2="134.55" y2="155.82" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="146.56" y1="41.19"  x2="145.67" y2="41.67" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009E; opacity:1.00 " points="130.61,148.52 130.34,148.59 130.21,146.94 " />
-<line x1="125.86" y1="137.22"  x2="125.84" y2="136.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="161.80" y1="89.03"  x2="161.36" y2="89.36" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.23" y1="154.61"  x2="133.13" y2="153.96" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.37" y1="138.14"  x2="127.65" y2="138.60" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00088D; opacity:1.00 " points="136.71,115.65 135.57,113.42 136.96,115.70 " />
-<line x1="134.55" y1="155.82"  x2="133.66" y2="156.48" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.05" y1="45.52"  x2="127.95" y2="45.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="129.53,146.90 129.78,148.58 129.42,146.87 " />
-<polygon style= "fill: #00009E; opacity:1.00 " points="130.48,146.88 130.34,146.91 130.61,148.52 " />
-<line x1="155.29" y1="64.59"  x2="154.65" y2="64.98" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.73" y1="154.12"  x2="134.59" y2="154.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013D0; opacity:1.00 " points="137.32,105.89 138.75,107.39 137.39,105.64 " />
-<line x1="134.44" y1="122.88"  x2="134.76" y2="122.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.41" y1="40.73"  x2="146.56" y2="41.19" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006CB; opacity:1.00 " points="143.38,116.75 143.36,116.87 144.21,118.04 " />
-<line x1="127.96" y1="139.05"  x2="128.29" y2="139.49" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.00" y1="145.98"  x2="130.02" y2="146.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.98" y1="138.27"  x2="125.91" y2="137.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.66" y1="156.48"  x2="132.80" y2="155.95" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.48" y1="133.42"  x2="156.82" y2="133.73" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.58" y1="134.32"  x2="160.60" y2="147.93" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DD1; opacity:1.00 " points="136.78,113.00 138.05,115.01 136.90,112.77 " />
-<line x1="139.08" y1="102.99"  x2="138.74" y2="103.48" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.65" y1="139.92"  x2="129.03" y2="140.34" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="162.16" y1="88.72"  x2="161.80" y2="89.03" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="129.54,145.42 129.30,145.36 129.53,146.90 " />
-<line x1="133.33" y1="48.39"  x2="132.54" y2="48.91" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.80" y1="155.95"  x2="132.84" y2="154.77" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAF; opacity:1.00 " points="136.35,113.34 137.74,115.43 136.59,113.19 " />
-<line x1="126.24" y1="139.30"  x2="126.10" y2="138.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.52" y1="76.00"  x2="134.96" y2="76.50" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA2; opacity:1.00 " points="136.08,113.44 137.50,115.58 136.35,113.34 " />
-<line x1="122.87" y1="97.12"  x2="121.75" y2="97.64" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.41" y1="139.80"  x2="126.24" y2="139.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.49" y1="39.90"  x2="148.21" y2="40.27" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.41" y1="70.50"  x2="134.84" y2="70.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.54" y1="48.91"  x2="131.79" y2="49.43" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.48" y1="57.96"  x2="110.70" y2="57.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BD; opacity:1.00 " points="130.60,145.26 130.37,145.36 130.14,142.27 " />
-<line x1="120.66" y1="98.18"  x2="119.61" y2="98.75" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017B; opacity:1.00 " points="129.82,145.45 129.54,145.43 129.31,142.33 " />
-<line x1="156.38" y1="63.84"  x2="155.87" y2="64.21" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CC4; opacity:1.00 " points="136.78,113.00 136.59,113.19 136.42,112.85 " />
-<line x1="135.60" y1="121.86"  x2="135.84" y2="121.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003D5; opacity:1.00 " points="130.53,142.04 130.37,142.16 130.76,145.14 " />
-<line x1="127.11" y1="141.24"  x2="126.85" y2="140.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.73" y1="94.31"  x2="129.64" y2="94.63" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.84" y1="70.88"  x2="134.21" y2="71.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.34" y1="58.86"  x2="110.48" y2="57.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BD; opacity:1.00 " points="130.37,142.17 130.14,142.27 130.60,145.26 " />
-<line x1="131.79" y1="49.43"  x2="131.11" y2="49.93" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="129.31,142.33 129.07,142.27 129.54,145.43 " />
-<line x1="130.43" y1="45.63"  x2="131.17" y2="45.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.40" y1="141.70"  x2="127.11" y2="141.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.21" y1="38.82"  x2="148.99" y2="39.17" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017B; opacity:1.00 " points="129.58,142.35 129.31,142.33 129.82,145.45 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="156.39,142.76 156.24,142.71 156.93,143.95 " />
-<line x1="118.59" y1="99.34"  x2="117.61" y2="99.95" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.78" y1="94.03"  x2="130.73" y2="94.31" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.27" y1="59.75"  x2="110.34" y2="58.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013CC; opacity:1.00 " points="136.32,104.57 136.20,104.75 137.32,105.89 " />
-<polygon style= "fill: #0010D5; opacity:1.00 " points="136.76,112.24 136.73,112.43 135.76,110.52 " />
-<line x1="138.48" y1="103.97"  x2="138.30" y2="104.44" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.47" y1="77.00"  x2="134.05" y2="77.49" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8D; opacity:1.00 " points="135.60,113.11 135.39,113.07 134.42,111.17 " />
-<line x1="162.66" y1="88.15"  x2="162.45" y2="88.43" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.17" y1="45.77"  x2="131.86" y2="45.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0007E2; opacity:1.00 " points="130.52,141.98 130.27,138.81 130.60,141.83 " />
-<line x1="132.79" y1="93.78"  x2="131.78" y2="94.03" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="167.78" y1="112.96"  x2="167.81" y2="113.17" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002B8; opacity:1.00 " points="157.73,142.14 157.57,142.30 156.68,140.56 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="155.50,141.02 155.41,140.99 156.39,142.76 " />
-<polygon style= "fill: #0009CB; opacity:1.00 " points="141.15,113.56 142.70,115.70 141.18,113.35 " />
-<line x1="149.72" y1="37.78"  x2="149.57" y2="38.12" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037C; opacity:1.00 " points="129.30,142.27 129.05,139.10 129.58,142.29 " />
-<polygon style= "fill: #00048B; opacity:1.00 " points="129.58,142.29 129.33,139.13 129.87,142.27 " />
-<line x1="133.52" y1="71.55"  x2="132.77" y2="71.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000179; opacity:1.00 " points="155.95,140.96 155.80,140.99 156.84,142.70 " />
-<polygon style= "fill: #000FC4; opacity:1.00 " points="135.64,110.74 135.45,110.94 136.58,112.68 " />
-<polygon style= "fill: #0012F1; opacity:1.00 " points="135.49,110.04 135.63,109.93 135.33,109.95 " />
-<polygon style= "fill: #000288; opacity:1.00 " points="156.46,140.72 156.31,140.80 157.35,142.46 " />
-<line x1="110.38" y1="61.54"  x2="110.29" y2="60.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.76" y1="93.55"  x2="132.79" y2="93.78" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA2; opacity:1.00 " points="135.21,111.09 134.94,111.18 136.13,113.01 " />
-<line x1="130.48" y1="50.43"  x2="129.91" y2="50.92" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B8; opacity:1.00 " points="156.75,140.49 156.68,140.56 156.04,139.32 " />
-<polygon style= "fill: #00048B; opacity:1.00 " points="129.33,139.13 129.87,142.27 129.62,139.11 " />
-<polygon style= "fill: #000379; opacity:1.00 " points="155.95,140.96 155.31,139.72 155.80,140.99 " />
-<line x1="110.55" y1="62.41"  x2="110.38" y2="61.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.80" y1="101.24"  x2="114.99" y2="101.91" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.77" y1="71.84"  x2="131.97" y2="72.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="128.64,138.94 128.54,138.81 128.45,137.75 " />
-<line x1="132.48" y1="46.18"  x2="133.05" y2="46.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.71" y1="77.96"  x2="133.44" y2="78.43" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.47" y1="62.84"  x2="157.18" y2="63.16" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.20" y1="104.89"  x2="138.19" y2="105.33" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="153.93,138.00 153.85,137.97 154.86,139.79 " />
-<polygon style= "fill: #000488; opacity:1.00 " points="155.82,139.48 155.57,139.62 154.64,137.83 " />
-<polygon style= "fill: #00048B; opacity:1.00 " points="129.62,139.11 129.33,139.13 129.24,138.06 " />
-<polygon style= "fill: #0005B8; opacity:1.00 " points="155.18,137.47 156.20,139.15 155.11,137.54 " />
-<line x1="131.97" y1="72.09"  x2="131.11" y2="72.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00048B; opacity:1.00 " points="129.53,138.04 129.43,138.05 129.62,139.11 " />
-<polygon style= "fill: #00047F; opacity:1.00 " points="154.49,137.89 155.57,139.62 154.38,137.94 " />
-<line x1="142.47" y1="119.63"  x2="142.32" y2="119.59" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.13" y1="64.12"  x2="110.80" y2="63.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8C; opacity:1.00 " points="134.42,111.16 133.28,108.89 134.66,111.21 " />
-<line x1="150.04" y1="36.46"  x2="150.00" y2="36.79" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FC4; opacity:1.00 " points="135.45,110.94 134.31,108.66 135.64,110.74 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="128.67,137.94 128.55,137.87 128.38,135.77 " />
-<line x1="136.82" y1="121.10"  x2="137.17" y2="121.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.11" y1="72.31"  x2="130.21" y2="72.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000571; opacity:1.00 " points="153.52,136.80 153.31,136.81 154.02,138.00 " />
-<line x1="129.42" y1="51.39"  x2="129.00" y2="51.86" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079E; opacity:1.00 " points="129.71,138.00 129.53,138.04 129.35,135.93 " />
-<polygon style= "fill: #000688; opacity:1.00 " points="154.90,137.70 154.28,136.50 154.75,137.78 " />
-<line x1="111.54" y1="64.95"  x2="111.13" y2="64.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="128.55,135.87 128.38,135.77 128.67,137.94 " />
-<polygon style= "fill: #0016CD; opacity:1.00 " points="134.71,102.07 136.03,103.63 134.70,101.83 " />
-<line x1="114.72" y1="101.68"  x2="115.76" y2="101.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.76" y1="101.03"  x2="116.82" y2="100.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079E; opacity:1.00 " points="129.63,135.87 129.35,135.93 129.71,138.00 " />
-<polygon style= "fill: #000B8C; opacity:1.00 " points="133.28,108.89 134.66,111.21 133.53,108.93 " />
-<line x1="133.54" y1="46.72"  x2="133.97" y2="47.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014BD; opacity:1.00 " points="134.27,102.74 135.82,104.35 134.48,102.55 " />
-<line x1="112.71" y1="103.09"  x2="113.70" y2="102.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA1; opacity:1.00 " points="133.80,108.91 135.21,111.09 134.07,108.82 " />
-<polygon style= "fill: #0008B7; opacity:1.00 " points="154.65,136.17 154.49,136.34 152.92,133.43 " />
-<line x1="111.75" y1="103.83"  x2="112.71" y2="103.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.95" y1="99.29"  x2="120.01" y2="98.78" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BF6; opacity:1.00 " points="139.50,111.03 139.66,110.97 139.45,110.89 " />
-<polygon style= "fill: #000680; opacity:1.00 " points="154.03,136.64 153.77,136.75 152.19,133.84 " />
-<line x1="113.56" y1="103.30"  x2="112.96" y2="104.01" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.57" y1="66.51"  x2="112.02" y2="65.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="134.49,108.07 134.62,107.82 134.46,107.90 " />
-<line x1="133.26" y1="78.88"  x2="133.16" y2="79.31" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.98" y1="35.54"  x2="150.03" y2="35.84" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.27" y1="72.63"  x2="128.30" y2="72.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008BD; opacity:1.00 " points="129.85,135.77 129.63,135.87 129.42,133.53 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="128.79,135.93 128.55,135.87 128.35,133.53 " />
-<polygon style= "fill: #0008B7; opacity:1.00 " points="153.08,133.26 152.92,133.42 154.65,136.17 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="151.95,133.90 151.75,133.91 153.52,136.81 " />
-<line x1="120.01" y1="98.78"  x2="121.05" y2="98.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000687; opacity:1.00 " points="152.70,133.59 152.46,133.73 154.28,136.50 " />
-<polygon style= "fill: #000680; opacity:1.00 " points="152.45,133.73 152.20,133.84 154.03,136.64 " />
-<line x1="128.30" y1="72.71"  x2="127.30" y2="72.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.97" y1="105.39"  x2="110.84" y2="104.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="128.59,133.60 128.41,133.55 128.79,135.93 " />
-<line x1="121.05" y1="98.31"  x2="122.09" y2="97.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079E; opacity:1.00 " points="129.42,133.53 129.22,133.57 129.63,135.87 " />
-<polygon style= "fill: #000CC1; opacity:1.00 " points="151.42,129.89 152.93,132.78 151.27,129.85 " />
-<line x1="113.86" y1="67.94"  x2="113.18" y2="67.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.30" y1="72.75"  x2="126.28" y2="72.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.16" y1="106.21"  x2="109.97" y2="105.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CC4; opacity:1.00 " points="153.05,133.20 151.39,130.27 153.14,133.04 " />
-<line x1="114.61" y1="68.60"  x2="113.86" y2="67.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.09" y1="97.89"  x2="123.09" y2="97.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001DAB; opacity:1.00 " points="124.51,96.20 124.26,95.16 124.78,96.29 " />
-<line x1="138.41" y1="106.17"  x2="138.64" y2="106.57" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="128.59,133.60 128.51,132.75 128.41,133.55 " />
-<polygon style= "fill: #000BBD; opacity:1.00 " points="129.57,132.58 129.35,132.69 129.48,133.50 " />
-<line x1="126.28" y1="72.74"  x2="125.24" y2="72.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077A; opacity:1.00 " points="151.93,133.87 150.27,130.94 152.17,133.80 " />
-<polygon style= "fill: #000AA1; opacity:1.00 " points="152.68,133.54 151.02,130.61 152.89,133.38 " />
-<polygon style= "fill: #000FC4; opacity:1.00 " points="134.31,108.66 133.18,106.36 134.50,108.47 " />
-<polygon style= "fill: #0017D2; opacity:1.00 " points="134.64,102.32 133.32,100.49 134.71,102.07 " />
-<polygon style= "fill: #000CA1; opacity:1.00 " points="133.80,108.91 132.67,106.61 134.07,108.81 " />
-<line x1="149.67" y1="34.66"  x2="149.80" y2="34.95" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.40" y1="107.04"  x2="109.16" y2="106.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.25" y1="69.79"  x2="115.40" y2="69.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="162.48" y1="87.00"  x2="162.69" y2="87.20" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.09" y1="97.50"  x2="124.06" y2="97.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.44" y1="104.73"  x2="112.00" y2="105.46" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA1; opacity:1.00 " points="151.02,130.61 152.89,133.38 151.23,130.45 " />
-<polygon style= "fill: #00077A; opacity:1.00 " points="150.27,130.94 152.17,133.80 150.51,130.87 " />
-<polygon style= "fill: #000DD4; opacity:1.00 " points="129.57,132.58 129.28,129.39 129.73,132.45 " />
-<polygon style= "fill: #000880; opacity:1.00 " points="150.51,130.87 152.43,133.69 150.77,130.76 " />
-<line x1="166.38" y1="112.16"  x2="166.82" y2="112.29" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.14" y1="79.73"  x2="133.20" y2="80.14" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="107.71" y1="107.88"  x2="108.40" y2="107.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077C; opacity:1.00 " points="128.51,132.75 128.22,129.56 128.79,132.77 " />
-<line x1="121.06" y1="71.92"  x2="120.04" y2="71.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.04" y1="71.59"  x2="119.04" y2="71.22" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8C; opacity:1.00 " points="132.15,106.59 133.52,108.93 132.40,106.63 " />
-<line x1="134.61" y1="47.77"  x2="134.82" y2="48.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.61" y1="121.40"  x2="137.69" y2="121.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.06" y1="97.16"  x2="124.99" y2="96.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DD4; opacity:1.00 " points="129.28,129.39 129.73,132.45 129.45,129.26 " />
-<line x1="157.80" y1="61.74"  x2="157.85" y2="61.99" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EE5; opacity:1.00 " points="129.52,129.12 129.34,129.01 129.52,128.98 " />
-<polygon style= "fill: #000BBD; opacity:1.00 " points="129.05,129.49 129.57,132.58 129.28,129.39 " />
-<polygon style= "fill: #000BB4; opacity:1.00 " points="151.23,130.44 149.50,127.54 151.38,130.27 " />
-<polygon style= "fill: #00077C; opacity:1.00 " points="128.22,129.56 128.79,132.77 128.50,129.58 " />
-<polygon style= "fill: #000AA0; opacity:1.00 " points="151.02,130.61 149.29,127.71 151.23,130.44 " />
-<polygon style= "fill: #000880; opacity:1.00 " points="150.52,130.88 148.79,127.97 150.77,130.76 " />
-<polygon style= "fill: #000887; opacity:1.00 " points="150.77,130.76 149.04,127.86 151.02,130.61 " />
-<line x1="165.86" y1="112.03"  x2="166.38" y2="112.16" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="148.20,128.02 150.07,130.96 148.35,128.06 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="133.23,106.12 133.50,105.95 133.34,105.94 " />
-<line x1="138.96" y1="106.94"  x2="139.36" y2="107.30" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000774; opacity:1.00 " points="148.35,128.06 150.27,130.95 148.55,128.04 " />
-<line x1="148.85" y1="33.55"  x2="149.09" y2="33.82" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.53" y1="109.60"  x2="107.08" y2="108.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00088B; opacity:1.00 " points="128.79,129.55 128.50,129.58 128.41,128.72 " />
-<line x1="111.64" y1="106.19"  x2="111.38" y2="106.92" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="127.70,128.50 127.63,128.41 127.40,126.07 " />
-<polygon style= "fill: #000CC1; opacity:1.00 " points="149.74,127.19 149.65,127.35 149.09,126.45 " />
-<line x1="123.66" y1="68.72"  x2="122.51" y2="69.16" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.36" y1="69.62"  x2="120.22" y2="70.11" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.80" y1="68.31"  x2="123.66" y2="68.72" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.36" y1="107.30"  x2="139.84" y2="107.64" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.94" y1="48.56"  x2="134.99" y2="48.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000880; opacity:1.00 " points="148.48,126.95 148.40,126.99 149.04,127.86 " />
-<polygon style= "fill: #000A8B; opacity:1.00 " points="128.63,128.70 128.41,128.72 128.20,126.38 " />
-<polygon style= "fill: #0016CF; opacity:1.00 " points="133.40,100.24 132.12,98.38 133.39,100.00 " />
-<polygon style= "fill: #0010AE; opacity:1.00 " points="133.04,106.04 132.07,104.03 133.00,106.06 " />
-<polygon style= "fill: #000FA1; opacity:1.00 " points="132.75,106.21 132.52,106.29 131.55,104.27 " />
-<polygon style= "fill: #000FF6; opacity:1.00 " points="136.60,105.99 136.34,105.98 136.47,105.86 " />
-<line x1="111.38" y1="106.92"  x2="111.20" y2="107.66" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.87" y1="119.95"  x2="142.18" y2="119.88" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001FB5; opacity:1.00 " points="124.53,95.24 124.35,94.14 124.82,95.24 " />
-<polygon style= "fill: #000A8B; opacity:1.00 " points="128.48,126.35 128.20,126.38 128.63,128.70 " />
-<line x1="161.38" y1="86.49"  x2="161.83" y2="86.65" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.14" y1="67.25"  x2="127.05" y2="67.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="164.59" y1="111.80"  x2="165.26" y2="111.91" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013D2; opacity:1.00 " points="132.39,103.62 132.27,103.84 133.34,105.66 " />
-<polygon style= "fill: #00057B; opacity:1.00 " points="147.00,125.10 146.77,125.17 148.15,127.10 " />
-<line x1="105.66" y1="111.33"  x2="106.05" y2="110.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079F; opacity:1.00 " points="147.71,124.65 147.50,124.82 148.87,126.68 " />
-<line x1="147.61" y1="32.52"  x2="147.95" y2="32.77" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D8B; opacity:1.00 " points="131.28,104.29 131.04,104.25 132.21,106.30 " />
-<polygon style= "fill: #000686; opacity:1.00 " points="147.50,124.82 147.26,124.98 148.65,126.85 " />
-<line x1="133.58" y1="80.90"  x2="133.89" y2="81.26" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008BC; opacity:1.00 " points="146.06,121.21 147.75,124.04 145.92,121.18 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="127.50,126.20 127.19,122.98 127.68,126.30 " />
-<line x1="129.20" y1="66.96"  x2="128.14" y2="67.25" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="127.68,126.30 127.37,123.08 127.92,126.36 " />
-<line x1="111.20" y1="107.66"  x2="111.12" y2="108.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000576; opacity:1.00 " points="146.57,125.20 144.74,122.33 146.77,125.18 " />
-<polygon style= "fill: #000C9E; opacity:1.00 " points="128.48,126.35 128.17,123.13 128.75,126.28 " />
-<polygon style= "fill: #0008B2; opacity:1.00 " points="147.71,124.64 145.88,121.78 147.86,124.46 " />
-<line x1="105.35" y1="112.20"  x2="105.66" y2="111.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000680; opacity:1.00 " points="147.00,125.10 145.17,122.23 147.26,124.98 " />
-<line x1="140.39" y1="107.97"  x2="141.02" y2="108.28" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.21" y1="66.69"  x2="129.20" y2="66.96" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.44" y1="31.77"  x2="146.85" y2="32.02" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C9E; opacity:1.00 " points="128.17,123.13 128.75,126.28 128.45,123.06 " />
-<polygon style= "fill: #000FA1; opacity:1.00 " points="131.82,104.18 131.55,104.27 131.23,103.58 " />
-<polygon style= "fill: #00057B; opacity:1.00 " points="144.94,122.31 147.00,125.10 145.17,122.23 " />
-<polygon style= "fill: #00079E; opacity:1.00 " points="145.67,121.95 147.71,124.64 145.88,121.78 " />
-<line x1="128.02" y1="122.91"  x2="128.04" y2="123.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.12" y1="108.39"  x2="111.13" y2="109.11" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.12" y1="113.06"  x2="105.35" y2="112.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="163.05" y1="111.61"  x2="163.86" y2="111.71" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.02" y1="108.28"  x2="141.72" y2="108.57" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="127.61,123.14 127.37,123.07 127.34,122.81 " />
-<line x1="145.57" y1="31.29"  x2="146.01" y2="31.53" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="156.81" y1="60.89"  x2="157.18" y2="61.08" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="144.61,122.14 144.48,122.11 142.74,119.44 " />
-<line x1="160.25" y1="86.21"  x2="160.85" y2="86.34" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000685; opacity:1.00 " points="145.66,121.95 145.42,122.11 145.30,121.92 " />
-<line x1="134.84" y1="49.84"  x2="134.65" y2="50.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.40" y1="122.15"  x2="137.13" y2="122.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013D4; opacity:1.00 " points="128.80,122.58 128.65,122.70 128.36,119.73 " />
-<polygon style= "fill: #000A8B; opacity:1.00 " points="130.89,103.59 130.71,103.55 129.93,101.88 " />
-<line x1="132.11" y1="66.23"  x2="131.19" y2="66.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="144.64" y1="30.81"  x2="145.11" y2="31.05" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B1; opacity:1.00 " points="145.89,121.41 145.75,121.58 144.01,118.91 " />
-<polygon style= "fill: #000DAE; opacity:1.00 " points="131.75,103.34 130.98,101.66 131.68,103.38 " />
-<polygon style= "fill: #0011BC; opacity:1.00 " points="128.63,122.71 128.42,122.80 128.13,119.83 " />
-<polygon style= "fill: #00049E; opacity:1.00 " points="145.73,121.59 145.54,121.76 143.80,119.09 " />
-<polygon style= "fill: #000480; opacity:1.00 " points="145.28,121.93 145.05,122.04 143.31,119.38 " />
-<line x1="162.20" y1="111.52"  x2="163.05" y2="111.61" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7B; opacity:1.00 " points="127.84,122.89 127.58,122.88 127.29,119.90 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="144.25,118.57 144.16,118.73 145.98,121.25 " />
-<line x1="143.67" y1="30.34"  x2="144.16" y2="30.57" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.73" y1="27.41"  x2="138.18" y2="27.66" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010D2; opacity:1.00 " points="131.30,101.25 131.17,101.47 132.04,102.99 " />
-<polygon style= "fill: #00037B; opacity:1.00 " points="143.31,119.38 143.07,119.45 145.03,122.05 " />
-<line x1="112.28" y1="74.86"  x2="111.52" y2="75.54" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.88" y1="29.34"  x2="116.82" y2="28.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="159.57" y1="86.08"  x2="160.25" y2="86.21" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.82" y1="28.83"  x2="117.79" y2="28.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.95" y1="29.89"  x2="115.88" y2="29.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.77" y1="81.93"  x2="135.32" y2="82.23" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.66" y1="29.86"  x2="143.17" y2="30.10" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.07" y1="30.48"  x2="114.95" y2="29.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA1; opacity:1.00 " points="130.73,101.81 130.45,101.90 131.43,103.51 " />
-<polygon style= "fill: #000B7B; opacity:1.00 " points="127.57,119.92 127.29,119.90 127.84,122.89 " />
-<line x1="138.65" y1="27.92"  x2="139.14" y2="28.17" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.20" y1="13.27"  x2="136.86" y2="26.88" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.49" y1="55.12"  x2="128.80" y2="55.46" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.42" y1="120.15"  x2="140.99" y2="120.09" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.21" y1="31.12"  x2="114.07" y2="30.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.64" y1="29.39"  x2="142.16" y2="29.63" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.63" y1="28.42"  x2="140.13" y2="28.66" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="161.28" y1="111.43"  x2="162.20" y2="111.52" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.49" y1="108.84"  x2="143.32" y2="109.09" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="140.63" y1="28.91"  x2="141.14" y2="29.15" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.76" y1="27.62"  x2="120.75" y2="27.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="142.74,119.44 140.86,116.57 142.88,119.47 " />
-<line x1="112.41" y1="31.79"  x2="113.21" y2="31.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001CB4; opacity:1.00 " points="124.60,94.01 124.34,94.01 124.25,93.00 " />
-<line x1="104.93" y1="114.75"  x2="104.98" y2="113.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.23" y1="109.83"  x2="111.42" y2="110.54" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.75" y1="27.31"  x2="121.74" y2="27.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.65" y1="32.50"  x2="112.41" y2="31.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0015E2; opacity:1.00 " points="128.53,119.60 128.21,116.35 128.61,119.46 " />
-<line x1="111.52" y1="75.54"  x2="110.84" y2="76.23" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B1; opacity:1.00 " points="144.01,118.91 142.14,116.04 144.16,118.73 " />
-<polygon style= "fill: #00037B; opacity:1.00 " points="143.07,119.45 141.20,116.58 143.31,119.37 " />
-<line x1="158.84" y1="85.96"  x2="159.57" y2="86.08" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00049D; opacity:1.00 " points="143.80,119.09 141.93,116.22 144.01,118.91 " />
-<polygon style= "fill: #00047F; opacity:1.00 " points="143.31,119.37 141.43,116.50 143.56,119.25 " />
-<line x1="135.32" y1="82.23"  x2="135.95" y2="82.52" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.38" y1="50.69"  x2="134.02" y2="51.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000485; opacity:1.00 " points="143.56,119.25 141.68,116.38 143.80,119.09 " />
-<line x1="160.32" y1="111.35"  x2="161.28" y2="111.43" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.32" y1="109.09"  x2="144.20" y2="109.32" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005BF; opacity:1.00 " points="142.29,115.86 144.25,118.56 142.38,115.70 " />
-<polygon style= "fill: #000D8A; opacity:1.00 " points="127.57,119.91 127.26,116.66 127.86,119.89 " />
-<line x1="122.72" y1="26.85"  x2="123.69" y2="26.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.30" y1="34.03"  x2="110.95" y2="33.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.77" y1="120.21"  x2="140.42" y2="120.15" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="104.98" y1="115.57"  x2="104.93" y2="114.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010D2; opacity:1.00 " points="131.17,101.47 130.10,99.07 131.30,101.25 " />
-<line x1="144.20" y1="109.32"  x2="145.14" y2="109.54" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="159.30" y1="111.26"  x2="160.32" y2="111.35" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DAE; opacity:1.00 " points="130.73,101.80 129.65,99.40 130.98,101.66 " />
-<line x1="109.71" y1="34.84"  x2="110.30" y2="34.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.69" y1="26.70"  x2="124.63" y2="26.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.20" y1="13.27"  x2="133.40" y2="13.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D8A; opacity:1.00 " points="127.26,116.66 127.86,119.89 127.55,116.64 " />
-<line x1="134.56" y1="13.24"  x2="133.95" y2="13.43" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="134.00" y1="13.76"  x2="134.00" y2="13.76" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="133.43,16.54 133.75,13.02 133.26,16.57 " />
-<line x1="129.07" y1="13.96"  x2="133.40" y2="13.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="140.86,116.57 139.00,113.68 141.00,116.60 " />
-<line x1="134.56" y1="13.24"  x2="133.88" y2="12.53" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="134.56" y1="13.24"  x2="134.48" y2="12.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="134.56" y1="13.24"  x2="134.28" y2="12.65" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="134.73,13.04 134.24,16.59 134.45,13.00 " />
-<line x1="155.21" y1="60.38"  x2="155.82" y2="60.54" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.75" y1="19.79"  x2="119.99" y2="20.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.19" y1="35.67"  x2="109.71" y2="34.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="145.14" y1="109.54"  x2="146.13" y2="109.75" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="158.26" y1="111.18"  x2="159.30" y2="111.26" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.20" y1="55.78"  x2="129.67" y2="56.09" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000074; opacity:1.00 " points="134.51,16.65 134.73,13.04 134.24,16.59 " />
-<polygon style= "fill: #0000D0; opacity:1.00 " points="134.43,20.46 134.89,16.82 134.35,20.39 " />
-<polygon style= "fill: #00097A; opacity:1.00 " points="128.66,99.36 129.93,101.87 128.85,99.47 " />
-<line x1="132.34" y1="10.92"  x2="133.88" y2="12.53" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B1; opacity:1.00 " points="142.14,116.04 140.27,113.15 142.29,115.86 " />
-<line x1="134.25" y1="10.09"  x2="134.48" y2="12.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="105.11" y1="116.38"  x2="104.98" y2="115.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00008D; opacity:1.00 " points="134.73,16.75 134.19,20.31 134.50,16.67 " />
-<line x1="110.23" y1="76.93"  x2="109.70" y2="77.63" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00049D; opacity:1.00 " points="141.93,116.22 140.06,113.33 142.14,116.04 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="126.47,116.37 126.16,113.10 126.57,116.49 " />
-<polygon style= "fill: #0000B2; opacity:1.00 " points="134.35,20.39 134.73,16.75 134.19,20.31 " />
-<polygon style= "fill: #00047F; opacity:1.00 " points="141.43,116.50 139.57,113.61 141.68,116.38 " />
-<polygon style= "fill: #000485; opacity:1.00 " points="141.68,116.38 139.82,113.49 141.93,116.22 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="133.67,16.54 133.13,20.11 133.43,16.54 " />
-<polygon style= "fill: #000B97; opacity:1.00 " points="129.10,99.51 130.45,101.89 129.38,99.49 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="140.43,112.97 142.38,115.70 140.52,112.81 " />
-<line x1="108.74" y1="36.52"  x2="109.19" y2="35.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.71" y1="111.23"  x2="112.09" y2="111.91" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.16" y1="85.74"  x2="158.03" y2="85.85" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.98" y1="14.03"  x2="133.95" y2="13.43" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="146.13" y1="109.75"  x2="147.16" y2="109.93" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.46" y1="8.98"  x2="133.68" y2="11.30" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="133.36" y1="10.68"  x2="134.28" y2="12.65" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.77" y1="13.67"  x2="128.92" y2="13.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="157.18" y1="111.09"  x2="158.26" y2="111.18" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.71" y1="14.96"  x2="134.00" y2="13.76" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="126.57,116.49 126.26,113.22 126.74,116.58 " />
-<polygon style= "fill: #000376; opacity:1.00 " points="139.14,113.71 141.20,116.58 139.33,113.69 " />
-<line x1="136.31" y1="122.87"  x2="135.77" y2="123.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.24" y1="8.04"  x2="133.25" y2="7.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="133.40,20.13 133.67,16.54 133.13,20.11 " />
-<line x1="133.60" y1="51.51"  x2="133.10" y2="51.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="133.69,20.18 133.95,16.57 133.40,20.13 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="126.74,116.58 126.44,113.31 126.98,116.64 " />
-<polygon style= "fill: #000E9D; opacity:1.00 " points="127.55,116.63 127.25,113.36 127.82,116.57 " />
-<line x1="147.16" y1="109.93"  x2="148.22" y2="110.11" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="156.08" y1="110.99"  x2="157.18" y2="111.09" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.48" y1="16.87"  x2="129.75" y2="15.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="108.36" y1="37.39"  x2="108.74" y2="36.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="132.14,23.63 132.30,23.61 132.69,20.30 " />
-<line x1="129.66" y1="15.07"  x2="132.89" y2="14.34" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.88" y1="15.52"  x2="133.73" y2="13.79" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000173; opacity:1.00 " points="133.67,20.36 133.93,20.42 133.38,23.75 " />
-<line x1="127.81" y1="12.67"  x2="127.94" y2="12.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.37" y1="8.15"  x2="133.68" y2="11.30" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006D0; opacity:1.00 " points="133.31,26.53 133.37,26.58 133.75,23.99 " />
-<polygon style= "fill: #00028D; opacity:1.00 " points="133.38,23.75 133.60,23.82 133.94,20.42 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="133.38,20.31 133.66,20.36 133.11,23.68 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="132.31,23.61 132.54,23.61 132.87,20.28 " />
-<line x1="148.22" y1="110.11"  x2="149.31" y2="110.27" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.96" y1="110.89"  x2="156.08" y2="110.99" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.33" y1="117.16"  x2="105.11" y2="116.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.33" y1="13.96"  x2="131.98" y2="14.03" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.24" y1="85.64"  x2="157.16" y2="85.74" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.70" y1="77.63"  x2="109.25" y2="78.34" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.41" y1="83.05"  x2="138.24" y2="83.29" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000173; opacity:1.00 " points="133.11,23.68 133.38,23.75 133.67,20.36 " />
-<line x1="129.75" y1="15.93"  x2="129.66" y2="15.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="132.71" y1="14.96"  x2="132.80" y2="15.83" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="138.23" y1="120.28"  x2="139.04" y2="120.25" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B2; opacity:1.00 " points="133.15,26.46 133.27,26.51 133.59,23.92 " />
-<line x1="149.31" y1="110.27"  x2="150.42" y2="110.41" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.82" y1="110.79"  x2="154.96" y2="110.89" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.09" y1="111.91"  x2="112.55" y2="112.57" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.47" y1="8.74"  x2="133.68" y2="11.30" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E9D; opacity:1.00 " points="127.25,113.36 127.82,116.57 127.52,113.30 " />
-<line x1="120.94" y1="20.57"  x2="121.17" y2="20.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.36" y1="10.68"  x2="132.34" y2="10.92" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="150.42" y1="110.41"  x2="151.55" y2="110.55" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="152.68" y1="110.67"  x2="153.82" y2="110.79" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.05" y1="76.30"  x2="109.10" y2="75.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.10" y1="75.64"  x2="110.17" y2="75.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="151.55" y1="110.55"  x2="152.68" y2="110.67" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="132.54,23.70 132.81,23.73 132.37,26.27 " />
-<line x1="107.02" y1="76.99"  x2="108.05" y2="76.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.17" y1="75.01"  x2="111.24" y2="74.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.41" y1="18.97"  x2="108.62" y2="19.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000979; opacity:1.00 " points="128.85,99.46 128.65,99.35 127.87,97.52 " />
-<line x1="107.61" y1="17.46"  x2="107.80" y2="17.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.98" y1="14.03"  x2="132.71" y2="14.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="132.37,26.27 132.57,26.31 132.81,23.73 " />
-<line x1="135.77" y1="123.12"  x2="135.15" y2="123.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="139.88" y1="92.79"  x2="140.00" y2="92.75" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="131.50,27.29 131.68,27.28 131.43,28.63 " />
-<line x1="106.02" y1="77.71"  x2="107.02" y2="76.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.84" y1="19.68"  x2="109.07" y2="20.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="153.79" y1="60.10"  x2="154.54" y2="60.23" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.26" y1="26.59"  x2="128.06" y2="26.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.91" y1="9.71"  x2="131.90" y2="9.95" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="133.81" y1="9.12"  x2="132.91" y2="9.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.27" y1="85.54"  x2="156.24" y2="85.64" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="107.84" y1="39.17"  x2="108.06" y2="38.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="131.43,28.63 131.52,28.63 131.68,27.28 " />
-<line x1="107.26" y1="16.70"  x2="107.43" y2="17.08" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="132.18,27.31 132.47,27.36 132.57,26.31 " />
-<polygon style= "fill: #000BB2; opacity:1.00 " points="132.32,31.10 132.48,31.18 132.79,28.89 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="132.47,27.37 132.74,27.44 132.50,28.79 " />
-<polygon style= "fill: #000DAE; opacity:1.00 " points="129.90,99.25 129.65,99.40 128.87,97.57 " />
-<polygon style= "fill: #00088D; opacity:1.00 " points="132.58,28.81 132.72,28.86 132.32,31.10 " />
-<line x1="105.05" y1="78.45"  x2="106.02" y2="77.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.47" y1="14.16"  x2="135.78" y2="13.36" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="105.64" y1="117.92"  x2="105.33" y2="117.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="130.43,32.96 130.76,30.91 130.47,32.95 " />
-<polygon style= "fill: #000375; opacity:1.00 " points="137.30,110.79 139.33,113.69 137.49,110.77 " />
-<polygon style= "fill: #0011BC; opacity:1.00 " points="127.75,113.20 127.52,113.29 127.40,111.95 " />
-<line x1="135.78" y1="13.36"  x2="138.50" y2="12.96" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="126.68,113.36 126.44,113.31 126.31,111.96 " />
-<line x1="109.25" y1="78.34"  x2="108.89" y2="79.06" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.52" y1="20.64"  x2="109.76" y2="20.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.14" y1="14.58"  x2="131.88" y2="15.52" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="131.67,28.64 131.26,30.88 131.77,28.65 " />
-<line x1="112.55" y1="112.57"  x2="113.11" y2="113.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037A; opacity:1.00 " points="137.49,110.77 139.57,113.61 137.73,110.69 " />
-<polygon style= "fill: #00049E; opacity:1.00 " points="138.23,110.41 140.28,113.16 138.44,110.24 " />
-<polygon style= "fill: #0011BC; opacity:1.00 " points="127.53,111.89 127.75,113.20 127.40,111.95 " />
-<line x1="131.05" y1="16.07"  x2="131.13" y2="16.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="137.36" y1="120.29"  x2="138.23" y2="120.28" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="104.13" y1="79.22"  x2="105.05" y2="78.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="131.26,30.88 131.54,30.91 131.77,28.65 " />
-<polygon style= "fill: #00037F; opacity:1.00 " points="137.73,110.69 139.82,113.49 137.98,110.57 " />
-<polygon style= "fill: #000485; opacity:1.00 " points="137.98,110.57 140.06,113.33 138.23,110.41 " />
-<line x1="135.54" y1="12.82"  x2="136.43" y2="12.23" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.38" y1="73.35"  x2="114.44" y2="72.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.53" y1="52.27"  x2="131.89" y2="52.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.79" y1="15.61"  x2="106.93" y2="15.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="154.26" y1="85.45"  x2="155.27" y2="85.54" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.50" y1="14.02"  x2="135.54" y2="12.82" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="131.54,30.92 131.82,30.97 131.44,33.04 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="131.32,33.02 131.54,30.92 131.44,33.04 " />
-<line x1="152.98" y1="59.97"  x2="153.79" y2="60.10" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.72" y1="11.68"  x2="126.81" y2="11.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.84" y1="56.65"  x2="131.54" y2="56.91" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="103.25" y1="80.02"  x2="104.13" y2="79.22" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="130.31" y1="15.14"  x2="131.05" y2="16.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="121.84" y1="20.65"  x2="122.05" y2="20.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014BC; opacity:1.00 " points="127.63,111.86 127.45,109.91 127.53,111.89 " />
-<polygon style= "fill: #000A71; opacity:1.00 " points="131.16,34.57 131.43,34.63 131.59,33.08 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="130.36,34.46 130.60,34.48 130.50,35.00 " />
-<line x1="107.62" y1="40.97"  x2="107.69" y2="40.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="126.55,112.02 126.38,110.07 126.46,112.00 " />
-<line x1="106.52" y1="14.93"  x2="106.65" y2="15.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0017D4; opacity:1.00 " points="127.61,109.79 127.45,109.91 127.72,111.79 " />
-<polygon style= "fill: #000D7A; opacity:1.00 " points="126.72,112.03 126.55,112.02 126.38,110.07 " />
-<line x1="153.21" y1="85.35"  x2="154.26" y2="85.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.96" y1="14.69"  x2="136.11" y2="14.08" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="130.54,35.01 130.77,35.04 130.40,37.04 " />
-<line x1="138.50" y1="12.96"  x2="138.47" y2="14.16" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B3; opacity:1.00 " points="138.45,110.24 136.65,107.29 138.61,110.07 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="130.40,37.04 130.60,37.07 130.81,35.05 " />
-<line x1="131.89" y1="52.61"  x2="131.19" y2="52.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="102.42" y1="80.83"  x2="103.25" y2="80.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037A; opacity:1.00 " points="137.49,110.76 135.70,107.81 137.73,110.69 " />
-<line x1="136.42" y1="120.29"  x2="137.36" y2="120.29" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.14" y1="12.89"  x2="137.04" y2="12.29" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.80" y1="26.80"  x2="129.50" y2="26.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00049E; opacity:1.00 " points="138.23,110.41 136.44,107.46 138.45,110.24 " />
-<polygon style= "fill: #00037F; opacity:1.00 " points="137.73,110.69 135.93,107.73 137.98,110.57 " />
-<polygon style= "fill: #00138D; opacity:1.00 " points="130.64,39.19 130.81,39.24 130.43,41.27 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="135.36,107.80 137.29,110.79 135.50,107.83 " />
-<polygon style= "fill: #0006C1; opacity:1.00 " points="136.81,107.11 138.70,109.91 136.90,106.96 " />
-<polygon style= "fill: #001BB2; opacity:1.00 " points="130.31,41.91 130.48,41.98 130.57,41.33 " />
-<line x1="110.71" y1="21.81"  x2="110.95" y2="21.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.68" y1="42.20"  x2="117.54" y2="42.69" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E71; opacity:1.00 " points="130.38,39.12 130.48,38.17 130.58,39.17 " />
-<line x1="152.11" y1="59.84"  x2="152.98" y2="59.97" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="107.63" y1="41.87"  x2="107.62" y2="40.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00138D; opacity:1.00 " points="130.58,39.17 130.20,41.20 130.64,39.19 " />
-<line x1="152.13" y1="85.25"  x2="153.21" y2="85.35" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.54" y1="56.91"  x2="132.30" y2="57.14" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.65" y1="12.36"  x2="138.50" y2="12.96" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="122.15" y1="40.87"  x2="121.00" y2="41.29" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.54" y1="42.69"  x2="116.41" y2="43.20" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0017D4; opacity:1.00 " points="127.53,108.82 127.48,108.86 127.61,109.79 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="129.33,41.04 129.58,39.00 129.38,41.04 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="129.38,41.04 129.60,41.07 129.82,39.02 " />
-<line x1="101.65" y1="81.65"  x2="102.42" y2="80.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="128.58,43.16 128.19,45.28 128.65,43.15 " />
-<line x1="123.29" y1="40.48"  x2="122.15" y2="40.87" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.45" y1="123.62"  x2="133.67" y2="123.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000485; opacity:1.00 " points="136.19,107.61 138.23,110.41 136.44,107.46 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="129.26,41.68 129.53,41.72 129.60,41.07 " />
-<line x1="122.46" y1="20.38"  x2="122.65" y2="20.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E72; opacity:1.00 " points="123.47,90.70 123.66,90.73 123.47,90.96 " />
-<line x1="106.54" y1="119.36"  x2="106.05" y2="118.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D79; opacity:1.00 " points="126.66,110.08 126.38,110.06 126.29,109.10 " />
-<line x1="151.02" y1="85.15"  x2="152.13" y2="85.25" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.48" y1="72.03"  x2="117.46" y2="71.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.75" y1="113.84"  x2="114.46" y2="114.44" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.57" y1="14.75"  x2="136.72" y2="14.15" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="131.19" y1="52.93"  x2="130.43" y2="53.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0027D0; opacity:1.00 " points="129.39,48.05 129.44,48.09 129.82,45.61 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="129.38,43.22 129.53,41.71 129.55,43.25 " />
-<line x1="107.73" y1="42.77"  x2="107.63" y2="41.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.50" y1="26.98"  x2="130.13" y2="27.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.30" y1="43.75"  x2="114.23" y2="44.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="135.42" y1="120.27"  x2="136.42" y2="120.29" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="127.66,47.79 127.46,48.92 127.72,47.77 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="128.36,45.27 128.60,45.29 128.85,43.15 " />
-<polygon style= "fill: #001371; opacity:1.00 " points="129.55,43.25 129.16,45.37 129.66,43.27 " />
-<line x1="108.63" y1="79.78"  x2="108.45" y2="80.50" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="149.89" y1="85.04"  x2="151.02" y2="85.15" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001371; opacity:1.00 " points="129.16,45.37 129.43,45.44 129.66,43.27 " />
-<line x1="151.18" y1="59.73"  x2="152.11" y2="59.84" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0021B2; opacity:1.00 " points="129.22,47.98 129.34,48.02 129.66,45.54 " />
-<polygon style= "fill: #001A8D; opacity:1.00 " points="129.43,45.47 129.65,45.54 129.22,47.98 " />
-<line x1="132.30" y1="57.14"  x2="133.13" y2="57.37" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.72" y1="14.15"  x2="136.76" y2="12.95" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001570; opacity:1.00 " points="128.36,45.31 128.59,45.32 128.16,47.76 " />
-<polygon style= "fill: #0015E2; opacity:1.00 " points="127.41,106.34 127.33,106.47 127.59,108.73 " />
-<line x1="148.75" y1="84.93"  x2="149.89" y2="85.04" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.51" y1="39.79"  x2="124.42" y2="40.12" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.61" y1="84.82"  x2="148.75" y2="84.93" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="146.48" y1="84.70"  x2="147.61" y2="84.82" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="107.90" y1="43.64"  x2="107.73" y2="42.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001570; opacity:1.00 " points="128.35,47.78 128.59,45.32 128.44,47.79 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="128.44,47.79 128.63,47.82 128.87,45.36 " />
-<polygon style= "fill: #000B79; opacity:1.00 " points="126.57,109.12 126.36,106.76 126.49,109.11 " />
-<polygon style= "fill: #000C88; opacity:1.00 " points="126.78,109.10 126.57,109.12 126.36,106.76 " />
-<polygon style= "fill: #0005B4; opacity:1.00 " points="136.65,107.29 134.91,104.30 136.82,107.13 " />
-<line x1="125.90" y1="11.63"  x2="125.98" y2="11.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.46" y1="114.44"  x2="115.25" y2="115.02" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.64" y1="22.27"  x2="111.87" y2="22.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="127.36,50.48 127.55,48.89 127.46,50.47 " />
-<polygon style= "fill: #000CC4; opacity:1.00 " points="129.05,96.62 128.85,96.80 127.99,94.70 " />
-<line x1="107.11" y1="120.02"  x2="106.54" y2="119.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.67" y1="123.86"  x2="132.82" y2="124.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="135.93,107.73 134.18,104.73 136.19,107.61 " />
-<polygon style= "fill: #000A9F; opacity:1.00 " points="128.60,96.95 128.32,97.03 127.46,94.93 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="128.24,48.92 128.52,48.97 128.63,47.82 " />
-<line x1="99.50" y1="21.64"  x2="99.73" y2="21.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="134.37" y1="120.22"  x2="135.42" y2="120.27" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0027B2; opacity:1.00 " points="128.42,52.70 128.58,52.77 128.83,50.72 " />
-<line x1="150.20" y1="59.61"  x2="151.18" y2="59.73" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.13" y1="57.37"  x2="134.02" y2="57.58" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.19" y1="44.89"  x2="112.19" y2="45.49" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001772; opacity:1.00 " points="128.38,50.59 128.52,48.96 128.53,50.62 " />
-<line x1="126.58" y1="39.47"  x2="125.51" y2="39.79" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="100.32" y1="83.34"  x2="100.95" y2="82.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="127.46,50.47 127.12,52.48 127.56,50.47 " />
-<polygon style= "fill: #000C88; opacity:1.00 " points="126.66,106.74 126.36,106.76 126.78,109.10 " />
-<line x1="105.94" y1="13.39"  x2="106.01" y2="13.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="97.52" y1="17.95"  x2="97.69" y2="18.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006C3; opacity:1.00 " points="133.43,100.75 134.98,103.75 133.29,100.71 " />
-<polygon style= "fill: #0006C3; opacity:1.00 " points="135.08,104.14 133.38,101.10 135.17,103.98 " />
-<polygon style= "fill: #0005B4; opacity:1.00 " points="134.91,104.30 136.82,107.13 135.07,104.13 " />
-<polygon style= "fill: #000373; opacity:1.00 " points="133.75,104.83 135.69,107.80 133.95,104.80 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.63,53.88 126.28,56.13 126.67,53.87 " />
-<polygon style= "fill: #001F8D; opacity:1.00 " points="128.19,52.63 128.42,52.70 128.63,50.65 " />
-<polygon style= "fill: #001972; opacity:1.00 " points="128.38,50.59 128.53,50.62 128.19,52.63 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="127.69,50.48 127.36,52.48 127.82,50.49 " />
-<line x1="108.45" y1="80.50"  x2="108.36" y2="81.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000485; opacity:1.00 " points="134.44,104.62 136.44,107.46 134.69,104.46 " />
-<polygon style= "fill: #00037E; opacity:1.00 " points="134.18,104.73 136.19,107.61 134.44,104.62 " />
-<line x1="115.25" y1="115.02"  x2="116.12" y2="115.56" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.61" y1="53.46"  x2="128.74" y2="53.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.95" y1="92.93"  x2="139.35" y2="92.88" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000888; opacity:1.00 " points="127.18,94.95 126.97,94.91 128.04,97.05 " />
-<line x1="123.34" y1="19.34"  x2="123.49" y2="19.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="127.36,52.48 127.63,52.50 127.42,53.86 " />
-<line x1="149.19" y1="59.50"  x2="150.20" y2="59.61" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.38,56.09 126.55,56.07 126.79,53.84 " />
-<line x1="127.60" y1="39.19"  x2="126.58" y2="39.47" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.27" y1="120.15"  x2="134.37" y2="120.22" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="100.43" y1="22.81"  x2="100.67" y2="23.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.49" y1="45.36"  x2="108.15" y2="44.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.82" y1="124.09"  x2="131.90" y2="124.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="99.75" y1="84.20"  x2="100.32" y2="83.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="127.53,53.88 127.71,53.91 127.35,56.15 " />
-<line x1="125.48" y1="12.12"  x2="125.55" y2="12.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001B73; opacity:1.00 " points="127.35,56.15 127.63,56.21 127.81,53.93 " />
-<line x1="96.95" y1="16.55"  x2="97.08" y2="16.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C87; opacity:1.00 " points="126.36,106.75 126.08,103.41 126.66,106.73 " />
-<line x1="116.12" y1="115.56"  x2="117.05" y2="116.09" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.74" y1="53.67"  x2="127.82" y2="53.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0029B2; opacity:1.00 " points="127.50,59.93 127.86,56.27 127.33,59.86 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.29,103.14 125.67,106.59 125.38,103.25 " />
-<line x1="134.96" y1="57.78"  x2="135.94" y2="57.96" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="148.13" y1="59.40"  x2="149.19" y2="59.50" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.79,56.07 126.26,59.67 126.55,56.07 " />
-<line x1="119.29" y1="71.09"  x2="120.13" y2="70.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.51" y1="22.22"  x2="112.72" y2="22.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001B74; opacity:1.00 " points="127.63,56.20 127.10,59.79 127.35,56.14 " />
-<polygon style= "fill: #000378; opacity:1.00 " points="133.94,104.80 132.24,101.76 134.18,104.73 " />
-<line x1="128.58" y1="38.93"  x2="127.60" y2="39.19" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="132.13" y1="120.06"  x2="133.27" y2="120.15" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00218D; opacity:1.00 " points="127.33,59.86 127.63,56.20 127.10,59.79 " />
-<polygon style= "fill: #00059F; opacity:1.00 " points="134.69,104.47 133.00,101.43 134.91,104.30 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.38,103.25 125.84,106.68 125.56,103.34 " />
-<line x1="123.76" y1="18.41"  x2="123.88" y2="18.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.51" y1="121.25"  x2="107.77" y2="120.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.54,59.70 126.79,56.07 126.26,59.67 " />
-<polygon style= "fill: #000E9C; opacity:1.00 " points="126.38,103.38 126.93,106.67 126.65,103.32 " />
-<line x1="99.27" y1="85.06"  x2="99.75" y2="84.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.38,63.29 125.75,59.75 125.28,63.34 " />
-<polygon style= "fill: #000C87; opacity:1.00 " points="126.08,103.41 126.66,106.73 126.38,103.38 " />
-<line x1="135.94" y1="57.96"  x2="136.97" y2="58.14" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="147.04" y1="59.29"  x2="148.13" y2="59.40" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.05" y1="116.09"  x2="118.04" y2="116.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.90" y1="124.30"  x2="130.92" y2="124.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.38" y1="46.99"  x2="108.89" y2="46.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.82" y1="53.84"  x2="126.87" y2="53.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079F; opacity:1.00 " points="127.58,94.45 127.30,94.54 127.50,94.91 " />
-<line x1="124.00" y1="17.69"  x2="124.10" y2="17.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00059F; opacity:1.00 " points="133.00,101.43 134.91,104.30 133.21,101.27 " />
-<polygon style= "fill: #000378; opacity:1.00 " points="132.24,101.76 134.18,104.73 132.48,101.69 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.55,63.27 125.85,59.70 125.38,63.29 " />
-<line x1="130.96" y1="119.94"  x2="132.13" y2="120.06" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.36" y1="46.75"  x2="109.52" y2="47.40" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="132.48,101.69 134.44,104.61 132.74,101.58 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.54,59.68 126.07,63.28 126.27,59.66 " />
-<polygon style= "fill: #001B76; opacity:1.00 " points="126.64,63.35 126.23,66.94 126.36,63.29 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="126.83,59.72 126.36,63.31 126.54,59.68 " />
-<line x1="136.97" y1="58.14"  x2="138.04" y2="58.30" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="96.61" y1="15.68"  x2="96.71" y2="15.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.51" y1="38.70"  x2="128.58" y2="38.93" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="145.93" y1="59.18"  x2="147.04" y2="59.29" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.85" y1="13.43"  x2="124.92" y2="13.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.13" y1="70.85"  x2="120.91" y2="70.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="101.61" y1="23.73"  x2="101.84" y2="23.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.04" y1="116.58"  x2="119.08" y2="117.04" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.94" y1="47.76"  x2="109.38" y2="46.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001B75; opacity:1.00 " points="126.64,63.37 126.83,59.72 126.36,63.31 " />
-<line x1="109.32" y1="121.81"  x2="108.51" y2="121.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.28" y1="16.50"  x2="124.36" y2="16.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.87" y1="53.96"  x2="125.88" y2="54.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.68" y1="12.83"  x2="105.71" y2="12.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.56,103.33 125.38,103.24 125.16,100.58 " />
-<line x1="108.36" y1="81.92"  x2="108.46" y2="82.62" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.57" y1="14.39"  x2="124.61" y2="13.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.04" y1="58.30"  x2="139.13" y2="58.45" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="144.80" y1="59.07"  x2="145.93" y2="59.18" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.77" y1="119.79"  x2="130.96" y2="119.94" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.48" y1="15.24"  x2="124.53" y2="14.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="98.87" y1="85.92"  x2="99.27" y2="85.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008AD; opacity:1.00 " points="127.83,94.30 127.57,94.44 126.95,92.84 " />
-<line x1="130.92" y1="124.50"  x2="129.88" y2="124.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.80,103.38 125.56,103.33 125.34,100.66 " />
-<line x1="139.13" y1="58.45"  x2="140.25" y2="58.59" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.08" y1="117.04"  x2="120.17" y2="117.48" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.66" y1="58.96"  x2="144.80" y2="59.07" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="131.59,101.00 131.48,100.98 130.23,98.67 " />
-<polygon style= "fill: #0029B1; opacity:1.00 " points="126.62,67.08 126.87,63.41 126.46,67.00 " />
-<polygon style= "fill: #000E9B; opacity:1.00 " points="126.65,103.31 126.37,103.37 126.15,100.71 " />
-<line x1="110.56" y1="48.50"  x2="109.94" y2="47.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.79,63.25 125.38,66.84 125.55,63.26 " />
-<polygon style= "fill: #000485; opacity:1.00 " points="132.52,100.70 133.00,101.43 132.33,100.81 " />
-<line x1="140.25" y1="58.59"  x2="141.38" y2="58.71" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="142.52" y1="58.84"  x2="143.66" y2="58.96" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000577; opacity:1.00 " points="126.02,92.82 126.77,94.50 125.95,92.78 " />
-<line x1="128.55" y1="119.61"  x2="129.77" y2="119.79" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.88" y1="54.05"  x2="124.87" y2="54.08" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="141.38" y1="58.71"  x2="142.52" y2="58.84" style= "stroke: #000CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00218C; opacity:1.00 " points="126.46,67.00 126.64,63.35 126.23,66.94 " />
-<polygon style= "fill: #000171; opacity:1.00 " points="131.77,101.00 131.62,101.01 130.38,98.70 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.38,66.84 125.55,63.26 125.14,66.85 " />
-<line x1="126.03" y1="100.90"  x2="126.05" y2="101.11" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0029B1; opacity:1.00 " points="126.46,66.98 126.63,67.05 126.51,68.23 " />
-<line x1="120.17" y1="117.48"  x2="121.30" y2="117.88" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002DCF; opacity:1.00 " points="126.54,68.25 126.59,68.30 126.36,70.72 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.66,66.85 125.79,63.25 125.38,66.84 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.58,100.71 125.39,100.68 125.80,103.38 " />
-<polygon style= "fill: #0002B6; opacity:1.00 " points="132.93,100.39 132.80,100.51 131.55,98.20 " />
-<line x1="137.88" y1="93.01"  x2="138.46" y2="92.97" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E9B; opacity:1.00 " points="126.43,100.65 126.21,100.70 126.65,103.31 " />
-<line x1="127.32" y1="119.40"  x2="128.55" y2="119.61" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000177; opacity:1.00 " points="132.07,100.92 130.82,98.62 132.01,100.94 " />
-<line x1="121.30" y1="117.88"  x2="122.46" y2="118.25" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.87" y1="54.08"  x2="123.83" y2="54.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.88" y1="124.68"  x2="128.79" y2="124.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.10" y1="119.16"  x2="127.32" y2="119.40" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="98.55" y1="86.77"  x2="98.87" y2="85.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.46" y1="118.25"  x2="123.66" y2="118.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.63" y1="21.23"  x2="113.79" y2="20.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.00" y1="49.86"  x2="111.25" y2="49.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.87" y1="118.89"  x2="126.10" y2="119.16" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="108.46" y1="82.62"  x2="108.66" y2="83.31" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="125.36,68.01 125.39,66.83 125.55,68.01 " />
-<polygon style= "fill: #000285; opacity:1.00 " points="131.34,98.36 131.08,98.51 132.52,100.70 " />
-<line x1="111.14" y1="122.80"  x2="110.20" y2="122.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="102.51" y1="23.95"  x2="102.72" y2="23.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.83" y1="54.07"  x2="122.78" y2="54.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EBB; opacity:1.00 " points="126.60,99.85 126.37,99.94 126.48,100.63 " />
-<line x1="130.48" y1="37.86"  x2="130.18" y2="38.13" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.80" y1="50.48"  x2="112.00" y2="49.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="125.55,68.01 125.32,70.43 125.65,68.02 " />
-<line x1="122.78" y1="54.00"  x2="121.71" y2="53.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.79" y1="124.84"  x2="127.66" y2="124.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="124.50,70.96 124.59,70.90 124.44,72.88 " />
-<line x1="113.93" y1="20.68"  x2="114.07" y2="20.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="125.32,70.43 125.61,70.45 125.65,68.02 " />
-<polygon style= "fill: #000495; opacity:1.00 " points="126.67,92.92 126.31,91.98 126.50,92.93 " />
-<line x1="113.66" y1="51.06"  x2="112.80" y2="50.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="96.21" y1="14.70"  x2="96.27" y2="14.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="130.57,98.68 130.37,98.70 128.77,95.70 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="125.52,99.99 125.28,99.94 125.05,97.18 " />
-<line x1="112.15" y1="123.24"  x2="111.14" y2="122.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="137.48" y1="65.33"  x2="137.43" y2="65.33" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.57" y1="51.59"  x2="113.66" y2="51.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="125.32,70.83 125.32,70.41 125.58,70.85 " />
-<polygon style= "fill: #0002B6; opacity:1.00 " points="131.73,98.04 131.55,98.20 129.95,95.20 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="124.44,72.88 124.56,72.85 124.61,70.90 " />
-<line x1="98.31" y1="87.63"  x2="98.55" y2="86.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.52" y1="52.07"  x2="114.57" y2="51.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010D3; opacity:1.00 " points="126.41,97.06 126.77,99.73 126.38,97.08 " />
-<polygon style= "fill: #00017D; opacity:1.00 " points="131.08,98.50 130.82,98.61 129.21,95.61 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="125.32,70.83 125.58,70.85 125.43,72.83 " />
-<line x1="108.66" y1="83.31"  x2="108.95" y2="83.99" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.59" y1="53.49"  x2="118.54" y2="53.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.50" y1="52.50"  x2="115.52" y2="52.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.66" y1="124.96"  x2="126.50" y2="125.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.54" y1="53.21"  x2="117.51" y2="52.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.51" y1="52.89"  x2="116.50" y2="52.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001878; opacity:1.00 " points="125.43,72.83 125.62,72.86 125.61,70.86 " />
-<polygon style= "fill: #0002B6; opacity:1.00 " points="130.12,95.04 129.96,95.20 131.73,98.04 " />
-<line x1="113.21" y1="123.63"  x2="112.15" y2="123.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001570; opacity:1.00 " points="124.35,74.07 124.53,74.02 124.56,72.85 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="125.57,97.24 125.35,97.23 125.80,100.00 " />
-<polygon style= "fill: #000DD3; opacity:1.00 " points="126.54,96.97 126.49,96.32 126.41,97.06 " />
-<polygon style= "fill: #00017D; opacity:1.00 " points="129.47,95.50 129.22,95.61 131.08,98.50 " />
-<line x1="114.44" y1="19.32"  x2="114.54" y2="18.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001678; opacity:1.00 " points="125.34,74.02 125.62,74.06 125.62,72.86 " />
-<line x1="105.57" y1="13.19"  x2="105.57" y2="13.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.50" y1="125.06"  x2="125.29" y2="125.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.31" y1="123.97"  x2="113.21" y2="123.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EE1; opacity:1.00 " points="126.57,96.20 126.48,96.30 126.33,94.52 " />
-<line x1="115.09" y1="14.78"  x2="115.11" y2="14.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="124.50,74.59 124.42,76.03 124.54,74.59 " />
-<line x1="114.63" y1="18.54"  x2="114.71" y2="18.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000776; opacity:1.00 " points="125.57,97.24 125.52,96.59 125.35,97.23 " />
-<polygon style= "fill: #001579; opacity:1.00 " points="125.36,74.57 125.59,74.61 125.51,76.05 " />
-<line x1="136.48" y1="93.06"  x2="137.22" y2="93.04" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="124.42,76.03 124.56,76.01 124.54,74.59 " />
-<line x1="125.29" y1="125.13"  x2="124.07" y2="125.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.04" y1="15.60"  x2="115.07" y2="15.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.01" y1="76.93"  x2="125.02" y2="76.71" style= "stroke: #0028FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.79" y1="17.71"  x2="114.86" y2="17.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.46" y1="124.27"  x2="114.31" y2="123.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.91" y1="16.87"  x2="114.96" y2="16.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.43" y1="36.84"  x2="131.23" y2="37.08" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.07" y1="125.16"  x2="122.83" y2="125.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000883; opacity:1.00 " points="125.81,96.54 125.52,96.57 125.37,94.79 " />
-<line x1="103.70" y1="23.32"  x2="103.87" y2="23.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.64" y1="124.53"  x2="115.46" y2="124.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="124.34,77.46 124.57,77.43 124.56,76.01 " />
-<polygon style= "fill: #00009F; opacity:1.00 " points="129.68,95.27 128.00,92.18 129.90,95.11 " />
-<polygon style= "fill: #0000C4; opacity:1.00 " points="128.39,91.86 130.17,94.80 128.49,91.71 " />
-<line x1="122.83" y1="125.16"  x2="121.58" y2="125.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00148E; opacity:1.00 " points="125.42,77.59 125.65,77.65 125.61,78.67 " />
-<line x1="117.86" y1="124.74"  x2="116.64" y2="124.53" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000883; opacity:1.00 " points="125.51,94.77 125.81,96.54 125.37,94.79 " />
-<line x1="130.25" y1="97.25"  x2="130.25" y2="97.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.58" y1="125.11"  x2="120.33" y2="125.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.09" y1="124.91"  x2="117.86" y2="124.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="98.11" y1="89.30"  x2="98.17" y2="88.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.33" y1="125.03"  x2="119.09" y2="124.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="124.34,77.60 124.58,77.55 124.55,78.57 " />
-<polygon style= "fill: #0000B5; opacity:1.00 " points="128.22,92.02 130.07,94.95 128.39,91.86 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="127.04,92.52 128.92,95.59 127.24,92.50 " />
-<polygon style= "fill: #0000C3; opacity:1.00 " points="128.44,91.50 126.68,88.44 128.30,91.47 " />
-<polygon style= "fill: #00118E; opacity:1.00 " points="125.45,78.62 125.61,78.67 125.58,79.79 " />
-<polygon style= "fill: #000AE2; opacity:1.00 " points="124.62,92.86 124.43,92.89 124.69,92.93 " />
-<line x1="135.67" y1="93.07"  x2="136.48" y2="93.06" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.33" y1="84.65"  x2="109.80" y2="85.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007D; opacity:1.00 " points="127.48,92.43 129.43,95.41 127.75,92.32 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="124.37,78.60 124.55,78.57 124.51,79.69 " />
-<polygon style= "fill: #000F8E; opacity:1.00 " points="125.48,79.76 125.58,79.79 125.54,80.91 " />
-<polygon style= "fill: #000683; opacity:1.00 " points="125.52,93.09 125.22,93.11 125.51,94.77 " />
-<polygon style= "fill: #000CFF; opacity:1.00 " points="125.63,84.95 125.45,85.02 125.51,84.09 " />
-<line x1="105.55" y1="14.31"  x2="105.55" y2="14.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F8E; opacity:1.00 " points="125.31,80.84 125.52,80.90 125.48,79.76 " />
-<polygon style= "fill: #000798; opacity:1.00 " points="125.79,93.00 125.51,93.06 125.48,92.65 " />
-<line x1="104.34" y1="22.33"  x2="104.47" y2="22.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="98.15" y1="90.11"  x2="98.11" y2="89.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="95.96" y1="14.57"  x2="95.98" y2="14.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.47" y1="50.81"  x2="106.11" y2="51.52" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8F; opacity:1.00 " points="125.34,81.80 125.52,81.85 125.51,82.77 " />
-<polygon style= "fill: #000084; opacity:1.00 " points="127.74,92.32 125.98,89.26 128.00,92.17 " />
-<line x1="134.79" y1="93.06"  x2="135.67" y2="93.07" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.37" y1="70.27"  x2="123.79" y2="70.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000A1; opacity:1.00 " points="126.35,88.94 128.11,92.00 126.48,88.81 " />
-<polygon style= "fill: #00098F; opacity:1.00 " points="125.39,82.73 125.51,82.77 125.50,83.68 " />
-<line x1="105.53" y1="15.28"  x2="105.54" y2="14.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="124.52,90.99 124.38,89.53 124.41,90.95 " />
-<polygon style= "fill: #00009E; opacity:1.00 " points="126.23,89.11 128.21,92.00 126.46,88.94 " />
-<polygon style= "fill: #000077; opacity:1.00 " points="125.48,89.45 127.48,92.44 125.73,89.38 " />
-<line x1="104.72" y1="21.33"  x2="104.83" y2="20.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000084; opacity:1.00 " points="125.98,89.26 128.00,92.17 126.23,89.11 " />
-<polygon style= "fill: #0002B8; opacity:1.00 " points="125.70,90.93 125.60,90.96 125.46,89.50 " />
-<polygon style= "fill: #00068F; opacity:1.00 " points="125.43,83.66 125.50,83.68 125.50,84.60 " />
-<polygon style= "fill: #000298; opacity:1.00 " points="125.60,90.96 125.46,89.50 125.44,90.99 " />
-<line x1="98.28" y1="90.90"  x2="98.15" y2="90.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="124.62,89.57 124.38,89.53 124.61,91.01 " />
-<line x1="104.93" y1="20.57"  x2="105.02" y2="20.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.35" y1="85.93"  x2="110.99" y2="86.54" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.49" y1="16.41"  x2="105.51" y2="16.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.11" y1="51.52"  x2="105.83" y2="52.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C99; opacity:1.00 " points="108.21,63.99 106.32,60.79 108.27,63.97 " />
-<polygon style= "fill: #000CCC; opacity:1.00 " points="103.88,53.55 102.05,50.27 103.98,53.47 " />
-<line x1="133.84" y1="93.04"  x2="134.79" y2="93.06" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BB2; opacity:1.00 " points="118.07,76.22 118.12,76.20 119.83,78.76 " />
-<polygon style= "fill: #000CCD; opacity:1.00 " points="101.96,50.34 100.13,47.05 102.05,50.27 " />
-<line x1="105.11" y1="19.77"  x2="105.18" y2="19.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.43" y1="17.23"  x2="105.46" y2="16.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.30" y1="18.50"  x2="105.36" y2="18.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.94" y1="35.69"  x2="131.90" y2="35.91" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EB6; opacity:1.00 " points="111.77,66.20 109.75,63.04 111.71,66.22 " />
-<polygon style= "fill: #000CA2; opacity:1.00 " points="115.68,72.54 117.70,75.68 115.54,72.61 " />
-<polygon style= "fill: #000CA2; opacity:1.00 " points="113.68,69.39 115.68,72.55 113.55,69.45 " />
-<polygon style= "fill: #000576; opacity:1.00 " points="120.45,82.86 120.54,82.78 120.74,83.05 " />
-<polygon style= "fill: #000975; opacity:1.00 " points="112.27,70.25 114.26,73.41 112.17,70.33 " />
-<line x1="130.34" y1="27.42"  x2="130.11" y2="27.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000499; opacity:1.00 " points="92.91,38.27 92.84,38.28 91.23,35.38 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="117.38,75.84 117.56,75.73 117.93,76.29 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="119.11,80.63 118.38,79.69 119.22,80.54 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="116.70,77.10 116.30,76.57 116.83,77.00 " />
-<polygon style= "fill: #000CA2; opacity:1.00 " points="109.76,63.04 107.67,59.91 109.63,63.10 " />
-<polygon style= "fill: #000CA2; opacity:1.00 " points="105.86,56.66 107.81,59.85 105.73,56.71 " />
-<polygon style= "fill: #00088E; opacity:1.00 " points="119.45,78.96 119.64,78.85 117.78,76.38 " />
-<line x1="98.50" y1="91.68"  x2="98.28" y2="90.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="120.76,83.04 120.89,82.92 122.10,84.54 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="111.58,66.28 113.55,69.46 111.39,66.39 " />
-<polygon style= "fill: #000975; opacity:1.00 " points="104.43,57.50 106.38,60.70 104.34,57.57 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="110.45,66.96 108.33,63.89 110.29,67.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="119.22,80.54 120.68,82.64 119.29,80.50 " />
-<polygon style= "fill: #0005B6; opacity:1.00 " points="123.50,88.88 123.50,88.90 123.46,88.85 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="110.45,66.96 112.43,70.14 110.29,67.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="118.53,79.56 118.74,79.41 116.86,76.98 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="116.66,76.30 114.43,73.30 116.45,76.45 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="111.58,66.29 109.43,63.20 111.39,66.39 " />
-<polygon style= "fill: #000776; opacity:1.00 " points="119.22,79.10 119.45,78.96 117.56,76.52 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="122.94,85.66 123.14,85.50 122.23,84.44 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="114.64,73.16 112.43,70.14 114.43,73.30 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="113.36,69.55 115.36,72.72 113.13,69.69 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="117.38,75.85 115.13,72.85 117.15,75.99 " />
-<polygon style= "fill: #000576; opacity:1.00 " points="119.90,80.06 121.36,82.16 119.97,80.02 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="115.36,72.72 113.13,69.69 115.13,72.85 " />
-<polygon style= "fill: #000775; opacity:1.00 " points="100.57,51.08 102.49,54.29 100.47,51.16 " />
-<line x1="132.83" y1="93.00"  x2="133.84" y2="93.04" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000976; opacity:1.00 " points="111.39,66.39 113.36,69.56 111.16,66.52 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="106.54,60.58 108.49,63.78 106.38,60.70 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="117.32,76.67 117.52,76.54 119.22,79.10 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="118.74,79.41 118.98,79.25 117.08,76.83 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="120.89,82.48 121.12,82.32 119.50,80.34 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="119.73,80.18 118.98,79.25 119.90,80.06 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="116.91,76.14 114.64,73.16 116.66,76.30 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="121.11,82.75 121.32,82.59 122.53,84.21 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="115.13,72.85 117.15,75.99 114.88,73.00 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="110.66,66.82 108.49,63.78 110.45,66.96 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="110.66,66.82 112.64,70.00 110.45,66.96 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="107.68,59.91 105.54,56.82 107.48,60.02 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="114.88,73.00 112.64,70.00 114.64,73.16 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="103.91,54.06 104.07,53.97 105.73,56.72 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="115.13,72.85 112.88,69.84 114.88,73.00 " />
-<polygon style= "fill: #000775; opacity:1.00 " points="98.55,47.94 98.64,47.86 97.80,46.54 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="111.39,66.39 109.20,63.34 111.16,66.52 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="108.70,63.64 106.54,60.58 108.49,63.78 " />
-<polygon style= "fill: #000575; opacity:1.00 " points="96.74,44.64 94.75,41.48 96.64,44.71 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="105.54,56.82 105.73,56.72 103.91,54.06 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="111.16,66.52 113.13,69.70 110.91,66.67 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="107.48,60.01 109.43,63.21 107.25,60.14 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="110.91,66.67 112.88,69.84 110.66,66.82 " />
-<polygon style= "fill: #0007A2; opacity:1.00 " points="96.29,40.59 98.18,43.82 96.15,40.65 " />
-<line x1="102.31" y1="49.75"  x2="103.38" y2="49.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="110.91,66.67 108.70,63.64 110.66,66.82 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="102.79,54.73 102.93,54.64 104.59,57.38 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="111.16,66.52 108.95,63.48 110.91,66.67 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="106.75,60.45 104.59,57.38 106.54,60.58 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="106.75,60.45 108.70,63.64 106.54,60.58 " />
-<polygon style= "fill: #00088E; opacity:1.00 " points="103.80,53.52 101.68,50.41 103.61,53.62 " />
-<polygon style= "fill: #0005A2; opacity:1.00 " points="94.27,37.41 94.40,37.36 95.73,39.63 " />
-<polygon style= "fill: #000976; opacity:1.00 " points="107.48,60.02 105.30,56.95 107.25,60.15 " />
-<line x1="100.20" y1="51.11"  x2="101.25" y2="50.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="107.25,60.14 109.20,63.34 107.00,60.29 " />
-<line x1="103.38" y1="49.11"  x2="104.47" y2="48.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00088E; opacity:1.00 " points="99.95,47.09 101.87,50.31 99.76,47.19 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="107.00,60.29 108.95,63.49 106.75,60.45 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="107.00,60.30 104.81,57.25 106.75,60.45 " />
-<polygon style= "fill: #000776; opacity:1.00 " points="103.37,53.75 103.60,53.62 103.88,54.07 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="107.25,60.15 105.05,57.10 107.00,60.30 " />
-<line x1="95.91" y1="15.66"  x2="95.92" y2="15.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="102.96,54.62 103.15,54.50 104.81,57.25 " />
-<polygon style= "fill: #0002A2; opacity:1.00 " points="89.72,29.42 89.78,29.39 90.64,30.88 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="102.87,54.04 100.73,50.97 102.66,54.18 " />
-<polygon style= "fill: #00068E; opacity:1.00 " points="97.85,43.97 98.05,43.88 99.15,45.74 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="124.37,85.00 124.66,84.95 124.32,83.55 " />
-<line x1="129.24" y1="97.70"  x2="128.61" y2="97.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="97.94,46.44 96.74,44.64 98.00,46.39 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="124.43,83.54 124.66,84.95 124.60,83.51 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="103.43,54.33 103.64,54.20 105.30,56.95 " />
-<polygon style= "fill: #00088E; opacity:1.00 " points="98.96,45.84 99.76,47.20 99.07,45.78 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="103.18,54.48 103.39,54.35 105.05,57.10 " />
-<polygon style= "fill: #000493; opacity:1.00 " points="125.51,88.89 125.44,88.89 125.50,88.85 " />
-<line x1="99.19" y1="51.83"  x2="100.20" y2="51.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="94.27,40.44 94.84,41.41 94.39,40.36 " />
-<polygon style= "fill: #000175; opacity:1.00 " points="89.10,31.77 89.20,31.69 88.29,30.24 " />
-<line x1="104.47" y1="48.52"  x2="105.55" y2="47.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000075; opacity:1.00 " points="87.31,28.46 85.32,25.31 87.22,28.54 " />
-<polygon style= "fill: #000776; opacity:1.00 " points="99.76,47.19 101.68,50.41 99.52,47.32 " />
-<polygon style= "fill: #000571; opacity:1.00 " points="124.60,83.51 124.26,82.07 124.70,83.49 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="103.12,53.89 100.94,50.83 102.87,54.04 " />
-<polygon style= "fill: #0000A2; opacity:1.00 " points="86.86,24.41 88.76,27.64 86.71,24.47 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="103.37,53.75 101.19,50.68 103.12,53.89 " />
-<polygon style= "fill: #000994; opacity:1.00 " points="124.52,82.02 124.34,81.20 124.69,81.98 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="101.44,50.54 103.37,53.75 101.19,50.68 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="91.27,35.28 92.95,38.17 91.29,35.27 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="99.02,47.62 100.94,50.83 98.81,47.75 " />
-<polygon style= "fill: #000EB6; opacity:1.00 " points="124.23,78.58 124.33,78.54 124.60,80.34 " />
-<polygon style= "fill: #000996; opacity:1.00 " points="124.40,80.40 124.45,80.39 124.56,81.17 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="101.19,50.68 99.02,47.62 100.94,50.83 " />
-<polygon style= "fill: #00048E; opacity:1.00 " points="92.41,34.61 92.59,34.52 94.27,37.41 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="99.52,47.32 101.44,50.54 99.27,47.47 " />
-<polygon style= "fill: #00048E; opacity:1.00 " points="95.39,39.77 95.53,39.71 94.07,37.51 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="97.11,44.39 95.00,41.30 96.90,44.53 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="98.22,46.25 99.02,47.61 98.36,46.17 " />
-<polygon style= "fill: #000576; opacity:1.00 " points="95.96,40.74 97.85,43.97 95.72,40.87 " />
-<polygon style= "fill: #0000FF; opacity:1.00 " points="123.53,85.85 123.47,85.88 123.53,85.81 " />
-<polygon style= "fill: #00028E; opacity:1.00 " points="90.51,30.93 92.39,34.18 90.31,31.03 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="124.55,88.89 124.46,88.91 124.46,88.86 " />
-<line x1="111.71" y1="87.13"  x2="112.51" y2="87.70" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000576; opacity:1.00 " points="97.85,43.97 95.72,40.87 97.62,44.10 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="98.61,46.02 97.36,44.24 98.72,45.96 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="123.25,81.36 123.50,81.33 123.63,82.16 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="95.22,41.16 97.11,44.39 95.00,41.30 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="94.44,40.32 94.59,40.23 93.11,38.06 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="97.12,44.39 97.36,44.24 98.46,46.11 " />
-<line x1="98.21" y1="52.58"  x2="99.19" y2="51.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="89.36,31.57 91.23,34.82 89.20,31.69 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="97.62,44.10 95.46,41.01 97.36,44.24 " />
-<line x1="105.55" y1="47.95"  x2="106.63" y2="47.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000376; opacity:1.00 " points="95.15,39.90 95.32,39.81 93.83,37.63 " />
-<polygon style= "fill: #000376; opacity:1.00 " points="92.18,34.73 92.39,34.62 94.07,37.51 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="87.31,28.45 87.47,28.34 88.49,30.09 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="95.46,41.01 95.72,40.87 95.08,39.94 " />
-<line x1="83.77" y1="22.04"  x2="83.77" y2="22.04" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="85.57,25.12 83.47,22.04 85.41,25.24 " />
-<polygon style= "fill: #00028E; opacity:1.00 " points="89.45,29.54 90.31,31.02 89.55,29.49 " />
-<polygon style= "fill: #000A72; opacity:1.00 " points="122.41,77.66 122.52,77.68 122.68,78.79 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="94.65,40.19 94.82,40.09 93.33,37.92 " />
-<polygon style= "fill: #00008E; opacity:1.00 " points="88.62,27.69 86.52,24.56 88.42,27.79 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="91.46,35.15 91.65,35.03 93.33,37.92 " />
-<polygon style= "fill: #000176; opacity:1.00 " points="90.31,31.03 92.19,34.27 90.07,31.15 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="123.39,80.57 123.50,81.34 123.61,80.54 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="93.33,37.92 93.58,37.77 91.68,35.01 " />
-<line x1="131.77" y1="92.94"  x2="132.83" y2="93.00" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="91.93,34.87 92.15,34.74 93.83,37.63 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="89.57,31.44 91.45,34.68 89.36,31.57 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="91.70,34.53 89.57,31.44 91.45,34.68 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="87.68,28.20 85.57,25.12 87.47,28.34 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="90.07,31.15 91.95,34.39 89.82,31.29 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="87.47,28.34 87.68,28.20 88.70,29.95 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="89.82,31.29 91.70,34.53 89.57,31.44 " />
-<polygon style= "fill: #000076; opacity:1.00 " points="88.42,27.79 86.28,24.68 88.18,27.91 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="85.78,24.98 83.63,21.92 85.57,25.12 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="88.95,29.80 89.82,31.29 89.09,29.73 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="87.93,28.05 88.19,27.91 89.21,29.66 " />
-<polygon style= "fill: #0007E0; opacity:1.00 " points="123.50,87.86 123.51,87.92 123.46,87.90 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="87.93,28.05 85.78,24.98 87.68,28.20 " />
-<line x1="97.28" y1="53.35"  x2="98.21" y2="52.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="88.18,27.91 86.02,24.83 87.93,28.05 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="122.39,76.79 122.52,77.68 122.54,76.79 " />
-<line x1="106.63" y1="47.42"  x2="107.70" y2="46.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="123.20,78.76 123.40,78.73 123.67,80.54 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="123.40,78.73 123.67,80.54 123.49,78.72 " />
-<polygon style= "fill: #0007E5; opacity:1.00 " points="124.52,85.82 124.55,85.88 124.46,85.88 " />
-<line x1="105.65" y1="52.92"  x2="105.56" y2="53.61" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017D; opacity:1.00 " points="124.08,85.43 124.34,85.29 122.94,82.78 " />
-<polygon style= "fill: #0007A6; opacity:1.00 " points="125.50,87.86 125.52,87.92 125.44,87.90 " />
-<polygon style= "fill: #000171; opacity:1.00 " points="122.01,83.00 122.14,83.02 123.33,85.64 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="123.23,77.62 123.52,77.57 123.69,78.69 " />
-<line x1="112.51" y1="87.70"  x2="113.38" y2="88.23" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B74; opacity:1.00 " points="123.40,76.71 123.53,77.59 123.61,76.67 " />
-<polygon style= "fill: #0009C0; opacity:1.00 " points="124.54,87.87 124.49,87.89 124.50,87.83 " />
-<line x1="84.17" y1="21.68"  x2="80.87" y2="22.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00028E; opacity:1.00 " points="123.19,82.64 123.36,82.52 124.55,85.15 " />
-<polygon style= "fill: #001097; opacity:1.00 " points="123.38,74.31 123.57,74.27 123.89,76.61 " />
-<line x1="96.39" y1="54.14"  x2="97.28" y2="53.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="136.38" y1="65.41"  x2="136.79" y2="65.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="122.58,76.79 122.77,76.78 122.29,74.45 " />
-<line x1="128.61" y1="97.93"  x2="127.89" y2="98.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="122.41,82.97 122.62,82.91 123.81,85.54 " />
-<line x1="130.66" y1="92.85"  x2="131.77" y2="92.94" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C74; opacity:1.00 " points="123.11,74.36 123.35,74.32 123.67,76.66 " />
-<polygon style= "fill: #001297; opacity:1.00 " points="123.29,73.86 123.51,73.80 123.57,74.27 " />
-<polygon style= "fill: #0017B8; opacity:1.00 " points="123.51,73.82 123.66,73.77 123.22,71.19 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="122.29,74.45 122.51,74.44 122.83,76.78 " />
-<line x1="129.27" y1="27.43"  x2="128.95" y2="27.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="99.21" y1="93.14"  x2="98.81" y2="92.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="81.80" y1="16.48"  x2="83.25" y2="19.75" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="82.34" y1="24.29"  x2="81.73" y2="24.21" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001072; opacity:1.00 " points="121.56,71.35 121.59,71.36 121.42,70.29 " />
-<line x1="131.77" y1="34.84"  x2="131.86" y2="35.05" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="81.48" y1="22.49"  x2="84.17" y2="21.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="95.55" y1="54.95"  x2="96.39" y2="54.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="82.87" y1="19.14"  x2="84.17" y2="21.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="82.22" y1="23.43"  x2="83.77" y2="22.04" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000481; opacity:1.00 " points="121.61,82.32 121.70,82.38 120.18,79.14 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="122.41,82.97 122.08,82.36 122.62,82.91 " />
-<line x1="113.38" y1="88.23"  x2="114.31" y2="88.75" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="79.28" y1="24.39"  x2="82.46" y2="22.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="108.74" y1="46.48"  x2="109.75" y2="46.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="122.45,73.99 122.73,73.96 122.19,71.36 " />
-<line x1="83.32" y1="17.57"  x2="83.71" y2="20.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="123.42,86.79 123.46,87.07 123.69,87.00 " />
-<line x1="105.56" y1="53.61"  x2="105.56" y2="54.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="129.52" y1="92.74"  x2="130.66" y2="92.85" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000371; opacity:1.00 " points="121.70,82.38 121.86,82.39 120.27,79.20 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="122.19,71.36 122.39,71.34 122.73,73.96 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="126.47,87.85 126.90,87.75 126.49,87.92 " />
-<polygon style= "fill: #0024E5; opacity:1.00 " points="122.69,66.31 122.40,62.67 122.80,66.34 " />
-<line x1="80.63" y1="25.41"  x2="82.46" y2="22.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="81.36" y1="23.99"  x2="83.32" y2="22.24" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.77" y1="55.77"  x2="95.55" y2="54.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="121.54,70.31 121.72,70.32 121.13,66.81 " />
-<line x1="81.41" y1="18.40"  x2="81.34" y2="18.04" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="122.25,70.28 122.55,70.24 122.68,71.30 " />
-<polygon style= "fill: #0006C0; opacity:1.00 " points="121.82,78.59 121.89,78.46 123.32,81.64 " />
-<line x1="128.60" y1="27.38"  x2="128.24" y2="27.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.89" y1="98.16"  x2="127.10" y2="98.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00048F; opacity:1.00 " points="122.87,82.05 123.09,81.91 121.45,78.87 " />
-<line x1="114.31" y1="88.75"  x2="115.30" y2="89.23" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="127.49" y1="87.41"  x2="127.66" y2="87.39" style= "stroke: #0034FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="122.08,82.37 122.34,82.30 120.66,79.19 " />
-<line x1="99.71" y1="93.84"  x2="99.21" y2="93.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="122.61,82.19 122.87,82.05 121.20,79.00 " />
-<polygon style= "fill: #001077; opacity:1.00 " points="122.55,70.26 122.82,70.21 122.14,66.75 " />
-<polygon style= "fill: #001599; opacity:1.00 " points="122.41,66.71 122.63,66.66 123.04,70.16 " />
-<line x1="82.22" y1="23.43"  x2="82.34" y2="24.29" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="128.33" y1="92.61"  x2="129.52" y2="92.74" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="121.13,66.81 121.30,66.82 121.72,70.32 " />
-<line x1="81.95" y1="17.19"  x2="83.25" y2="19.75" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="86.45" y1="23.16"  x2="84.75" y2="21.75" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="82.87" y1="19.14"  x2="81.88" y2="19.37" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="83.78" y1="18.54"  x2="82.87" y2="19.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001077; opacity:1.00 " points="122.14,66.75 122.40,66.71 122.82,70.21 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="121.32,66.82 121.55,66.82 121.97,70.32 " />
-<line x1="79.77" y1="23.61"  x2="82.46" y2="22.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="80.51" y1="24.55"  x2="82.46" y2="22.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.30" y1="89.23"  x2="116.36" y2="89.69" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="124.56,86.76 124.57,86.88 124.13,86.95 " />
-<polygon style= "fill: #000376; opacity:1.00 " points="120.92,79.11 121.19,79.01 122.61,82.19 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="121.32,66.82 121.29,66.64 121.55,66.82 " />
-<polygon style= "fill: #001085; opacity:1.00 " points="128.88,84.75 128.68,84.86 128.34,84.90 " />
-<line x1="80.02" y1="22.98"  x2="80.63" y2="23.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="81.48" y1="22.49"  x2="82.22" y2="23.43" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="127.13" y1="92.45"  x2="128.33" y2="92.61" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="110.74" y1="45.69"  x2="111.68" y2="45.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="82.41" y1="18.16"  x2="81.41" y2="18.40" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="116.36" y1="89.69"  x2="117.45" y2="90.12" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068F; opacity:1.00 " points="121.45,78.87 121.41,78.81 121.66,78.73 " />
-<polygon style= "fill: #001899; opacity:1.00 " points="122.20,62.82 122.61,66.50 121.98,62.88 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="121.82,66.63 121.13,62.97 121.54,66.65 " />
-<line x1="127.10" y1="98.38"  x2="126.24" y2="98.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0009C0; opacity:1.00 " points="121.87,78.40 120.35,75.28 121.79,78.53 " />
-<line x1="125.90" y1="92.26"  x2="127.13" y2="92.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="80.63" y1="23.05"  x2="81.36" y2="23.99" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.64,85.80 125.54,85.94 125.09,86.01 " />
-<line x1="127.46" y1="27.20"  x2="127.05" y2="27.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="93.41" y1="57.45"  x2="94.06" y2="56.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001171; opacity:1.00 " points="120.69,62.96 120.20,59.25 120.57,62.92 " />
-<line x1="117.45" y1="90.12"  x2="118.59" y2="90.52" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="81.95" y1="17.19"  x2="80.95" y2="17.43" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="82.86" y1="16.60"  x2="81.95" y2="17.19" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="121.41,62.95 121.82,66.63 121.13,62.97 " />
-<line x1="135.30" y1="65.45"  x2="135.88" y2="65.43" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.66" y1="92.05"  x2="125.90" y2="92.26" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="128.54,87.67 128.68,87.88 128.42,87.91 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="125.48,86.79 125.55,86.98 125.11,87.06 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="120.88,62.98 120.31,59.29 120.69,62.96 " />
-<line x1="118.59" y1="90.52"  x2="119.77" y2="90.88" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000577; opacity:1.00 " points="121.16,78.95 119.45,75.81 120.89,79.05 " />
-<line x1="123.43" y1="91.80"  x2="124.66" y2="92.05" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="86.14" y1="22.63"  x2="85.32" y2="21.82" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="119.77" y1="90.88"  x2="120.97" y2="91.22" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008AB; opacity:1.00 " points="120.35,75.28 121.79,78.53 120.19,75.43 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="128.63,86.83 128.47,86.86 128.61,87.08 " />
-<line x1="122.19" y1="91.52"  x2="123.43" y2="91.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.66" y1="54.99"  x2="105.86" y2="55.66" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.97" y1="91.22"  x2="122.19" y2="91.52" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00137A; opacity:1.00 " points="121.98,62.89 121.33,59.26 121.71,62.93 " />
-<line x1="100.94" y1="95.12"  x2="100.28" y2="94.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="121.71,62.93 121.04,59.29 121.41,62.96 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="120.50,59.30 120.88,62.98 120.31,59.29 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="119.18,75.88 120.63,79.13 118.96,75.91 " />
-<line x1="85.06" y1="20.61"  x2="85.04" y2="20.72" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001786; opacity:1.00 " points="129.41,87.89 129.77,87.80 129.44,87.92 " />
-<line x1="126.63" y1="27.02"  x2="126.19" y2="26.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00137A; opacity:1.00 " points="121.60,59.21 121.98,62.89 121.33,59.26 " />
-<polygon style= "fill: #00057F; opacity:1.00 " points="119.98,75.57 121.42,78.82 119.72,75.70 " />
-<polygon style= "fill: #000577; opacity:1.00 " points="119.72,75.70 121.16,78.95 119.45,75.81 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="121.33,59.26 121.71,62.93 121.04,59.29 " />
-<line x1="85.59" y1="21.36"  x2="86.51" y2="20.76" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001DBB; opacity:1.00 " points="121.98,59.11 121.47,55.50 121.82,59.17 " />
-<polygon style= "fill: #0020E6; opacity:1.00 " points="121.66,55.25 121.55,55.21 121.34,51.66 " />
-<line x1="130.83" y1="33.80"  x2="131.08" y2="34.01" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="85.43" y1="19.86"  x2="85.36" y2="19.96" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="126.35,85.77 126.29,85.98 126.62,85.86 " />
-<line x1="112.58" y1="45.06"  x2="113.42" y2="44.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="85.56" y1="22.56"  x2="85.59" y2="21.36" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="126.43,86.78 126.57,86.98 126.88,86.85 " />
-<polygon style= "fill: #00189B; opacity:1.00 " points="121.82,59.17 121.25,55.55 121.60,59.23 " />
-<line x1="134.64" y1="65.45"  x2="135.30" y2="65.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="87.09" y1="20.83"  x2="87.97" y2="21.43" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="120.75,59.32 120.15,55.64 120.50,59.31 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="129.38,86.88 129.77,86.78 129.38,86.96 " />
-<line x1="101.68" y1="95.70"  x2="100.94" y2="95.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00137B; opacity:1.00 " points="121.60,59.23 120.98,55.60 121.33,59.27 " />
-<polygon style= "fill: #00189B; opacity:1.00 " points="121.47,55.50 121.82,59.17 121.25,55.55 " />
-<polygon style= "fill: #0008AC; opacity:1.00 " points="120.35,75.29 118.76,72.19 120.20,75.43 " />
-<line x1="105.86" y1="55.66"  x2="106.14" y2="56.33" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="92.35" y1="59.15"  x2="92.84" y2="58.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="119.18,75.89 117.53,72.67 118.96,75.91 " />
-<line x1="125.30" y1="98.80"  x2="124.31" y2="98.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="125.29" y1="26.62"  x2="124.83" y2="26.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="120.40,55.64 120.75,59.32 120.15,55.64 " />
-<polygon style= "fill: #001684; opacity:1.00 " points="127.36,86.89 127.66,86.78 127.42,86.94 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="120.68,55.63 121.04,59.30 120.40,55.64 " />
-<polygon style= "fill: #000680; opacity:1.00 " points="119.98,75.58 118.29,72.46 119.72,75.71 " />
-<polygon style= "fill: #001ABB; opacity:1.00 " points="121.46,55.43 121.61,55.37 121.14,51.84 " />
-<line x1="113.42" y1="44.81"  x2="114.21" y2="44.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="130.16,86.95 130.54,86.85 130.18,87.11 " />
-<line x1="102.49" y1="96.25"  x2="101.68" y2="95.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.37" y1="26.27"  x2="123.90" y2="26.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="118.02,72.57 119.45,75.82 117.75,72.64 " />
-<line x1="89.38" y1="20.38"  x2="89.27" y2="20.14" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001570; opacity:1.00 " points="127.57,85.72 127.57,85.85 127.24,85.95 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="120.39,55.56 120.67,55.55 120.07,51.98 " />
-<line x1="91.94" y1="60.00"  x2="92.35" y2="59.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.31" y1="98.98"  x2="123.26" y2="99.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="89.65" y1="21.38"  x2="89.61" y2="21.13" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.44" y1="25.84"  x2="122.97" y2="25.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000881; opacity:1.00 " points="117.20,72.43 117.29,72.49 115.84,69.34 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="120.35,51.96 120.64,51.93 120.97,55.52 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="120.07,51.98 120.35,51.96 120.68,55.55 " />
-<polygon style= "fill: #001071; opacity:1.00 " points="119.34,49.92 119.51,51.90 119.39,49.94 " />
-<line x1="103.38" y1="96.76"  x2="102.49" y2="96.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001071; opacity:1.00 " points="119.39,49.94 119.45,49.96 119.62,51.94 " />
-<line x1="122.51" y1="25.34"  x2="122.06" y2="25.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="131.60,85.82 131.63,85.85 131.27,85.91 " />
-<line x1="114.21" y1="44.59"  x2="114.93" y2="44.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="120.35,51.97 120.65,51.95 120.32,49.98 " />
-<line x1="123.26" y1="99.14"  x2="122.16" y2="99.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="131.41,86.63 131.45,86.89 131.73,86.82 " />
-<polygon style= "fill: #000CC1; opacity:1.00 " points="117.50,68.80 117.57,68.67 118.93,71.76 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="118.48,72.18 118.69,72.04 117.13,69.09 " />
-<line x1="91.61" y1="60.85"  x2="91.94" y2="60.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="117.69,72.49 117.94,72.43 116.33,69.40 " />
-<line x1="129.55" y1="32.93"  x2="129.91" y2="33.15" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="119.45,49.96 119.54,49.98 119.31,48.27 " />
-<line x1="121.17" y1="24.46"  x2="120.74" y2="24.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="120.32,49.98 120.48,49.96 120.65,51.95 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="128.59,85.82 128.27,85.92 128.61,85.85 " />
-<line x1="120.33" y1="23.79"  x2="119.93" y2="23.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="133.07" y1="65.43"  x2="133.89" y2="65.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="104.33" y1="97.23"  x2="103.38" y2="96.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.52" y1="56.98"  x2="106.99" y2="57.61" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.18" y1="22.66"  x2="118.82" y2="22.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="119.31,48.27 119.50,48.30 119.64,49.99 " />
-<polygon style= "fill: #000F7C; opacity:1.00 " points="120.48,49.96 120.60,49.95 120.33,48.27 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="116.10,69.42 116.33,69.40 117.69,72.49 " />
-<polygon style= "fill: #000F7C; opacity:1.00 " points="120.33,48.27 120.60,48.23 120.75,49.92 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="132.45,86.70 132.09,86.77 132.51,86.87 " />
-<polygon style= "fill: #002183; opacity:1.00 " points="132.63,85.76 132.73,85.84 132.28,85.92 " />
-<line x1="122.16" y1="99.29"  x2="121.02" y2="99.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000779; opacity:1.00 " points="116.59,69.33 116.87,69.22 118.22,72.32 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="129.34,85.82 129.48,86.01 129.74,85.88 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="119.50,48.30 119.75,48.31 119.39,45.88 " />
-<polygon style= "fill: #000F7D; opacity:1.00 " points="120.33,48.27 120.61,48.23 120.23,45.84 " />
-<line x1="105.34" y1="97.66"  x2="104.33" y2="97.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002170; opacity:1.00 " points="129.50,84.75 129.45,84.92 129.73,84.79 " />
-<line x1="91.37" y1="61.69"  x2="91.61" y2="60.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00139C; opacity:1.00 " points="120.41,45.81 120.61,48.23 120.48,45.79 " />
-<line x1="133.51" y1="86.42"  x2="133.70" y2="86.38" style= "stroke: #0054FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="128.76" y1="32.48"  x2="129.17" y2="32.71" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CC2; opacity:1.00 " points="117.57,68.67 116.08,65.55 117.50,68.80 " />
-<polygon style= "fill: #00319C; opacity:1.00 " points="130.50,85.84 130.23,85.95 130.63,85.88 " />
-<line x1="121.02" y1="99.41"  x2="119.83" y2="99.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.99" y1="57.61"  x2="107.55" y2="58.22" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0015E6; opacity:1.00 " points="120.54,42.03 120.50,42.01 120.43,40.64 " />
-<polygon style= "fill: #00119C; opacity:1.00 " points="120.48,45.79 120.30,44.55 120.63,45.76 " />
-<line x1="132.18" y1="65.41"  x2="133.07" y2="65.43" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00119C; opacity:1.00 " points="120.30,44.55 120.53,44.50 120.63,45.76 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="133.54,85.81 133.49,85.96 133.13,86.03 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="119.39,45.88 119.20,44.62 119.55,45.89 " />
-<line x1="106.41" y1="98.04"  x2="105.34" y2="97.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="116.33,69.40 114.68,66.18 116.10,69.43 " />
-<polygon style= "fill: #0014BC; opacity:1.00 " points="120.53,44.50 120.68,44.44 120.40,42.18 " />
-<line x1="124.30" y1="70.98"  x2="124.00" y2="71.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014BC; opacity:1.00 " points="120.40,42.18 120.50,42.15 120.68,44.44 " />
-<line x1="87.73" y1="24.42"  x2="87.94" y2="24.36" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="119.45,44.63 119.74,44.63 119.84,45.88 " />
-<polygon style= "fill: #000779; opacity:1.00 " points="116.87,69.23 115.18,66.08 116.59,69.33 " />
-<line x1="119.83" y1="99.50"  x2="118.62" y2="99.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003287; opacity:1.00 " points="134.48,86.83 134.63,86.96 134.28,87.03 " />
-<polygon style= "fill: #000AAD; opacity:1.00 " points="116.08,65.55 117.50,68.80 115.93,65.70 " />
-<line x1="107.53" y1="98.38"  x2="106.41" y2="98.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="119.45,44.63 119.74,44.63 119.38,42.34 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="130.54,84.75 130.26,84.86 130.56,84.86 " />
-<line x1="115.58" y1="44.28"  x2="116.16" y2="44.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0065FF; opacity:1.00 " points="134.32,85.89 134.61,85.84 134.31,86.08 " />
-<polygon style= "fill: #000D90; opacity:1.00 " points="118.46,38.85 118.42,38.88 118.57,40.80 " />
-<line x1="118.62" y1="99.55"  x2="117.38" y2="99.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000881; opacity:1.00 " points="115.71,65.84 117.13,69.10 115.45,65.98 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="119.38,42.34 119.55,42.33 119.74,44.63 " />
-<line x1="108.68" y1="98.68"  x2="107.53" y2="98.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="131.22" y1="65.36"  x2="132.18" y2="65.41" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0043A0; opacity:1.00 " points="135.35,86.81 135.50,86.87 135.82,86.79 " />
-<line x1="127.41" y1="31.76"  x2="127.88" y2="32.00" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.38" y1="99.58"  x2="116.13" y2="99.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002170; opacity:1.00 " points="133.53,84.69 133.56,84.97 133.18,85.04 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="131.52,83.82 131.80,83.68 131.42,83.95 " />
-<line x1="109.88" y1="98.93"  x2="108.68" y2="98.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="86.65" y1="24.41"  x2="86.87" y2="24.45" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="119.16,40.95 119.45,40.95 119.55,42.33 " />
-<line x1="116.13" y1="99.57"  x2="114.86" y2="99.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="111.10" y1="99.14"  x2="109.88" y2="98.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002B70; opacity:1.00 " points="131.44,84.70 131.54,84.91 131.26,85.02 " />
-<polygon style= "fill: #000771; opacity:1.00 " points="114.69,66.18 113.11,62.90 114.52,66.15 " />
-<line x1="114.86" y1="99.52"  x2="113.60" y2="99.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.34" y1="99.31"  x2="111.10" y2="99.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="91.16" y1="63.34"  x2="91.22" y2="62.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.60" y1="99.43"  x2="112.34" y2="99.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000871; opacity:1.00 " points="118.50,38.96 118.31,37.18 118.56,38.98 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="119.45,40.95 119.74,40.92 119.43,39.01 " />
-<line x1="108.20" y1="58.82"  x2="108.92" y2="59.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.43" y1="31.24"  x2="126.93" y2="31.50" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="118.65,39.00 118.43,37.22 118.75,39.02 " />
-<line x1="130.20" y1="65.30"  x2="131.22" y2="65.36" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000881; opacity:1.00 " points="115.71,65.85 114.04,62.73 115.45,65.98 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="135.59,85.80 135.25,85.88 135.62,85.98 " />
-<polygon style= "fill: #003981; opacity:1.00 " points="132.26,84.85 132.44,85.00 132.67,84.86 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="119.59,39.00 119.72,38.98 119.45,37.23 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="119.43,39.01 119.16,37.26 119.59,39.00 " />
-<line x1="85.64" y1="23.91"  x2="85.82" y2="24.04" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000993; opacity:1.00 " points="114.52,62.45 115.93,65.70 114.30,62.60 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="134.53,84.79 134.08,84.87 134.60,84.95 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="118.43,37.22 118.62,37.25 118.43,35.78 " />
-<polygon style= "fill: #000771; opacity:1.00 " points="113.77,62.83 115.18,66.09 113.50,62.90 " />
-<line x1="125.40" y1="30.70"  x2="125.92" y2="30.98" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097E; opacity:1.00 " points="119.45,37.23 119.72,37.20 119.50,35.75 " />
-<line x1="91.19" y1="64.14"  x2="91.16" y2="63.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003470; opacity:1.00 " points="132.65,83.73 132.66,83.79 132.41,83.91 " />
-<line x1="129.13" y1="65.23"  x2="130.20" y2="65.30" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="123.62" y1="71.37"  x2="123.14" y2="71.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003670; opacity:1.00 " points="136.64,85.68 136.67,85.86 136.32,85.93 " />
-<line x1="124.34" y1="30.13"  x2="124.88" y2="30.41" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="118.50,35.79 118.66,35.80 118.33,33.56 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="118.66,35.80 118.33,33.56 118.75,35.80 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="119.50,35.75 119.16,33.54 119.61,35.73 " />
-<polygon style= "fill: #00099D; opacity:1.00 " points="119.44,33.50 119.66,33.45 119.83,35.68 " />
-<line x1="84.76" y1="22.75"  x2="84.87" y2="22.98" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002870; opacity:1.00 " points="135.54,83.80 135.08,83.89 135.51,83.87 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="119.16,33.54 119.44,33.50 119.61,35.73 " />
-<line x1="109.72" y1="59.95"  x2="110.59" y2="60.48" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="118.33,33.56 118.58,33.57 118.75,35.80 " />
-<polygon style= "fill: #003A70; opacity:1.00 " points="133.52,83.79 133.58,83.91 133.34,84.04 " />
-<line x1="123.27" y1="29.52"  x2="123.80" y2="29.82" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002870; opacity:1.00 " points="135.46,84.68 135.54,84.88 135.09,84.96 " />
-<polygon style= "fill: #000771; opacity:1.00 " points="113.50,62.90 113.77,62.84 112.10,59.66 " />
-<line x1="128.01" y1="65.13"  x2="129.13" y2="65.23" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003C70; opacity:1.00 " points="137.36,85.75 137.70,85.65 137.45,85.97 " />
-<polygon style= "fill: #00099D; opacity:1.00 " points="119.36,32.48 119.44,33.50 119.52,32.45 " />
-<line x1="119.16" y1="26.71"  x2="119.63" y2="27.09" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="91.32" y1="64.92"  x2="91.19" y2="64.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="84.53" y1="22.03"  x2="84.59" y2="22.28" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="122.19" y1="28.87"  x2="122.73" y2="29.20" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.66" y1="28.53"  x2="122.19" y2="28.87" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="91.31" y1="19.47"  x2="91.16" y2="19.25" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="118.43,32.55 118.50,32.56 118.58,33.57 " />
-<polygon style= "fill: #000AAE; opacity:1.00 " points="113.12,59.21 113.27,59.07 114.68,62.31 " />
-<line x1="90.42" y1="18.46"  x2="90.20" y2="18.30" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="138.43" y1="85.42"  x2="138.55" y2="85.39" style= "stroke: #008DFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="120.63" y1="27.83"  x2="121.14" y2="28.19" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0008BC; opacity:1.00 " points="119.37,29.75 119.52,29.69 119.73,32.37 " />
-<polygon style= "fill: #004981; opacity:1.00 " points="134.53,83.79 134.67,83.90 134.42,84.02 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="111.88,59.68 112.10,59.66 113.50,62.90 " />
-<line x1="110.59" y1="60.48"  x2="111.53" y2="60.98" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.89" y1="43.71"  x2="116.96" y2="43.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="84.48" y1="20.98"  x2="84.46" y2="21.25" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000882; opacity:1.00 " points="112.64,59.49 112.90,59.36 114.30,62.60 " />
-<polygon style= "fill: #00079D; opacity:1.00 " points="119.15,29.80 119.37,29.75 119.58,32.43 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="118.50,32.56 118.71,32.55 118.29,29.88 " />
-<polygon style= "fill: #00077A; opacity:1.00 " points="112.37,59.59 112.64,59.49 114.04,62.73 " />
-<polygon style= "fill: #0008BC; opacity:1.00 " points="119.37,29.75 119.52,29.69 119.44,28.99 " />
-<line x1="87.32" y1="17.75"  x2="87.06" y2="17.82" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="126.86" y1="65.01"  x2="128.01" y2="65.13" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004170; opacity:1.00 " points="138.41,84.76 138.36,84.94 138.71,84.84 " />
-<line x1="86.55" y1="18.02"  x2="86.31" y2="18.14" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006D5; opacity:1.00 " points="119.52,28.93 119.23,25.98 119.54,28.92 " />
-<line x1="84.84" y1="19.70"  x2="84.73" y2="19.95" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="85.46" y1="18.81"  x2="85.28" y2="19.02" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="118.29,29.88 118.58,29.87 118.79,32.55 " />
-<polygon style= "fill: #004370; opacity:1.00 " points="134.63,82.59 134.64,82.81 134.39,82.94 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="136.45,84.70 136.17,84.76 136.59,84.90 " />
-<polygon style= "fill: #008BD8; opacity:1.00 " points="140.47,85.88 140.52,85.84 140.85,85.79 " />
-<line x1="111.53" y1="60.98"  x2="112.54" y2="61.46" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="91.54" y1="65.68"  x2="91.32" y2="64.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005388; opacity:1.00 " points="139.29,85.82 139.39,85.91 139.71,85.82 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="118.29,29.87 118.58,29.86 118.47,29.16 " />
-<line x1="125.66" y1="64.86"  x2="126.86" y2="65.01" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000371; opacity:1.00 " points="117.43,26.09 117.55,26.13 117.79,29.13 " />
-<polygon style= "fill: #0008AE; opacity:1.00 " points="113.27,59.05 111.71,55.94 113.11,59.20 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="112.09,59.65 110.46,56.41 111.87,59.67 " />
-<line x1="112.54" y1="61.46"  x2="113.59" y2="61.91" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002D70; opacity:1.00 " points="136.80,83.79 136.34,83.88 136.78,83.98 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="118.52,29.16 118.76,29.14 118.28,26.16 " />
-<polygon style= "fill: #004670; opacity:1.00 " points="139.36,84.90 139.70,84.80 139.36,85.03 " />
-<polygon style= "fill: #004870; opacity:1.00 " points="135.42,82.67 135.19,82.80 135.52,82.87 " />
-<polygon style= "fill: #000682; opacity:1.00 " points="112.89,59.34 111.23,56.21 112.64,59.48 " />
-<line x1="122.58" y1="71.78"  x2="121.93" y2="71.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="124.45" y1="64.69"  x2="125.66" y2="64.86" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003782; opacity:1.00 " points="137.07,84.84 137.21,84.95 137.64,84.83 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="118.28,26.16 118.57,26.13 118.82,29.13 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="117.46,25.38 117.48,25.39 117.55,26.13 " />
-<polygon style= "fill: #000571; opacity:1.00 " points="110.46,56.41 111.87,59.67 110.29,56.38 " />
-<line x1="113.59" y1="61.91"  x2="114.70" y2="62.33" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005980; opacity:1.00 " points="136.51,82.82 136.58,82.88 136.35,83.00 " />
-<line x1="123.21" y1="64.49"  x2="124.45" y2="64.69" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000571; opacity:1.00 " points="110.95,56.32 112.36,59.58 110.69,56.38 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="118.45,25.39 118.51,25.39 118.57,26.13 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="117.48,25.39 117.64,25.41 117.23,22.42 " />
-<polygon style= "fill: #004B70; opacity:1.00 " points="140.38,84.87 140.71,84.77 140.42,85.09 " />
-<line x1="121.96" y1="64.27"  x2="123.21" y2="64.49" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017D; opacity:1.00 " points="118.51,25.39 118.73,25.36 118.27,22.41 " />
-<line x1="115.85" y1="62.73"  x2="117.03" y2="63.09" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005170; opacity:1.00 " points="136.50,81.80 136.27,81.92 136.54,81.91 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="117.23,22.42 117.43,22.44 117.68,25.42 " />
-<line x1="120.71" y1="64.02"  x2="121.96" y2="64.27" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="117.03" y1="63.09"  x2="118.24" y2="63.43" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003170; opacity:1.00 " points="137.72,83.70 137.70,83.89 137.23,83.98 " />
-<polygon style= "fill: #00017D; opacity:1.00 " points="118.27,22.41 118.54,22.38 118.79,25.35 " />
-<polygon style= "fill: #0009C3; opacity:1.00 " points="111.94,55.66 110.46,52.52 111.86,55.79 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="117.43,22.44 117.68,22.45 117.93,25.43 " />
-<line x1="119.47" y1="63.74"  x2="120.71" y2="64.02" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.24" y1="63.43"  x2="119.47" y2="63.74" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="121.93" y1="71.99"  x2="121.21" y2="72.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="92.25" y1="67.13"  x2="91.84" y2="66.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="117.43,22.44 117.68,22.45 117.43,20.84 " />
-<polygon style= "fill: #000694; opacity:1.00 " points="111.71,55.94 110.09,52.82 111.49,56.09 " />
-<polygon style= "fill: #00029C; opacity:1.00 " points="118.40,20.76 118.54,22.36 118.52,20.73 " />
-<polygon style= "fill: #000571; opacity:1.00 " points="110.96,56.32 109.29,53.12 110.69,56.39 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="137.80,80.61 137.70,80.74 137.47,80.87 " />
-<line x1="89.47" y1="24.05"  x2="89.69" y2="24.04" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005170; opacity:1.00 " points="141.77,84.75 141.78,84.82 141.44,84.88 " />
-<polygon style= "fill: #0000BC; opacity:1.00 " points="118.44,18.59 118.59,18.54 118.78,20.65 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="137.63,81.77 137.39,81.89 137.65,81.80 " />
-<polygon style= "fill: #0008AE; opacity:1.00 " points="110.46,52.52 111.86,55.79 110.31,52.67 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="118.40,20.76 118.52,20.73 118.21,18.64 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="118.21,18.64 118.44,18.59 118.62,20.71 " />
-<polygon style= "fill: #000091; opacity:1.00 " points="116.43,14.89 116.77,18.62 116.49,14.84 " />
-<polygon style= "fill: #0089A4; opacity:1.00 " points="138.64,81.93 138.46,81.71 138.45,81.84 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="109.29,53.12 110.69,56.39 109.05,53.14 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.70,20.83 117.36,18.72 117.83,20.83 " />
-<polygon style= "fill: #005470; opacity:1.00 " points="142.51,84.81 142.55,84.93 142.21,85.00 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="138.52,83.73 138.55,84.02 138.20,84.09 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.10,18.72 117.36,18.72 117.54,20.84 " />
-<polygon style= "fill: #00057A; opacity:1.00 " points="109.83,52.95 111.23,56.21 109.55,53.05 " />
-<line x1="92.74" y1="67.81"  x2="92.25" y2="67.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004084; opacity:1.00 " points="139.63,82.81 139.14,82.90 139.47,82.89 " />
-<line x1="88.60" y1="23.93"  x2="88.82" y2="23.99" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="143.48" y1="84.39"  x2="143.64" y2="84.36" style= "stroke: #00C9FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000BB; opacity:1.00 " points="118.25,14.80 118.59,18.53 118.09,14.86 " />
-<polygon style= "fill: #006170; opacity:1.00 " points="138.34,80.77 138.41,80.98 138.63,80.83 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.64,18.70 117.01,14.98 117.35,18.71 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.94,18.68 117.30,14.97 117.64,18.70 " />
-<polygon style= "fill: #0008AF; opacity:1.00 " points="110.31,52.67 110.46,52.52 108.94,49.47 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.59,14.95 117.94,18.68 117.30,14.97 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="109.05,53.14 109.29,53.12 107.69,49.95 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.30,14.97 117.64,18.70 117.01,14.98 " />
-<polygon style= "fill: #000071; opacity:1.00 " points="116.56,14.96 116.08,11.20 116.45,14.94 " />
-<line x1="87.80" y1="23.48"  x2="87.99" y2="23.62" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000683; opacity:1.00 " points="109.83,52.95 110.09,52.82 108.46,49.75 " />
-<polygon style= "fill: #007488; opacity:1.00 " points="144.43,84.79 144.59,84.93 144.55,84.94 " />
-<line x1="120.40" y1="72.40"  x2="119.53" y2="72.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00057A; opacity:1.00 " points="109.55,53.05 109.83,52.95 108.19,49.86 " />
-<polygon style= "fill: #006670; opacity:1.00 " points="139.21,80.85 139.31,80.98 139.52,80.84 " />
-<line x1="116.45" y1="11.25"  x2="116.45" y2="11.25" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="116.57" y1="11.48"  x2="116.57" y2="11.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="116.75,14.98 116.19,11.23 116.56,14.96 " />
-<polygon style= "fill: #006970; opacity:1.00 " points="139.47,79.80 139.70,79.66 139.45,79.90 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="139.63,83.70 139.64,83.83 139.15,83.92 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="117.86,14.89 117.22,11.19 117.59,14.93 " />
-<polygon style= "fill: #00949A; opacity:1.00 " points="140.52,80.71 140.64,80.77 140.42,80.90 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="117.59,14.93 116.93,11.22 117.29,14.96 " />
-<polygon style= "fill: #008DA0; opacity:1.00 " points="145.70,84.79 145.75,84.81 145.41,84.88 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="116.38,11.24 116.75,14.98 116.19,11.23 " />
-<polygon style= "fill: #000571; opacity:1.00 " points="107.92,49.92 108.18,49.86 109.55,53.05 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="117.50,11.15 117.86,14.89 117.22,11.19 " />
-<line x1="87.04" y1="22.55"  x2="87.16" y2="22.77" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="93.98" y1="69.07"  x2="93.31" y2="68.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.53" y1="72.60"  x2="118.58" y2="72.78" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000483; opacity:1.00 " points="108.46,49.75 108.43,49.67 108.72,49.62 " />
-<line x1="86.69" y1="21.59"  x2="86.75" y2="21.85" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003C70; opacity:1.00 " points="140.87,82.69 140.73,82.84 140.23,82.93 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="107.65,49.87 106.08,46.56 107.48,49.84 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="140.43,79.84 140.45,79.89 140.66,79.75 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="145.50,83.81 145.16,83.88 145.53,83.97 " />
-<line x1="93.19" y1="18.59"  x2="93.01" y2="18.38" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.38" y1="42.34"  x2="116.16" y2="42.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="92.15" y1="17.71"  x2="91.91" y2="17.58" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.11" y1="6.61"  x2="116.55" y2="10.11" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003C70; opacity:1.00 " points="140.64,83.70 140.72,83.93 140.23,84.02 " />
-<line x1="141.41" y1="79.50"  x2="141.60" y2="79.38" style= "stroke: #00FFF3;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="91.40" y1="17.38"  x2="91.13" y2="17.31" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="86.63" y1="20.81"  x2="86.63" y2="21.07" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.76" y1="8.76"  x2="117.00" y2="11.09" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000494; opacity:1.00 " points="108.91,49.40 107.28,46.26 108.69,49.54 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="108.15,49.78 106.48,46.56 107.88,49.84 " />
-<polygon style= "fill: #0006C3; opacity:1.00 " points="107.73,45.84 109.14,49.12 107.66,45.97 " />
-<line x1="94.72" y1="69.64"  x2="93.98" y2="69.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.21" y1="13.68"  x2="114.57" y2="13.61" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="86.80" y1="19.76"  x2="86.73" y2="20.02" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="89.23" y1="17.37"  x2="88.98" y2="17.46" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.38" y1="11.88"  x2="116.45" y2="11.25" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="114.31" y1="7.79"  x2="116.55" y2="10.11" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.76" y1="8.52"  x2="117.00" y2="11.09" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="114.37" y1="14.23"  x2="116.16" y2="11.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.12" y1="12.81"  x2="116.57" y2="11.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="118.58" y1="72.78"  x2="117.57" y2="72.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="88.48" y1="17.69"  x2="88.25" y2="17.84" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="115.66" y1="5.64"  x2="116.11" y2="9.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="87.29" y1="18.79"  x2="87.14" y2="19.02" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.21" y1="6.96"  x2="116.55" y2="10.11" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.76" y1="6.46"  x2="114.66" y2="5.88" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="106.48,46.56 107.88,49.84 106.25,46.58 " />
-<polygon style= "fill: #006970; opacity:1.00 " points="146.56,83.69 146.59,83.88 146.24,83.95 " />
-<polygon style= "fill: #007065; opacity:1.00 " points="141.45,78.73 141.46,78.91 141.68,78.77 " />
-<polygon style= "fill: #00037B; opacity:1.00 " points="107.02,46.39 108.43,49.68 106.74,46.50 " />
-<line x1="112.89" y1="14.71"  x2="112.16" y2="13.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="117.00" y1="11.09"  x2="117.93" y2="10.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.54" y1="12.43"  x2="116.16" y2="11.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="95.54" y1="70.19"  x2="94.72" y2="69.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003F70; opacity:1.00 " points="141.22,82.76 141.12,82.99 141.68,82.86 " />
-<line x1="112.16" y1="13.78"  x2="112.06" y2="12.91" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003F70; opacity:1.00 " points="141.74,83.77 141.21,83.85 141.86,83.93 " />
-<line x1="117.57" y1="72.95"  x2="116.51" y2="73.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006F70; opacity:1.00 " points="147.47,83.72 147.56,83.97 147.38,84.00 " />
-<line x1="114.86" y1="6.57"  x2="116.11" y2="9.14" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="113.53" y1="14.78"  x2="112.89" y2="14.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="116.66" y1="7.93"  x2="115.76" y2="8.52" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007060; opacity:1.00 " points="142.48,78.79 142.54,78.89 142.32,79.03 " />
-<polygon style= "fill: #0005AF; opacity:1.00 " points="107.66,45.97 106.09,42.82 107.50,46.11 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="106.48,46.56 104.84,43.29 106.25,46.58 " />
-<line x1="114.38" y1="11.88"  x2="115.12" y2="12.81" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="96.43" y1="70.69"  x2="95.54" y2="70.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.28" y1="13.36"  x2="114.37" y2="14.23" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007F67; opacity:1.00 " points="143.43,78.75 143.55,78.85 143.33,78.98 " />
-<line x1="115.31" y1="7.55"  x2="114.31" y2="7.79" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037B; opacity:1.00 " points="107.02,46.39 105.34,43.21 106.74,46.50 " />
-<line x1="92.71" y1="23.34"  x2="92.89" y2="23.22" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="116.51" y1="73.10"  x2="115.39" y2="73.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00706A; opacity:1.00 " points="148.44,83.82 148.54,83.98 148.88,83.89 " />
-<line x1="118.76" y1="12.47"  x2="117.89" y2="11.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="112.06" y1="12.91"  x2="112.70" y2="12.98" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.32" y1="41.86"  x2="114.99" y2="41.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.43" y1="13.91"  x2="113.53" y2="14.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="115.77" y1="5.98"  x2="114.86" y2="6.57" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004370; opacity:1.00 " points="142.36,83.80 142.85,83.67 142.43,83.91 " />
-<line x1="97.38" y1="71.15"  x2="96.43" y2="70.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000483; opacity:1.00 " points="105.88,42.97 107.28,46.26 105.61,43.10 " />
-<polygon style= "fill: #000372; opacity:1.00 " points="105.34,43.21 106.74,46.50 105.07,43.27 " />
-<polygon style= "fill: #004370; opacity:1.00 " points="142.18,82.84 142.16,82.99 142.70,82.84 " />
-<polygon style= "fill: #007055; opacity:1.00 " points="143.46,77.82 143.67,77.67 143.52,78.01 " />
-<line x1="117.89" y1="11.86"  x2="117.93" y2="10.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007067; opacity:1.00 " points="149.57,83.73 149.66,83.85 149.30,83.91 " />
-<line x1="115.39" y1="73.23"  x2="114.23" y2="73.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000371; opacity:1.00 " points="104.30,42.41 104.67,43.27 104.43,42.43 " />
-<line x1="98.40" y1="71.57"  x2="97.38" y2="71.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00704E; opacity:1.00 " points="144.57,76.70 144.36,76.83 144.54,76.86 " />
-<polygon style= "fill: #008879; opacity:1.00 " points="150.41,83.75 150.54,83.88 150.18,83.94 " />
-<polygon style= "fill: #000281; opacity:1.00 " points="104.21,42.34 104.28,42.39 103.16,39.91 " />
-<polygon style= "fill: #005082; opacity:1.00 " points="143.51,83.76 143.70,83.91 143.17,83.98 " />
-<line x1="120.89" y1="10.80"  x2="120.86" y2="12.00" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007050; opacity:1.00 " points="144.52,77.71 144.30,77.85 144.67,77.90 " />
-<polygon style= "fill: #000483; opacity:1.00 " points="105.25,42.24 105.61,43.10 105.44,42.14 " />
-<line x1="114.23" y1="73.34"  x2="113.03" y2="73.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.53" y1="10.72"  x2="119.43" y2="10.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="120.86" y1="12.00"  x2="119.96" y2="12.59" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009967; opacity:1.00 " points="145.31,77.80 145.46,77.87 145.68,77.73 " />
-<line x1="99.48" y1="71.95"  x2="98.40" y2="71.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="118.49" y1="11.93"  x2="118.53" y2="10.72" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="120.03" y1="10.19"  x2="120.89" y2="10.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003C3; opacity:1.00 " points="104.84,39.38 104.92,39.25 105.96,41.69 " />
-<line x1="90.79" y1="23.50"  x2="91.01" y2="23.57" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00639E; opacity:1.00 " points="143.50,82.96 143.35,82.95 143.54,82.73 " />
-<polygon style= "fill: #000294; opacity:1.00 " points="105.51,42.11 105.67,42.00 104.46,39.67 " />
-<polygon style= "fill: #000172; opacity:1.00 " points="104.70,42.41 104.90,42.36 103.66,39.97 " />
-<line x1="113.03" y1="73.42"  x2="111.80" y2="73.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="114.23" y1="41.50"  x2="113.81" y2="41.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="100.60" y1="72.28"  x2="99.48" y2="71.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.96" y1="12.59"  x2="119.09" y2="11.99" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000294; opacity:1.00 " points="104.46,39.67 104.69,39.53 105.73,41.96 " />
-<polygon style= "fill: #007047; opacity:1.00 " points="145.47,76.72 145.50,76.82 145.28,76.96 " />
-<line x1="111.80" y1="73.46"  x2="110.55" y2="73.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006AA3; opacity:1.00 " points="144.27,83.84 144.46,83.89 144.99,83.81 " />
-<line x1="119.13" y1="10.79"  x2="120.03" y2="10.19" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017B; opacity:1.00 " points="103.93,39.91 104.20,39.80 105.25,42.24 " />
-<line x1="101.77" y1="72.57"  x2="100.60" y2="72.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="113.81" y1="41.38"  x2="113.38" y2="41.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="119.09" y1="11.99"  x2="119.13" y2="10.79" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="110.55" y1="73.48"  x2="109.29" y2="73.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="102.97" y1="72.82"  x2="101.77" y2="72.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="89.64" y1="22.73"  x2="89.81" y2="22.90" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="109.29" y1="73.47"  x2="108.01" y2="73.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00AF5F; opacity:1.00 " points="147.53,76.70 147.69,76.71 147.46,76.85 " />
-<line x1="104.21" y1="73.03"  x2="102.97" y2="72.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007040; opacity:1.00 " points="146.56,76.59 146.68,76.73 146.46,76.86 " />
-<line x1="108.01" y1="73.42"  x2="106.73" y2="73.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="105.46" y1="73.20"  x2="104.21" y2="73.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="106.73" y1="73.33"  x2="105.46" y2="73.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="103.66,39.97 102.01,36.69 103.43,40.00 " />
-<polygon style= "fill: #00703E; opacity:1.00 " points="146.53,75.74 146.54,75.92 146.32,76.05 " />
-<polygon style= "fill: #00017B; opacity:1.00 " points="104.20,39.80 102.51,36.60 103.93,39.91 " />
-<polygon style= "fill: #0002AF; opacity:1.00 " points="103.43,36.07 104.84,39.38 103.27,36.22 " />
-<polygon style= "fill: #004A70; opacity:1.00 " points="144.36,82.82 144.38,82.99 144.96,82.85 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="102.24,36.66 103.66,39.97 102.01,36.69 " />
-<line x1="88.93" y1="21.41"  x2="89.01" y2="21.66" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="112.43" y1="40.99"  x2="111.93" y2="40.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007037; opacity:1.00 " points="147.50,75.64 147.27,75.77 147.61,75.86 " />
-<line x1="88.81" y1="20.64"  x2="88.83" y2="20.90" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000171; opacity:1.00 " points="101.84,36.67 102.01,36.69 101.03,34.62 " />
-<line x1="92.24" y1="16.77"  x2="91.96" y2="16.79" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="88.91" y1="19.57"  x2="88.86" y2="19.84" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007F39; opacity:1.00 " points="148.25,75.82 148.39,75.94 148.61,75.79 " />
-<line x1="91.43" y1="16.91"  x2="91.17" y2="17.00" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006D9D; opacity:1.00 " points="146.28,81.82 146.51,81.99 146.52,81.80 " />
-<line x1="89.32" y1="18.57"  x2="89.20" y2="18.81" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="90.22" y1="17.54"  x2="90.01" y2="17.72" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004B70; opacity:1.00 " points="145.55,82.70 145.58,82.98 144.98,83.05 " />
-<line x1="111.41" y1="40.70"  x2="110.87" y2="40.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000283; opacity:1.00 " points="102.79,36.49 103.05,36.36 102.01,34.39 " />
-<polygon style= "fill: #000294; opacity:1.00 " points="102.25,34.25 102.39,34.16 103.27,36.21 " />
-<polygon style= "fill: #00702E; opacity:1.00 " points="148.57,74.74 148.34,74.87 148.61,74.87 " />
-<polygon style= "fill: #000171; opacity:1.00 " points="101.46,34.59 101.63,34.54 102.51,36.60 " />
-<polygon style= "fill: #0000C3; opacity:1.00 " points="102.01,32.75 102.09,32.63 102.63,33.89 " />
-<polygon style= "fill: #000081; opacity:1.00 " points="100.33,33.29 100.42,33.35 100.96,34.61 " />
-<line x1="110.32" y1="40.38"  x2="109.77" y2="40.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="99.78" y1="34.54"  x2="99.43" y2="34.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007027; opacity:1.00 " points="149.53,73.79 149.30,73.92 149.51,73.83 " />
-<line x1="109.77" y1="40.21"  x2="109.20" y2="40.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007027; opacity:1.00 " points="149.45,74.82 149.51,74.89 149.72,74.74 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="101.09,33.28 101.37,33.18 101.91,34.44 " />
-<line x1="100.57" y1="35.37"  x2="100.16" y2="34.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009A31; opacity:1.00 " points="150.30,74.93 150.52,74.79 150.46,75.00 " />
-<line x1="108.04" y1="39.62"  x2="107.46" y2="39.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004F70; opacity:1.00 " points="146.91,82.72 146.92,82.87 146.23,82.92 " />
-<line x1="101.93" y1="36.50"  x2="101.46" y2="36.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="107.46" y1="39.40"  x2="106.87" y2="39.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000094; opacity:1.00 " points="101.85,32.90 100.20,29.71 101.63,33.04 " />
-<line x1="102.43" y1="36.86"  x2="101.93" y2="36.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007A; opacity:1.00 " points="101.37,33.18 99.66,29.95 101.09,33.28 " />
-<polygon style= "fill: #007045; opacity:1.00 " points="156.48,81.71 156.91,81.64 156.41,81.91 " />
-<line x1="106.29" y1="38.93"  x2="105.71" y2="38.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005170; opacity:1.00 " points="147.24,81.84 147.15,81.94 147.89,81.82 " />
-<line x1="103.47" y1="37.52"  x2="102.94" y2="37.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000AE; opacity:1.00 " points="100.58,29.43 102.01,32.75 100.42,29.57 " />
-<line x1="105.71" y1="38.68"  x2="105.14" y2="38.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="104.57" y1="38.13"  x2="104.02" y2="37.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00701E; opacity:1.00 " points="150.40,73.69 150.46,73.93 150.70,73.78 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="99.39,30.02 100.82,33.35 99.16,30.05 " />
-<polygon style= "fill: #000082; opacity:1.00 " points="100.20,29.71 101.63,33.04 99.94,29.85 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="147.61,82.81 146.92,82.87 147.63,82.87 " />
-<polygon style= "fill: #007019; opacity:1.00 " points="151.32,73.79 151.43,73.94 151.66,73.79 " />
-<polygon style= "fill: #007017; opacity:1.00 " points="151.62,72.71 151.60,72.80 151.36,72.93 " />
-<polygon style= "fill: #007042; opacity:1.00 " points="157.75,81.80 157.27,81.83 157.72,82.00 " />
-<polygon style= "fill: #009A1E; opacity:1.00 " points="152.49,73.80 152.60,73.85 152.36,73.98 " />
-<polygon style= "fill: #00749C; opacity:1.00 " points="148.49,81.91 148.41,81.75 148.67,81.82 " />
-<polygon style= "fill: #0000C3; opacity:1.00 " points="99.23,25.96 100.66,29.30 99.15,26.09 " />
-<polygon style= "fill: #000082; opacity:1.00 " points="100.20,29.71 98.50,26.51 99.94,29.84 " />
-<polygon style= "fill: #00703E; opacity:1.00 " points="158.23,81.77 158.21,81.93 158.69,81.86 " />
-<polygon style= "fill: #000071; opacity:1.00 " points="97.73,26.71 99.16,30.04 97.55,26.69 " />
-<polygon style= "fill: #000094; opacity:1.00 " points="98.99,26.23 100.42,29.57 98.77,26.38 " />
-<line x1="95.39" y1="19.52"  x2="97.89" y2="28.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000071; opacity:1.00 " points="98.22,26.61 99.66,29.95 97.95,26.68 " />
-<polygon style= "fill: #007010; opacity:1.00 " points="152.58,72.57 152.64,72.77 152.40,72.90 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="98.50,26.51 99.94,29.84 98.22,26.61 " />
-<polygon style= "fill: #005470; opacity:1.00 " points="148.35,82.77 148.43,83.01 149.25,82.88 " />
-<polygon style= "fill: #00700B; opacity:1.00 " points="153.36,72.70 153.52,72.91 153.63,72.85 " />
-<polygon style= "fill: #00703B; opacity:1.00 " points="159.66,81.71 159.63,81.97 159.15,82.00 " />
-<polygon style= "fill: #007009; opacity:1.00 " points="153.54,71.76 153.28,71.89 153.55,71.97 " />
-<polygon style= "fill: #000093; opacity:1.00 " points="98.99,26.23 97.32,23.02 98.77,26.37 " />
-<polygon style= "fill: #000071; opacity:1.00 " points="98.22,26.61 96.51,23.33 97.95,26.68 " />
-<polygon style= "fill: #009B08; opacity:1.00 " points="154.36,72.75 154.52,72.82 154.76,72.68 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="149.45,81.81 150.37,81.71 149.36,81.90 " />
-<polygon style= "fill: #0000AE; opacity:1.00 " points="97.70,22.73 99.14,26.09 97.54,22.88 " />
-<polygon style= "fill: #00AD4A; opacity:1.00 " points="164.39,80.00 164.60,80.16 162.84,79.71 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="149.25,82.88 150.07,82.75 149.30,83.02 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="96.51,23.33 97.95,26.68 96.28,23.36 " />
-<line x1="99.43" y1="34.11"  x2="97.89" y2="28.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007037; opacity:1.00 " points="160.17,81.67 160.13,81.93 160.74,81.87 " />
-<polygon style= "fill: #000082; opacity:1.00 " points="97.32,23.02 98.77,26.37 97.05,23.15 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="97.05,23.15 98.50,26.50 96.78,23.26 " />
-<polygon style= "fill: #007130; opacity:1.00 " points="163.65,80.07 163.88,79.96 162.09,79.77 " />
-<polygon style= "fill: #007002; opacity:1.00 " points="154.62,71.63 154.65,71.75 154.39,71.88 " />
-<polygon style= "fill: #007030; opacity:1.00 " points="163.23,81.10 163.22,80.82 161.67,80.80 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="150.71,81.67 150.53,81.87 150.21,81.88 " />
-<polygon style= "fill: #0000AE; opacity:1.00 " points="97.70,22.73 96.09,19.52 97.54,22.88 " />
-<polygon style= "fill: #0083A7; opacity:1.00 " points="150.47,82.98 150.60,82.88 150.38,82.71 " />
-<polygon style= "fill: #027000; opacity:1.00 " points="155.36,71.82 155.60,71.67 155.46,71.96 " />
-<polygon style= "fill: #007033; opacity:1.00 " points="161.34,81.81 161.95,81.75 161.32,81.96 " />
-<polygon style= "fill: #000081; opacity:1.00 " points="97.32,23.02 95.60,19.79 97.05,23.15 " />
-<polygon style= "fill: #000079; opacity:1.00 " points="97.05,23.15 95.32,19.89 96.77,23.26 " />
-<polygon style= "fill: #00AA49; opacity:1.00 " points="163.66,82.82 163.43,82.76 163.46,82.94 " />
-<polygon style= "fill: #047000; opacity:1.00 " points="155.63,70.73 155.37,70.86 155.63,70.77 " />
-<polygon style= "fill: #089B00; opacity:1.00 " points="156.46,71.73 156.65,71.81 156.39,71.94 " />
-<polygon style= "fill: #00853B; opacity:1.00 " points="162.77,82.75 162.93,82.89 162.33,82.89 " />
-<line x1="95.45" y1="19.54"  x2="95.03" y2="20.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000071; opacity:1.00 " points="95.32,19.89 96.77,23.26 95.05,19.97 " />
-<polygon style= "fill: #007032; opacity:1.00 " points="162.56,81.69 162.52,81.96 161.92,81.96 " />
-<polygon style= "fill: #0B7000; opacity:1.00 " points="156.44,70.61 156.49,70.85 156.77,70.70 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="151.32,81.82 152.57,81.74 151.26,81.88 " />
-<line x1="92.16" y1="20.27"  x2="95.45" y2="19.54" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="93.63" y1="22.14"  x2="95.03" y2="20.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007032; opacity:1.00 " points="163.38,80.53 165.43,80.94 163.30,80.82 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="151.09,82.72 151.15,82.91 152.26,82.80 " />
-<line x1="95.45" y1="19.54"  x2="95.07" y2="16.39" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="93.63" y1="22.14"  x2="93.01" y2="22.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="95.45" y1="19.54"  x2="92.79" y2="20.34" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.16" y1="16.99"  x2="95.45" y2="19.54" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #107000; opacity:1.00 " points="157.39,69.76 157.35,69.88 157.65,69.73 " />
-<line x1="93.52" y1="21.28"  x2="95.45" y2="19.54" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0E7000; opacity:1.00 " points="157.49,70.77 157.20,70.89 157.59,70.89 " />
-<line x1="90.57" y1="22.25"  x2="93.75" y2="20.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="92.17" y1="14.93"  x2="93.08" y2="14.33" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00702E; opacity:1.00 " points="163.37,81.74 163.32,81.95 164.25,81.94 " />
-<line x1="96.29" y1="20.34"  x2="96.29" y2="20.34" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="96.32" y1="19.14"  x2="96.32" y2="19.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="91.93" y1="23.25"  x2="93.75" y2="20.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.16" y1="14.45"  x2="94.54" y2="17.60" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007032; opacity:1.00 " points="165.43,80.94 163.30,80.82 165.35,81.23 " />
-<polygon style= "fill: #005C70; opacity:1.00 " points="152.57,81.74 152.99,81.72 152.41,81.90 " />
-<polygon style= "fill: #178200; opacity:1.00 " points="158.59,70.65 158.74,70.77 158.45,70.89 " />
-<polygon style= "fill: #005B70; opacity:1.00 " points="152.26,82.80 152.63,82.76 152.34,83.02 " />
-<line x1="94.54" y1="17.60"  x2="93.25" y2="15.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="91.93" y1="23.25"  x2="91.31" y2="23.18" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.16" y1="16.99"  x2="93.17" y2="17.22" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="95.07" y1="16.39"  x2="94.16" y2="16.99" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00702C; opacity:1.00 " points="164.36,82.77 165.22,82.77 164.44,82.89 " />
-<polygon style= "fill: #00702C; opacity:1.00 " points="164.27,81.82 164.25,81.94 165.18,81.92 " />
-<line x1="91.31" y1="20.82"  x2="91.93" y2="20.90" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="92.79" y1="20.34"  x2="93.52" y2="21.28" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="92.67" y1="21.84"  x2="92.78" y2="22.70" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="93.71" y1="16.02"  x2="92.71" y2="16.25" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.62" y1="15.42"  x2="93.71" y2="16.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #177000; opacity:1.00 " points="158.50,69.78 158.78,69.63 158.55,70.02 " />
-<line x1="99.24" y1="20.48"  x2="96.61" y2="19.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005C70; opacity:1.00 " points="153.00,81.72 152.81,81.91 154.12,81.90 " />
-<line x1="96.61" y1="19.67"  x2="99.28" y2="19.28" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009542; opacity:1.00 " points="165.58,80.68 165.70,80.81 165.42,80.93 " />
-<line x1="90.46" y1="21.38"  x2="91.08" y2="21.46" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #1B7000; opacity:1.00 " points="159.67,68.73 159.33,68.84 159.56,68.86 " />
-<polygon style= "fill: #00A23E; opacity:1.00 " points="165.59,83.00 165.68,82.85 165.45,82.77 " />
-<line x1="91.82" y1="22.39"  x2="91.93" y2="23.25" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="93.25" y1="15.05"  x2="92.25" y2="15.28" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="94.16" y1="14.45"  x2="93.25" y2="15.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="96.32" y1="19.14"  x2="97.23" y2="18.54" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00A53F; opacity:1.00 " points="165.40,81.91 165.64,81.78 165.54,81.66 " />
-<line x1="97.81" y1="18.61"  x2="98.69" y2="19.21" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="98.40" y1="18.68"  x2="96.61" y2="19.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="97.45" y1="20.47"  x2="96.61" y2="19.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #1B7000; opacity:1.00 " points="159.48,69.68 159.14,69.80 159.57,69.89 " />
-<line x1="91.08" y1="21.46"  x2="91.82" y2="22.39" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="97.49" y1="19.27"  x2="96.61" y2="19.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005B70; opacity:1.00 " points="153.83,82.85 152.62,82.76 153.87,82.98 " />
-<polygon style= "fill: #00702B; opacity:1.00 " points="165.32,82.50 165.40,82.77 166.88,82.88 " />
-<line x1="99.28" y1="19.28"  x2="99.24" y2="20.48" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="99.24" y1="20.48"  x2="98.33" y2="21.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="96.87" y1="20.40"  x2="96.90" y2="19.20" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #207000; opacity:1.00 " points="160.37,69.83 160.70,69.68 160.45,69.93 " />
-<polygon style= "fill: #007033; opacity:1.00 " points="166.90,81.03 167.04,80.90 165.68,80.70 " />
-<polygon style= "fill: #005E70; opacity:1.00 " points="154.21,81.81 154.12,81.90 155.24,81.89 " />
-<polygon style= "fill: #00702B; opacity:1.00 " points="167.05,81.93 165.54,81.66 167.00,82.03 " />
-<polygon style= "fill: #227000; opacity:1.00 " points="160.48,68.78 160.48,68.89 160.82,68.73 " />
-<polygon style= "fill: #2A8200; opacity:1.00 " points="161.51,69.61 161.69,69.74 161.34,69.86 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="154.85,82.63 154.86,82.93 153.83,82.85 " />
-<polygon style= "fill: #00829B; opacity:1.00 " points="155.52,81.96 155.49,81.78 155.72,81.95 " />
-<polygon style= "fill: #007136; opacity:1.00 " points="167.78,81.02 168.03,80.90 167.28,80.77 " />
-<polygon style= "fill: #38A000; opacity:1.00 " points="161.52,69.00 161.62,68.73 161.48,68.71 " />
-<polygon style= "fill: #007029; opacity:1.00 " points="167.88,82.66 167.88,82.96 166.84,82.77 " />
-<polygon style= "fill: #308300; opacity:1.00 " points="162.83,67.70 162.39,67.80 162.70,67.77 " />
-<polygon style= "fill: #007035; opacity:1.00 " points="167.31,82.03 167.32,81.74 167.60,81.85 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="154.84,82.63 154.85,82.93 156.88,82.94 " />
-<polygon style= "fill: #008732; opacity:1.00 " points="168.24,83.61 170.42,84.09 168.04,83.45 " />
-<polygon style= "fill: #2B7000; opacity:1.00 " points="162.83,68.70 162.39,68.80 162.88,68.83 " />
-<polygon style= "fill: #007029; opacity:1.00 " points="167.84,82.95 170.21,83.29 167.84,82.66 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="156.94,82.64 156.88,82.91 154.84,82.63 " />
-<polygon style= "fill: #2E7000; opacity:1.00 " points="163.36,67.79 163.32,67.86 163.78,67.71 " />
-<polygon style= "fill: #2E7000; opacity:1.00 " points="163.72,68.54 163.82,68.77 163.38,68.87 " />
-<polygon style= "fill: #007039; opacity:1.00 " points="168.31,81.80 168.92,82.04 168.39,81.68 " />
-<polygon style= "fill: #008CA5; opacity:1.00 " points="157.50,83.90 157.57,83.72 157.29,83.74 " />
-<polygon style= "fill: #327000; opacity:1.00 " points="164.24,68.70 164.39,68.91 165.00,68.79 " />
-<polygon style= "fill: #008C4A; opacity:1.00 " points="170.66,81.88 170.53,82.01 170.45,81.72 " />
-<polygon style= "fill: #327000; opacity:1.00 " points="164.85,67.68 164.81,67.76 164.16,67.83 " />
-<polygon style= "fill: #00703B; opacity:1.00 " points="169.43,81.93 169.65,81.74 169.26,81.64 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="157.42,83.57 157.55,83.77 159.30,83.95 " />
-<polygon style= "fill: #337000; opacity:1.00 " points="165.61,68.65 165.70,68.79 165.05,68.86 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="157.42,82.71 157.35,82.96 159.30,83.08 " />
-<polygon style= "fill: #00703D; opacity:1.00 " points="169.64,82.94 169.30,82.80 169.66,82.73 " />
-<polygon style= "fill: #357000; opacity:1.00 " points="165.46,67.70 165.44,67.82 166.11,67.67 " />
-<polygon style= "fill: #52A700; opacity:1.00 " points="167.60,68.78 167.52,68.62 167.39,68.89 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="159.45,82.82 159.30,83.08 157.42,82.71 " />
-<polygon style= "fill: #408200; opacity:1.00 " points="166.39,68.74 166.71,68.68 166.56,68.88 " />
-<polygon style= "fill: #4D9D00; opacity:1.00 " points="166.55,67.90 166.40,67.88 166.61,67.66 " />
-<polygon style= "fill: #00819B; opacity:1.00 " points="159.57,82.95 159.46,82.83 159.74,82.80 " />
-<polygon style= "fill: #008C53; opacity:1.00 " points="170.54,83.91 170.88,84.11 170.43,83.75 " />
-<polygon style= "fill: #007042; opacity:1.00 " points="170.44,82.86 170.78,83.06 170.56,82.69 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="159.22,83.67 159.29,83.95 160.86,84.16 " />
-<polygon style= "fill: #448500; opacity:1.00 " points="167.34,68.72 167.48,68.84 168.85,68.80 " />
-<polygon style= "fill: #008853; opacity:1.00 " points="171.63,82.83 171.35,82.75 171.42,82.90 " />
-<polygon style= "fill: #00839D; opacity:1.00 " points="161.79,82.92 160.16,82.50 161.73,82.93 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="167.14,67.62 167.10,67.82 168.64,67.70 " />
-<polygon style= "fill: #007289; opacity:1.00 " points="161.48,82.97 161.29,83.06 159.66,82.63 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="160.85,83.87 160.85,84.10 159.22,83.67 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="168.64,67.70 168.59,67.98 167.08,67.91 " />
-<polygon style= "fill: #00722F; opacity:1.00 " points="173.84,83.91 173.73,84.00 173.00,83.69 " />
-<polygon style= "fill: #008A3B; opacity:1.00 " points="174.20,83.71 174.08,83.76 174.90,84.04 " />
-<polygon style= "fill: #007049; opacity:1.00 " points="171.58,84.04 171.64,83.91 171.41,83.77 " />
-<polygon style= "fill: #007F9A; opacity:1.00 " points="161.53,83.95 161.37,83.93 161.60,83.72 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="168.91,68.60 169.05,68.81 170.86,69.02 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="169.07,67.47 168.93,67.71 171.02,67.90 " />
-<polygon style= "fill: #009241; opacity:1.00 " points="174.45,84.96 174.70,84.76 174.55,84.68 " />
-<polygon style= "fill: #00704E; opacity:1.00 " points="172.51,84.09 172.73,83.93 172.48,83.77 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="170.79,68.75 170.86,69.02 168.91,68.60 " />
-<polygon style= "fill: #397000; opacity:1.00 " points="171.02,67.90 170.87,68.15 168.92,67.73 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="162.38,84.82 162.46,84.94 163.55,85.20 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="162.48,83.84 163.74,84.08 162.41,83.95 " />
-<polygon style= "fill: #007052; opacity:1.00 " points="172.54,84.91 172.55,84.86 172.40,84.72 " />
-<polygon style= "fill: #007033; opacity:1.00 " points="175.55,84.86 175.04,84.60 175.45,85.00 " />
-<polygon style= "fill: #4E9800; opacity:1.00 " points="171.33,67.88 171.26,67.71 171.53,67.79 " />
-<polygon style= "fill: #005C72; opacity:1.00 " points="163.96,83.89 163.74,84.08 162.56,83.70 " />
-<polygon style= "fill: #007035; opacity:1.00 " points="175.25,85.68 175.29,85.83 175.78,86.02 " />
-<polygon style= "fill: #007C9A; opacity:1.00 " points="164.44,83.95 164.48,83.76 164.63,84.00 " />
-<polygon style= "fill: #0083A3; opacity:1.00 " points="163.48,84.92 163.65,84.88 163.50,84.63 " />
-<polygon style= "fill: #008A44; opacity:1.00 " points="176.54,84.83 176.46,84.86 177.03,85.09 " />
-<polygon style= "fill: #377000; opacity:1.00 " points="171.68,68.82 171.01,68.53 171.68,68.98 " />
-<polygon style= "fill: #007059; opacity:1.00 " points="173.39,84.86 173.50,84.79 173.64,84.96 " />
-<polygon style= "fill: #008E49; opacity:1.00 " points="176.55,85.97 176.38,85.95 176.63,85.75 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="173.40,85.92 173.54,86.08 173.50,85.70 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="164.49,84.86 165.43,85.08 164.45,84.99 " />
-<polygon style= "fill: #347200; opacity:1.00 " points="172.44,69.71 172.81,69.84 172.55,69.89 " />
-<polygon style= "fill: #337000; opacity:1.00 " points="172.59,68.61 173.03,68.73 172.46,68.81 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="165.59,84.82 165.44,85.04 164.54,84.70 " />
-<polygon style= "fill: #005470; opacity:1.00 " points="165.58,85.73 165.65,86.00 165.40,85.90 " />
-<polygon style= "fill: #337400; opacity:1.00 " points="173.43,68.66 173.22,68.82 173.63,69.02 " />
-<polygon style= "fill: #007366; opacity:1.00 " points="174.50,85.95 174.36,85.79 174.68,85.89 " />
-<polygon style= "fill: #00723E; opacity:1.00 " points="177.87,85.95 177.73,86.05 177.35,85.83 " />
-<polygon style= "fill: #009F59; opacity:1.00 " points="178.39,85.76 178.83,85.98 178.23,85.77 " />
-<polygon style= "fill: #00688A; opacity:1.00 " points="166.66,84.90 166.60,84.93 166.08,84.70 " />
-<polygon style= "fill: #00703E; opacity:1.00 " points="177.84,86.85 177.82,87.08 177.44,86.86 " />
-<polygon style= "fill: #307000; opacity:1.00 " points="173.63,69.81 173.27,69.58 173.61,69.96 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="174.43,86.98 174.57,86.83 174.44,86.69 " />
-<polygon style= "fill: #005370; opacity:1.00 " points="166.83,85.96 166.11,85.65 166.82,86.09 " />
-<polygon style= "fill: #00807E; opacity:1.00 " points="174.56,88.05 174.51,87.83 174.41,87.69 " />
-<polygon style= "fill: #2C7000; opacity:1.00 " points="174.63,69.79 174.47,70.00 174.11,69.77 " />
-<polygon style= "fill: #008A88; opacity:1.00 " points="175.34,86.88 175.59,86.88 175.45,86.71 " />
-<polygon style= "fill: #007042; opacity:1.00 " points="178.63,86.93 178.32,86.73 178.55,87.16 " />
-<polygon style= "fill: #2B7000; opacity:1.00 " points="174.57,70.72 174.62,70.98 174.38,70.83 " />
-<polygon style= "fill: #005271; opacity:1.00 " points="167.60,86.86 167.72,87.07 167.01,86.76 " />
-<polygon style= "fill: #389200; opacity:1.00 " points="175.43,69.85 175.43,69.68 175.64,69.85 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="167.80,85.76 167.64,85.99 166.93,85.68 " />
-<polygon style= "fill: #0083B9; opacity:1.00 " points="169.62,85.95 169.13,85.71 169.47,85.84 " />
-<polygon style= "fill: #007247; opacity:1.00 " points="179.66,86.91 179.35,86.71 179.56,86.99 " />
-<polygon style= "fill: #00A2AF; opacity:1.00 " points="176.31,87.67 176.45,87.78 176.55,87.94 " />
-<polygon style= "fill: #005273; opacity:1.00 " points="168.67,85.86 168.18,85.62 168.50,86.00 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="170.55,89.88 170.27,89.95 170.54,89.66 " />
-<polygon style= "fill: #267800; opacity:1.00 " points="175.40,71.66 175.46,71.77 175.68,71.96 " />
-<polygon style= "fill: #257000; opacity:1.00 " points="175.62,70.76 175.53,70.86 175.29,70.65 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="171.72,89.83 171.45,89.91 171.69,89.67 " />
-<polygon style= "fill: #004D70; opacity:1.00 " points="168.17,86.57 168.15,86.80 168.77,87.01 " />
-<polygon style= "fill: #006670; opacity:1.00 " points="175.43,87.85 175.57,87.76 175.67,87.92 " />
-<polygon style= "fill: #006377; opacity:1.00 " points="172.67,89.97 172.63,89.85 172.35,89.92 " />
-<polygon style= "fill: #2B8C00; opacity:1.00 " points="176.64,70.84 176.44,70.90 176.20,70.69 " />
-<polygon style= "fill: #004B72; opacity:1.00 " points="169.44,87.77 169.79,87.91 169.55,87.96 " />
-<polygon style= "fill: #2B9D00; opacity:1.00 " points="176.47,71.96 176.44,71.67 176.57,71.75 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="175.73,88.91 175.72,88.82 175.41,88.89 " />
-<polygon style= "fill: #004A70; opacity:1.00 " points="169.63,86.68 170.02,86.81 169.48,86.88 " />
-<polygon style= "fill: #0078B9; opacity:1.00 " points="171.43,86.84 171.25,86.70 171.84,87.02 " />
-<polygon style= "fill: #006E87; opacity:1.00 " points="176.68,88.91 176.46,88.74 176.47,88.90 " />
-<polygon style= "fill: #208D00; opacity:1.00 " points="177.56,71.68 177.36,71.74 177.57,71.94 " />
-<polygon style= "fill: #007063; opacity:1.00 " points="177.36,88.91 177.68,88.86 177.33,88.71 " />
-<polygon style= "fill: #004B73; opacity:1.00 " points="170.47,86.74 170.27,86.91 170.86,87.14 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="178.71,87.91 178.23,87.97 178.81,87.75 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="178.67,88.99 178.23,89.05 178.60,88.77 " />
-<polygon style= "fill: #004670; opacity:1.00 " points="170.50,87.74 170.48,87.92 171.03,88.13 " />
-<polygon style= "fill: #00705A; opacity:1.00 " points="179.59,87.89 179.64,87.80 179.18,87.86 " />
-<polygon style= "fill: #147000; opacity:1.00 " points="177.69,72.79 177.55,72.94 177.38,72.73 " />
-<polygon style= "fill: #127000; opacity:1.00 " points="177.54,73.70 177.57,73.90 177.39,73.70 " />
-<polygon style= "fill: #00705A; opacity:1.00 " points="179.58,88.98 179.55,88.86 179.11,88.93 " />
-<polygon style= "fill: #158D00; opacity:1.00 " points="178.45,72.71 178.39,72.72 178.60,72.92 " />
-<polygon style= "fill: #004672; opacity:1.00 " points="171.62,88.90 171.74,89.10 171.20,88.81 " />
-<polygon style= "fill: #004470; opacity:1.00 " points="171.84,87.80 171.68,88.02 171.14,87.74 " />
-<polygon style= "fill: #00709F; opacity:1.00 " points="177.46,89.94 177.64,90.00 177.52,89.83 " />
-<polygon style= "fill: #007055; opacity:1.00 " points="180.47,87.90 180.49,87.84 180.94,87.81 " />
-<polygon style= "fill: #007055; opacity:1.00 " points="180.49,88.93 180.94,88.90 180.43,88.73 " />
-<polygon style= "fill: #007053; opacity:1.00 " points="181.07,88.02 181.21,87.75 181.86,87.85 " />
-<polygon style= "fill: #0B7000; opacity:1.00 " points="178.57,73.75 178.43,73.55 178.41,73.90 " />
-<polygon style= "fill: #004574; opacity:1.00 " points="172.61,87.88 172.32,87.71 172.41,88.03 " />
-<polygon style= "fill: #007053; opacity:1.00 " points="181.71,88.92 181.08,88.90 181.65,88.71 " />
-<polygon style= "fill: #0BA200; opacity:1.00 " points="179.63,73.95 179.49,73.75 179.47,73.95 " />
-<polygon style= "fill: #067000; opacity:1.00 " points="178.46,74.73 178.61,74.90 178.43,74.82 " />
-<polygon style= "fill: #004170; opacity:1.00 " points="172.59,88.87 172.09,88.59 172.57,89.05 " />
-<polygon style= "fill: #007153; opacity:1.00 " points="182.06,87.65 183.80,87.92 182.13,87.62 " />
-<polygon style= "fill: #007052; opacity:1.00 " points="181.71,88.92 181.65,88.71 183.39,88.98 " />
-<polygon style= "fill: #007600; opacity:1.00 " points="179.59,74.84 179.40,74.94 179.26,74.74 " />
-<polygon style= "fill: #007052; opacity:1.00 " points="183.60,88.12 183.80,87.92 181.92,87.80 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="182.77,89.82 182.69,90.05 182.46,89.89 " />
-<polygon style= "fill: #003D70; opacity:1.00 " points="173.30,88.71 173.85,88.93 173.20,88.86 " />
-<polygon style= "fill: #003D70; opacity:1.00 " points="173.56,89.75 173.61,89.99 173.11,89.71 " />
-<polygon style= "fill: #00A478; opacity:1.00 " points="184.45,88.03 184.52,87.84 184.26,87.97 " />
-<polygon style= "fill: #00A206; opacity:1.00 " points="179.38,75.84 179.54,75.88 179.52,75.61 " />
-<polygon style= "fill: #00A478; opacity:1.00 " points="183.39,88.68 183.55,88.94 183.39,88.98 " />
-<polygon style= "fill: #005299; opacity:1.00 " points="174.37,88.86 174.64,88.93 174.63,88.75 " />
-<polygon style= "fill: #007165; opacity:1.00 " points="183.61,89.68 183.40,89.83 183.62,89.96 " />
-<polygon style= "fill: #008E0C; opacity:1.00 " points="180.57,75.75 180.36,75.80 180.49,75.99 " />
-<polygon style= "fill: #003A70; opacity:1.00 " points="174.59,89.88 174.55,89.98 174.07,89.70 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="183.45,90.83 183.63,90.95 183.44,90.95 " />
-<polygon style= "fill: #007010; opacity:1.00 " points="180.50,76.72 180.41,76.80 180.54,76.98 " />
-<polygon style= "fill: #00B11D; opacity:1.00 " points="181.54,76.80 181.67,77.01 181.39,76.75 " />
-<polygon style= "fill: #007960; opacity:1.00 " points="184.32,89.79 184.60,89.96 184.28,89.62 " />
-<polygon style= "fill: #007059; opacity:1.00 " points="184.36,88.95 184.64,89.12 184.47,88.80 " />
-<polygon style= "fill: #003670; opacity:1.00 " points="175.32,89.73 175.24,89.83 175.76,90.05 " />
-<polygon style= "fill: #007015; opacity:1.00 " points="180.47,77.76 180.59,77.93 180.41,77.95 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="175.48,90.88 175.86,91.05 175.53,91.09 " />
-<polygon style= "fill: #00418B; opacity:1.00 " points="176.24,89.73 176.67,89.94 176.03,89.82 " />
-<polygon style= "fill: #003F90; opacity:1.00 " points="178.48,93.89 178.40,93.77 178.56,93.93 " />
-<polygon style= "fill: #00A8A5; opacity:1.00 " points="184.59,91.97 184.30,91.88 184.47,91.79 " />
-<polygon style= "fill: #008E22; opacity:1.00 " points="181.71,77.73 181.46,77.78 181.57,77.97 " />
-<polygon style= "fill: #008280; opacity:1.00 " points="184.36,91.06 184.65,90.95 184.54,90.83 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="176.57,90.80 176.09,90.53 176.49,91.01 " />
-<polygon style= "fill: #009A9E; opacity:1.00 " points="185.56,90.81 185.34,90.81 185.52,90.96 " />
-<polygon style= "fill: #007022; opacity:1.00 " points="181.58,78.67 181.45,78.79 181.56,78.96 " />
-<polygon style= "fill: #00A234; opacity:1.00 " points="182.55,78.91 182.46,78.72 182.43,78.90 " />
-<polygon style= "fill: #003285; opacity:1.00 " points="179.42,94.65 179.50,94.94 179.59,94.77 " />
-<polygon style= "fill: #003174; opacity:1.00 " points="177.34,90.75 177.87,90.98 177.22,90.84 " />
-<polygon style= "fill: #007027; opacity:1.00 " points="181.48,79.74 181.59,79.91 181.44,79.87 " />
-<polygon style= "fill: #007065; opacity:1.00 " points="185.55,89.95 185.45,89.84 185.63,89.86 " />
-<polygon style= "fill: #0041A0; opacity:1.00 " points="178.39,90.81 178.92,91.09 178.19,90.82 " />
-<polygon style= "fill: #003B98; opacity:1.00 " points="178.57,92.79 178.53,92.98 178.38,92.73 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="177.40,91.72 177.88,91.93 177.38,91.94 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="179.57,93.99 179.61,93.93 179.33,93.79 " />
-<polygon style= "fill: #008E39; opacity:1.00 " points="182.76,79.87 182.52,79.91 182.42,79.72 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="185.48,91.85 185.65,91.97 185.34,92.03 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="178.52,91.88 178.48,91.93 178.04,91.67 " />
-<polygon style= "fill: #0096AA; opacity:1.00 " points="185.52,93.07 185.68,92.98 185.45,92.80 " />
-<polygon style= "fill: #007033; opacity:1.00 " points="182.64,80.81 182.56,80.61 182.47,80.95 " />
-<polygon style= "fill: #00B154; opacity:1.00 " points="183.56,80.89 183.51,80.87 183.42,80.68 " />
-<polygon style= "fill: #007039; opacity:1.00 " points="182.54,81.76 182.45,81.56 182.50,81.89 " />
-<polygon style= "fill: #002974; opacity:1.00 " points="179.38,91.78 179.25,91.88 179.80,92.12 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="180.46,94.98 180.61,95.09 180.56,94.73 " />
-<polygon style= "fill: #008E52; opacity:1.00 " points="183.59,81.82 183.70,82.01 183.43,81.85 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="179.35,92.78 179.34,92.87 179.84,93.08 " />
-<polygon style= "fill: #00B173; opacity:1.00 " points="184.60,82.88 184.65,82.98 184.39,82.79 " />
-<polygon style= "fill: #007047; opacity:1.00 " points="183.50,82.75 183.61,82.93 183.31,82.90 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="180.65,92.82 180.26,92.61 180.50,93.02 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="181.36,95.01 181.48,94.84 181.89,95.04 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="180.33,93.65 180.38,93.87 180.90,94.10 " />
-<polygon style= "fill: #001D76; opacity:1.00 " points="181.65,96.00 181.25,95.87 181.62,95.88 " />
-<polygon style= "fill: #00704C; opacity:1.00 " points="183.53,83.84 183.50,83.87 183.42,83.68 " />
-<polygon style= "fill: #005B70; opacity:1.00 " points="186.48,91.90 186.52,92.03 186.66,91.79 " />
-<polygon style= "fill: #005370; opacity:1.00 " points="186.46,93.73 186.55,93.82 186.45,93.98 " />
-<polygon style= "fill: #00298B; opacity:1.00 " points="181.53,92.88 182.13,93.14 181.41,92.93 " />
-<polygon style= "fill: #008E68; opacity:1.00 " points="184.55,83.74 184.37,83.77 184.47,83.96 " />
-<polygon style= "fill: #00C39B; opacity:1.00 " points="185.45,84.71 185.54,84.92 185.35,84.63 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="181.50,93.74 182.06,93.96 181.43,93.95 " />
-<polygon style= "fill: #0024A4; opacity:1.00 " points="182.47,95.65 182.55,95.96 182.38,95.94 " />
-<polygon style= "fill: #005370; opacity:1.00 " points="186.46,93.02 186.42,92.91 186.53,92.85 " />
-<polygon style= "fill: #007861; opacity:1.00 " points="184.61,84.78 184.71,84.96 184.44,84.85 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="182.53,94.85 182.01,94.58 182.57,95.05 " />
-<polygon style= "fill: #007061; opacity:1.00 " points="184.55,85.80 184.63,85.95 184.40,85.98 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="182.84,94.01 182.31,93.75 182.70,94.20 " />
-<polygon style= "fill: #00228A; opacity:1.00 " points="183.32,93.71 183.13,93.79 183.82,94.07 " />
-<polygon style= "fill: #00A292; opacity:1.00 " points="185.71,85.88 185.47,85.86 185.57,86.05 " />
-<polygon style= "fill: #001A8A; opacity:1.00 " points="183.50,96.96 183.42,96.84 184.20,97.08 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="183.43,95.95 184.21,96.20 183.51,95.83 " />
-<polygon style= "fill: #007874; opacity:1.00 " points="185.59,86.86 185.51,86.66 185.45,86.92 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="183.86,94.93 183.77,95.17 183.16,94.86 " />
-<polygon style= "fill: #001994; opacity:1.00 " points="184.38,96.88 184.54,96.84 184.46,97.17 " />
-<polygon style= "fill: #0023A1; opacity:1.00 " points="184.39,94.80 184.50,94.93 184.62,94.61 " />
-<polygon style= "fill: #006970; opacity:1.00 " points="185.59,87.79 185.69,87.96 185.45,87.90 " />
-<polygon style= "fill: #003E71; opacity:1.00 " points="187.39,93.88 187.63,93.81 187.69,93.95 " />
-<polygon style= "fill: #0096A2; opacity:1.00 " points="186.52,87.80 186.46,87.80 186.55,87.99 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="185.52,88.70 185.61,88.88 185.45,88.90 " />
-<polygon style= "fill: #001C8A; opacity:1.00 " points="185.20,94.64 184.99,94.74 185.83,95.03 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="184.43,95.80 184.48,96.03 185.21,96.27 " />
-<polygon style= "fill: #00798E; opacity:1.00 " points="186.66,88.73 186.42,88.77 186.52,88.96 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="185.46,96.97 185.46,96.82 186.50,97.06 " />
-<polygon style= "fill: #001AAC; opacity:1.00 " points="186.96,98.05 186.75,97.89 185.80,97.73 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="187.46,94.90 187.52,94.83 187.58,94.96 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="186.03,95.91 185.94,96.16 185.20,95.83 " />
-<polygon style= "fill: #0088B0; opacity:1.00 " points="187.55,89.82 187.43,89.77 187.53,89.97 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="186.55,89.86 186.47,89.66 186.44,89.94 " />
-<polygon style= "fill: #001996; opacity:1.00 " points="186.53,96.95 186.41,97.10 186.41,96.77 " />
-<polygon style= "fill: #001CA2; opacity:1.00 " points="186.45,96.06 186.47,95.73 186.59,95.86 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="186.63,90.84 186.52,91.00 186.43,90.80 " />
-<polygon style= "fill: #00608E; opacity:1.00 " points="187.54,90.87 187.64,91.06 187.30,90.91 " />
-<polygon style= "fill: #001388; opacity:1.00 " points="187.50,97.97 187.40,97.82 188.80,98.11 " />
-<polygon style= "fill: #001172; opacity:1.00 " points="187.34,95.76 187.18,95.90 188.29,96.16 " />
-<polygon style= "fill: #0077C1; opacity:1.00 " points="188.55,91.89 188.42,91.77 188.52,91.97 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="187.85,96.95 187.84,97.18 186.84,96.82 " />
-<polygon style= "fill: #004977; opacity:1.00 " points="187.64,91.67 187.43,91.77 187.54,91.95 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="188.80,98.11 188.72,97.82 187.37,97.72 " />
-<polygon style= "fill: #003D70; opacity:1.00 " points="187.52,92.73 187.45,92.85 187.55,93.02 " />
-<polygon style= "fill: #002583; opacity:1.00 " points="188.66,96.76 188.41,96.96 188.58,96.98 " />
-<polygon style= "fill: #0054A1; opacity:1.00 " points="188.71,93.00 188.53,92.98 188.44,92.79 " />
-<polygon style= "fill: #004195; opacity:1.00 " points="188.36,93.95 188.64,93.96 188.61,93.82 " />
-<line x1="188.97" y1="94.89"  x2="189.02" y2="95.00" style= "stroke: #0068FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00358D; opacity:1.00 " points="188.53,95.98 188.43,95.78 188.64,96.07 " />
-<polygon style= "fill: #004A70; opacity:1.00 " points="178.44,104.09 178.38,103.91 178.61,103.83 " />
-<polygon style= "fill: #0058F6; opacity:1.00 " points="183.52,102.84 183.52,102.95 183.29,103.03 " />
-<polygon style= "fill: #005DA9; opacity:1.00 " points="180.56,103.94 180.52,103.88 180.29,103.97 " />
-<polygon style= "fill: #004878; opacity:1.00 " points="179.46,103.98 179.69,103.90 179.44,103.93 " />
-<line x1="180.45" y1="103.36"  x2="180.21" y2="103.44" style= "stroke: #008DFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002C71; opacity:1.00 " points="182.52,101.97 182.54,101.91 182.31,102.00 " />
-<line x1="182.32" y1="102.71"  x2="182.08" y2="102.79" style= "stroke: #006CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003270; opacity:1.00 " points="181.48,103.05 181.71,102.97 181.44,102.92 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="189.53,98.11 189.54,97.85 189.32,97.74 " />
-<polygon style= "fill: #003AA1; opacity:1.00 " points="189.60,94.93 189.47,94.92 189.37,94.72 " />
-<polygon style= "fill: #001C8A; opacity:1.00 " points="185.45,100.94 185.72,100.86 185.49,100.96 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="183.45,102.12 183.41,101.91 183.68,101.83 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="184.56,101.99 184.30,102.08 184.52,101.82 " />
-<polygon style= "fill: #0039BF; opacity:1.00 " points="190.54,95.97 190.44,95.77 190.51,95.94 " />
-<polygon style= "fill: #000F88; opacity:1.00 " points="192.14,96.95 191.89,97.07 191.14,96.88 " />
-<polygon style= "fill: #001876; opacity:1.00 " points="185.73,101.95 185.69,101.85 185.43,101.94 " />
-<line x1="186.68" y1="101.36"  x2="186.41" y2="101.44" style= "stroke: #0028FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001690; opacity:1.00 " points="186.37,101.98 186.63,101.90 186.31,101.88 " />
-<polygon style= "fill: #0008B9; opacity:1.00 " points="188.63,100.14 188.49,99.90 188.50,100.09 " />
-<polygon style= "fill: #002177; opacity:1.00 " points="189.55,95.79 189.68,95.98 189.35,95.89 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="187.45,100.96 187.72,100.88 187.43,100.77 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="189.55,96.86 189.43,96.66 189.43,97.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="188.88,100.86 188.03,101.04 188.85,100.64 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="189.89,99.90 188.95,100.07 189.95,99.80 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="189.85,100.94 188.96,101.13 189.80,100.80 " />
-<polygon style= "fill: #001A8D; opacity:1.00 " points="190.53,96.87 190.34,96.91 190.48,97.11 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="189.80,100.12 189.84,99.99 190.75,99.87 " />
-<polygon style= "fill: #0014A4; opacity:1.00 " points="192.63,97.95 192.33,98.07 192.37,97.88 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="190.80,100.95 190.74,100.75 189.85,100.94 " />
-<polygon style= "fill: #000C89; opacity:1.00 " points="191.85,101.04 191.72,100.83 190.84,101.01 " />
-<polygon style= "fill: #0016B0; opacity:1.00 " points="191.59,97.95 191.41,97.88 191.29,97.68 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="190.61,98.07 190.49,97.87 190.56,98.12 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="194.27,97.89 194.14,98.13 192.41,97.74 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="190.50,98.90 190.50,98.92 190.59,99.05 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="192.23,98.91 192.27,98.75 193.02,99.01 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="194.29,97.86 194.27,97.89 194.66,97.95 " />
-<line x1="192.10" y1="100.13"  x2="192.10" y2="100.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000975; opacity:1.00 " points="191.85,99.37 191.16,98.46 191.71,99.45 " />
-<polygon style= "fill: #000CA5; opacity:1.00 " points="193.61,98.62 193.51,98.95 193.38,98.82 " />
-<polygon style= "fill: #000A88; opacity:1.00 " points="195.89,97.95 195.78,98.00 194.89,97.75 " />
-<polygon style= "fill: #000871; opacity:1.00 " points="193.21,99.98 193.13,99.69 193.93,99.93 " />
-<polygon style= "fill: #00088C; opacity:1.00 " points="191.98,99.33 192.93,100.36 191.85,99.37 " />
-<polygon style= "fill: #00099D; opacity:1.00 " points="196.31,97.86 196.16,97.87 197.44,98.18 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="195.31,98.77 195.31,98.95 196.45,99.11 " />
-<polygon style= "fill: #00088D; opacity:1.00 " points="192.64,102.08 192.49,101.84 192.38,102.00 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="194.30,98.95 194.41,98.85 195.15,99.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="194.68,100.15 194.68,99.84 193.93,99.77 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="194.43,100.96 194.48,100.79 195.37,101.09 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="196.53,98.80 196.64,98.82 196.45,99.09 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="192.64,100.85 192.43,100.64 192.48,101.04 " />
-<polygon style= "fill: #000F8B; opacity:1.00 " points="193.59,101.02 193.38,100.81 193.43,101.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="195.37,101.09 195.72,101.21 195.51,100.88 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="195.70,102.11 195.62,101.82 195.28,101.75 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="197.76,98.88 196.81,98.55 197.67,99.02 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="195.13,99.93 195.20,99.67 196.52,100.08 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="196.52,100.08 196.62,99.92 195.23,99.63 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="197.99,98.68 197.87,98.79 199.04,99.05 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="193.43,101.77 193.66,101.96 193.29,101.93 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="193.55,102.92 193.59,103.17 193.38,102.95 " />
-<polygon style= "fill: #001A8B; opacity:1.00 " points="194.48,101.92 194.71,102.09 194.76,101.90 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="196.19,101.97 196.20,101.75 197.16,102.16 " />
-<polygon style= "fill: #00029E; opacity:1.00 " points="199.57,98.90 199.66,98.93 199.30,98.93 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="196.51,100.98 197.70,101.35 196.46,100.81 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="197.88,100.18 198.10,99.98 196.82,99.70 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="197.62,101.06 197.62,100.75 196.43,100.51 " />
-<polygon style= "fill: #001A78; opacity:1.00 " points="194.49,103.88 194.19,103.66 194.57,104.00 " />
-<polygon style= "fill: #000492; opacity:1.00 " points="198.64,99.84 198.61,100.04 198.36,99.86 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="197.26,101.86 197.73,102.05 197.39,101.66 " />
-<polygon style= "fill: #00028B; opacity:1.00 " points="197.85,103.18 197.70,102.94 197.27,102.80 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="194.66,102.92 194.58,103.03 194.27,102.80 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="199.03,99.32 198.87,99.57 200.94,100.05 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="198.86,99.58 198.77,99.86 200.77,100.32 " />
-<polygon style= "fill: #00228A; opacity:1.00 " points="195.85,102.96 195.63,103.05 195.32,102.82 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="198.30,101.92 198.49,101.76 199.23,102.10 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="198.71,103.16 198.71,102.99 197.97,102.76 " />
-<polygon style= "fill: #000AE0; opacity:1.00 " points="199.54,103.91 199.41,103.91 200.15,104.26 " />
-<polygon style= "fill: #002DA1; opacity:1.00 " points="195.44,104.02 195.61,104.04 195.55,103.73 " />
-<polygon style= "fill: #00048F; opacity:1.00 " points="201.46,99.94 201.44,99.74 201.68,99.92 " />
-<polygon style= "fill: #000372; opacity:1.00 " points="199.84,101.80 197.69,101.35 199.91,102.09 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="200.10,100.92 197.71,100.45 199.93,101.18 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="199.93,101.18 197.62,100.75 199.84,101.49 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="199.46,103.19 199.55,102.92 198.77,102.69 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="196.65,103.94 196.14,103.69 196.56,104.07 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="196.36,104.80 196.39,104.95 196.89,105.13 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="200.55,101.04 200.10,100.92 200.73,100.87 " />
-<polygon style= "fill: #002B89; opacity:1.00 " points="197.60,103.91 197.40,104.00 196.89,103.75 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="202.14,100.98 202.07,101.18 201.38,100.91 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="200.54,104.01 200.54,103.86 200.01,103.70 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="200.82,103.15 200.94,103.05 200.35,102.86 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="201.10,102.09 200.23,101.89 201.11,101.96 " />
-<polygon style= "fill: #0035A3; opacity:1.00 " points="197.38,104.99 197.55,105.01 197.48,104.69 " />
-<polygon style= "fill: #000A72; opacity:1.00 " points="201.19,102.90 201.33,102.84 201.86,103.09 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="202.99,100.89 202.82,101.15 202.16,100.88 " />
-<polygon style= "fill: #000A71; opacity:1.00 " points="203.27,100.70 203.04,100.90 203.81,101.11 " />
-<polygon style= "fill: #002771; opacity:1.00 " points="198.57,105.95 197.51,105.62 198.65,106.06 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="201.98,102.29 202.07,102.00 201.16,101.79 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="198.67,104.89 198.59,105.04 197.52,104.71 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="201.57,104.19 201.68,103.89 201.15,103.73 " />
-<polygon style= "fill: #00119E; opacity:1.00 " points="204.32,100.85 205.11,101.12 204.23,100.86 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="202.11,102.00 202.29,101.74 202.95,102.01 " />
-<polygon style= "fill: #000973; opacity:1.00 " points="202.71,103.08 202.08,102.90 202.66,102.88 " />
-<polygon style= "fill: #002871; opacity:1.00 " points="199.98,104.87 199.75,105.07 198.75,104.77 " />
-<polygon style= "fill: #001074; opacity:1.00 " points="202.22,104.97 202.17,104.77 202.75,105.03 " />
-<polygon style= "fill: #000A71; opacity:1.00 " points="203.18,101.81 203.87,102.09 203.26,101.77 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="202.34,104.09 202.46,103.91 203.04,104.16 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="204.22,101.81 204.92,101.98 204.15,102.02 " />
-<polygon style= "fill: #003BA5; opacity:1.00 " points="199.50,105.96 199.67,105.91 199.50,105.65 " />
-<polygon style= "fill: #0045B7; opacity:1.00 " points="201.15,104.87 203.25,105.33 201.11,104.84 " />
-<polygon style= "fill: #001172; opacity:1.00 " points="203.85,104.22 204.08,104.13 203.43,103.90 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="203.36,102.97 203.36,102.86 204.06,103.14 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="205.97,102.04 205.13,101.73 205.86,102.21 " />
-<polygon style= "fill: #002A70; opacity:1.00 " points="199.89,105.71 199.89,105.98 201.80,106.04 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="203.34,104.98 203.62,105.11 203.43,104.73 " />
-<polygon style= "fill: #0014A4; opacity:1.00 " points="204.54,103.88 204.41,104.02 204.71,104.01 " />
-<polygon style= "fill: #003387; opacity:1.00 " points="202.50,105.13 202.24,105.25 200.33,104.93 " />
-<polygon style= "fill: #002A70; opacity:1.00 " points="201.88,105.73 201.80,106.04 199.89,105.71 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="204.89,103.05 204.29,102.89 205.02,102.86 " />
-<polygon style= "fill: #001589; opacity:1.00 " points="207.23,102.06 207.04,102.14 206.20,101.84 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="206.54,102.91 205.70,102.61 206.54,103.00 " />
-<polygon style= "fill: #003998; opacity:1.00 " points="202.59,106.93 202.57,107.14 202.38,106.88 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="204.14,104.92 204.29,104.70 205.04,105.00 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="205.71,103.14 205.84,103.02 205.08,102.80 " />
-<polygon style= "fill: #002A70; opacity:1.00 " points="201.89,105.73 201.82,106.04 202.74,106.00 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="205.16,104.89 205.27,104.79 206.02,105.09 " />
-<polygon style= "fill: #001994; opacity:1.00 " points="206.38,105.18 206.56,104.88 206.39,104.86 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="205.42,104.02 206.11,104.30 205.43,103.84 " />
-<polygon style= "fill: #001CA4; opacity:1.00 " points="207.35,102.87 207.50,102.95 207.52,102.60 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="202.79,105.80 202.74,106.00 204.32,105.93 " />
-<polygon style= "fill: #001993; opacity:1.00 " points="206.49,103.80 206.65,103.88 206.39,104.10 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="208.80,103.03 207.70,102.66 208.72,103.16 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="204.37,106.85 204.54,107.09 203.00,106.97 " />
-<polygon style= "fill: #00389B; opacity:1.00 " points="204.56,107.09 204.54,106.74 204.39,106.85 " />
-<polygon style= "fill: #003CA7; opacity:1.00 " points="204.48,106.00 204.47,105.65 204.59,105.78 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="207.00,103.93 207.14,103.72 207.92,104.03 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="208.54,103.61 208.54,103.76 209.65,103.99 " />
-<polygon style= "fill: #001572; opacity:1.00 " points="207.66,105.04 206.91,104.83 207.63,104.91 " />
-<polygon style= "fill: #001C89; opacity:1.00 " points="210.38,103.08 210.14,103.19 209.03,102.82 " />
-<polygon style= "fill: #001772; opacity:1.00 " points="208.15,103.83 208.93,104.14 208.30,103.76 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="205.04,106.87 205.16,107.05 206.52,106.96 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="206.48,106.91 205.04,106.87 206.52,106.96 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="206.54,105.76 206.43,105.98 204.98,105.95 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="208.42,104.95 208.42,104.91 208.66,105.01 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="206.54,105.76 207.05,105.72 206.43,105.98 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="211.20,104.12 210.03,103.76 211.15,104.28 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="207.06,105.72 206.93,106.00 207.75,105.93 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="207.77,106.94 206.99,106.93 207.89,107.11 " />
-<polygon style= "fill: #002BAB; opacity:1.00 " points="210.77,108.18 208.53,107.73 210.98,108.35 " />
-<polygon style= "fill: #001A72; opacity:1.00 " points="211.59,103.64 211.47,103.75 212.87,104.03 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="209.40,104.94 210.22,105.25 209.48,104.82 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="211.36,103.84 211.27,103.99 212.64,104.24 " />
-<polygon style= "fill: #002288; opacity:1.00 " points="210.61,107.94 208.32,107.56 210.77,108.18 " />
-<polygon style= "fill: #0026A3; opacity:1.00 " points="210.63,104.78 210.52,105.11 210.39,104.98 " />
-<polygon style= "fill: #0026A4; opacity:1.00 " points="213.40,103.88 213.37,104.09 213.65,103.95 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="208.95,106.96 207.77,106.94 208.99,107.02 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="208.98,105.82 208.89,106.03 207.71,106.01 " />
-<polygon style= "fill: #0026A4; opacity:1.00 " points="212.55,105.09 212.39,104.82 212.56,104.84 " />
-<polygon style= "fill: #001C72; opacity:1.00 " points="210.77,104.81 211.01,104.70 212.20,105.10 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="209.57,106.67 209.67,106.96 208.95,106.96 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="209.74,105.76 209.61,106.04 208.89,106.03 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="210.56,107.65 213.02,108.12 210.64,107.95 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="212.74,104.59 212.66,104.87 214.36,105.18 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="210.20,105.77 210.09,106.00 211.29,105.92 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="213.02,107.80 210.56,107.65 213.02,108.12 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="211.21,106.84 211.27,107.02 210.12,106.98 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="214.50,104.90 215.23,105.04 214.38,105.10 " />
-<polygon style= "fill: #0037DD; opacity:1.00 " points="213.98,108.86 213.73,108.89 215.31,109.11 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="211.29,105.92 212.39,105.84 211.21,106.09 " />
-<polygon style= "fill: #002BA3; opacity:1.00 " points="215.35,105.17 215.45,104.83 215.53,105.00 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="212.23,106.75 212.32,107.05 211.27,107.02 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="213.04,108.12 213.04,107.80 214.62,108.01 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="214.62,108.01 214.65,107.86 213.04,107.80 " />
-<polygon style= "fill: #002489; opacity:1.00 " points="217.08,105.10 215.71,104.70 216.95,105.16 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="212.52,105.85 212.39,106.11 213.69,106.05 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="212.34,106.76 212.42,107.04 213.61,106.97 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="213.75,105.92 212.52,105.85 213.69,106.05 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="213.57,106.84 212.34,106.76 213.61,106.97 " />
-<polygon style= "fill: #0027A9; opacity:1.00 " points="214.96,108.95 214.86,108.87 216.47,109.09 " />
-<polygon style= "fill: #001A71; opacity:1.00 " points="215.06,105.78 214.87,105.99 213.75,105.92 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="216.22,108.23 216.30,107.91 214.65,107.86 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="214.69,106.91 214.78,107.20 213.66,107.13 " />
-<polygon style= "fill: #0026A4; opacity:1.00 " points="216.31,108.85 216.58,108.93 216.47,109.09 " />
-<polygon style= "fill: #001871; opacity:1.00 " points="215.19,105.79 215.01,105.99 216.49,106.00 " />
-<polygon style= "fill: #001871; opacity:1.00 " points="216.56,105.92 215.19,105.79 216.49,106.00 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="216.87,108.15 216.79,107.86 215.59,107.70 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="216.18,106.85 216.18,107.05 214.81,106.92 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="216.87,108.92 218.72,109.15 216.86,108.86 " />
-<polygon style= "fill: #002072; opacity:1.00 " points="217.91,105.80 220.91,106.27 218.12,105.59 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="217.75,106.08 220.70,106.48 217.91,105.80 " />
-<polygon style= "fill: #0033B7; opacity:1.00 " points="221.67,106.19 218.88,105.51 221.88,106.35 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="216.18,106.85 217.15,106.82 216.18,107.05 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="218.72,109.15 218.64,108.88 216.86,108.86 " />
-<polygon style= "fill: #001B87; opacity:1.00 " points="217.77,105.88 217.55,106.01 216.56,105.92 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="216.81,107.54 219.23,108.05 216.81,107.86 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="217.60,106.88 217.15,106.82 217.61,107.14 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="219.23,108.05 216.81,107.86 219.22,108.38 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="220.45,109.09 220.45,108.88 218.78,108.88 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="219.23,106.81 219.17,107.07 217.60,106.88 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="219.70,106.81 219.63,107.13 219.17,107.07 " />
-<polygon style= "fill: #002586; opacity:1.00 " points="219.58,108.93 219.43,108.70 221.84,109.13 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="219.36,108.06 219.43,107.76 221.84,108.19 " />
-<polygon style= "fill: #001EA4; opacity:1.00 " points="222.33,109.83 222.44,109.67 222.54,110.00 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="221.04,107.01 219.70,106.81 221.01,107.15 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="221.84,109.13 221.77,108.83 219.43,108.68 " />
-<polygon style= "fill: #001CA4; opacity:1.00 " points="223.45,109.93 223.43,110.14 223.65,109.90 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="221.12,106.86 222.31,106.89 221.04,107.01 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="222.10,107.81 222.18,108.11 221.05,107.95 " />
-<polygon style= "fill: #002488; opacity:1.00 " points="224.08,106.82 226.13,107.00 224.05,106.84 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="222.09,107.81 222.16,108.11 223.31,108.18 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="222.35,109.14 222.29,108.90 224.26,109.19 " />
-<polygon style= "fill: #001172; opacity:1.00 " points="223.70,106.89 222.51,106.68 223.59,107.00 " />
-<polygon style= "fill: #001484; opacity:1.00 " points="225.06,110.12 224.94,109.93 223.69,109.91 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="223.50,107.10 222.31,106.89 223.41,107.25 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="224.26,109.19 224.25,108.88 222.29,108.84 " />
-<polygon style= "fill: #0017A3; opacity:1.00 " points="225.38,109.93 225.64,110.01 225.54,110.17 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="223.27,107.88 224.64,107.95 223.27,108.02 " />
-<polygon style= "fill: #001388; opacity:1.00 " points="225.31,107.00 225.07,107.13 223.70,106.89 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="224.64,107.95 224.64,108.27 223.27,108.02 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="224.40,109.21 224.39,108.89 225.76,109.04 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="226.70,109.98 225.36,109.93 226.66,109.85 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="225.76,109.04 225.79,108.88 224.39,108.89 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="224.62,107.94 227.16,108.21 224.70,107.63 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="227.14,109.14 224.69,108.56 227.07,108.85 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="227.16,108.21 224.70,107.63 227.32,107.93 " />
-<polygon style= "fill: #0015AB; opacity:1.00 " points="227.92,110.55 230.21,111.16 228.13,110.71 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="229.25,107.70 229.12,107.98 229.75,107.98 " />
-<polygon style= "fill: #001D84; opacity:1.00 " points="227.45,110.05 227.30,109.82 228.51,109.92 " />
-<polygon style= "fill: #00159A; opacity:1.00 " points="227.43,108.06 227.31,107.93 227.61,107.89 " />
-<polygon style= "fill: #001D84; opacity:1.00 " points="228.59,110.05 227.45,110.05 228.51,109.92 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="229.85,107.75 229.75,107.98 230.94,107.95 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="227.57,108.94 227.57,109.02 227.03,108.84 " />
-<polygon style= "fill: #001589; opacity:1.00 " points="228.34,107.77 228.14,107.87 229.73,108.27 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="230.94,107.95 232.13,107.93 230.86,108.12 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="229.09,108.91 229.01,109.18 227.58,108.70 " />
-<polygon style= "fill: #001072; opacity:1.00 " points="230.73,111.12 230.03,110.89 230.69,110.93 " />
-<polygon style= "fill: #001CA3; opacity:1.00 " points="229.54,110.16 229.67,110.00 229.39,109.91 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="233.22,107.99 232.26,107.93 233.13,108.18 " />
-<polygon style= "fill: #001994; opacity:1.00 " points="229.57,109.05 229.42,108.97 229.72,108.84 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="230.82,109.09 230.92,108.88 232.00,108.94 " />
-<polygon style= "fill: #001171; opacity:1.00 " points="233.28,107.92 234.43,107.90 233.22,107.99 " />
-<polygon style= "fill: #001573; opacity:1.00 " points="230.30,108.73 230.12,108.89 230.78,109.13 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="232.00,108.94 233.08,109.01 232.10,108.82 " />
-<polygon style= "fill: #001071; opacity:1.00 " points="234.43,107.90 235.49,107.89 234.30,108.05 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="230.36,109.80 230.35,109.96 230.95,110.16 " />
-<polygon style= "fill: #0017A4; opacity:1.00 " points="235.42,108.24 235.49,107.89 235.57,108.07 " />
-<polygon style= "fill: #001879; opacity:1.00 " points="232.35,111.99 232.30,111.76 232.60,111.99 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="233.59,109.04 233.77,108.82 233.24,108.82 " />
-<polygon style= "fill: #0023A2; opacity:1.00 " points="231.56,111.16 231.70,111.01 231.42,110.92 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="231.68,109.74 231.49,110.01 231.07,109.79 " />
-<polygon style= "fill: #000E71; opacity:1.00 " points="236.71,107.96 235.57,107.89 236.60,108.09 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="234.00,110.00 234.00,109.95 233.41,109.96 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="234.20,109.04 234.36,108.85 235.47,108.91 " />
-<polygon style= "fill: #00238C; opacity:1.00 " points="233.68,113.21 233.59,113.04 233.30,112.84 " />
-<polygon style= "fill: #001484; opacity:1.00 " points="235.77,111.92 236.66,111.98 235.92,112.05 " />
-<polygon style= "fill: #000E87; opacity:1.00 " points="238.02,107.92 237.85,108.02 236.71,107.96 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="235.11,110.06 235.11,109.91 234.00,109.95 " />
-<polygon style= "fill: #001C73; opacity:1.00 " points="232.68,110.09 232.36,109.86 232.53,110.21 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="235.52,110.77 236.48,110.78 235.47,111.01 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="235.38,109.03 235.47,108.91 236.59,108.98 " />
-<polygon style= "fill: #000C71; opacity:1.00 " points="236.59,108.98 236.76,108.87 235.57,108.85 " />
-<polygon style= "fill: #000C87; opacity:1.00 " points="238.75,107.93 238.53,108.06 237.85,108.02 " />
-<polygon style= "fill: #0019A4; opacity:1.00 " points="236.41,111.10 236.57,111.11 236.48,110.78 " />
-<polygon style= "fill: #0010AA; opacity:1.00 " points="239.75,108.00 239.23,107.96 239.60,107.95 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="236.23,110.13 236.21,109.87 235.11,109.91 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="232.51,110.89 232.86,111.08 232.43,111.07 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="236.87,110.80 236.82,111.07 237.90,110.98 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="238.67,108.91 238.15,108.88 238.68,109.12 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="238.04,111.89 238.13,112.04 237.07,111.99 " />
-<polygon style= "fill: #000FA4; opacity:1.00 " points="237.57,108.88 237.60,109.09 237.34,109.02 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="236.99,110.17 236.97,109.84 236.21,109.87 " />
-<polygon style= "fill: #002B8B; opacity:1.00 " points="234.36,110.80 234.51,111.06 234.62,110.89 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="238.67,108.91 238.68,109.12 239.61,108.97 " />
-<polygon style= "fill: #002473; opacity:1.00 " points="233.76,110.88 233.51,111.07 233.41,110.99 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="237.90,110.98 238.94,110.89 237.87,111.17 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="238.99,111.84 239.14,112.09 238.13,112.04 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="233.54,111.94 233.33,111.73 233.50,112.17 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="237.38,110.10 237.36,109.86 238.43,109.93 " />
-<polygon style= "fill: #000AA1; opacity:1.00 " points="240.57,109.04 240.41,109.02 240.62,108.78 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="239.03,111.84 239.18,112.09 240.35,112.07 " />
-<polygon style= "fill: #000CA4; opacity:1.00 " points="238.58,109.94 238.43,109.93 238.59,110.20 " />
-<polygon style= "fill: #00398D; opacity:1.00 " points="235.54,115.05 235.72,115.26 235.43,114.87 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="240.47,108.70 240.41,109.02 241.71,108.98 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="240.21,110.96 238.98,110.89 240.17,111.16 " />
-<polygon style= "fill: #002B73; opacity:1.00 " points="234.65,111.95 234.50,112.06 234.29,111.85 " />
-<polygon style= "fill: #003EA0; opacity:1.00 " points="235.54,112.00 235.33,111.79 235.46,112.00 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="240.25,111.91 240.35,112.07 241.52,112.05 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="234.36,112.86 234.57,113.04 234.32,113.07 " />
-<polygon style= "fill: #003D8B; opacity:1.00 " points="236.44,112.72 236.39,113.03 236.57,112.95 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="240.29,109.96 239.25,109.98 240.33,109.75 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="241.53,110.82 241.43,111.04 240.21,110.96 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="241.71,108.98 243.30,108.92 241.69,109.13 " />
-<polygon style= "fill: #003473; opacity:1.00 " points="235.55,112.74 235.32,112.88 235.51,113.06 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="242.27,111.73 242.36,112.04 241.48,111.98 " />
-<polygon style= "fill: #000684; opacity:1.00 " points="242.36,111.11 242.20,110.86 240.46,110.86 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="242.25,111.73 242.34,112.04 242.85,112.04 " />
-<polygon style= "fill: #003B72; opacity:1.00 " points="236.44,115.93 236.59,116.13 236.47,115.77 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="242.10,110.23 242.17,109.91 240.29,109.96 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="243.66,108.95 243.29,108.92 243.60,109.23 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="235.48,113.87 235.66,114.04 235.43,113.99 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="242.78,111.79 242.85,112.04 244.70,112.04 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="244.68,111.96 242.78,111.79 244.70,112.04 " />
-<polygon style= "fill: #000486; opacity:1.00 " points="242.49,111.12 242.34,110.89 245.16,111.31 " />
-<polygon style= "fill: #004073; opacity:1.00 " points="236.50,113.93 236.44,113.97 236.63,114.15 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="242.34,109.91 242.48,109.65 245.30,110.06 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="242.34,110.87 242.26,110.59 245.08,111.00 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="242.26,110.24 242.33,109.93 245.15,110.35 " />
-<line x1="236.94" y1="114.94"  x2="237.10" y2="115.14" style= "stroke: #0091FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="246.57,108.90 246.43,109.19 243.66,108.95 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="245.16,111.31 245.08,111.00 242.34,110.87 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="245.53,111.70 245.54,112.04 244.68,111.96 " />
-<polygon style= "fill: #00578B; opacity:1.00 " points="237.55,114.85 237.35,114.90 237.52,115.09 " />
-<polygon style= "fill: #00049B; opacity:1.00 " points="245.51,109.84 245.59,110.02 245.29,110.06 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="246.91,108.70 246.71,108.91 249.60,109.01 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="245.50,111.70 245.50,112.03 248.45,112.15 " />
-<polygon style= "fill: #006489; opacity:1.00 " points="238.45,118.93 238.63,118.84 238.59,119.16 " />
-<polygon style= "fill: #000371; opacity:1.00 " points="245.77,109.71 248.61,110.34 245.51,109.84 " />
-<polygon style= "fill: #0007A9; opacity:1.00 " points="248.91,113.18 245.96,112.75 248.92,113.19 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="245.05,110.67 247.89,111.30 245.05,111.00 " />
-<polygon style= "fill: #004D70; opacity:1.00 " points="237.53,115.93 237.70,116.11 237.38,116.10 " />
-<polygon style= "fill: #000287; opacity:1.00 " points="249.85,108.88 249.60,109.01 246.91,108.70 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="248.55,112.78 248.70,113.02 245.75,112.59 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="249.60,109.01 249.39,109.23 246.70,108.92 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="249.17,109.85 249.18,110.18 246.49,109.86 " />
-<polygon style= "fill: #00719F; opacity:1.00 " points="238.70,116.03 238.43,116.03 238.28,115.83 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="237.53,116.77 237.63,116.88 237.49,117.03 " />
-<polygon style= "fill: #000487; opacity:1.00 " points="247.97,111.93 245.28,111.55 248.13,112.18 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="247.98,110.97 245.05,110.67 247.89,111.30 " />
-<polygon style= "fill: #0002B7; opacity:1.00 " points="250.38,108.93 253.37,109.52 250.60,109.10 " />
-<polygon style= "fill: #005973; opacity:1.00 " points="238.62,117.00 238.52,117.06 238.36,116.86 " />
-<polygon style= "fill: #007D9F; opacity:1.00 " points="239.53,117.01 239.36,116.81 239.38,117.01 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="249.16,110.18 251.92,110.27 249.16,109.84 " />
-<polygon style= "fill: #006A7F; opacity:1.00 " points="239.45,119.98 239.43,119.89 239.60,120.10 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="238.51,117.96 238.35,117.76 238.50,118.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="249.39,112.94 249.51,113.12 251.27,113.33 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="249.37,112.86 251.18,113.03 249.39,112.94 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="252.18,111.16 249.41,110.73 252.02,110.91 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="248.20,111.96 248.13,111.70 250.32,112.30 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="248.25,111.01 248.39,110.76 250.59,111.37 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="251.92,110.27 249.16,109.84 252.00,109.95 " />
-<polygon style= "fill: #0092A8; opacity:1.00 " points="240.21,118.07 240.53,117.98 240.42,118.14 " />
-<polygon style= "fill: #000571; opacity:1.00 " points="250.82,111.15 251.08,111.02 248.65,110.53 " />
-<polygon style= "fill: #006473; opacity:1.00 " points="239.60,117.90 239.69,117.98 239.35,118.06 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="250.59,111.37 250.82,111.15 248.42,110.74 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="250.32,112.30 250.33,111.97 248.13,111.66 " />
-<polygon style= "fill: #006670; opacity:1.00 " points="240.43,120.96 240.66,121.17 240.44,120.86 " />
-<polygon style= "fill: #0009CA; opacity:1.00 " points="252.15,113.79 254.33,114.48 251.88,113.82 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="239.46,118.94 239.71,119.11 239.44,119.00 " />
-<polygon style= "fill: #0007A4; opacity:1.00 " points="250.43,111.65 250.51,111.99 250.33,111.97 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="252.00,110.91 254.66,111.13 251.92,110.61 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="252.00,109.95 254.90,110.19 252.16,109.66 " />
-<polygon style= "fill: #000889; opacity:1.00 " points="250.92,112.93 250.79,112.73 252.40,113.23 " />
-<polygon style= "fill: #006B73; opacity:1.00 " points="240.63,118.99 240.46,119.11 240.23,118.89 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="253.86,114.24 251.39,113.57 253.70,113.99 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="250.82,111.77 252.43,112.27 250.85,111.73 " />
-<polygon style= "fill: #00969F; opacity:1.00 " points="241.54,119.03 241.31,118.82 241.48,119.03 " />
-<polygon style= "fill: #00797C; opacity:1.00 " points="241.58,122.24 241.53,121.96 241.37,121.84 " />
-<polygon style= "fill: #000171; opacity:1.00 " points="254.90,110.19 252.16,109.66 255.12,109.96 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="254.75,111.44 252.00,110.91 254.66,111.13 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="254.66,111.13 251.92,110.61 254.66,110.80 " />
-<polygon style= "fill: #006B70; opacity:1.00 " points="240.37,119.85 240.36,119.92 240.60,120.09 " />
-<polygon style= "fill: #0002A5; opacity:1.00 " points="255.60,111.83 255.48,111.99 255.78,111.97 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="252.58,112.04 250.85,111.73 252.61,111.99 " />
-<polygon style= "fill: #00029A; opacity:1.00 " points="255.42,110.04 255.39,109.84 255.63,110.02 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="252.33,112.93 252.71,113.05 252.34,112.65 " />
-<polygon style= "fill: #000B94; opacity:1.00 " points="253.51,111.98 253.22,111.90 253.30,112.08 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="242.59,122.10 242.15,121.92 242.65,121.95 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="241.64,120.00 241.22,119.75 241.51,120.18 " />
-<polygon style= "fill: #000DAE; opacity:1.00 " points="254.99,112.13 255.07,112.20 254.04,111.82 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="252.70,113.04 252.71,112.71 253.66,113.03 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="254.66,110.80 257.52,111.11 254.75,110.47 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="241.73,121.13 241.31,120.89 241.76,121.27 " />
-<polygon style= "fill: #008A85; opacity:1.00 " points="242.46,119.98 242.95,120.21 242.32,120.04 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="257.66,112.32 254.89,111.69 257.50,112.07 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="243.50,123.15 243.52,122.83 243.38,122.77 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="257.52,111.11 254.75,110.47 257.68,110.82 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="257.43,111.43 254.66,110.80 257.52,111.11 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="253.70,112.90 253.77,112.71 255.01,113.12 " />
-<polygon style= "fill: #0002A4; opacity:1.00 " points="258.25,112.98 258.54,112.84 258.51,113.05 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="242.26,120.84 242.71,121.02 242.18,121.07 " />
-<polygon style= "fill: #000CA4; opacity:1.00 " points="256.44,115.16 256.53,114.96 256.22,114.99 " />
-<polygon style= "fill: #000C89; opacity:1.00 " points="255.13,114.32 254.99,114.09 253.82,113.81 " />
-<polygon style= "fill: #00ACA1; opacity:1.00 " points="244.92,124.15 244.01,123.91 244.79,124.05 " />
-<polygon style= "fill: #0002A4; opacity:1.00 " points="257.50,112.07 257.66,111.96 257.42,111.77 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="244.56,123.16 244.60,123.03 243.55,122.86 " />
-<polygon style= "fill: #0012A4; opacity:1.00 " points="255.67,112.86 255.59,112.68 255.48,113.03 " />
-<polygon style= "fill: #000172; opacity:1.00 " points="258.64,110.91 257.93,110.61 258.46,111.07 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="255.36,112.89 255.59,112.68 256.62,113.01 " />
-<polygon style= "fill: #000C71; opacity:1.00 " points="255.15,114.13 255.07,113.82 256.10,114.16 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="243.93,122.09 242.71,121.73 243.97,122.25 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="244.20,121.15 242.98,120.79 244.12,121.29 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="244.63,123.80 246.10,124.24 244.60,123.68 " />
-<polygon style= "fill: #00049E; opacity:1.00 " points="258.98,110.77 260.01,111.15 258.92,110.78 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="258.11,111.71 258.10,111.96 259.04,112.25 " />
-<polygon style= "fill: #007168; opacity:1.00 " points="244.43,120.93 244.32,121.04 245.70,121.31 " />
-<polygon style= "fill: #001189; opacity:1.00 " points="257.01,112.88 257.17,112.86 258.37,113.25 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="243.94,121.76 243.93,121.93 245.20,122.14 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="259.27,112.89 260.09,113.25 259.27,112.73 " />
-<polygon style= "fill: #009D91; opacity:1.00 " points="246.24,121.15 245.96,121.18 244.70,120.80 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="256.11,114.02 256.11,113.83 257.31,114.23 " />
-<polygon style= "fill: #00A497; opacity:1.00 " points="245.65,123.20 245.73,123.00 245.43,123.02 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="259.16,111.78 259.11,111.93 260.08,112.21 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="246.21,124.26 246.11,123.95 247.54,124.06 " />
-<polygon style= "fill: #001389; opacity:1.00 " points="257.69,115.16 257.53,114.91 257.38,114.88 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="247.54,124.06 247.53,123.90 246.11,123.95 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="245.38,122.79 245.54,123.04 246.64,123.03 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="257.46,114.28 257.56,113.95 257.40,113.93 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="245.33,121.82 245.27,122.15 246.46,122.10 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="260.28,111.88 260.25,111.93 260.77,112.09 " />
-<polygon style= "fill: #000E72; opacity:1.00 " points="259.63,115.98 258.61,115.63 259.70,116.11 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="257.57,113.96 257.74,113.67 258.93,114.04 " />
-<polygon style= "fill: #000AA3; opacity:1.00 " points="260.46,113.01 260.64,112.96 260.48,112.68 " />
-<polygon style= "fill: #000974; opacity:1.00 " points="261.59,114.12 260.96,113.89 261.54,113.90 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="258.69,115.13 257.54,114.92 258.65,114.98 " />
-<polygon style= "fill: #000A8A; opacity:1.00 " points="261.57,111.91 261.32,112.02 261.89,112.27 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="246.64,123.03 248.00,123.01 246.70,123.13 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="246.50,121.90 246.46,122.10 247.93,122.05 " />
-<polygon style= "fill: #007068; opacity:1.00 " points="248.99,124.18 248.97,123.85 247.53,123.90 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="261.34,112.79 261.27,112.99 261.80,113.21 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="259.04,113.93 259.16,113.82 260.40,114.20 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="249.73,124.06 249.17,124.16 249.70,123.79 " />
-<polygon style= "fill: #001589; opacity:1.00 " points="260.67,114.07 260.95,114.04 259.57,113.68 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="259.88,115.36 259.89,115.02 258.65,114.81 " />
-<polygon style= "fill: #001797; opacity:1.00 " points="260.44,115.89 260.61,116.17 260.65,115.95 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="248.42,122.99 248.58,123.23 249.04,123.16 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="248.81,121.96 248.80,122.00 248.32,122.04 " />
-<polygon style= "fill: #000C73; opacity:1.00 " points="262.75,112.93 262.55,113.09 262.05,112.80 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="250.33,124.06 250.93,124.01 250.32,123.95 " />
-<polygon style= "fill: #00706C; opacity:1.00 " points="249.52,122.90 248.90,122.95 249.63,123.07 " />
-<polygon style= "fill: #00149F; opacity:1.00 " points="263.86,113.03 263.58,113.05 263.09,112.77 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="262.73,113.95 262.69,114.27 262.20,113.98 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="251.55,124.05 250.98,124.16 251.52,123.96 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="249.41,121.95 249.39,122.16 250.02,122.05 " />
-<polygon style= "fill: #001371; opacity:1.00 " points="261.78,116.73 261.87,116.87 262.96,117.14 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="260.11,115.05 260.19,114.75 262.17,115.29 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="250.80,122.88 250.92,123.05 250.30,123.10 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="250.64,121.94 250.62,122.17 250.00,122.22 " />
-<polygon style= "fill: #008184; opacity:1.00 " points="250.92,123.05 250.98,123.10 251.56,123.02 " />
-<polygon style= "fill: #006B70; opacity:1.00 " points="252.68,124.16 252.57,123.86 252.13,123.95 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="263.34,113.87 263.81,114.10 263.30,113.92 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="262.15,116.25 262.08,115.98 260.16,115.70 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="262.17,115.29 262.32,115.04 260.20,114.73 " />
-<polygon style= "fill: #007C86; opacity:1.00 " points="253.45,124.22 253.32,124.01 253.74,123.93 " />
-<polygon style= "fill: #006870; opacity:1.00 " points="253.58,123.02 253.59,122.96 253.16,123.07 " />
-<polygon style= "fill: #006B70; opacity:1.00 " points="251.67,121.76 251.64,122.09 251.23,122.12 " />
-<polygon style= "fill: #007E85; opacity:1.00 " points="252.38,123.05 252.80,122.95 252.38,123.06 " />
-<polygon style= "fill: #001474; opacity:1.00 " points="264.63,114.02 264.19,113.74 264.52,114.10 " />
-<polygon style= "fill: #007886; opacity:1.00 " points="254.31,124.08 254.73,123.99 254.26,124.00 " />
-<polygon style= "fill: #001589; opacity:1.00 " points="265.95,114.21 266.13,114.20 265.24,113.88 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="262.34,115.00 262.67,115.09 262.54,114.80 " />
-<polygon style= "fill: #008A9F; opacity:1.00 " points="255.34,124.07 255.76,123.99 255.23,123.98 " />
-<polygon style= "fill: #006870; opacity:1.00 " points="252.33,121.96 252.37,122.23 252.82,122.11 " />
-<polygon style= "fill: #006270; opacity:1.00 " points="254.84,123.07 254.84,122.90 254.42,123.02 " />
-<polygon style= "fill: #001C99; opacity:1.00 " points="262.59,115.72 262.42,116.04 262.59,115.98 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="253.44,121.01 253.36,121.13 253.83,121.03 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="264.57,114.83 265.02,115.05 264.46,115.06 " />
-<polygon style= "fill: #005F70; opacity:1.00 " points="255.74,123.21 255.69,122.96 255.28,123.08 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="264.45,117.09 264.45,117.28 263.11,116.89 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="253.71,121.86 253.73,122.03 253.28,122.11 " />
-<polygon style= "fill: #005B70; opacity:1.00 " points="256.16,123.13 256.56,123.04 256.11,122.84 " />
-<polygon style= "fill: #006170; opacity:1.00 " points="254.67,120.97 254.21,121.05 254.65,121.04 " />
-<polygon style= "fill: #006170; opacity:1.00 " points="254.22,122.05 254.66,121.94 254.29,122.24 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="262.42,115.70 265.06,116.28 262.42,116.04 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="265.68,115.06 265.32,114.82 265.50,115.28 " />
-<polygon style= "fill: #001EA3; opacity:1.00 " points="266.63,114.73 266.50,115.08 266.38,114.94 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="257.30,122.18 257.34,121.98 257.70,121.88 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="257.85,122.99 257.82,122.91 257.47,123.04 " />
-<polygon style= "fill: #0088A3; opacity:1.00 " points="255.47,121.08 255.60,121.16 255.55,120.81 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="266.38,114.94 266.61,114.72 267.98,115.12 " />
-<polygon style= "fill: #005D70; opacity:1.00 " points="255.52,121.71 255.63,122.00 255.20,122.08 " />
-<polygon style= "fill: #001988; opacity:1.00 " points="265.14,116.93 262.66,116.60 265.30,117.18 " />
-<polygon style= "fill: #001571; opacity:1.00 " points="265.79,115.30 262.89,114.86 265.53,115.44 " />
-<polygon style= "fill: #006487; opacity:1.00 " points="258.72,123.02 258.65,122.91 258.30,123.04 " />
-<polygon style= "fill: #0084BA; opacity:1.00 " points="259.33,123.12 259.25,123.09 259.62,122.99 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="265.14,115.95 262.42,115.70 265.06,116.28 " />
-<polygon style= "fill: #005A70; opacity:1.00 " points="256.61,121.96 256.64,122.01 256.26,122.10 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="258.75,121.96 258.39,122.08 258.74,121.83 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="256.31,120.89 256.32,121.12 256.70,121.00 " />
-<polygon style= "fill: #004B70; opacity:1.00 " points="259.55,122.22 259.91,122.12 259.50,122.00 " />
-<polygon style= "fill: #001B89; opacity:1.00 " points="268.38,114.97 268.53,114.96 270.01,115.39 " />
-<polygon style= "fill: #005370; opacity:1.00 " points="257.48,120.90 257.50,121.05 257.88,120.92 " />
-<polygon style= "fill: #004870; opacity:1.00 " points="260.61,122.24 260.49,121.96 260.28,122.04 " />
-<polygon style= "fill: #004F70; opacity:1.00 " points="258.37,120.02 258.76,119.91 258.29,120.16 " />
-<polygon style= "fill: #004F70; opacity:1.00 " points="258.31,121.02 258.34,121.09 258.71,120.97 " />
-<polygon style= "fill: #007EE4; opacity:1.00 " points="263.55,121.99 263.21,122.09 263.49,122.04 " />
-<polygon style= "fill: #004370; opacity:1.00 " points="261.61,121.04 261.62,120.96 261.27,121.09 " />
-<polygon style= "fill: #005187; opacity:1.00 " points="261.58,122.17 261.46,121.98 261.81,121.88 " />
-<polygon style= "fill: #001986; opacity:1.00 " points="265.16,116.93 267.91,117.39 265.32,117.19 " />
-<polygon style= "fill: #005BA0; opacity:1.00 " points="262.41,122.11 262.30,122.01 262.66,121.91 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="265.07,116.62 267.82,117.08 265.16,116.93 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="265.31,115.66 268.06,116.11 265.15,115.95 " />
-<polygon style= "fill: #004A70; opacity:1.00 " points="259.46,119.89 259.43,120.13 259.78,120.00 " />
-<polygon style= "fill: #004B70; opacity:1.00 " points="259.38,120.75 259.49,121.02 259.62,120.97 " />
-<polygon style= "fill: #003D70; opacity:1.00 " points="262.32,121.11 262.67,121.01 262.32,120.98 " />
-<polygon style= "fill: #005587; opacity:1.00 " points="260.47,121.01 260.60,121.14 260.94,121.02 " />
-<polygon style= "fill: #004470; opacity:1.00 " points="260.47,119.83 260.48,120.03 260.83,119.90 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="263.44,121.10 263.79,121.00 263.39,120.89 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="268.27,115.89 265.31,115.66 268.06,116.11 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="268.06,116.11 265.15,115.95 267.90,116.41 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="267.82,116.74 265.07,116.62 267.82,117.08 " />
-<polygon style= "fill: #004170; opacity:1.00 " points="261.57,119.94 261.61,120.10 261.26,120.20 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="264.58,121.08 264.47,120.80 264.15,120.92 " />
-<polygon style= "fill: #003C70; opacity:1.00 " points="262.68,118.83 262.61,118.98 262.25,119.08 " />
-<polygon style= "fill: #003C70; opacity:1.00 " points="262.34,119.97 262.68,119.85 262.42,120.18 " />
-<polygon style= "fill: #003986; opacity:1.00 " points="265.79,120.96 265.43,121.09 265.69,120.80 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="265.50,120.13 265.50,119.93 265.87,119.83 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="263.45,119.88 263.60,120.11 263.27,120.20 " />
-<polygon style= "fill: #003E9F; opacity:1.00 " points="266.75,121.00 266.67,120.92 266.31,121.04 " />
-<polygon style= "fill: #003670; opacity:1.00 " points="263.63,118.92 263.30,119.02 263.65,119.17 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="268.06,116.11 268.27,115.89 269.46,116.02 " />
-<polygon style= "fill: #0049A0; opacity:1.00 " points="264.80,119.91 264.47,120.02 264.92,119.98 " />
-<polygon style= "fill: #002A70; opacity:1.00 " points="266.29,120.18 266.25,120.02 266.63,119.93 " />
-<polygon style= "fill: #001571; opacity:1.00 " points="269.46,116.02 269.57,115.97 268.27,115.89 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="264.64,118.88 264.31,118.98 264.69,119.07 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="265.36,117.99 265.32,118.08 265.66,117.96 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="267.43,120.03 267.81,119.93 267.38,119.80 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="265.37,118.95 265.43,119.09 265.75,118.96 " />
-<polygon style= "fill: #001371; opacity:1.00 " points="269.57,115.97 269.71,115.89 271.38,116.08 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="266.51,118.96 266.61,119.13 266.28,119.23 " />
-<line x1="268.27" y1="118.75"  x2="268.27" y2="118.73" style= "stroke: #004CFF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002670; opacity:1.00 " points="266.58,117.97 266.25,118.08 266.59,118.03 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="268.62,120.04 268.32,120.13 268.52,119.78 " />
-<polygon style= "fill: #002A87; opacity:1.00 " points="267.60,118.82 267.75,118.97 267.43,119.08 " />
-<polygon style= "fill: #002386; opacity:1.00 " points="269.62,120.05 269.20,120.17 269.52,119.90 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="267.47,117.97 267.55,118.25 267.68,118.20 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="268.62,116.94 268.30,117.05 268.57,117.07 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="269.36,119.18 269.36,118.98 269.81,118.90 " />
-<polygon style= "fill: #00259F; opacity:1.00 " points="270.63,120.04 270.21,120.14 270.57,119.98 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="268.65,117.88 268.33,117.99 268.73,118.08 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="270.25,119.13 270.70,119.04 270.25,118.93 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="269.51,116.91 269.50,117.02 269.18,117.13 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="269.41,117.93 269.49,118.07 269.80,117.95 " />
-<polygon style= "fill: #0026BE; opacity:1.00 " points="271.66,119.98 271.24,120.07 271.64,119.97 " />
-<polygon style= "fill: #001684; opacity:1.00 " points="271.56,118.03 271.53,117.98 271.00,117.99 " />
-<polygon style= "fill: #001787; opacity:1.00 " points="270.57,117.90 270.66,118.00 270.34,118.10 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="270.50,116.96 270.18,117.07 270.52,117.05 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="271.51,115.98 271.19,116.09 271.50,116.00 " />
-<polygon style= "fill: #00439F; opacity:1.00 " points="272.54,120.09 272.38,120.21 272.49,119.84 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="271.59,119.21 271.37,119.25 271.56,118.90 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="271.24,117.07 271.55,116.95 271.33,117.29 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="271.92,115.98 271.90,116.21 272.70,115.92 " />
-<polygon style= "fill: #001484; opacity:1.00 " points="273.15,118.16 273.03,117.97 271.53,117.98 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="272.91,116.79 272.12,117.04 273.03,116.97 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="272.84,119.00 272.22,119.11 272.82,118.80 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="273.59,119.97 272.34,119.56 273.58,120.15 " />
-<polygon style= "fill: #000D7F; opacity:1.00 " points="274.48,114.98 276.17,114.43 274.43,115.04 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="274.37,115.71 272.72,116.24 274.40,115.84 " />
-<polygon style= "fill: #001284; opacity:1.00 " points="273.98,118.22 273.82,117.96 273.03,117.97 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="273.49,119.08 274.12,119.03 273.47,118.90 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="273.72,117.31 273.79,116.98 272.93,117.00 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="273.63,119.82 275.23,120.13 273.59,119.97 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="274.56,116.27 274.62,116.37 276.21,115.76 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="274.45,116.00 274.50,116.12 276.10,115.50 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="276.00,114.71 275.99,114.92 274.34,115.45 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="275.17,121.11 275.31,121.36 273.77,120.86 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="274.15,119.12 274.12,119.03 274.75,118.98 " />
-<polygon style= "fill: #001188; opacity:1.00 " points="276.36,115.98 276.69,115.86 276.50,116.13 " />
-<polygon style= "fill: #0016A0; opacity:1.00 " points="277.24,116.07 277.59,115.96 277.25,116.07 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="276.29,114.81 276.31,115.10 276.60,115.00 " />
-<polygon style= "fill: #001083; opacity:1.00 " points="274.55,118.20 274.42,117.99 275.63,118.05 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="274.37,117.00 275.57,117.06 274.39,116.95 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="275.63,118.05 275.57,117.87 274.40,117.94 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="275.57,117.06 275.65,116.89 274.39,116.95 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="277.34,114.83 277.39,115.05 277.75,114.93 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="275.50,119.25 275.41,118.96 276.52,119.00 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="276.57,119.19 275.50,119.25 276.52,119.00 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="278.88,113.80 278.83,113.91 278.46,114.00 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="278.14,114.94 278.21,115.10 278.57,114.98 " />
-<polygon style= "fill: #003272; opacity:1.00 " points="275.39,119.84 278.61,120.11 275.59,119.61 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="275.24,121.13 278.18,121.31 275.16,120.81 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="275.24,120.14 278.41,120.34 275.39,119.84 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="279.41,115.00 279.76,114.88 279.50,115.16 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="279.54,113.96 279.16,114.06 279.54,114.03 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="276.78,117.12 276.91,116.84 275.65,116.89 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="276.83,118.11 276.74,117.81 275.57,117.87 " />
-<polygon style= "fill: #003A85; opacity:1.00 " points="278.61,122.05 275.59,121.55 278.41,121.88 " />
-<polygon style= "fill: #002687; opacity:1.00 " points="280.27,114.99 280.62,114.88 280.40,115.13 " />
-<polygon style= "fill: #003C88; opacity:1.00 " points="278.61,120.11 275.59,119.61 278.85,119.97 " />
-<polygon style= "fill: #003272; opacity:1.00 " points="278.41,120.34 275.39,119.84 278.61,120.11 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="277.63,119.04 277.61,118.80 276.51,118.87 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="278.18,121.31 275.16,120.81 278.18,120.97 " />
-<polygon style= "fill: #00329F; opacity:1.00 " points="281.55,114.94 281.09,115.02 281.71,115.00 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="280.50,113.71 280.52,114.00 280.29,114.06 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="277.88,117.07 276.92,117.13 277.97,116.86 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="277.88,118.05 276.98,118.12 277.81,117.83 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="281.53,113.84 281.07,113.91 281.57,114.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="278.68,119.07 278.66,118.73 277.61,118.80 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="282.65,112.89 282.19,112.97 282.59,112.99 " />
-<polygon style= "fill: #003986; opacity:1.00 " points="279.82,119.98 278.81,119.97 279.67,120.08 " />
-<polygon style= "fill: #003783; opacity:1.00 " points="279.66,122.00 279.73,122.05 278.72,122.04 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="282.48,113.84 282.51,114.00 282.05,114.08 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="278.95,117.00 277.88,117.07 279.00,116.89 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="278.88,117.98 277.88,118.05 278.84,117.86 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="279.26,120.98 278.25,120.96 279.27,121.21 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="283.46,112.95 283.45,113.01 283.92,112.90 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="278.74,119.07 278.73,118.74 280.70,118.93 " />
-<polygon style= "fill: #003686; opacity:1.00 " points="280.83,120.00 279.82,119.98 280.75,120.05 " />
-<polygon style= "fill: #003583; opacity:1.00 " points="280.61,121.96 280.74,122.07 279.73,122.05 " />
-<polygon style= "fill: #000499; opacity:1.00 " points="283.37,115.99 284.29,115.97 283.52,116.04 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="283.46,113.92 283.91,113.81 283.54,114.14 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="279.26,120.98 279.27,121.21 280.27,121.12 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="279.91,117.21 280.03,116.94 278.95,117.00 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="279.96,118.21 279.88,117.91 278.88,117.98 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="280.71,119.06 278.74,119.07 280.70,118.93 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="284.37,112.77 284.27,113.06 285.04,112.98 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="284.25,113.73 284.34,114.04 285.07,113.96 " />
-<polygon style= "fill: #003383; opacity:1.00 " points="281.56,121.92 281.75,122.08 280.74,122.07 " />
-<polygon style= "fill: #003FA9; opacity:1.00 " points="282.67,121.96 282.43,121.89 282.48,122.10 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="280.27,120.99 280.27,121.12 281.27,121.02 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="280.13,117.22 280.25,116.93 281.07,116.95 " />
-<polygon style= "fill: #00029F; opacity:1.00 " points="284.76,115.96 284.73,116.18 284.50,115.99 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="280.19,118.21 280.10,117.90 280.92,117.91 " />
-<polygon style= "fill: #0002A8; opacity:1.00 " points="281.18,120.02 282.45,120.15 281.05,119.91 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="285.81,113.87 285.85,114.01 285.09,114.03 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="285.82,112.90 285.78,113.04 285.02,113.05 " />
-<polygon style= "fill: #003DA4; opacity:1.00 " points="281.65,121.29 281.48,121.01 281.63,121.02 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="280.70,118.93 281.98,119.05 280.75,118.72 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="280.98,117.17 281.07,116.95 282.11,116.96 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="280.99,118.15 280.92,117.91 281.95,117.94 " />
-<polygon style= "fill: #00029E; opacity:1.00 " points="282.46,120.15 282.52,119.94 282.71,120.22 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="286.55,113.79 286.61,114.00 285.85,114.01 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="286.61,112.82 286.54,113.02 285.78,113.04 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="282.64,120.85 282.02,120.93 282.67,121.08 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="282.05,117.09 282.11,116.96 283.14,116.99 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="281.99,118.07 281.95,117.94 282.98,117.96 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="287.37,113.98 287.38,114.00 287.70,113.97 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="287.74,112.70 287.63,112.99 287.29,113.00 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="283.13,119.03 281.97,119.05 283.17,118.82 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="283.12,117.02 283.14,116.99 283.53,117.00 " />
-<polygon style= "fill: #002470; opacity:1.00 " points="283.89,120.80 283.93,121.03 283.30,121.11 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="283.96,121.13 284.56,120.99 284.03,121.33 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="283.48,118.28 283.39,117.96 283.80,117.97 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="287.48,113.66 287.56,113.98 290.03,114.14 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="287.71,112.69 287.56,112.99 290.23,113.15 " />
-<polygon style= "fill: #000085; opacity:1.00 " points="283.36,120.08 285.23,120.25 283.30,119.98 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="283.94,117.00 285.00,117.00 283.96,116.97 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="283.13,119.03 283.17,118.82 285.04,118.99 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="283.88,118.25 283.80,117.97 284.86,117.97 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="285.20,120.83 285.32,121.12 285.80,120.96 " />
-<polygon style= "fill: #000085; opacity:1.00 " points="285.23,120.25 285.07,119.99 283.30,119.98 " />
-<polygon style= "fill: #003971; opacity:1.00 " points="290.43,112.91 290.25,113.11 287.71,112.69 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="290.02,113.80 290.02,114.09 287.48,113.66 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="284.96,119.33 285.04,118.99 283.13,119.03 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="285.00,117.00 286.06,117.00 285.07,116.91 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="284.91,118.16 284.86,117.97 285.92,117.97 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="286.32,120.88 286.44,121.05 286.91,120.90 " />
-<polygon style= "fill: #002ED3; opacity:1.00 " points="288.59,121.00 288.09,121.12 288.64,120.96 " />
-<polygon style= "fill: #001F84; opacity:1.00 " points="287.57,120.96 287.68,121.06 287.18,121.18 " />
-<polygon style= "fill: #004E95; opacity:1.00 " points="291.43,113.02 291.48,112.81 291.64,113.09 " />
-<polygon style= "fill: #003B71; opacity:1.00 " points="290.43,112.91 290.89,112.95 290.25,113.11 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="286.06,117.00 287.13,117.00 286.18,116.85 " />
-<polygon style= "fill: #0055A4; opacity:1.00 " points="290.44,114.16 290.61,114.11 290.44,113.82 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="285.95,118.08 285.92,117.97 286.98,117.98 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="286.23,120.09 286.20,119.97 285.08,119.99 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="286.19,119.09 286.25,118.98 285.04,118.99 " />
-<polygon style= "fill: #003972; opacity:1.00 " points="291.57,115.00 291.64,115.11 290.66,114.73 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="287.25,117.30 287.36,117.00 287.89,116.97 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="291.55,113.88 290.58,113.50 291.49,114.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="287.35,118.28 287.25,117.96 287.79,117.93 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="288.52,117.13 287.80,117.22 288.59,116.93 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="288.55,118.10 287.88,118.20 288.48,117.89 " />
-<polygon style= "fill: #003670; opacity:1.00 " points="291.63,113.76 292.68,114.02 291.55,113.88 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="288.12,120.25 288.03,119.93 286.20,119.97 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="288.09,119.25 288.23,118.95 286.25,118.98 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="289.93,116.94 289.22,117.04 289.97,116.84 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="292.40,114.91 292.41,114.98 292.93,115.11 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="289.96,118.11 289.90,117.91 289.22,118.00 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="288.16,119.25 288.29,118.95 289.92,119.09 " />
-<polygon style= "fill: #0052AF; opacity:1.00 " points="294.59,114.03 294.36,113.91 294.34,113.96 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="288.18,120.25 288.10,119.94 289.72,120.07 " />
-<polygon style= "fill: #00438E; opacity:1.00 " points="293.25,114.17 293.57,114.14 293.51,113.96 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="290.56,117.09 290.64,116.84 289.93,116.94 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="290.66,118.07 290.57,117.81 289.90,117.91 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="289.92,119.09 290.02,118.96 288.29,118.95 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="289.72,120.07 289.72,119.89 288.10,119.93 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="293.27,114.57 293.16,114.85 293.66,115.05 " />
-<polygon style= "fill: #001484; opacity:1.00 " points="291.57,118.24 291.41,117.99 291.92,117.90 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="291.24,117.35 291.25,117.04 291.77,116.95 " />
-<polygon style= "fill: #001684; opacity:1.00 " points="292.56,117.99 292.06,118.12 292.44,117.81 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="291.36,119.21 291.56,118.98 290.02,118.96 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="293.45,118.19 293.50,117.86 293.98,117.84 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="291.17,120.20 291.16,119.85 289.72,119.89 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="292.80,116.95 292.28,117.09 292.81,116.76 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="294.43,114.83 294.34,114.96 294.86,115.18 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="294.55,116.02 294.07,115.75 294.57,116.11 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="294.77,118.03 293.94,118.13 294.79,117.82 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="293.34,117.14 293.32,117.00 293.84,116.91 " />
-<polygon style= "fill: #00388A; opacity:1.00 " points="295.93,115.05 295.66,115.17 295.18,114.89 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="291.35,120.20 291.34,119.87 292.77,119.99 " />
-<polygon style= "fill: #000AA8; opacity:1.00 " points="293.23,121.09 293.13,121.00 291.79,120.95 " />
-<polygon style= "fill: #000771; opacity:1.00 " points="293.29,119.05 291.75,118.99 293.40,118.98 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="295.57,118.13 295.59,117.93 294.77,118.03 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="294.41,117.14 294.93,117.05 294.36,116.88 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="295.41,119.00 295.32,119.33 294.09,118.98 " />
-<polygon style= "fill: #000871; opacity:1.00 " points="293.29,119.05 293.40,118.98 294.84,119.11 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="295.35,116.27 295.41,116.02 295.82,115.90 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="295.54,117.19 295.42,116.91 295.84,116.79 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="292.77,119.99 294.21,120.12 292.81,119.82 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="296.39,118.11 297.00,118.09 296.42,117.83 " />
-<polygon style= "fill: #000DA8; opacity:1.00 " points="294.66,121.21 294.47,121.05 293.13,121.00 " />
-<polygon style= "fill: #0012A9; opacity:1.00 " points="297.41,118.94 297.48,118.79 297.61,119.11 " />
-<polygon style= "fill: #000E85; opacity:1.00 " points="295.55,119.07 295.39,118.98 295.72,118.85 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="296.18,116.27 296.18,116.05 296.59,115.93 " />
-<polygon style= "fill: #001ABC; opacity:1.00 " points="298.84,118.95 298.39,119.05 298.69,118.89 " />
-<polygon style= "fill: #000C84; opacity:1.00 " points="294.46,121.04 294.67,121.06 294.32,120.80 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="296.30,116.73 296.28,116.90 296.68,117.09 " />
-<polygon style= "fill: #000872; opacity:1.00 " points="296.55,119.00 296.24,118.78 296.40,119.11 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="294.45,120.14 294.51,119.80 295.60,119.91 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="297.46,116.13 297.43,116.00 297.84,115.88 " />
-<polygon style= "fill: #000C84; opacity:1.00 " points="295.72,121.07 294.68,121.06 295.63,120.91 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="298.41,115.02 298.43,114.98 298.85,114.86 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="295.56,120.13 294.45,120.14 295.60,119.91 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="299.16,117.16 299.20,117.04 299.68,116.93 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="298.33,116.08 298.75,115.96 298.27,115.82 " />
-<polygon style= "fill: #000E84; opacity:1.00 " points="295.72,121.07 295.63,120.91 296.91,121.04 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="295.56,120.13 295.60,119.91 296.88,120.04 " />
-<polygon style= "fill: #0075F9; opacity:1.00 " points="301.38,115.95 301.30,116.09 301.65,115.95 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="297.80,116.89 297.59,117.16 297.23,116.93 " />
-<polygon style= "fill: #002C8D; opacity:1.00 " points="297.49,118.11 297.62,117.76 297.43,117.80 " />
-<polygon style= "fill: #003EF9; opacity:1.00 " points="302.60,117.86 302.27,117.98 302.52,118.02 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="299.45,115.05 299.48,114.82 299.83,114.68 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="300.09,117.11 300.57,117.01 300.15,116.89 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="299.67,115.93 299.33,116.09 299.54,115.66 " />
-<polygon style= "fill: #00479C; opacity:1.00 " points="300.38,116.21 300.21,116.06 300.55,115.93 " />
-<polygon style= "fill: #002272; opacity:1.00 " points="298.59,116.97 298.10,116.70 298.39,117.13 " />
-<polygon style= "fill: #003F70; opacity:1.00 " points="303.66,112.76 303.63,112.94 303.33,113.09 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="300.56,115.15 300.22,115.32 300.50,114.95 " />
-<polygon style= "fill: #0014A3; opacity:1.00 " points="297.60,119.79 297.60,120.17 297.46,120.09 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="301.43,117.03 301.76,116.89 301.42,117.00 " />
-<polygon style= "fill: #003A70; opacity:1.00 " points="301.57,114.00 301.64,113.89 301.28,114.04 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="302.45,116.04 302.52,115.92 302.84,115.79 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="298.56,117.91 298.50,118.05 298.01,117.78 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="302.60,117.11 302.28,117.27 302.51,116.92 " />
-<polygon style= "fill: #003A70; opacity:1.00 " points="301.69,114.96 301.36,115.13 301.63,114.85 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="297.60,120.95 297.54,121.07 297.28,120.78 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="298.19,120.11 298.29,119.88 299.54,120.02 " />
-<polygon style= "fill: #004882; opacity:1.00 " points="302.65,115.11 302.52,114.92 302.18,115.08 " />
-<polygon style= "fill: #004B70; opacity:1.00 " points="305.46,111.98 305.78,111.81 305.46,112.03 " />
-<polygon style= "fill: #002D82; opacity:1.00 " points="303.71,116.90 303.40,117.05 303.64,116.79 " />
-<polygon style= "fill: #003F70; opacity:1.00 " points="302.60,114.13 302.58,113.89 302.23,114.05 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="299.54,120.02 299.66,119.87 298.34,119.82 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="303.73,115.89 303.40,116.05 303.72,115.79 " />
-<polygon style= "fill: #003A9C; opacity:1.00 " points="304.34,117.07 304.67,116.93 304.21,116.96 " />
-<polygon style= "fill: #005B9C; opacity:1.00 " points="303.55,115.01 303.36,114.85 303.03,115.00 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="299.25,117.82 299.79,118.04 299.12,118.01 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="304.50,116.10 304.84,115.96 304.43,115.87 " />
-<polygon style= "fill: #004470; opacity:1.00 " points="303.70,113.95 303.40,114.12 303.61,113.68 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="299.34,121.01 300.42,121.14 299.34,120.79 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="299.46,118.97 299.76,119.10 299.52,119.24 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="300.62,120.14 300.80,119.91 299.66,119.87 " />
-<polygon style= "fill: #000872; opacity:1.00 " points="298.64,121.00 298.42,121.14 298.15,120.84 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="305.64,114.93 305.39,115.09 305.64,114.75 " />
-<polygon style= "fill: #0026A2; opacity:1.00 " points="300.38,117.96 300.45,118.14 300.67,117.84 " />
-<polygon style= "fill: #003170; opacity:1.00 " points="305.54,116.01 305.41,115.73 305.18,115.84 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="307.64,110.79 307.61,110.97 307.30,111.12 " />
-<polygon style= "fill: #0051AE; opacity:1.00 " points="306.48,116.17 306.32,116.08 306.57,115.93 " />
-<polygon style= "fill: #0093FF; opacity:1.00 " points="308.36,114.97 308.36,115.09 308.61,114.94 " />
-<polygon style= "fill: #005480; opacity:1.00 " points="304.60,114.14 304.46,113.96 304.76,113.81 " />
-<polygon style= "fill: #004B70; opacity:1.00 " points="304.51,113.16 304.49,112.96 304.79,112.82 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="300.60,121.14 300.41,121.14 300.60,120.82 " />
-<polygon style= "fill: #006B9A; opacity:1.00 " points="305.45,114.07 305.75,113.93 305.38,114.01 " />
-<polygon style= "fill: #000C83; opacity:1.00 " points="298.48,122.18 298.29,122.21 298.52,121.95 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="306.57,114.97 306.54,114.91 306.29,115.08 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="300.60,121.14 300.60,120.82 302.00,121.04 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="305.53,113.09 305.83,112.94 305.48,112.94 " />
-<polygon style= "fill: #00457C; opacity:1.00 " points="307.66,114.98 307.59,114.89 307.34,115.06 " />
-<polygon style= "fill: #00229E; opacity:1.00 " points="302.37,118.31 301.33,117.93 302.24,118.32 " />
-<polygon style= "fill: #004170; opacity:1.00 " points="307.48,114.10 307.73,113.94 307.45,113.99 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="306.31,112.07 306.61,111.93 306.33,111.91 " />
-<polygon style= "fill: #006180; opacity:1.00 " points="306.35,113.15 306.28,113.07 306.59,112.92 " />
-<polygon style= "fill: #004870; opacity:1.00 " points="308.45,113.05 308.70,112.89 308.49,112.96 " />
-<polygon style= "fill: #006270; opacity:1.00 " points="309.50,109.82 309.47,109.99 309.79,109.81 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="301.32,119.14 301.26,119.32 300.22,118.94 " />
-<polygon style= "fill: #0020AA; opacity:1.00 " points="302.29,122.03 302.20,121.95 303.60,122.17 " />
-<polygon style= "fill: #00799A; opacity:1.00 " points="307.58,113.04 307.41,112.89 307.12,113.05 " />
-<polygon style= "fill: #004670; opacity:1.00 " points="308.75,113.99 308.66,113.82 308.41,113.99 " />
-<polygon style= "fill: #006497; opacity:1.00 " points="309.63,114.07 309.48,113.94 309.24,114.11 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="302.00,121.04 303.39,121.25 302.04,120.85 " />
-<polygon style= "fill: #005B70; opacity:1.00 " points="307.66,112.05 307.56,111.76 307.26,111.93 " />
-<polygon style= "fill: #004D70; opacity:1.00 " points="309.63,113.12 309.53,112.89 309.28,113.06 " />
-<polygon style= "fill: #001789; opacity:1.00 " points="299.71,122.11 299.55,122.15 299.43,121.97 " />
-<polygon style= "fill: #0022A8; opacity:1.00 " points="303.44,121.91 303.58,121.79 303.57,122.17 " />
-<polygon style= "fill: #0090BA; opacity:1.00 " points="311.64,112.97 311.43,113.14 311.51,112.93 " />
-<polygon style= "fill: #005670; opacity:1.00 " points="310.48,112.16 310.41,111.98 310.63,111.82 " />
-<line x1="303.98" y1="121.00"  x2="303.98" y2="120.99" style= "stroke: #0030FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001972; opacity:1.00 " points="300.36,123.99 300.48,124.16 300.52,123.89 " />
-<polygon style= "fill: #005775; opacity:1.00 " points="310.56,113.11 310.38,112.91 310.55,112.78 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="302.29,120.06 302.35,120.36 301.31,119.98 " />
-<polygon style= "fill: #006270; opacity:1.00 " points="308.39,111.21 308.36,111.01 308.64,110.86 " />
-<polygon style= "fill: #006D7E; opacity:1.00 " points="308.54,112.18 308.38,111.98 308.66,111.82 " />
-<polygon style= "fill: #001772; opacity:1.00 " points="302.83,118.86 302.60,119.07 301.55,118.70 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="302.59,119.09 302.41,119.37 301.37,118.99 " />
-<polygon style= "fill: #009DAF; opacity:1.00 " points="309.46,112.14 309.32,112.07 309.60,111.92 " />
-<polygon style= "fill: #005B70; opacity:1.00 " points="311.60,111.96 311.56,111.91 311.36,112.08 " />
-<polygon style= "fill: #0091A8; opacity:1.00 " points="312.51,112.07 312.39,112.00 312.60,111.83 " />
-<polygon style= "fill: #006870; opacity:1.00 " points="309.34,111.09 309.61,110.93 309.29,110.96 " />
-<polygon style= "fill: #001D9D; opacity:1.00 " points="302.48,120.11 302.65,119.78 302.48,119.77 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="299.61,122.88 299.75,123.03 299.43,123.07 " />
-<polygon style= "fill: #006470; opacity:1.00 " points="312.58,111.04 312.38,111.21 312.50,110.91 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="305.21,122.11 303.44,121.91 305.18,121.96 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="305.36,121.11 303.46,120.91 305.43,120.97 " />
-<polygon style= "fill: #002CB0; opacity:1.00 " points="299.50,124.17 299.68,124.09 299.45,123.90 " />
-<polygon style= "fill: #001571; opacity:1.00 " points="303.77,119.02 302.93,118.89 303.61,119.19 " />
-<polygon style= "fill: #007B7E; opacity:1.00 " points="310.50,111.13 310.78,110.97 310.38,110.97 " />
-<polygon style= "fill: #008890; opacity:1.00 " points="313.65,111.01 313.55,110.91 313.34,111.09 " />
-<polygon style= "fill: #002CB0; opacity:1.00 " points="300.40,123.04 300.70,122.87 300.64,123.05 " />
-<polygon style= "fill: #00A69E; opacity:1.00 " points="311.57,108.90 311.54,109.14 311.43,108.98 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="310.62,110.03 310.58,109.82 310.31,110.00 " />
-<polygon style= "fill: #00AFAC; opacity:1.00 " points="311.73,110.93 311.56,110.85 311.30,111.01 " />
-<polygon style= "fill: #006F70; opacity:1.00 " points="313.55,110.09 313.76,109.92 313.47,109.95 " />
-<polygon style= "fill: #00BAAB; opacity:1.00 " points="315.45,110.01 315.66,109.84 315.33,109.97 " />
-<polygon style= "fill: #00756F; opacity:1.00 " points="314.52,110.02 314.73,109.85 314.38,109.86 " />
-<polygon style= "fill: #00706A; opacity:1.00 " points="311.63,110.16 311.47,109.89 311.28,110.02 " />
-<polygon style= "fill: #001B88; opacity:1.00 " points="304.02,118.88 303.84,118.98 306.07,119.21 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="305.18,121.96 306.73,122.27 305.19,121.77 " />
-<polygon style= "fill: #0023A1; opacity:1.00 " points="307.36,123.09 307.58,122.83 307.60,123.05 " />
-<polygon style= "fill: #00B699; opacity:1.00 " points="316.48,109.09 316.34,109.03 316.53,108.86 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="303.31,119.90 303.31,120.15 305.36,120.24 " />
-<polygon style= "fill: #007566; opacity:1.00 " points="315.72,109.07 315.54,108.87 315.40,108.99 " />
-<polygon style= "fill: #007D71; opacity:1.00 " points="312.43,110.02 312.70,109.86 312.40,109.98 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="306.73,122.27 306.74,121.93 305.19,121.77 " />
-<polygon style= "fill: #007063; opacity:1.00 " points="312.59,109.12 312.33,109.30 312.52,108.93 " />
-<polygon style= "fill: #00A279; opacity:1.00 " points="317.46,108.00 317.64,107.84 317.41,107.97 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="305.45,120.91 305.60,121.17 303.55,120.83 " />
-<polygon style= "fill: #00705C; opacity:1.00 " points="313.55,108.04 313.56,107.92 313.29,108.09 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="305.44,119.89 305.36,120.24 303.31,119.90 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="313.58,109.00 313.50,108.86 313.25,109.04 " />
-<polygon style= "fill: #009778; opacity:1.00 " points="314.51,109.09 314.78,108.93 314.38,108.98 " />
-<polygon style= "fill: #001F87; opacity:1.00 " points="307.27,122.91 307.15,122.68 309.73,123.33 " />
-<polygon style= "fill: #007055; opacity:1.00 " points="314.50,108.10 314.77,107.95 314.42,107.88 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="305.49,119.90 305.44,120.24 306.17,120.17 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="307.12,121.98 307.20,121.68 309.78,122.33 " />
-<polygon style= "fill: #007E5A; opacity:1.00 " points="315.64,108.15 315.45,107.91 315.73,107.76 " />
-<polygon style= "fill: #00704E; opacity:1.00 " points="315.47,107.18 315.43,106.94 315.71,106.79 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="306.27,120.91 306.40,121.12 307.35,121.04 " />
-<polygon style= "fill: #00AF78; opacity:1.00 " points="316.57,108.10 316.40,108.02 316.68,107.86 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="306.21,119.90 306.17,120.17 307.19,120.07 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="309.73,123.33 309.68,123.05 307.14,122.64 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="309.78,122.33 309.93,122.05 307.22,121.64 " />
-<polygon style= "fill: #007027; opacity:1.00 " points="321.48,103.17 321.36,103.02 321.53,102.84 " />
-<polygon style= "fill: #007049; opacity:1.00 " points="316.41,107.02 316.69,106.86 316.38,106.93 " />
-<polygon style= "fill: #00701C; opacity:1.00 " points="322.50,102.09 322.41,101.97 322.58,101.80 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="307.28,120.92 307.35,121.04 308.31,120.97 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="307.21,119.91 307.19,120.07 308.21,119.97 " />
-<polygon style= "fill: #007E4E; opacity:1.00 " points="317.59,107.05 317.49,106.93 317.23,107.11 " />
-<polygon style= "fill: #007012; opacity:1.00 " points="323.52,101.00 323.46,100.93 323.63,100.75 " />
-<polygon style= "fill: #0029A4; opacity:1.00 " points="310.48,121.87 310.55,122.05 310.26,122.10 " />
-<polygon style= "fill: #00AF64; opacity:1.00 " points="318.56,107.02 318.84,106.86 318.42,106.95 " />
-<polygon style= "fill: #007042; opacity:1.00 " points="317.70,105.95 317.68,105.77 317.40,105.95 " />
-<polygon style= "fill: #008511; opacity:1.00 " points="324.52,100.93 324.39,100.82 324.21,101.00 " />
-<polygon style= "fill: #00703D; opacity:1.00 " points="318.52,105.00 318.60,104.86 318.31,105.03 " />
-<polygon style= "fill: #007009; opacity:1.00 " points="324.54,99.92 324.37,100.10 324.51,99.88 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="308.31,120.97 308.81,120.93 308.44,121.19 " />
-<polygon style= "fill: #008505; opacity:1.00 " points="325.39,100.05 325.57,99.88 325.23,99.92 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="308.21,119.97 308.74,119.92 308.16,120.26 " />
-<polygon style= "fill: #007000; opacity:1.00 " points="325.66,99.09 325.50,98.90 325.39,99.01 " />
-<polygon style= "fill: #00703D; opacity:1.00 " points="318.80,106.04 318.66,105.79 318.39,105.97 " />
-<polygon style= "fill: #001D73; opacity:1.00 " points="310.48,121.87 310.74,121.73 313.85,122.63 " />
-<polygon style= "fill: #078400; opacity:1.00 " points="326.44,99.00 326.61,98.82 326.43,98.98 " />
-<polygon style= "fill: #0B7000; opacity:1.00 " points="326.55,98.10 326.42,97.95 326.59,97.77 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="309.97,123.09 309.99,122.75 313.10,123.65 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="309.21,120.88 309.36,121.12 309.96,121.01 " />
-<polygon style= "fill: #00803F; opacity:1.00 " points="319.52,106.01 319.34,105.78 319.65,105.63 " />
-<polygon style= "fill: #179D00; opacity:1.00 " points="327.60,98.03 327.47,97.94 327.65,97.77 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="309.73,119.84 309.09,119.89 309.71,120.08 " />
-<polygon style= "fill: #007035; opacity:1.00 " points="319.72,104.83 319.41,105.00 319.69,104.61 " />
-<polygon style= "fill: #00B051; opacity:1.00 " points="320.53,105.97 320.36,105.90 320.68,105.75 " />
-<polygon style= "fill: #157000; opacity:1.00 " points="327.56,97.01 327.46,96.90 327.63,96.72 " />
-<polygon style= "fill: #239D00; opacity:1.00 " points="328.43,97.13 328.34,97.06 328.51,96.89 " />
-<polygon style= "fill: #007030; opacity:1.00 " points="320.72,103.83 320.39,104.00 320.77,103.74 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="310.57,120.91 310.64,121.02 310.00,121.08 " />
-<polygon style= "fill: #002287; opacity:1.00 " points="313.27,124.57 313.14,124.32 310.16,123.66 " />
-<polygon style= "fill: #1E7000; opacity:1.00 " points="328.56,95.92 328.39,96.10 328.49,95.84 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="313.14,124.31 313.08,124.00 310.03,123.41 " />
-<polygon style= "fill: #329D00; opacity:1.00 " points="329.44,96.05 329.38,96.01 329.55,95.83 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="313.20,123.30 313.37,123.02 310.09,122.41 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="313.10,123.65 313.20,123.32 309.99,122.75 " />
-<polygon style= "fill: #00AC37; opacity:1.00 " points="323.49,102.02 323.62,102.11 323.49,101.86 " />
-<polygon style= "fill: #007030; opacity:1.00 " points="320.54,105.06 320.45,104.89 320.76,104.74 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="310.35,119.96 311.00,119.84 310.34,120.11 " />
-<polygon style= "fill: #297000; opacity:1.00 " points="329.69,94.97 329.56,94.83 329.40,95.01 " />
-<polygon style= "fill: #002984; opacity:1.00 " points="311.35,121.03 311.96,120.94 311.48,121.14 " />
-<polygon style= "fill: #419D00; opacity:1.00 " points="330.61,94.79 330.44,94.97 330.58,94.78 " />
-<polygon style= "fill: #008033; opacity:1.00 " points="321.73,104.96 321.60,104.80 321.30,104.98 " />
-<polygon style= "fill: #337000; opacity:1.00 " points="330.73,93.91 330.57,93.73 330.40,93.92 " />
-<polygon style= "fill: #00701E; opacity:1.00 " points="324.39,101.78 324.20,101.95 324.54,101.96 " />
-<polygon style= "fill: #00702B; opacity:1.00 " points="321.61,103.98 321.59,103.77 321.27,103.95 " />
-<polygon style= "fill: #00B041; opacity:1.00 " points="322.77,104.94 322.60,104.86 322.30,105.02 " />
-<polygon style= "fill: #519F00; opacity:1.00 " points="331.62,94.04 331.45,93.93 331.63,93.75 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="311.62,119.99 310.98,120.05 311.63,120.05 " />
-<polygon style= "fill: #002B84; opacity:1.00 " points="312.71,118.94 312.52,119.07 311.88,119.13 " />
-<polygon style= "fill: #007025; opacity:1.00 " points="322.50,103.03 322.61,102.86 322.33,103.00 " />
-<polygon style= "fill: #002BA3; opacity:1.00 " points="313.71,122.80 313.77,122.99 313.48,123.04 " />
-<polygon style= "fill: #002B84; opacity:1.00 " points="312.56,120.85 312.75,121.02 312.11,121.08 " />
-<polygon style= "fill: #3E7000; opacity:1.00 " points="331.58,93.03 331.44,92.87 331.61,92.69 " />
-<polygon style= "fill: #5E9F00; opacity:1.00 " points="332.47,93.14 332.34,93.05 332.51,92.87 " />
-<polygon style= "fill: #007014; opacity:1.00 " points="325.34,100.91 325.45,101.06 325.64,100.88 " />
-<polygon style= "fill: #008A12; opacity:1.00 " points="326.64,100.79 326.45,100.96 326.75,100.86 " />
-<polygon style= "fill: #007025; opacity:1.00 " points="322.75,104.14 322.60,103.85 322.34,104.00 " />
-<polygon style= "fill: #477000; opacity:1.00 " points="332.61,91.93 332.43,92.12 332.50,91.81 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="312.36,119.92 312.41,120.25 312.89,120.14 " />
-<polygon style= "fill: #00700B; opacity:1.00 " points="326.47,99.88 326.29,100.05 326.56,99.98 " />
-<polygon style= "fill: #6D9F00; opacity:1.00 " points="333.50,92.06 333.40,91.99 333.57,91.82 " />
-<polygon style= "fill: #002DAC; opacity:1.00 " points="313.37,124.60 316.54,125.61 313.56,124.77 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="313.61,118.93 313.07,119.01 313.51,119.09 " />
-<polygon style= "fill: #527000; opacity:1.00 " points="333.46,91.02 333.39,90.93 333.56,90.75 " />
-<polygon style= "fill: #007006; opacity:1.00 " points="327.48,99.83 327.59,99.92 327.40,100.09 " />
-<polygon style= "fill: #008227; opacity:1.00 " points="323.66,104.13 323.27,104.30 323.51,103.92 " />
-<polygon style= "fill: #007000; opacity:1.00 " points="327.53,98.71 327.61,98.84 327.42,99.01 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="313.20,123.68 316.38,124.68 313.18,124.02 " />
-<polygon style= "fill: #688600; opacity:1.00 " points="334.46,90.93 334.64,90.76 334.34,90.83 " />
-<polygon style= "fill: #007020; opacity:1.00 " points="323.30,103.24 323.29,102.98 323.70,102.84 " />
-<polygon style= "fill: #5C7000; opacity:1.00 " points="334.49,89.92 334.45,89.88 334.63,89.70 " />
-<polygon style= "fill: #002A70; opacity:1.00 " points="313.42,120.01 313.95,119.89 313.43,120.11 " />
-<polygon style= "fill: #002EAE; opacity:1.00 " points="317.84,123.88 314.47,122.70 317.65,123.70 " />
-<polygon style= "fill: #047000; opacity:1.00 " points="328.40,98.94 328.58,98.76 328.54,99.05 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="316.64,120.09 316.69,119.89 316.14,120.01 " />
-<polygon style= "fill: #009C2A; opacity:1.00 " points="324.64,104.02 324.25,104.17 324.51,103.91 " />
-<polygon style= "fill: #738600; opacity:1.00 " points="335.35,90.05 335.53,89.88 335.20,89.93 " />
-<polygon style= "fill: #077000; opacity:1.00 " points="328.46,97.81 328.56,97.97 328.37,98.14 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="314.55,119.00 314.02,119.08 314.52,119.13 " />
-<polygon style= "fill: #657000; opacity:1.00 " points="335.68,89.00 335.52,88.82 335.35,89.01 " />
-<polygon style= "fill: #0D7000; opacity:1.00 " points="329.50,97.86 329.68,98.01 329.49,98.19 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="314.52,119.95 313.97,120.03 314.56,120.09 " />
-<polygon style= "fill: #00B62C; opacity:1.00 " points="325.75,103.91 325.62,103.85 325.23,104.00 " />
-<polygon style= "fill: #001E73; opacity:1.00 " points="317.14,123.66 313.71,122.80 316.88,123.81 " />
-<polygon style= "fill: #00701C; opacity:1.00 " points="324.55,103.05 324.16,103.22 324.52,102.89 " />
-<polygon style= "fill: #127000; opacity:1.00 " points="329.39,96.91 329.58,96.73 329.51,97.10 " />
-<polygon style= "fill: #848A00; opacity:1.00 " points="336.59,88.89 336.41,89.07 336.41,88.73 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="316.35,125.03 313.23,124.34 316.41,125.35 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="316.66,124.04 313.31,123.34 316.48,124.34 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="316.34,125.03 316.36,124.68 317.66,125.12 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="316.48,124.34 313.20,123.68 316.38,124.68 " />
-<polygon style= "fill: #706F00; opacity:1.00 " points="336.63,87.80 336.61,87.77 336.42,87.95 " />
-<polygon style= "fill: #177000; opacity:1.00 " points="330.40,96.84 330.58,96.98 330.74,96.80 " />
-<polygon style= "fill: #1C7000; opacity:1.00 " points="330.43,95.82 330.54,95.95 330.70,95.77 " />
-<polygon style= "fill: #007017; opacity:1.00 " points="325.39,102.03 325.80,101.89 325.48,101.89 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="315.63,118.89 315.56,119.13 315.02,119.21 " />
-<polygon style= "fill: #8A8300; opacity:1.00 " points="337.51,87.98 337.37,87.86 337.56,87.68 " />
-<line x1="316.19" y1="119.54"  x2="316.73" y2="119.46" style= "stroke: #0070FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002F70; opacity:1.00 " points="315.61,119.84 315.70,120.11 315.16,120.18 " />
-<polygon style= "fill: #207000; opacity:1.00 " points="331.39,95.78 331.23,95.96 331.54,95.90 " />
-<polygon style= "fill: #706600; opacity:1.00 " points="337.54,86.86 337.35,87.04 337.46,86.73 " />
-<polygon style= "fill: #257000; opacity:1.00 " points="331.51,94.87 331.54,94.91 331.38,95.09 " />
-<polygon style= "fill: #007017; opacity:1.00 " points="325.45,103.02 325.41,102.94 325.82,102.80 " />
-<polygon style= "fill: #2B7000; opacity:1.00 " points="332.50,94.82 332.56,94.87 332.40,95.05 " />
-<polygon style= "fill: #307000; opacity:1.00 " points="332.53,93.85 332.37,94.03 332.63,93.95 " />
-<polygon style= "fill: #705B00; opacity:1.00 " points="338.47,85.94 338.42,85.86 338.61,85.68 " />
-<polygon style= "fill: #3D8000; opacity:1.00 " points="333.55,93.81 333.39,93.98 333.64,93.87 " />
-<polygon style= "fill: #3B7000; opacity:1.00 " points="333.52,92.79 333.36,92.96 333.59,92.86 " />
-<polygon style= "fill: #008217; opacity:1.00 " points="326.77,103.16 326.59,102.90 326.37,102.99 " />
-<polygon style= "fill: #705300; opacity:1.00 " points="339.38,84.98 339.57,84.80 339.32,84.85 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="316.65,124.04 316.88,123.81 318.19,124.24 " />
-<polygon style= "fill: #002EAC; opacity:1.00 " points="318.03,126.21 317.95,126.14 316.73,125.78 " />
-<polygon style= "fill: #007014; opacity:1.00 " points="326.62,101.92 326.63,101.89 326.34,101.96 " />
-<polygon style= "fill: #4A8000; opacity:1.00 " points="334.38,92.92 334.45,92.97 334.61,92.79 " />
-<polygon style= "fill: #00248A; opacity:1.00 " points="318.56,124.09 317.14,123.67 318.71,124.07 " />
-<polygon style= "fill: #457000; opacity:1.00 " points="334.40,91.96 334.56,91.78 334.50,92.07 " />
-<polygon style= "fill: #568000; opacity:1.00 " points="335.41,91.89 335.57,91.71 335.54,91.98 " />
-<polygon style= "fill: #704800; opacity:1.00 " points="340.50,83.96 340.44,83.75 340.66,83.58 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="317.66,125.12 317.71,124.98 316.36,124.68 " />
-<polygon style= "fill: #507000; opacity:1.00 " points="335.37,90.87 335.53,90.69 335.50,91.00 " />
-<polygon style= "fill: #628000; opacity:1.00 " points="336.38,90.81 336.54,90.63 336.53,90.91 " />
-<polygon style= "fill: #008313; opacity:1.00 " points="327.50,103.02 327.37,102.82 327.98,102.72 " />
-<polygon style= "fill: #7C9400; opacity:1.00 " points="337.50,89.77 337.36,89.93 337.63,89.85 " />
-<polygon style= "fill: #704100; opacity:1.00 " points="341.56,82.85 341.34,83.03 341.56,82.73 " />
-<polygon style= "fill: #5A7000; opacity:1.00 " points="336.50,89.60 336.65,89.76 336.49,89.94 " />
-<polygon style= "fill: #007010; opacity:1.00 " points="327.83,101.91 327.21,102.07 327.84,101.72 " />
-<polygon style= "fill: #A0AB00; opacity:1.00 " points="338.55,88.78 338.40,88.96 338.63,88.81 " />
-<polygon style= "fill: #637000; opacity:1.00 " points="337.43,88.81 337.28,88.99 337.59,88.96 " />
-<polygon style= "fill: #00A015; opacity:1.00 " points="328.28,103.09 328.16,102.98 328.77,102.89 " />
-<polygon style= "fill: #706900; opacity:1.00 " points="338.45,86.83 338.50,86.90 338.66,86.72 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="317.70,125.78 319.52,126.39 317.67,125.65 " />
-<polygon style= "fill: #706F00; opacity:1.00 " points="338.49,87.86 338.64,87.68 338.52,87.89 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="317.71,124.98 317.77,124.78 319.61,125.39 " />
-<polygon style= "fill: #705F00; opacity:1.00 " points="339.44,85.85 339.52,85.93 339.67,85.75 " />
-<polygon style= "fill: #706600; opacity:1.00 " points="339.44,86.82 339.29,87.00 339.56,86.91 " />
-<line x1="411.93" y1="150.07"  x2="412.71" y2="150.31" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00A012; opacity:1.00 " points="329.60,102.97 329.43,102.82 328.86,102.96 " />
-<line x1="412.71" y1="150.31"  x2="413.50" y2="150.55" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.59" y1="149.49"  x2="410.36" y2="149.66" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00700D; opacity:1.00 " points="328.43,101.96 329.04,101.86 328.45,101.75 " />
-<polygon style= "fill: #705B00; opacity:1.00 " points="340.46,85.82 340.54,85.89 340.39,86.06 " />
-<polygon style= "fill: #705400; opacity:1.00 " points="340.57,84.66 340.63,84.72 340.48,84.90 " />
-<polygon style= "fill: #00700B; opacity:1.00 " points="329.32,101.00 329.94,100.90 329.48,100.90 " />
-<line x1="413.50" y1="150.55"  x2="414.29" y2="150.81" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="403.61" y1="170.38"  x2="404.00" y2="170.34" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="319.61,125.39 319.79,125.09 317.85,124.65 " />
-<polygon style= "fill: #7A5800; opacity:1.00 " points="341.46,84.81 341.30,84.99 341.53,84.86 " />
-<line x1="414.29" y1="150.81"  x2="415.06" y2="151.07" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00A00D; opacity:1.00 " points="330.48,102.96 330.49,102.73 330.73,102.93 " />
-<line x1="404.81" y1="170.29"  x2="405.21" y2="170.27" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="402.44" y1="170.54"  x2="402.82" y2="170.48" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #704A00; opacity:1.00 " points="341.46,83.88 341.61,83.70 341.55,83.97 " />
-<line x1="405.62" y1="170.27"  x2="406.03" y2="170.26" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #7A4D00; opacity:1.00 " points="342.43,83.77 342.54,83.85 342.39,84.03 " />
-<line x1="415.06" y1="151.07"  x2="415.82" y2="151.34" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #702F00; opacity:1.00 " points="343.48,80.86 343.63,80.68 343.50,80.91 " />
-<polygon style= "fill: #944F00; opacity:1.00 " points="343.49,82.79 343.60,82.86 343.44,83.04 " />
-<line x1="401.35" y1="170.80"  x2="401.71" y2="170.70" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #703F00; opacity:1.00 " points="342.50,82.60 342.63,82.71 342.47,82.89 " />
-<polygon style= "fill: #00700B; opacity:1.00 " points="329.71,102.10 329.66,101.77 329.05,101.93 " />
-<polygon style= "fill: #002DA0; opacity:1.00 " points="319.65,125.74 319.46,126.07 319.63,126.02 " />
-<line x1="406.83" y1="170.26"  x2="407.23" y2="170.27" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #773000; opacity:1.00 " points="344.58,81.93 344.42,81.74 344.20,81.93 " />
-<line x1="415.82" y1="151.34"  x2="416.57" y2="151.62" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="400.68" y1="171.03"  x2="401.01" y2="170.91" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #A13700; opacity:1.00 " points="345.37,81.79 345.37,81.63 345.58,81.89 " />
-<polygon style= "fill: #703400; opacity:1.00 " points="343.41,81.84 343.56,81.66 343.57,81.97 " />
-<polygon style= "fill: #702400; opacity:1.00 " points="344.41,79.84 344.47,79.91 344.62,79.73 " />
-<polygon style= "fill: #007009; opacity:1.00 " points="329.92,101.10 330.11,100.86 331.10,100.87 " />
-<line x1="407.62" y1="170.27"  x2="408.00" y2="170.28" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #702A00; opacity:1.00 " points="344.45,80.57 344.63,80.73 344.49,80.89 " />
-<line x1="399.77" y1="171.46"  x2="400.05" y2="171.30" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #701A00; opacity:1.00 " points="345.37,78.84 345.45,78.92 345.59,78.73 " />
-<polygon style= "fill: #00E610; opacity:1.00 " points="331.88,102.84 331.71,102.94 332.96,102.95 " />
-<polygon style= "fill: #701F00; opacity:1.00 " points="345.38,79.78 345.52,79.89 345.66,79.71 " />
-<line x1="392.77" y1="180.56"  x2="398.35" y2="172.67" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="417.29" y1="151.89"  x2="418.00" y2="152.17" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00278A; opacity:1.00 " points="320.55,124.68 323.65,125.74 320.28,124.71 " />
-<polygon style= "fill: #007009; opacity:1.00 " points="330.73,102.00 329.75,102.11 330.72,101.76 " />
-<polygon style= "fill: #771600; opacity:1.00 " points="346.45,78.84 346.54,78.91 346.68,78.72 " />
-<polygon style= "fill: #700F00; opacity:1.00 " points="346.38,77.87 346.44,77.93 346.58,77.74 " />
-<polygon style= "fill: #702300; opacity:1.00 " points="345.55,81.02 345.42,80.77 345.73,80.61 " />
-<polygon style= "fill: #00C50D; opacity:1.00 " points="331.39,102.95 331.22,102.89 332.47,102.90 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="320.01,124.86 323.12,125.91 319.78,125.09 " />
-<polygon style= "fill: #770B00; opacity:1.00 " points="347.38,77.79 347.52,77.61 347.50,77.88 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="319.78,125.09 322.88,126.15 319.60,125.39 " />
-<polygon style= "fill: #700500; opacity:1.00 " points="347.43,76.63 347.57,76.75 347.42,76.93 " />
-<polygon style= "fill: #910000; opacity:1.00 " points="348.40,76.80 348.54,76.61 348.53,76.88 " />
-<polygon style= "fill: #007007; opacity:1.00 " points="330.97,101.04 331.10,100.87 332.35,100.88 " />
-<line x1="389.48" y1="184.26"  x2="392.77" y2="180.56" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="398.76" y1="172.21"  x2="398.98" y2="172.00" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #7F2400; opacity:1.00 " points="346.71,80.83 346.64,80.73 346.34,80.91 " />
-<polygon style= "fill: #701D00; opacity:1.00 " points="346.59,79.83 346.57,79.70 346.26,79.89 " />
-<polygon style= "fill: #B02C00; opacity:1.00 " points="347.77,80.79 347.65,80.74 347.35,80.91 " />
-<line x1="418.67" y1="152.43"  x2="419.32" y2="152.69" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0030AC; opacity:1.00 " points="322.75,127.72 319.85,126.83 322.96,127.89 " />
-<polygon style= "fill: #701800; opacity:1.00 " points="347.53,78.83 347.59,78.72 347.27,78.89 " />
-<polygon style= "fill: #007007; opacity:1.00 " points="331.99,102.13 331.98,101.88 330.73,102.00 " />
-<line x1="403.76" y1="149.21"  x2="404.28" y2="149.11" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="322.56,127.14 319.52,126.39 322.62,127.46 " />
-<line x1="419.32" y1="152.69"  x2="419.93" y2="152.94" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="322.59,126.79 319.46,126.07 322.56,127.14 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="322.88,126.15 319.60,125.39 322.70,126.45 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="322.70,126.45 319.48,125.73 322.59,126.79 " />
-<polygon style= "fill: #007006; opacity:1.00 " points="332.29,100.95 332.35,100.88 333.36,100.89 " />
-<polygon style= "fill: #701800; opacity:1.00 " points="347.68,79.75 347.38,79.93 347.63,79.65 " />
-<polygon style= "fill: #009D08; opacity:1.00 " points="333.38,102.91 333.46,102.70 333.64,102.99 " />
-<polygon style= "fill: #7F1800; opacity:1.00 " points="348.61,79.87 348.45,79.66 348.15,79.84 " />
-<polygon style= "fill: #9F1600; opacity:1.00 " points="349.34,79.68 349.54,79.97 349.54,79.75 " />
-<polygon style= "fill: #009D08; opacity:1.00 " points="333.70,100.97 333.41,100.89 333.49,101.08 " />
-<polygon style= "fill: #007006; opacity:1.00 " points="333.00,102.13 332.98,101.78 331.98,101.88 " />
-<polygon style= "fill: #701100; opacity:1.00 " points="348.48,78.88 348.80,78.71 348.45,78.62 " />
-<polygon style= "fill: #0000EA; opacity:1.00 " points="393.39,179.43 393.38,179.07 393.59,179.16 " />
-<polygon style= "fill: #700F00; opacity:1.00 " points="348.88,78.12 349.05,77.89 349.59,77.81 " />
-<line x1="420.50" y1="153.18"  x2="421.04" y2="153.39" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="422.66" y1="134.90"  x2="423.45" y2="135.13" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.09" y1="134.49"  x2="421.87" y2="134.68" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.45" y1="135.13"  x2="424.24" y2="135.38" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="420.32" y1="134.31"  x2="421.09" y2="134.49" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="402.49" y1="149.72"  x2="402.87" y2="149.52" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="411.76" y1="170.13"  x2="411.98" y2="170.07" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.24" y1="135.38"  x2="425.03" y2="135.63" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="419.56" y1="134.16"  x2="420.32" y2="134.31" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="418.83" y1="134.03"  x2="419.56" y2="134.16" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007106; opacity:1.00 " points="333.67,100.75 336.73,101.28 333.41,100.89 " />
-<polygon style= "fill: #700E00; opacity:1.00 " points="349.32,78.96 349.29,78.67 349.98,78.56 " />
-<polygon style= "fill: #008707; opacity:1.00 " points="333.02,102.46 336.08,102.99 333.17,102.73 " />
-<line x1="425.81" y1="135.89"  x2="426.58" y2="136.16" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00298A; opacity:1.00 " points="323.64,125.85 323.89,125.82 326.73,126.79 " />
-<polygon style= "fill: #0033AC; opacity:1.00 " points="323.18,127.96 322.99,127.80 325.84,128.77 " />
-<polygon style= "fill: #007006; opacity:1.00 " points="332.95,101.78 336.01,102.31 332.94,102.13 " />
-<line x1="417.43" y1="133.86"  x2="418.11" y2="133.93" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.58" y1="136.16"  x2="427.33" y2="136.43" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002273; opacity:1.00 " points="323.35,126.00 326.20,126.96 323.37,125.98 " />
-<line x1="421.53" y1="153.59"  x2="421.98" y2="153.77" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002170; opacity:1.00 " points="322.95,126.50 323.11,126.23 325.96,127.20 " />
-<line x1="381.43" y1="194.63"  x2="381.91" y2="194.84" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="380.52" y1="194.16"  x2="380.97" y2="194.40" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #700C00; opacity:1.00 " points="350.82,77.82 350.91,77.70 350.18,77.85 " />
-<polygon style= "fill: #700C00; opacity:1.00 " points="350.03,78.91 350.73,78.80 350.02,78.79 " />
-<line x1="382.41" y1="195.02"  x2="382.91" y2="195.18" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.33" y1="136.43"  x2="428.06" y2="136.71" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="379.67" y1="193.63"  x2="380.09" y2="193.90" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="401.88" y1="150.25"  x2="402.16" y2="149.97" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="383.42" y1="195.32"  x2="383.93" y2="195.43" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.53" y1="169.85"  x2="412.68" y2="169.75" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.14" y1="133.81"  x2="416.77" y2="133.82" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008707; opacity:1.00 " points="336.08,102.99 333.17,102.73 336.23,103.26 " />
-<line x1="378.27" y1="192.45"  x2="378.59" y2="192.75" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007006; opacity:1.00 " points="336.10,101.96 332.95,101.78 336.01,102.31 " />
-<polygon style= "fill: #0000DC; opacity:1.00 " points="393.44,177.18 393.70,178.85 393.55,176.86 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="325.70,128.51 325.64,128.19 322.85,127.51 " />
-<line x1="415.55" y1="133.83"  x2="416.14" y2="133.81" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="385.46" y1="195.59"  x2="385.96" y2="195.58" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000D2; opacity:1.00 " points="393.23,177.45 393.59,179.16 393.44,177.18 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="325.64,128.19 325.66,127.84 322.80,127.19 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="325.77,127.50 325.96,127.20 322.95,126.50 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="325.66,127.84 325.77,127.50 322.83,126.84 " />
-<polygon style= "fill: #700800; opacity:1.00 " points="351.42,78.01 352.13,77.90 351.50,77.79 " />
-<polygon style= "fill: #700800; opacity:1.00 " points="351.55,79.02 352.25,78.92 351.46,78.78 " />
-<line x1="386.46" y1="195.55"  x2="386.94" y2="195.48" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="401.46" y1="150.92"  x2="401.64" y2="150.57" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="377.53" y1="191.53"  x2="377.75" y2="191.83" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #A70A00; opacity:1.00 " points="352.57,78.77 352.44,78.89 352.71,78.99 " />
-<line x1="414.49" y1="133.98"  x2="415.00" y2="133.89" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="422.74" y1="154.06"  x2="423.05" y2="154.16" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007006; opacity:1.00 " points="336.02,102.97 335.96,102.65 337.05,103.01 " />
-<polygon style= "fill: #007006; opacity:1.00 " points="336.10,101.96 336.28,101.66 337.37,102.02 " />
-<polygon style= "fill: #700700; opacity:1.00 " points="352.82,77.95 352.29,77.88 352.97,77.70 " />
-<polygon style= "fill: #DF1100; opacity:1.00 " points="353.59,79.54 353.36,79.57 355.24,80.03 " />
-<polygon style= "fill: #0033AC; opacity:1.00 " points="326.04,128.95 325.84,128.77 328.67,129.71 " />
-<polygon style= "fill: #002273; opacity:1.00 " points="326.18,126.96 326.45,126.82 329.29,127.76 " />
-<line x1="413.60" y1="134.28"  x2="414.02" y2="134.11" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000D0; opacity:1.00 " points="393.54,176.54 393.40,174.53 393.42,176.23 " />
-<polygon style= "fill: #700800; opacity:1.00 " points="353.01,77.66 353.20,77.46 355.09,77.93 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="325.77,127.50 325.95,127.19 328.78,128.13 " />
-<line x1="389.35" y1="184.11"  x2="389.26" y2="184.02" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #700800; opacity:1.00 " points="352.82,77.95 352.97,77.70 354.86,78.15 " />
-<line x1="376.95" y1="190.14"  x2="377.00" y2="190.39" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="401.24" y1="152.18"  x2="401.26" y2="151.73" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.96" y1="169.19"  x2="412.85" y2="169.03" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.47" y1="119.61"  x2="434.27" y2="119.84" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0034AE; opacity:1.00 " points="329.82,127.80 330.01,127.96 326.98,126.86 " />
-<line x1="434.27" y1="119.84"  x2="435.06" y2="120.08" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007007; opacity:1.00 " points="337.46,101.93 337.61,101.79 338.95,102.23 " />
-<line x1="389.77" y1="194.14"  x2="390.07" y2="193.84" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007007; opacity:1.00 " points="337.05,102.88 337.07,102.66 338.40,103.10 " />
-<polygon style= "fill: #008909; opacity:1.00 " points="338.58,104.04 338.46,103.82 337.20,103.50 " />
-<polygon style= "fill: #007208; opacity:1.00 " points="339.17,102.12 337.71,101.74 339.22,102.09 " />
-<polygon style= "fill: #700800; opacity:1.00 " points="354.55,79.16 354.57,78.88 352.67,78.64 " />
-<polygon style= "fill: #700800; opacity:1.00 " points="354.57,78.88 352.67,78.64 354.57,78.80 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="328.53,129.45 328.47,129.15 325.70,128.51 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="328.60,128.43 328.77,128.16 325.77,127.50 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="328.49,128.78 328.59,128.46 325.66,127.84 " />
-<line x1="437.41" y1="120.86"  x2="438.17" y2="121.13" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="390.58" y1="193.15"  x2="390.79" y2="192.77" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #720A00; opacity:1.00 " points="355.30,77.82 355.36,77.79 356.01,77.95 " />
-<line x1="390.18" y1="185.20"  x2="390.07" y2="185.03" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="438.17" y1="121.13"  x2="438.91" y2="121.40" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.63" y1="134.99"  x2="412.90" y2="134.72" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007009; opacity:1.00 " points="338.40,103.10 338.89,103.26 338.50,102.81 " />
-<line x1="377.10" y1="189.31"  x2="377.01" y2="189.48" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="390.97" y1="192.37"  x2="391.11" y2="191.95" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #A30F00; opacity:1.00 " points="355.55,79.74 355.42,79.91 355.72,79.89 " />
-<line x1="426.95" y1="118.48"  x2="427.57" y2="118.50" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0032A2; opacity:1.00 " points="329.54,128.05 329.53,127.84 329.32,128.16 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="328.46,129.13 328.70,129.21 328.49,128.80 " />
-<line x1="390.59" y1="185.98"  x2="390.49" y2="185.78" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.36" y1="118.50"  x2="426.95" y2="118.48" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.63" y1="121.66"  x2="440.31" y2="121.92" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007009; opacity:1.00 " points="339.48,103.08 339.01,102.91 339.65,102.83 " />
-<polygon style= "fill: #700A00; opacity:1.00 " points="355.46,79.05 355.20,78.92 355.61,78.77 " />
-<line x1="391.29" y1="191.06"  x2="391.33" y2="190.60" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00B011; opacity:1.00 " points="341.43,102.88 341.52,102.95 340.77,102.58 " />
-<polygon style= "fill: #00730B; opacity:1.00 " points="339.31,104.06 339.27,103.80 339.96,104.13 " />
-<line x1="391.07" y1="187.37"  x2="391.00" y2="187.13" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.34" y1="190.13"  x2="391.31" y2="189.64" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.31" y1="121.92"  x2="440.97" y2="122.17" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.20" y1="188.13"  x2="391.17" y2="187.87" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.25" y1="189.16"  x2="391.25" y2="188.90" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002B89; opacity:1.00 " points="329.79,127.80 332.86,128.77 329.52,127.83 " />
-<polygon style= "fill: #0036AC; opacity:1.00 " points="328.91,129.79 331.97,130.77 329.12,129.97 " />
-<polygon style= "fill: #00700B; opacity:1.00 " points="340.45,103.07 339.69,102.80 340.60,102.94 " />
-<polygon style= "fill: #00AE14; opacity:1.00 " points="340.34,104.89 341.04,105.21 340.26,104.81 " />
-<line x1="425.30" y1="118.64"  x2="425.81" y2="118.55" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="375.33" y1="201.95"  x2="375.82" y2="202.16" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.41" y1="201.48"  x2="374.86" y2="201.73" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.58" y1="138.80"  x2="433.90" y2="138.89" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="329.01,128.21 332.07,129.18 328.83,128.51 " />
-<polygon style= "fill: #700E00; opacity:1.00 " points="356.70,78.94 356.28,78.71 356.87,78.82 " />
-<line x1="412.10" y1="136.03"  x2="412.22" y2="135.65" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="328.83,128.51 331.89,129.48 328.72,128.86 " />
-<line x1="373.56" y1="200.95"  x2="373.97" y2="201.22" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.82" y1="202.51"  x2="377.33" y2="202.64" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #700F00; opacity:1.00 " points="356.17,79.80 356.21,79.60 356.59,79.86 " />
-<polygon style= "fill: #8C1300; opacity:1.00 " points="357.70,78.96 357.28,78.71 357.84,78.96 " />
-<line x1="372.80" y1="200.37"  x2="373.17" y2="200.66" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="441.60" y1="122.40"  x2="442.19" y2="122.62" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00700D; opacity:1.00 " points="340.70,104.11 340.79,103.89 340.06,103.65 " />
-<polygon style= "fill: #0000B0; opacity:1.00 " points="392.45,175.74 392.30,173.71 392.80,175.63 " />
-<line x1="379.38" y1="202.92"  x2="379.88" y2="202.92" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.42" y1="118.92"  x2="424.84" y2="118.76" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="371.87" y1="199.45"  x2="372.15" y2="199.76" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="331.76,130.18 328.76,129.53 331.83,130.50 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="331.79,129.83 328.70,129.21 331.76,130.18 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="331.89,129.48 328.72,128.86 331.79,129.83 " />
-<line x1="380.38" y1="202.88"  x2="380.86" y2="202.82" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.77" y1="153.97"  x2="423.67" y2="153.80" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00700E; opacity:1.00 " points="341.52,104.11 341.71,103.84 340.96,103.59 " />
-<line x1="378.51" y1="188.82"  x2="378.23" y2="188.80" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #701300; opacity:1.00 " points="357.51,80.06 357.69,79.84 357.28,79.62 " />
-<polygon style= "fill: #000088; opacity:1.00 " points="391.29,173.44 391.73,175.66 391.59,173.63 " />
-<line x1="442.74" y1="122.83"  x2="443.25" y2="123.01" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007311; opacity:1.00 " points="341.64,105.22 341.60,104.90 341.35,104.81 " />
-<line x1="371.21" y1="198.55"  x2="371.40" y2="198.84" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #781600; opacity:1.00 " points="357.29,80.75 357.29,80.70 357.67,80.95 " />
-<polygon style= "fill: #0000B0; opacity:1.00 " points="392.30,173.71 392.80,175.63 392.65,173.60 " />
-<polygon style= "fill: #00B01D; opacity:1.00 " points="343.45,103.89 343.62,104.06 344.11,104.35 " />
-<line x1="381.77" y1="202.59"  x2="382.20" y2="202.43" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007010; opacity:1.00 " points="342.34,104.11 342.00,103.95 342.58,103.92 " />
-<polygon style= "fill: #00AE1C; opacity:1.00 " points="342.67,106.05 342.22,105.80 342.53,105.93 " />
-<polygon style= "fill: #741700; opacity:1.00 " points="358.39,79.85 358.49,79.91 358.68,79.75 " />
-<line x1="423.46" y1="119.62"  x2="423.73" y2="119.35" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="382.61" y1="202.24"  x2="383.00" y2="202.02" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="379.45" y1="189.07"  x2="379.12" y2="188.96" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="405.92" y1="161.30"  x2="405.41" y2="160.65" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.71" y1="123.17"  x2="444.14" y2="123.31" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #701A00; opacity:1.00 " points="358.40,80.78 358.61,81.01 358.44,80.74 " />
-<line x1="406.44" y1="161.95"  x2="405.92" y2="161.30" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="370.81" y1="197.46"  x2="370.86" y2="197.71" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002A88; opacity:1.00 " points="331.83,130.50 334.89,131.41 331.98,130.77 " />
-<polygon style= "fill: #7C1F00; opacity:1.00 " points="358.54,82.00 358.33,81.79 358.54,81.81 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="332.30,128.94 335.36,129.84 332.06,129.17 " />
-<polygon style= "fill: #007014; opacity:1.00 " points="342.91,105.32 342.98,105.16 342.47,104.93 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="331.78,129.82 334.84,130.73 331.76,130.18 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="331.88,129.48 334.95,130.38 331.78,129.82 " />
-<line x1="380.14" y1="189.39"  x2="379.79" y2="189.21" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="383.69" y1="201.49"  x2="384.00" y2="201.18" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #761F00; opacity:1.00 " points="359.46,80.83 359.66,80.78 359.87,81.02 " />
-<polygon style= "fill: #007015; opacity:1.00 " points="343.17,104.86 343.28,104.72 343.77,105.01 " />
-<line x1="423.09" y1="153.07"  x2="422.81" y2="152.75" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000088; opacity:1.00 " points="391.29,173.44 391.14,171.39 391.59,173.63 " />
-<polygon style= "fill: #000097; opacity:1.00 " points="391.59,173.63 391.44,171.57 391.94,173.72 " />
-<polygon style= "fill: #002B89; opacity:1.00 " points="335.91,129.66 332.57,128.80 335.64,129.70 " />
-<polygon style= "fill: #0000AF; opacity:1.00 " points="392.30,173.71 392.16,171.66 392.65,173.60 " />
-<polygon style= "fill: #007017; opacity:1.00 " points="343.34,105.95 343.83,106.24 343.38,105.73 " />
-<line x1="434.71" y1="138.88"  x2="434.71" y2="138.78" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="334.83,131.09 331.83,130.50 334.89,131.41 " />
-<line x1="444.51" y1="123.42"  x2="444.83" y2="123.50" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="381.22" y1="190.10"  x2="380.86" y2="189.84" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007418; opacity:1.00 " points="344.52,105.10 344.77,105.00 344.23,104.72 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="335.13,130.08 331.88,129.48 334.95,130.38 " />
-<polygon style= "fill: #702100; opacity:1.00 " points="359.44,81.95 359.59,81.81 359.36,81.60 " />
-<line x1="412.92" y1="140.13"  x2="412.66" y2="139.54" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.89" y1="199.71"  x2="385.04" y2="199.29" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009E24; opacity:1.00 " points="344.55,106.90 344.39,107.06 344.71,107.05 " />
-<polygon style= "fill: #702400; opacity:1.00 " points="359.37,82.75 359.58,82.98 359.44,82.55 " />
-<line x1="422.49" y1="152.40"  x2="422.13" y2="152.02" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #762700; opacity:1.00 " points="360.40,82.03 360.64,81.97 360.41,81.74 " />
-<line x1="382.30" y1="191.06"  x2="381.95" y2="190.71" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009321; opacity:1.00 " points="344.45,105.83 344.60,105.92 344.30,106.14 " />
-<polygon style= "fill: #0000AF; opacity:1.00 " points="392.16,171.66 392.65,173.60 392.51,171.55 " />
-<line x1="385.22" y1="198.40"  x2="385.26" y2="197.94" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.38" y1="129.29"  x2="453.27" y2="129.40" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="413.57" y1="141.38"  x2="413.23" y2="140.75" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.36" y1="128.38"  x2="454.25" y2="128.47" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="371.21" y1="196.36"  x2="371.06" y2="196.48" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="385.26" y1="197.46"  x2="385.23" y2="196.98" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="383.30" y1="192.23"  x2="382.98" y2="191.82" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.31" y1="122.24"  x2="451.05" y2="122.37" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="385.17" y1="196.49"  x2="385.07" y2="196.00" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.43" y1="121.73"  x2="452.14" y2="121.85" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #A23D00; opacity:1.00 " points="360.60,82.75 360.49,83.07 360.35,82.98 " />
-<line x1="455.20" y1="127.90"  x2="454.95" y2="127.99" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.14" y1="193.57"  x2="383.88" y2="193.11" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.94" y1="195.50"  x2="384.79" y2="195.01" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.38" y1="194.04"  x2="384.14" y2="193.57" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.32" y1="151.14"  x2="420.87" y2="150.66" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00701C; opacity:1.00 " points="345.60,106.09 345.18,105.84 345.79,105.96 " />
-<line x1="450.31" y1="122.79"  x2="450.09" y2="122.93" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="368.69" y1="209.13"  x2="369.16" y2="209.36" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.36" y1="142.67"  x2="413.95" y2="142.02" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="369.65" y1="209.57"  x2="370.14" y2="209.75" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008C26; opacity:1.00 " points="346.19,105.84 346.38,105.83 346.77,106.11 " />
-<polygon style= "fill: #8E3700; opacity:1.00 " points="361.53,82.97 361.36,82.74 361.78,82.99 " />
-<line x1="453.55" y1="121.27"  x2="453.28" y2="121.38" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="370.14" y1="209.75"  x2="370.65" y2="209.92" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="367.38" y1="208.35"  x2="367.79" y2="208.63" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #702D00; opacity:1.00 " points="360.49,84.02 360.34,83.81 360.58,83.81 " />
-<polygon style= "fill: #002372; opacity:1.00 " points="335.62,129.70 338.69,130.52 335.35,129.84 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="335.35,129.84 338.42,130.66 335.11,130.07 " />
-<polygon style= "fill: #C35500; opacity:1.00 " points="362.62,84.03 362.47,83.79 362.67,84.19 " />
-<line x1="414.80" y1="143.33"  x2="414.36" y2="142.67" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.08" y1="121.07"  x2="453.82" y2="121.17" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="366.61" y1="207.77"  x2="366.98" y2="208.06" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00701E; opacity:1.00 " points="345.52,107.02 345.59,106.87 345.18,106.64 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="334.84,130.73 337.91,131.56 334.82,131.09 " />
-<line x1="450.44" y1="115.31"  x2="450.18" y2="115.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.28" y1="114.92"  x2="450.99" y2="115.05" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.46" y1="131.48"  x2="452.50" y2="131.58" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.52" y1="123.36"  x2="449.38" y2="123.51" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="420.40" y1="150.15"  x2="419.91" y2="149.61" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="415.27" y1="143.99"  x2="414.80" y2="143.33" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000097; opacity:1.00 " points="391.79,171.67 391.44,171.57 391.36,170.34 " />
-<line x1="449.22" y1="116.00"  x2="449.01" y2="116.14" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.68" y1="114.34"  x2="452.41" y2="114.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000BF; opacity:1.00 " points="392.80,171.35 392.51,171.55 392.43,170.32 " />
-<line x1="419.40" y1="149.05"  x2="418.88" y2="148.47" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.25" y1="145.31"  x2="415.75" y2="144.66" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.50" y1="123.57"  x2="445.62" y2="123.52" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="373.73" y1="210.34"  x2="374.23" y2="210.30" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.77" y1="145.97"  x2="416.25" y2="145.31" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.21" y1="114.14"  x2="452.95" y2="114.24" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.85" y1="132.18"  x2="452.93" y2="132.28" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.14" y1="122.97"  x2="423.00" y2="122.45" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="418.36" y1="147.87"  x2="417.82" y2="147.25" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #703200; opacity:1.00 " points="361.59,84.00 361.42,83.79 361.77,83.92 " />
-<line x1="417.82" y1="147.25"  x2="417.29" y2="146.61" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.04" y1="123.94"  x2="448.97" y2="124.08" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.52" y1="127.38"  x2="456.39" y2="127.44" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002A88; opacity:1.00 " points="337.97,132.25 335.05,131.68 338.12,132.51 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="337.89,131.92 334.90,131.41 337.97,132.25 " />
-<line x1="372.34" y1="196.17"  x2="372.07" y2="196.15" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007022; opacity:1.00 " points="346.63,107.05 346.20,106.81 346.68,106.98 " />
-<line x1="454.25" y1="136.61"  x2="453.90" y2="134.36" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.54" y1="107.51"  x2="451.26" y2="107.63" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="338.19,130.90 334.94,130.38 338.01,131.21 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="338.01,131.21 334.84,130.73 337.91,131.56 " />
-<line x1="374.71" y1="210.24"  x2="375.18" y2="210.14" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.52" y1="120.50"  x2="455.36" y2="120.57" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="375.18" y1="210.14"  x2="375.63" y2="210.01" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007525; opacity:1.00 " points="347.34,107.06 347.62,106.96 347.19,106.70 " />
-<polygon style= "fill: #703800; opacity:1.00 " points="361.56,85.02 361.41,84.81 361.64,84.93 " />
-<polygon style= "fill: #007024; opacity:1.00 " points="346.61,108.17 346.67,107.87 346.27,107.64 " />
-<line x1="452.28" y1="107.11"  x2="452.18" y2="107.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.17" y1="117.00"  x2="448.10" y2="117.14" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #7E4300; opacity:1.00 " points="361.59,86.14 361.61,85.95 361.46,85.74 " />
-<line x1="454.32" y1="113.71"  x2="454.13" y2="113.79" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.55" y1="124.09"  x2="423.32" y2="123.52" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #784000; opacity:1.00 " points="362.34,84.83 362.48,85.05 362.54,84.79 " />
-<line x1="373.28" y1="196.42"  x2="372.95" y2="196.31" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BF; opacity:1.00 " points="392.55,170.24 392.43,170.32 392.37,169.48 " />
-<line x1="447.29" y1="110.06"  x2="447.22" y2="110.20" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.86" y1="209.44"  x2="377.21" y2="209.19" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.94" y1="114.45"  x2="434.98" y2="113.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007027; opacity:1.00 " points="347.58,108.02 347.21,107.79 347.77,107.81 " />
-<line x1="435.20" y1="118.20"  x2="435.09" y2="117.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="435.05" y1="113.20"  x2="435.14" y2="112.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00792C; opacity:1.00 " points="347.64,109.16 347.31,108.93 347.63,108.96 " />
-<line x1="435.34" y1="118.80"  x2="435.20" y2="118.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000297; opacity:1.00 " points="391.65,169.60 391.30,169.51 391.50,170.38 " />
-<line x1="377.21" y1="209.19"  x2="377.55" y2="208.91" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.13" y1="125.30"  x2="423.82" y2="124.69" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.89" y1="122.93"  x2="445.93" y2="122.73" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.25" y1="136.61"  x2="451.49" y2="133.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009C; opacity:1.00 " points="451.95,136.24 454.82,135.82 451.84,135.90 " />
-<line x1="453.68" y1="132.89"  x2="453.90" y2="134.36" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #704100; opacity:1.00 " points="362.36,86.06 362.61,85.88 362.45,85.66 " />
-<line x1="435.24" y1="111.97"  x2="435.37" y2="111.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #8E5500; opacity:1.00 " points="363.33,85.85 363.61,85.88 363.49,85.71 " />
-<line x1="435.69" y1="119.99"  x2="435.50" y2="119.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.48" y1="125.93"  x2="424.13" y2="125.30" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00752D; opacity:1.00 " points="348.38,107.88 348.71,108.15 348.48,107.85 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="338.41,130.66 341.49,131.40 338.17,130.90 " />
-<line x1="435.50" y1="110.79"  x2="435.66" y2="110.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003EA; opacity:1.00 " points="392.37,169.48 392.50,169.14 392.66,169.29 " />
-<polygon style= "fill: #704600; opacity:1.00 " points="362.32,86.95 362.44,86.73 362.55,86.95 " />
-<line x1="436.16" y1="121.13"  x2="435.91" y2="120.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002370; opacity:1.00 " points="338.17,130.90 341.25,131.64 338.00,131.21 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="337.91,131.56 340.98,132.30 337.89,131.92 " />
-<line x1="449.55" y1="125.34"  x2="449.73" y2="125.45" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="436.43" y1="121.67"  x2="436.16" y2="121.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.68" y1="136.19"  x2="432.26" y2="135.73" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.13" y1="208.27"  x2="378.37" y2="207.92" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.69" y1="197.20"  x2="374.33" y2="196.96" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008A39; opacity:1.00 " points="348.35,109.90 348.31,109.80 348.64,110.07 " />
-<line x1="443.71" y1="108.57"  x2="449.68" y2="100.14" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.94" y1="122.05"  x2="445.91" y2="121.80" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #704A00; opacity:1.00 " points="363.19,86.77 363.43,86.68 363.54,86.90 " />
-<polygon style= "fill: #00BA50; opacity:1.00 " points="350.43,108.84 350.76,109.11 350.51,109.03 " />
-<line x1="455.89" y1="120.03"  x2="455.96" y2="120.06" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="425.28" y1="127.21"  x2="424.87" y2="126.57" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.52" y1="118.29"  x2="448.68" y2="118.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.43" y1="123.20"  x2="437.07" y2="122.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.37" y1="127.64"  x2="451.49" y2="133.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00702E; opacity:1.00 " points="348.46,109.00 348.53,108.87 348.86,109.14 " />
-<line x1="431.82" y1="135.24"  x2="431.34" y2="134.72" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002A88; opacity:1.00 " points="341.05,132.99 338.13,132.52 341.21,133.26 " />
-<polygon style= "fill: #002371; opacity:1.00 " points="341.76,131.26 338.41,130.66 341.49,131.40 " />
-<line x1="425.73" y1="127.87"  x2="425.28" y2="127.21" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.75" y1="207.14"  x2="378.89" y2="206.71" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000297; opacity:1.00 " points="391.30,169.51 391.15,167.43 391.65,169.60 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="340.98,132.30 337.89,131.92 340.98,132.66 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="341.08,131.95 337.91,131.56 340.98,132.30 " />
-<line x1="438.22" y1="124.12"  x2="437.81" y2="123.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="375.78" y1="198.09"  x2="375.42" y2="197.77" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.89" y1="206.71"  x2="379.00" y2="206.28" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009C; opacity:1.00 " points="451.96,136.24 449.00,136.36 451.84,135.90 " />
-<line x1="450.87" y1="125.92"  x2="451.14" y2="126.00" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.70" y1="126.77"  x2="455.91" y2="126.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.66" y1="104.11"  x2="450.79" y2="104.18" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="430.85" y1="134.18"  x2="430.34" y2="133.61" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.68" y1="100.14"  x2="450.14" y2="103.80" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007030; opacity:1.00 " points="349.43,109.14 349.68,108.98 349.30,108.74 " />
-<line x1="447.64" y1="111.33"  x2="447.80" y2="111.43" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.68" y1="129.20"  x2="426.20" y2="128.54" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.14" y1="198.44"  x2="375.78" y2="198.09" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #705100; opacity:1.00 " points="363.55,87.99 363.43,87.77 363.69,87.90 " />
-<line x1="454.93" y1="113.04"  x2="455.02" y2="113.07" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.11" y1="124.95"  x2="438.65" y2="124.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.71" y1="126.14"  x2="452.01" y2="126.21" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #8F6A00; opacity:1.00 " points="364.55,88.00 364.42,87.78 364.67,88.02 " />
-<line x1="429.82" y1="133.02"  x2="429.30" y2="132.42" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.71" y1="130.51"  x2="427.19" y2="129.86" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="429.30" y1="132.42"  x2="428.77" y2="131.79" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.66" y1="120.69"  x2="445.57" y2="120.39" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="428.23" y1="131.16"  x2="427.71" y2="130.51" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="379.11" y1="205.36"  x2="379.11" y2="204.88" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.43" y1="126.61"  x2="454.71" y2="126.64" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.82" y1="199.21"  x2="376.48" y2="198.81" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.74" y1="118.88"  x2="450.00" y2="118.96" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.62" y1="126.33"  x2="452.93" y2="126.39" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="436.82" y1="107.10"  x2="437.04" y2="106.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.05" y1="112.27"  x2="443.01" y2="111.91" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #009E49; opacity:1.00 " points="349.53,109.68 349.55,110.01 349.37,109.98 " />
-<line x1="453.54" y1="126.48"  x2="453.84" y2="126.53" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #705600; opacity:1.00 " points="363.39,88.83 363.44,88.73 363.55,88.96 " />
-<polygon style= "fill: #0000A9; opacity:1.00 " points="448.80,137.38 451.91,136.96 448.95,137.07 " />
-<line x1="379.08" y1="204.39"  x2="379.02" y2="203.90" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009C; opacity:1.00 " points="449.00,136.36 451.84,135.90 448.88,136.02 " />
-<line x1="377.44" y1="200.06"  x2="377.14" y2="199.63" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.61" y1="119.78"  x2="454.83" y2="119.81" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000297; opacity:1.00 " points="391.15,167.43 391.65,169.60 391.51,167.52 " />
-<line x1="443.16" y1="113.01"  x2="443.10" y2="112.64" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.92" y1="203.41"  x2="378.79" y2="202.91" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BF; opacity:1.00 " points="392.23,167.40 392.66,169.29 392.53,167.20 " />
-<line x1="450.55" y1="119.12"  x2="450.84" y2="119.19" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.36" y1="119.74"  x2="445.24" y2="119.41" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.62" y1="126.00"  x2="440.10" y2="125.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.45" y1="201.93"  x2="378.23" y2="201.45" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.32" y1="113.77"  x2="443.23" y2="113.39" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.12" y1="119.06"  x2="444.99" y2="118.71" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.44" y1="119.32"  x2="451.75" y2="119.37" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.55" y1="119.65"  x2="453.84" y2="119.68" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.86" y1="111.91"  x2="449.12" y2="112.00" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #705A00; opacity:1.00 " points="364.48,88.93 364.35,88.71 364.54,88.91 " />
-<line x1="452.36" y1="119.48"  x2="452.67" y2="119.52" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.52" y1="114.54"  x2="443.41" y2="114.15" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="441.72" y1="126.57"  x2="441.16" y2="126.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.57" y1="117.61"  x2="444.43" y2="117.24" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.73" y1="112.82"  x2="453.96" y2="112.85" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.02" y1="116.09"  x2="443.88" y2="115.70" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.29" y1="116.86"  x2="444.15" y2="116.47" style= "stroke: #0000FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="442.30" y1="126.82"  x2="441.72" y2="126.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.67" y1="112.15"  x2="449.96" y2="112.22" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.47" y1="105.82"  x2="437.68" y2="105.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007037; opacity:1.00 " points="350.67,110.21 350.78,110.14 350.44,109.90 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="341.06,133.00 340.98,132.66 343.67,133.24 " />
-<polygon style= "fill: #008D48; opacity:1.00 " points="351.38,109.91 351.56,109.91 351.86,110.18 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="341.07,131.95 341.24,131.64 343.94,132.21 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="340.98,132.30 341.07,131.95 343.77,132.52 " />
-<polygon style= "fill: #007039; opacity:1.00 " points="350.21,110.96 350.27,110.76 350.57,111.02 " />
-<polygon style= "fill: #9A8500; opacity:1.00 " points="365.59,90.00 365.54,89.77 365.42,89.91 " />
-<line x1="450.56" y1="112.34"  x2="450.87" y2="112.40" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.68" y1="112.68"  x2="452.96" y2="112.71" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="392.23,167.40 392.12,167.22 392.53,167.20 " />
-<line x1="443.50" y1="127.23"  x2="442.89" y2="127.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.49" y1="112.51"  x2="451.79" y2="112.55" style= "stroke: #0008FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #706100; opacity:1.00 " points="364.38,89.99 364.65,89.82 364.57,89.70 " />
-<polygon style= "fill: #0000A4; opacity:1.00 " points="449.03,136.72 448.96,137.07 446.89,137.17 " />
-<line x1="444.74" y1="127.53"  x2="444.11" y2="127.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00028A; opacity:1.00 " points="390.61,166.03 390.46,163.93 390.50,166.34 " />
-<polygon style= "fill: #706600; opacity:1.00 " points="364.43,90.73 364.52,90.95 364.46,90.70 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="343.76,133.57 343.68,133.28 341.06,133.00 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="343.94,132.21 344.14,132.00 341.24,131.64 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="343.67,133.24 343.68,132.92 340.98,132.66 " />
-<line x1="437.89" y1="105.09"  x2="438.69" y2="104.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00009C; opacity:1.00 " points="446.81,136.11 446.89,136.35 448.89,136.02 " />
-<polygon style= "fill: #00017C; opacity:1.00 " points="390.63,166.98 390.48,164.89 390.85,167.24 " />
-<polygon style= "fill: #00703D; opacity:1.00 " points="351.51,111.06 351.18,110.83 351.57,110.99 " />
-<polygon style= "fill: #0003D2; opacity:1.00 " points="392.53,167.20 392.39,165.11 392.74,166.93 " />
-<polygon style= "fill: #0002A6; opacity:1.00 " points="391.51,167.52 391.36,165.43 391.88,167.51 " />
-<polygon style= "fill: #797300; opacity:1.00 " points="365.48,90.95 365.57,90.94 365.46,90.72 " />
-<polygon style= "fill: #007040; opacity:1.00 " points="351.39,112.13 351.69,112.39 351.46,111.86 " />
-<polygon style= "fill: #008D51; opacity:1.00 " points="352.47,110.97 352.77,111.23 352.72,110.96 " />
-<polygon style= "fill: #000090; opacity:1.00 " points="447.32,101.36 447.44,101.69 444.80,103.51 " />
-<polygon style= "fill: #00029F; opacity:1.00 " points="446.75,136.02 446.81,136.11 445.93,136.14 " />
-<polygon style= "fill: #0031A5; opacity:1.00 " points="344.32,133.93 344.63,133.89 344.54,134.11 " />
-<polygon style= "fill: #9FA200; opacity:1.00 " points="366.41,91.86 366.52,91.91 366.42,91.69 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="344.34,132.29 344.57,132.05 344.14,132.00 " />
-<polygon style= "fill: #6E7000; opacity:1.00 " points="365.32,91.79 365.46,91.70 365.56,91.93 " />
-<polygon style= "fill: #0002A4; opacity:1.00 " points="446.08,136.85 446.01,137.21 446.91,137.06 " />
-<line x1="367.38" y1="204.01"  x2="367.04" y2="203.86" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003D2; opacity:1.00 " points="392.39,165.11 392.74,166.93 392.60,164.84 " />
-<polygon style= "fill: #007044; opacity:1.00 " points="352.25,112.01 352.47,111.78 352.75,112.04 " />
-<line x1="439.45" y1="104.21"  x2="440.19" y2="103.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #677000; opacity:1.00 " points="365.45,93.17 365.61,93.02 365.50,92.81 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="390.67,164.02 390.35,164.25 390.59,164.28 " />
-<line x1="368.09" y1="204.41"  x2="367.73" y2="204.20" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007045; opacity:1.00 " points="352.57,113.06 352.27,112.84 352.62,112.85 " />
-<polygon style= "fill: #007549; opacity:1.00 " points="353.43,112.09 353.11,111.84 353.63,112.02 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="344.82,131.90 347.93,132.46 344.55,132.05 " />
-<polygon style= "fill: #6E7900; opacity:1.00 " points="366.32,92.95 366.55,92.93 366.44,92.70 " />
-<polygon style= "fill: #6F7E00; opacity:1.00 " points="365.55,94.29 365.59,94.09 365.50,93.88 " />
-<polygon style= "fill: #00029F; opacity:1.00 " points="445.94,136.14 442.99,136.29 445.74,135.86 " />
-<polygon style= "fill: #0002A5; opacity:1.00 " points="446.02,137.21 443.07,137.36 446.08,136.85 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="344.07,132.96 347.18,133.52 344.07,133.32 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="347.46,133.18 347.26,133.17 347.61,132.88 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="344.16,132.61 347.27,133.17 344.07,132.96 " />
-<line x1="440.19" y1="103.88"  x2="440.90" y2="103.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="369.19" y1="205.23"  x2="368.82" y2="204.93" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BB; opacity:1.00 " points="444.72,104.16 442.07,106.04 444.79,103.86 " />
-<line x1="365.48" y1="215.98"  x2="365.71" y2="216.03" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00029F; opacity:1.00 " points="442.99,136.29 445.74,135.86 442.79,136.01 " />
-<polygon style= "fill: #000285; opacity:1.00 " points="444.17,102.65 441.52,104.52 443.86,102.48 " />
-<polygon style= "fill: #5C7000; opacity:1.00 " points="366.40,93.93 366.42,93.97 366.69,93.84 " />
-<polygon style= "fill: #00704B; opacity:1.00 " points="353.36,113.07 353.64,113.33 353.50,112.93 " />
-<polygon style= "fill: #0002A5; opacity:1.00 " points="443.07,137.36 446.08,136.85 443.13,137.00 " />
-<line x1="364.62" y1="215.73"  x2="364.82" y2="215.79" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002887; opacity:1.00 " points="347.27,134.22 344.32,133.93 347.43,134.50 " />
-<polygon style= "fill: #00704C; opacity:1.00 " points="353.39,113.94 353.67,114.20 353.45,113.73 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="347.18,133.89 344.16,133.66 347.27,134.22 " />
-<polygon style= "fill: #002170; opacity:1.00 " points="347.27,133.17 344.07,132.96 347.18,133.52 " />
-<line x1="370.25" y1="206.28"  x2="369.90" y2="205.91" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003DC; opacity:1.00 " points="392.60,164.84 392.46,162.73 392.71,164.52 " />
-<polygon style= "fill: #007550; opacity:1.00 " points="354.46,113.16 354.70,113.08 354.38,112.83 " />
-<polygon style= "fill: #577000; opacity:1.00 " points="366.49,94.97 366.54,94.94 366.44,94.73 " />
-<line x1="441.56" y1="103.46"  x2="441.56" y2="103.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="363.91" y1="215.44"  x2="364.07" y2="215.51" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002A6; opacity:1.00 " points="391.36,165.43 391.22,163.32 391.74,165.42 " />
-<polygon style= "fill: #6D8F00; opacity:1.00 " points="367.49,94.96 367.39,94.73 367.69,95.00 " />
-<line x1="372.52" y1="212.93"  x2="372.59" y2="212.68" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00028C; opacity:1.00 " points="441.78,104.77 444.17,102.65 441.52,104.52 " />
-<polygon style= "fill: #000290; opacity:1.00 " points="442.11,105.41 444.64,103.20 441.99,105.08 " />
-<line x1="372.71" y1="212.18"  x2="372.75" y2="211.92" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="371.21" y1="207.54"  x2="370.91" y2="207.10" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="372.80" y1="211.40"  x2="372.70" y2="210.91" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="371.50" y1="207.99"  x2="371.21" y2="207.54" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00029F; opacity:1.00 " points="442.34,136.08 442.79,136.01 442.50,136.32 " />
-<line x1="372.57" y1="210.41"  x2="372.41" y2="209.91" style= "stroke: #0018FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #507000; opacity:1.00 " points="366.43,95.96 366.52,95.82 366.61,96.04 " />
-<polygon style= "fill: #00A073; opacity:1.00 " points="354.66,113.79 354.56,114.13 354.41,114.04 " />
-<polygon style= "fill: #007A5A; opacity:1.00 " points="354.52,115.23 354.25,115.00 354.51,114.98 " />
-<polygon style= "fill: #00017C; opacity:1.00 " points="390.33,162.79 390.70,165.15 390.55,163.05 " />
-<polygon style= "fill: #0003D2; opacity:1.00 " points="392.24,163.00 392.60,164.84 392.46,162.73 " />
-<polygon style= "fill: #537A00; opacity:1.00 " points="367.46,95.85 367.55,96.07 367.59,95.84 " />
-<polygon style= "fill: #0002A6; opacity:1.00 " points="391.22,163.32 391.74,165.42 391.59,163.32 " />
-<polygon style= "fill: #00059F; opacity:1.00 " points="442.30,136.04 439.84,136.16 442.34,136.08 " />
-<polygon style= "fill: #007558; opacity:1.00 " points="355.65,114.17 355.34,113.92 355.88,114.10 " />
-<polygon style= "fill: #00049A; opacity:1.00 " points="442.62,136.72 442.64,137.03 440.18,137.16 " />
-<polygon style= "fill: #0005A5; opacity:1.00 " points="442.64,137.03 440.18,137.16 442.63,137.09 " />
-<polygon style= "fill: #65A200; opacity:1.00 " points="368.44,97.00 368.58,97.07 368.48,96.85 " />
-<polygon style= "fill: #000485; opacity:1.00 " points="441.14,104.41 441.44,104.58 438.97,106.34 " />
-<polygon style= "fill: #0005A8; opacity:1.00 " points="442.04,105.48 442.07,105.80 439.60,107.57 " />
-<line x1="410.63" y1="100.64"  x2="411.10" y2="99.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B6; opacity:1.00 " points="439.73,138.06 439.46,138.20 442.16,137.95 " />
-<line x1="411.10" y1="99.45"  x2="411.63" y2="98.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #457000; opacity:1.00 " points="367.41,96.87 367.50,96.82 367.59,97.04 " />
-<polygon style= "fill: #00048C; opacity:1.00 " points="441.45,104.58 441.71,104.82 439.24,106.59 " />
-<line x1="411.63" y1="98.27"  x2="412.22" y2="97.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000490; opacity:1.00 " points="441.71,104.83 441.92,105.13 439.45,106.90 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="347.46,133.18 347.61,132.88 350.28,133.29 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="347.45,134.23 347.37,133.92 350.04,134.32 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="392.56,162.42 392.33,162.39 392.56,162.09 " />
-<line x1="368.04" y1="98.09"  x2="367.96" y2="97.87" style= "stroke: #97FF00;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="442.18" y1="103.38"  x2="442.75" y2="103.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.22" y1="97.11"  x2="412.85" y2="95.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000372; opacity:1.00 " points="438.06,106.15 438.34,106.11 440.54,104.38 " />
-<polygon style= "fill: #007057; opacity:1.00 " points="355.31,114.89 355.59,115.15 355.41,114.79 " />
-<line x1="409.59" y1="104.29"  x2="409.86" y2="103.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006C6; opacity:1.00 " points="439.53,107.86 439.37,108.08 441.99,106.09 " />
-<polygon style= "fill: #0003EA; opacity:1.00 " points="391.22,163.32 391.55,163.11 391.59,163.32 " />
-<line x1="412.85" y1="95.99"  x2="413.53" y2="94.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007A61; opacity:1.00 " points="355.61,116.13 355.34,115.90 355.61,116.01 " />
-<line x1="409.38" y1="105.50"  x2="409.59" y2="104.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0007FA; opacity:1.00 " points="439.42,137.96 439.46,138.20 439.64,137.86 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="439.58,135.97 439.51,136.18 439.29,135.88 " />
-<polygon style= "fill: #0005BB; opacity:1.00 " points="439.60,107.57 439.53,107.85 442.06,105.80 " />
-<polygon style= "fill: #000485; opacity:1.00 " points="438.66,106.18 438.96,106.34 441.14,104.41 " />
-<line x1="413.53" y1="94.90"  x2="414.24" y2="93.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000491; opacity:1.00 " points="439.45,106.90 439.57,107.22 441.92,105.14 " />
-<line x1="409.25" y1="106.71"  x2="409.38" y2="105.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #56A800; opacity:1.00 " points="367.61,98.72 367.65,98.95 367.47,98.93 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="350.28,133.29 350.48,133.06 347.62,132.86 " />
-<polygon style= "fill: #427A00; opacity:1.00 " points="368.30,98.07 368.58,98.05 368.48,97.83 " />
-<polygon style= "fill: #00755F; opacity:1.00 " points="356.40,114.97 356.67,115.23 356.58,114.91 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="350.04,134.32 350.04,133.99 347.37,133.89 " />
-<line x1="414.24" y1="93.85"  x2="414.98" y2="92.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.19" y1="107.89"  x2="409.25" y2="106.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00049A; opacity:1.00 " points="440.15,136.79 440.18,137.16 438.75,137.23 " />
-<polygon style= "fill: #00049E; opacity:1.00 " points="438.16,136.04 438.28,136.14 439.58,135.97 " />
-<polygon style= "fill: #0005AD; opacity:1.00 " points="438.43,138.02 439.96,137.82 438.31,138.14 " />
-<polygon style= "fill: #002CA6; opacity:1.00 " points="351.52,133.20 351.60,132.98 351.30,133.13 " />
-<line x1="409.21" y1="109.06"  x2="409.19" y2="107.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #357000; opacity:1.00 " points="368.38,99.04 368.28,98.82 368.63,98.97 " />
-<polygon style= "fill: #002DAA; opacity:1.00 " points="350.54,135.12 350.80,135.16 350.32,134.95 " />
-<polygon style= "fill: #00705E; opacity:1.00 " points="356.41,115.93 356.69,116.18 356.62,115.71 " />
-<polygon style= "fill: #000489; opacity:1.00 " points="390.76,162.75 390.52,162.60 390.40,160.94 " />
-<polygon style= "fill: #007A69; opacity:1.00 " points="356.57,117.21 356.56,116.91 356.43,116.80 " />
-<line x1="415.76" y1="91.89"  x2="416.55" y2="91.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="350.55,133.32 350.78,133.08 350.48,133.06 " />
-<polygon style= "fill: #0005A6; opacity:1.00 " points="391.56,162.88 391.44,161.21 391.48,162.88 " />
-<polygon style= "fill: #00057D; opacity:1.00 " points="438.25,106.18 438.57,106.25 436.22,107.93 " />
-<polygon style= "fill: #00A18A; opacity:1.00 " points="357.64,115.97 357.66,115.77 357.39,116.05 " />
-<polygon style= "fill: #000685; opacity:1.00 " points="435.36,108.06 437.57,106.58 435.38,108.03 " />
-<line x1="409.31" y1="110.20"  x2="409.21" y2="109.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.27" y1="103.42"  x2="443.72" y2="103.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068C; opacity:1.00 " points="438.88,106.41 439.14,106.66 436.80,108.34 " />
-<polygon style= "fill: #000691; opacity:1.00 " points="439.35,106.97 439.47,107.30 437.13,108.98 " />
-<polygon style= "fill: #00079E; opacity:1.00 " points="438.16,136.04 436.61,136.13 438.28,136.14 " />
-<polygon style= "fill: #2E7000; opacity:1.00 " points="368.47,100.03 368.38,99.81 368.64,99.94 " />
-<polygon style= "fill: #40A100; opacity:1.00 " points="369.49,99.90 369.57,100.13 369.56,99.94 " />
-<polygon style= "fill: #002487; opacity:1.00 " points="351.03,132.93 351.32,132.89 353.26,133.14 " />
-<line x1="416.55" y1="91.00"  x2="417.36" y2="90.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.50" y1="111.30"  x2="409.31" y2="110.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000797; opacity:1.00 " points="436.32,136.03 436.61,136.13 438.01,136.00 " />
-<polygon style= "fill: #000489; opacity:1.00 " points="390.71,161.13 390.40,160.94 390.76,162.75 " />
-<polygon style= "fill: #000685; opacity:1.00 " points="436.22,107.93 436.49,108.07 438.57,106.25 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="391.79,161.10 391.44,161.21 391.84,162.79 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="350.31,134.37 350.30,134.00 352.24,134.24 " />
-<polygon style= "fill: #0008AD; opacity:1.00 " points="436.99,137.98 436.77,138.22 438.43,138.02 " />
-<polygon style= "fill: #0007A9; opacity:1.00 " points="437.13,108.98 437.15,109.28 439.47,107.30 " />
-<polygon style= "fill: #277000; opacity:1.00 " points="368.47,101.15 368.59,101.05 368.50,100.84 " />
-<polygon style= "fill: #000690; opacity:1.00 " points="436.80,108.34 436.98,108.61 439.14,106.66 " />
-<polygon style= "fill: #007B6F; opacity:1.00 " points="357.54,118.12 357.54,118.00 357.26,117.78 " />
-<line x1="417.36" y1="90.16"  x2="418.17" y2="89.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00079A; opacity:1.00 " points="437.18,136.95 437.21,137.32 438.74,137.04 " />
-<line x1="409.76" y1="112.36"  x2="409.50" y2="111.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007065; opacity:1.00 " points="357.39,117.17 357.51,116.96 357.79,117.22 " />
-<polygon style= "fill: #267E00; opacity:1.00 " points="368.46,101.88 368.49,101.80 368.57,102.03 " />
-<polygon style= "fill: #297A00; opacity:1.00 " points="369.50,100.96 369.41,100.74 369.62,100.96 " />
-<polygon style= "fill: #000DDB; opacity:1.00 " points="436.38,110.19 436.46,109.88 436.62,110.05 " />
-<polygon style= "fill: #002386; opacity:1.00 " points="352.52,135.22 352.41,135.05 350.58,134.98 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="352.24,134.24 352.29,134.02 350.30,134.00 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="358.14,116.89 358.32,116.79 358.59,117.04 " />
-<line x1="418.17" y1="89.38"  x2="418.98" y2="88.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.11" y1="113.39"  x2="409.76" y2="112.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="360.43" y1="219.35"  x2="362.70" y2="218.41" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000C2; opacity:1.00 " points="362.54,216.77 361.42,220.67 362.78,216.70 " />
-<polygon style= "fill: #0008AD; opacity:1.00 " points="436.99,137.99 436.77,138.22 434.36,138.35 " />
-<polygon style= "fill: #00008C; opacity:1.00 " points="361.88,216.71 360.87,220.74 362.23,216.77 " />
-<polygon style= "fill: #000077; opacity:1.00 " points="361.52,216.60 360.52,220.68 361.88,216.71 " />
-<polygon style= "fill: #1C7000; opacity:1.00 " points="369.35,101.94 369.43,102.16 369.58,101.88 " />
-<polygon style= "fill: #000797; opacity:1.00 " points="433.91,136.16 434.14,136.23 436.32,136.03 " />
-<polygon style= "fill: #002186; opacity:1.00 " points="352.52,135.22 353.73,135.37 352.41,135.05 " />
-<polygon style= "fill: #007B77; opacity:1.00 " points="358.36,118.90 358.64,119.16 358.36,118.68 " />
-<line x1="410.53" y1="114.36"  x2="410.11" y2="113.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00706A; opacity:1.00 " points="358.56,118.07 358.27,117.85 358.61,118.00 " />
-<polygon style= "fill: #000489; opacity:1.00 " points="390.40,160.94 390.24,158.82 390.71,161.13 " />
-<polygon style= "fill: #000991; opacity:1.00 " points="436.70,108.87 436.82,109.20 434.54,110.81 " />
-<polygon style= "fill: #000990; opacity:1.00 " points="436.49,108.56 436.70,108.87 434.42,110.48 " />
-<polygon style= "fill: #19C000; opacity:1.00 " points="369.62,104.93 369.45,104.84 369.53,105.06 " />
-<polygon style= "fill: #21A800; opacity:1.00 " points="370.43,103.05 370.55,102.92 370.23,103.00 " />
-<polygon style= "fill: #0008AD; opacity:1.00 " points="434.58,138.12 434.40,138.30 436.99,137.99 " />
-<polygon style= "fill: #157000; opacity:1.00 " points="369.39,102.97 369.44,103.09 369.66,102.84 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="361.64,214.13 361.55,214.03 360.96,216.16 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="391.44,161.21 391.29,159.09 391.79,161.10 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="361.55,216.49 361.23,216.34 361.90,214.30 " />
-<polygon style= "fill: #0002A0; opacity:1.00 " points="362.56,216.67 362.26,216.67 362.94,214.64 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="361.42,213.85 361.38,213.76 362.05,211.75 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="353.55,135.10 353.46,134.76 352.29,134.74 " />
-<polygon style= "fill: #00079A; opacity:1.00 " points="434.77,137.08 434.79,137.38 437.18,136.95 " />
-<polygon style= "fill: #00079A; opacity:1.00 " points="434.79,137.38 437.18,136.95 434.80,137.45 " />
-<polygon style= "fill: #00077D; opacity:1.00 " points="433.33,109.68 433.59,109.74 435.61,108.07 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="361.90,214.30 361.77,214.21 361.22,216.34 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="353.45,134.39 353.53,134.03 352.29,134.02 " />
-<line x1="411.04" y1="115.27"  x2="410.53" y2="114.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000289; opacity:1.00 " points="362.76,214.61 362.25,216.67 362.59,214.57 " />
-<polygon style= "fill: #00706E; opacity:1.00 " points="359.40,118.27 359.69,118.09 359.38,117.85 " />
-<line x1="444.43" y1="104.05"  x2="444.68" y2="104.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="419.80" y1="88.02"  x2="420.60" y2="87.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0006C2; opacity:1.00 " points="363.48,214.58 364.15,212.57 363.36,214.61 " />
-<polygon style= "fill: #107000; opacity:1.00 " points="369.52,104.02 369.44,103.80 369.70,103.86 " />
-<polygon style= "fill: #00088C; opacity:1.00 " points="434.18,110.13 436.22,108.31 434.21,110.17 " />
-<polygon style= "fill: #000990; opacity:1.00 " points="434.21,110.17 434.39,110.43 436.49,108.56 " />
-<polygon style= "fill: #00868A; opacity:1.00 " points="359.56,120.14 359.29,119.91 359.47,119.95 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="362.13,211.90 362.05,211.73 362.64,209.92 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="362.23,214.46 362.90,212.45 362.07,214.38 " />
-<line x1="371.38" y1="214.80"  x2="362.70" y2="218.41" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000374; opacity:1.00 " points="362.59,214.57 363.26,212.56 362.41,214.52 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="362.57,212.30 362.30,212.12 361.77,214.21 " />
-<polygon style= "fill: #000AAB; opacity:1.00 " points="434.61,138.05 434.58,138.12 434.00,138.15 " />
-<polygon style= "fill: #000489; opacity:1.00 " points="390.24,158.82 390.71,161.13 390.55,159.01 " />
-<polygon style= "fill: #0005A0; opacity:1.00 " points="363.91,212.63 363.61,212.63 363.09,214.64 " />
-<line x1="411.62" y1="116.13"  x2="411.04" y2="115.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0E7A00; opacity:1.00 " points="370.50,104.09 370.41,103.87 370.71,104.09 " />
-<polygon style= "fill: #00099D; opacity:1.00 " points="434.75,137.01 434.77,137.08 434.19,137.11 " />
-<polygon style= "fill: #006D70; opacity:1.00 " points="359.28,119.05 359.43,118.78 359.71,119.04 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="391.29,159.09 391.79,161.10 391.64,158.98 " />
-<polygon style= "fill: #000A86; opacity:1.00 " points="433.64,109.75 433.25,110.03 433.90,109.89 " />
-<polygon style= "fill: #000DA8; opacity:1.00 " points="434.54,110.81 434.15,111.09 434.57,111.10 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="362.90,210.28 362.82,210.20 362.31,212.09 " />
-<polygon style= "fill: #0009C2; opacity:1.00 " points="364.75,210.73 364.64,210.75 364.16,212.54 " />
-<polygon style= "fill: #000688; opacity:1.00 " points="363.61,212.59 363.27,212.52 363.86,210.71 " />
-<polygon style= "fill: #0098A1; opacity:1.00 " points="361.54,119.06 361.22,118.79 361.68,119.11 " />
-<line x1="412.27" y1="116.93"  x2="411.62" y2="116.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #067000; opacity:1.00 " points="370.43,105.07 370.57,105.03 370.48,104.81 " />
-<polygon style= "fill: #000573; opacity:1.00 " points="363.70,210.67 363.27,212.52 363.50,210.61 " />
-<polygon style= "fill: #006970; opacity:1.00 " points="360.33,118.98 360.53,118.86 360.81,119.12 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="363.17,210.45 363.76,208.64 363.05,210.38 " />
-<polygon style= "fill: #000EBB; opacity:1.00 " points="434.18,111.43 434.10,111.72 431.63,113.45 " />
-<polygon style= "fill: #000AAB; opacity:1.00 " points="434.00,138.15 430.99,138.30 434.15,137.84 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="354.36,135.09 354.29,134.84 356.17,135.04 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="354.35,134.12 356.23,134.30 354.39,134.03 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="363.50,210.61 364.09,208.79 363.35,210.54 " />
-<polygon style= "fill: #007E8A; opacity:1.00 " points="360.43,120.98 360.71,121.24 360.36,120.84 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="363.46,207.79 363.39,207.61 363.86,206.14 " />
-<line x1="421.38" y1="86.96"  x2="422.14" y2="86.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00099C; opacity:1.00 " points="434.19,137.11 431.18,137.26 434.07,136.76 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="363.49,208.46 363.65,207.96 363.33,208.30 " />
-<polygon style= "fill: #000AA0; opacity:1.00 " points="365.10,208.97 364.83,208.96 364.38,210.78 " />
-<polygon style= "fill: #000888; opacity:1.00 " points="364.79,208.96 364.48,208.91 364.05,210.75 " />
-<polygon style= "fill: #007000; opacity:1.00 " points="370.39,105.88 370.47,106.10 370.55,105.79 " />
-<polygon style= "fill: #000B90; opacity:1.00 " points="433.82,110.45 434.03,110.76 431.55,112.48 " />
-<line x1="444.86" y1="104.80"  x2="444.96" y2="105.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006670; opacity:1.00 " points="360.38,120.12 360.66,120.38 360.48,119.95 " />
-<polygon style= "fill: #008F03; opacity:1.00 " points="371.40,106.10 371.59,106.14 371.50,105.91 " />
-<polygon style= "fill: #000FC2; opacity:1.00 " points="365.50,208.41 365.26,208.47 365.73,207.00 " />
-<polygon style= "fill: #000973; opacity:1.00 " points="364.61,208.40 364.25,208.29 364.13,208.80 " />
-<polygon style= "fill: #00097D; opacity:1.00 " points="430.46,111.68 430.74,111.74 432.93,109.96 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="356.23,134.30 356.36,134.03 354.39,134.03 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="356.18,135.08 354.36,135.09 356.17,135.04 " />
-<polygon style= "fill: #000CA0; opacity:1.00 " points="365.62,207.00 365.26,208.47 365.42,207.00 " />
-<polygon style= "fill: #007007; opacity:1.00 " points="370.48,106.95 370.56,107.18 370.66,106.81 " />
-<polygon style= "fill: #000AAB; opacity:1.00 " points="430.99,138.30 434.15,137.84 431.14,137.99 " />
-<polygon style= "fill: #000B8C; opacity:1.00 " points="431.07,111.92 431.32,112.15 433.55,110.20 " />
-<polygon style= "fill: #00099C; opacity:1.00 " points="431.18,137.26 434.07,136.76 431.06,136.91 " />
-<polygon style= "fill: #007E0C; opacity:1.00 " points="370.44,107.82 370.52,108.05 370.49,107.63 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="364.71,206.83 364.59,206.77 364.24,208.30 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="364.58,204.27 364.52,204.13 363.91,206.25 " />
-<polygon style= "fill: #000B91; opacity:1.00 " points="431.55,112.48 431.66,112.79 434.03,110.76 " />
-<line x1="422.14" y1="86.54"  x2="422.88" y2="86.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008EA1; opacity:1.00 " points="362.27,119.80 362.55,120.06 362.47,119.88 " />
-<line x1="413.81" y1="118.32"  x2="413.01" y2="117.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014DB; opacity:1.00 " points="366.76,204.79 366.64,204.88 366.06,206.87 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="364.29,206.61 364.11,206.50 364.76,204.46 " />
-<polygon style= "fill: #000497; opacity:1.00 " points="390.55,159.01 390.38,156.89 390.91,159.11 " />
-<polygon style= "fill: #007A0A; opacity:1.00 " points="371.42,107.01 371.68,107.00 371.59,106.77 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="391.64,158.98 391.48,156.87 391.94,158.78 " />
-<polygon style= "fill: #006270; opacity:1.00 " points="361.36,120.09 361.64,120.34 361.59,119.94 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="364.59,206.77 364.38,206.68 365.03,204.63 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="356.18,135.08 356.17,135.04 356.63,135.08 " />
-<polygon style= "fill: #00AF1A; opacity:1.00 " points="372.41,107.84 372.54,108.00 372.61,108.22 " />
-<polygon style= "fill: #0014DC; opacity:1.00 " points="430.53,112.11 430.55,111.90 430.28,112.05 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="356.69,134.35 356.84,134.03 356.36,134.03 " />
-<polygon style= "fill: #000C89; opacity:1.00 " points="366.07,204.95 365.77,204.90 365.30,206.98 " />
-<polygon style= "fill: #000A74; opacity:1.00 " points="365.72,204.89 365.41,204.80 364.94,206.90 " />
-<polygon style= "fill: #000FA8; opacity:1.00 " points="431.67,112.82 431.45,112.98 431.70,113.13 " />
-<polygon style= "fill: #006170; opacity:1.00 " points="361.46,121.11 361.63,120.82 361.38,120.63 " />
-<line x1="414.68" y1="118.92"  x2="413.81" y2="118.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0011A0; opacity:1.00 " points="366.58,204.33 366.27,204.33 366.12,204.95 " />
-<polygon style= "fill: #000C74; opacity:1.00 " points="365.41,204.80 365.36,204.78 365.56,204.16 " />
-<polygon style= "fill: #0018DB; opacity:1.00 " points="367.59,202.16 367.52,202.21 366.96,204.17 " />
-<polygon style= "fill: #007012; opacity:1.00 " points="371.46,107.97 371.73,107.90 371.80,108.13 " />
-<polygon style= "fill: #000AAA; opacity:1.00 " points="430.30,138.11 431.14,137.99 430.19,138.34 " />
-<polygon style= "fill: #000A73; opacity:1.00 " points="430.23,111.83 427.50,113.70 429.95,111.87 " />
-<polygon style= "fill: #0012C5; opacity:1.00 " points="431.24,113.84 428.50,115.70 431.40,113.61 " />
-<polygon style= "fill: #00099C; opacity:1.00 " points="430.29,137.04 431.06,136.91 430.38,137.30 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="365.55,204.19 365.22,204.04 365.84,202.03 " />
-<line x1="444.97" y1="105.80"  x2="444.91" y2="106.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000497; opacity:1.00 " points="390.38,156.89 390.91,159.11 390.74,156.99 " />
-<polygon style= "fill: #0000B6; opacity:1.00 " points="445.64,203.52 443.00,200.39 445.40,203.48 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="365.71,201.94 365.22,204.04 365.58,201.84 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="391.12,156.98 391.64,158.98 391.48,156.87 " />
-<polygon style= "fill: #000F8A; opacity:1.00 " points="366.89,202.34 366.71,202.31 366.26,204.36 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="358.14,134.14 358.23,134.04 356.84,134.03 " />
-<line x1="415.61" y1="119.43"  x2="414.68" y2="118.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005D70; opacity:1.00 " points="362.58,121.08 362.25,120.84 362.80,120.94 " />
-<polygon style= "fill: #000C86; opacity:1.00 " points="430.85,112.07 428.11,113.94 430.55,111.90 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="365.49,201.75 365.40,201.66 366.04,199.57 " />
-<polygon style= "fill: #000C75; opacity:1.00 " points="366.54,202.29 366.36,202.23 365.91,204.30 " />
-<polygon style= "fill: #007017; opacity:1.00 " points="371.48,109.02 371.55,108.98 371.46,108.76 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="357.93,135.19 357.93,135.04 356.63,135.08 " />
-<line x1="385.89" y1="201.01"  x2="385.30" y2="200.90" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="386.48" y1="201.15"  x2="385.89" y2="201.01" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.71" y1="200.81"  x2="384.13" y2="200.75" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D90; opacity:1.00 " points="431.32,112.64 428.59,114.51 431.12,112.33 " />
-<line x1="383.54" y1="200.73"  x2="382.95" y2="200.73" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00738C; opacity:1.00 " points="363.52,121.10 363.19,120.84 363.70,121.10 " />
-<polygon style= "fill: #008F20; opacity:1.00 " points="372.50,109.03 372.41,108.80 372.68,109.07 " />
-<line x1="382.95" y1="200.73"  x2="382.36" y2="200.76" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.57" y1="85.92"  x2="424.23" y2="85.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="371.39" y1="214.30"  x2="371.38" y2="214.80" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014A0; opacity:1.00 " points="367.20,202.34 367.85,200.25 367.05,202.34 " />
-<line x1="381.78" y1="200.82"  x2="381.21" y2="200.91" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DAA; opacity:1.00 " points="430.34,138.03 428.10,138.14 430.30,138.11 " />
-<polygon style= "fill: #00118A; opacity:1.00 " points="366.89,202.34 367.54,200.26 366.71,202.31 " />
-<polygon style= "fill: #000E75; opacity:1.00 " points="366.36,202.23 366.18,202.18 366.82,200.10 " />
-<polygon style= "fill: #000CA4; opacity:1.00 " points="430.39,137.76 430.34,138.03 428.10,138.14 " />
-<line x1="380.64" y1="201.03"  x2="380.09" y2="201.18" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00701E; opacity:1.00 " points="371.42,110.00 371.50,109.88 371.58,110.10 " />
-<line x1="371.42" y1="213.79"  x2="371.39" y2="214.30" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005A70; opacity:1.00 " points="362.39,121.95 362.68,122.21 362.45,121.84 " />
-<line x1="390.73" y1="203.32"  x2="389.85" y2="202.48" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.58" y1="204.21"  x2="390.73" y2="203.32" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="366.82,200.10 366.49,199.95 366.01,202.10 " />
-<polygon style= "fill: #0011BA; opacity:1.00 " points="428.66,115.48 431.47,113.31 428.73,115.18 " />
-<line x1="416.60" y1="119.88"  x2="415.61" y2="119.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="379.54" y1="201.36"  x2="379.00" y2="201.57" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0022A9; opacity:1.00 " points="358.46,135.99 360.19,136.14 358.36,135.91 " />
-<line x1="392.39" y1="205.13"  x2="391.58" y2="204.21" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D8C; opacity:1.00 " points="428.38,114.20 430.85,112.07 428.11,113.94 " />
-<line x1="378.48" y1="201.81"  x2="377.97" y2="202.08" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D90; opacity:1.00 " points="428.71,114.85 431.32,112.64 428.59,114.51 " />
-<line x1="371.53" y1="212.71"  x2="371.47" y2="213.25" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="366.48,199.98 366.21,199.80 366.76,198.02 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="366.68,197.93 366.21,199.80 366.58,197.82 " />
-<line x1="377.48" y1="202.38"  x2="377.00" y2="202.70" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C9C; opacity:1.00 " points="428.02,137.06 428.14,137.41 430.29,137.04 " />
-<polygon style= "fill: #007A25; opacity:1.00 " points="372.44,109.93 372.52,110.15 372.59,109.92 " />
-<line x1="371.71" y1="211.61"  x2="371.61" y2="212.16" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00118C; opacity:1.00 " points="367.53,200.29 367.17,200.25 367.72,198.47 " />
-<line x1="393.86" y1="207.07"  x2="393.14" y2="206.09" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.23" y1="85.73"  x2="424.84" y2="85.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.09" y1="203.43"  x2="375.66" y2="203.82" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.76" y1="107.01"  x2="444.54" y2="107.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="417.64" y1="120.23"  x2="416.60" y2="119.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005670; opacity:1.00 " points="363.39,121.92 363.68,122.18 363.57,121.80 " />
-<polygon style= "fill: #00A139; opacity:1.00 " points="373.46,110.95 373.37,110.72 373.52,110.98 " />
-<line x1="375.25" y1="204.25"  x2="374.86" y2="204.69" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="359.87,134.28 360.08,134.04 358.23,134.04 " />
-<line x1="372.13" y1="209.92"  x2="371.96" y2="210.49" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="394.52" y1="208.07"  x2="393.86" y2="207.07" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="372.30" y1="209.36"  x2="372.13" y2="209.92" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.49" y1="205.15"  x2="374.14" y2="205.63" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="372.50" y1="208.80"  x2="372.30" y2="209.36" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="359.66,135.33 359.64,134.98 357.93,135.04 " />
-<polygon style= "fill: #006A8C; opacity:1.00 " points="364.29,121.89 364.58,122.15 364.51,121.89 " />
-<line x1="373.51" y1="206.64"  x2="373.23" y2="207.17" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="373.23" y1="207.17"  x2="372.96" y2="207.70" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C86; opacity:1.00 " points="427.25,114.14 427.32,114.17 427.81,113.77 " />
-<polygon style= "fill: #005470; opacity:1.00 " points="363.48,123.32 363.55,123.05 363.25,122.82 " />
-<polygon style= "fill: #007029; opacity:1.00 " points="372.46,110.91 372.54,111.13 372.67,110.85 " />
-<polygon style= "fill: #00138C; opacity:1.00 " points="368.77,196.27 368.41,196.22 367.92,198.50 " />
-<polygon style= "fill: #0016A1; opacity:1.00 " points="368.76,196.30 369.97,192.35 369.08,196.28 " />
-<polygon style= "fill: #001BC2; opacity:1.00 " points="368.53,198.47 368.39,198.51 369.09,196.25 " />
-<polygon style= "fill: #000497; opacity:1.00 " points="390.38,156.90 390.21,154.78 390.74,156.99 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="391.48,156.87 391.31,154.75 391.78,156.66 " />
-<polygon style= "fill: #000FA7; opacity:1.00 " points="428.15,115.22 428.15,115.29 428.70,114.85 " />
-<polygon style= "fill: #0016A0; opacity:1.00 " points="368.25,198.52 368.07,198.52 368.77,196.27 " />
-<polygon style= "fill: #001B94; opacity:1.00 " points="360.34,136.15 360.41,135.93 360.62,136.23 " />
-<polygon style= "fill: #001077; opacity:1.00 " points="367.56,198.42 367.36,198.36 368.05,196.11 " />
-<line x1="392.91" y1="82.86"  x2="393.39" y2="81.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="393.39" y1="81.64"  x2="393.93" y2="80.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001FA8; opacity:1.00 " points="360.55,134.12 360.51,133.89 360.34,134.24 " />
-<polygon style= "fill: #00007F; opacity:1.00 " points="441.94,202.10 439.27,198.98 442.25,201.97 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="367.72,195.96 367.45,195.77 366.91,198.13 " />
-<polygon style= "fill: #0000A2; opacity:1.00 " points="443.05,201.24 440.38,198.12 443.18,200.96 " />
-<line x1="393.93" y1="80.45"  x2="394.52" y2="79.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.54" y1="107.68"  x2="444.22" y2="108.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="392.14" y1="85.31"  x2="392.50" y2="84.08" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007E; opacity:1.00 " points="442.57,201.77 439.89,198.65 442.84,201.52 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="368.05,196.11 367.72,195.96 367.21,198.30 " />
-<polygon style= "fill: #000C74; opacity:1.00 " points="426.71,114.09 426.95,114.07 424.73,115.55 " />
-<line x1="394.52" y1="79.28"  x2="395.16" y2="78.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="395.68" y1="210.09"  x2="395.13" y2="209.08" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.86" y1="86.54"  x2="392.14" y2="85.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007E; opacity:1.00 " points="438.98,199.03 441.94,202.10 439.27,198.98 " />
-<polygon style= "fill: #000C9F; opacity:1.00 " points="428.02,137.06 424.96,137.19 427.83,136.77 " />
-<polygon style= "fill: #007030; opacity:1.00 " points="372.49,111.96 372.51,111.95 372.59,112.18 " />
-<line x1="395.16" y1="78.14"  x2="395.84" y2="77.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA4; opacity:1.00 " points="428.10,138.14 425.03,138.27 428.16,137.78 " />
-<polygon style= "fill: #0000B6; opacity:1.00 " points="440.32,197.26 437.63,194.15 440.09,197.22 " />
-<line x1="391.64" y1="87.76"  x2="391.86" y2="86.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008F40; opacity:1.00 " points="373.45,111.95 373.50,112.10 373.70,112.00 " />
-<polygon style= "fill: #000E86; opacity:1.00 " points="427.32,114.17 427.56,114.31 425.34,115.80 " />
-<polygon style= "fill: #0012A7; opacity:1.00 " points="428.15,115.29 428.18,115.56 425.96,117.04 " />
-<polygon style= "fill: #000092; opacity:1.00 " points="440.17,198.40 443.05,201.24 440.38,198.12 " />
-<polygon style= "fill: #005170; opacity:1.00 " points="364.36,123.20 364.06,123.00 364.57,122.97 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="367.27,195.59 368.47,191.64 367.44,195.80 " />
-<line x1="395.84" y1="77.04"  x2="396.55" y2="75.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F90; opacity:1.00 " points="427.87,114.63 428.03,114.88 425.81,116.37 " />
-<polygon style= "fill: #007035; opacity:1.00 " points="372.39,113.02 372.52,112.82 372.61,113.04 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="359.81,135.34 359.79,134.97 361.34,135.08 " />
-<line x1="391.50" y1="88.97"  x2="391.64" y2="87.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000497; opacity:1.00 " points="390.21,154.78 390.74,156.99 390.57,154.88 " />
-<polygon style= "fill: #0015C4; opacity:1.00 " points="425.89,117.34 425.72,117.57 428.07,115.90 " />
-<polygon style= "fill: #001BC2; opacity:1.00 " points="369.08,196.28 370.29,192.33 369.33,196.20 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="391.31,154.75 391.78,156.66 391.61,154.55 " />
-<line x1="396.55" y1="75.97"  x2="397.30" y2="74.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001FA8; opacity:1.00 " points="361.77,136.16 360.34,136.15 361.64,136.07 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="361.78,134.14 361.91,134.07 360.24,134.04 " />
-<polygon style= "fill: #00117A; opacity:1.00 " points="368.04,196.15 369.25,192.20 368.40,196.26 " />
-<polygon style= "fill: #000C9F; opacity:1.00 " points="424.96,137.19 427.83,136.77 424.76,136.90 " />
-<line x1="425.40" y1="85.59"  x2="425.90" y2="85.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007F; opacity:1.00 " points="438.98,199.03 436.29,195.92 439.27,198.98 " />
-<line x1="396.61" y1="212.12"  x2="396.17" y2="211.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004D70; opacity:1.00 " points="364.42,124.05 364.48,123.80 364.79,124.07 " />
-<line x1="391.43" y1="90.16"  x2="391.50" y2="88.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005175; opacity:1.00 " points="365.25,123.02 365.48,122.94 365.80,123.20 " />
-<polygon style= "fill: #000C9C; opacity:1.00 " points="425.07,137.54 428.02,137.06 424.96,137.19 " />
-<line x1="421.04" y1="120.85"  x2="419.87" y2="120.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F90; opacity:1.00 " points="425.81,116.37 425.93,116.71 428.05,114.95 " />
-<polygon style= "fill: #000CA4; opacity:1.00 " points="425.03,138.27 428.16,137.78 425.10,137.91 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="368.47,191.64 367.44,195.80 368.65,191.85 " />
-<polygon style= "fill: #001493; opacity:1.00 " points="368.45,191.25 368.68,191.34 368.40,191.44 " />
-<polygon style= "fill: #007039; opacity:1.00 " points="373.23,112.92 373.48,112.85 373.56,113.08 " />
-<polygon style= "fill: #001BC2; opacity:1.00 " points="370.29,192.33 369.33,196.20 370.54,192.25 " />
-<line x1="397.30" y1="74.95"  x2="398.07" y2="73.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007C; opacity:1.00 " points="436.05,195.88 438.98,199.03 436.29,195.92 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="368.65,191.85 367.71,195.99 368.91,192.04 " />
-<polygon style= "fill: #00007F; opacity:1.00 " points="439.59,198.86 436.89,195.75 439.90,198.66 " />
-<line x1="443.82" y1="109.12"  x2="443.35" y2="109.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000092; opacity:1.00 " points="440.17,198.40 437.48,195.29 440.38,198.12 " />
-<line x1="391.45" y1="91.34"  x2="391.43" y2="90.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="368.91,192.04 368.04,196.15 369.25,192.20 " />
-<polygon style= "fill: #0000AD; opacity:1.00 " points="437.82,194.73 440.55,197.59 437.86,194.48 " />
-<polygon style= "fill: #00148E; opacity:1.00 " points="369.61,192.30 368.76,196.30 369.97,192.35 " />
-<polygon style= "fill: #00117A; opacity:1.00 " points="369.25,192.20 368.40,196.26 369.61,192.30 " />
-<line x1="422.25" y1="120.89"  x2="421.04" y2="120.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="398.07" y1="73.98"  x2="398.87" y2="73.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00A15D; opacity:1.00 " points="374.46,114.02 374.55,114.07 374.45,113.84 " />
-<polygon style= "fill: #00007F; opacity:1.00 " points="436.89,195.75 439.90,198.66 437.20,195.54 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="361.91,134.07 362.05,134.00 363.71,134.11 " />
-<polygon style= "fill: #00007E; opacity:1.00 " points="437.20,195.54 440.17,198.40 437.48,195.29 " />
-<polygon style= "fill: #007040; opacity:1.00 " points="373.35,113.94 373.52,113.85 373.60,114.07 " />
-<line x1="391.54" y1="92.48"  x2="391.45" y2="91.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C74; opacity:1.00 " points="424.44,115.58 424.73,115.55 422.02,117.32 " />
-<line x1="374.01" y1="115.06"  x2="373.95" y2="114.90" style= "stroke: #00FF9B;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001785; opacity:1.00 " points="361.64,136.07 363.30,136.18 361.55,135.93 " />
-<polygon style= "fill: #004A70; opacity:1.00 " points="365.59,124.30 365.73,124.13 365.39,123.90 " />
-<line x1="397.30" y1="214.09"  x2="396.98" y2="213.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004870; opacity:1.00 " points="365.34,124.93 365.66,125.20 365.39,124.73 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="361.34,135.08 363.00,135.19 361.37,134.90 " />
-<line x1="398.87" y1="73.06"  x2="399.67" y2="72.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001786; opacity:1.00 " points="363.71,134.11 363.99,134.07 362.18,133.98 " />
-<polygon style= "fill: #000E86; opacity:1.00 " points="425.04,115.62 425.34,115.80 422.63,117.58 " />
-<polygon style= "fill: #0016A1; opacity:1.00 " points="370.54,191.22 370.28,192.35 370.31,191.24 " />
-<polygon style= "fill: #004B75; opacity:1.00 " points="366.43,124.11 366.66,124.03 366.31,123.77 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="369.59,191.09 369.49,191.04 369.24,192.23 " />
-<polygon style= "fill: #000F8C; opacity:1.00 " points="425.34,115.80 425.60,116.05 422.89,117.84 " />
-<polygon style= "fill: #0000AC; opacity:1.00 " points="437.85,194.48 437.82,194.73 435.38,191.93 " />
-<polygon style= "fill: #000F90; opacity:1.00 " points="425.60,116.05 425.80,116.37 423.10,118.15 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="368.94,190.67 368.82,190.52 369.65,187.77 " />
-<polygon style= "fill: #000F9F; opacity:1.00 " points="424.63,136.92 424.81,137.20 421.86,137.31 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="363.00,135.19 363.07,134.83 361.37,134.90 " />
-<polygon style= "fill: #0015C4; opacity:1.00 " points="423.02,119.34 425.88,117.34 423.01,119.36 " />
-<line x1="397.55" y1="215.03"  x2="397.30" y2="214.09" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FA3; opacity:1.00 " points="424.95,137.93 424.89,138.28 421.93,138.39 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="369.18,190.88 368.99,190.73 369.83,187.98 " />
-<polygon style= "fill: #007A4F; opacity:1.00 " points="374.52,115.12 374.43,114.89 374.62,115.11 " />
-<polygon style= "fill: #0006D2; opacity:1.00 " points="391.61,154.55 391.43,152.43 391.82,154.27 " />
-<polygon style= "fill: #00704C; opacity:1.00 " points="373.48,115.99 373.57,116.22 373.59,115.84 " />
-<polygon style= "fill: #0006BF; opacity:1.00 " points="391.31,154.75 391.13,152.64 391.61,154.55 " />
-<line x1="391.98" y1="94.65"  x2="391.72" y2="93.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="369.49,191.04 369.25,190.93 370.09,188.18 " />
-<polygon style= "fill: #0014B9; opacity:1.00 " points="423.24,118.83 423.18,119.11 425.95,117.05 " />
-<polygon style= "fill: #0000A1; opacity:1.00 " points="435.38,191.93 435.26,192.18 437.82,194.73 " />
-<polygon style= "fill: #005690; opacity:1.00 " points="366.52,125.95 366.44,126.31 366.61,126.16 " />
-<polygon style= "fill: #000E86; opacity:1.00 " points="422.33,117.40 422.62,117.57 425.04,115.62 " />
-<polygon style= "fill: #000080; opacity:1.00 " points="434.45,192.95 434.17,193.07 436.89,195.75 " />
-<polygon style= "fill: #001BDC; opacity:1.00 " points="371.88,188.22 371.72,188.37 370.99,191.02 " />
-<polygon style= "fill: #000F7C; opacity:1.00 " points="369.95,191.20 370.79,188.45 369.84,191.17 " />
-<polygon style= "fill: #0012A7; opacity:1.00 " points="423.22,118.49 423.24,118.82 425.93,116.71 " />
-<polygon style= "fill: #004470; opacity:1.00 " points="366.21,124.83 366.53,125.10 366.43,124.60 " />
-<polygon style= "fill: #00007E; opacity:1.00 " points="435.04,192.49 434.79,192.72 437.48,195.29 " />
-<polygon style= "fill: #000F90; opacity:1.00 " points="423.10,118.15 423.21,118.48 425.80,116.37 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="389.46,151.24 389.54,153.68 389.36,151.56 " />
-<polygon style= "fill: #000F9F; opacity:1.00 " points="421.66,137.02 421.86,137.31 424.63,136.92 " />
-<polygon style= "fill: #001290; opacity:1.00 " points="371.15,188.49 370.79,188.45 370.20,191.23 " />
-<line x1="400.48" y1="71.40"  x2="401.30" y2="70.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="392.31" y1="95.67"  x2="391.98" y2="94.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007050; opacity:1.00 " points="374.37,116.13 374.63,116.05 374.53,115.83 " />
-<polygon style= "fill: #000FA3; opacity:1.00 " points="422.00,138.04 421.93,138.39 424.95,137.93 " />
-<polygon style= "fill: #001485; opacity:1.00 " points="363.34,136.18 363.16,135.91 364.94,136.02 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="363.04,135.19 363.10,134.83 364.89,134.95 " />
-<polygon style= "fill: #000498; opacity:1.00 " points="390.03,152.67 390.57,154.88 390.39,152.76 " />
-<polygon style= "fill: #004170; opacity:1.00 " points="367.14,125.07 367.39,124.90 367.73,125.17 " />
-<polygon style= "fill: #0005A7; opacity:1.00 " points="390.39,152.76 390.95,154.86 390.77,152.75 " />
-<line x1="426.72" y1="85.95"  x2="427.03" y2="86.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000280; opacity:1.00 " points="433.87,192.78 431.14,189.67 434.18,192.64 " />
-<polygon style= "fill: #0002A1; opacity:1.00 " points="434.98,191.90 432.25,188.80 435.11,191.62 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="370.42,188.37 370.09,188.20 370.58,186.59 " />
-<line x1="397.88" y1="216.82"  x2="397.75" y2="215.95" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="392.73" y1="96.64"  x2="392.31" y2="95.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F7D; opacity:1.00 " points="370.78,188.47 370.42,188.37 370.91,186.76 " />
-<polygon style= "fill: #00017E; opacity:1.00 " points="434.49,192.44 431.76,189.34 434.77,192.18 " />
-<line x1="401.30" y1="70.67"  x2="402.11" y2="70.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #007057; opacity:1.00 " points="374.45,117.17 374.34,116.95 374.70,117.03 " />
-<line x1="429.80" y1="119.59"  x2="428.54" y2="119.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #008F72; opacity:1.00 " points="375.32,116.91 375.57,116.96 375.67,117.19 " />
-<polygon style= "fill: #001485; opacity:1.00 " points="365.02,136.14 363.34,136.18 364.94,136.02 " />
-<polygon style= "fill: #00A389; opacity:1.00 " points="374.56,119.09 374.47,118.87 374.46,118.97 " />
-<polygon style= "fill: #00027F; opacity:1.00 " points="430.85,189.72 433.87,192.78 431.14,189.67 " />
-<polygon style= "fill: #0014A2; opacity:1.00 " points="371.82,186.88 371.46,188.48 371.64,186.90 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="364.86,135.10 363.04,135.19 364.89,134.95 " />
-<polygon style= "fill: #001291; opacity:1.00 " points="371.64,186.90 371.48,186.89 371.14,188.51 " />
-<polygon style= "fill: #004D8B; opacity:1.00 " points="367.41,127.02 367.34,126.86 367.68,127.13 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="389.36,151.90 389.60,151.86 389.49,152.21 " />
-<line x1="438.89" y1="114.60"  x2="437.91" y2="115.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000291; opacity:1.00 " points="432.04,189.08 434.98,191.90 432.25,188.80 " />
-<polygon style= "fill: #00027F; opacity:1.00 " points="431.45,189.54 434.49,192.44 431.76,189.34 " />
-<polygon style= "fill: #00705C; opacity:1.00 " points="374.50,118.08 374.55,118.03 374.45,117.81 " />
-<polygon style= "fill: #0011B5; opacity:1.00 " points="421.28,139.09 418.15,139.20 421.55,138.95 " />
-<polygon style= "fill: #00118C; opacity:1.00 " points="422.79,117.91 419.93,119.75 422.52,117.65 " />
-<line x1="437.91" y1="115.35"  x2="436.87" y2="116.08" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.28" y1="118.62"  x2="431.05" y2="119.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00128F; opacity:1.00 " points="422.99,118.22 420.13,120.07 422.79,117.91 " />
-<polygon style= "fill: #003D70; opacity:1.00 " points="367.45,126.10 367.55,125.91 367.89,126.18 " />
-<line x1="397.95" y1="217.64"  x2="397.88" y2="216.82" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="370.47,186.51 370.32,186.39 371.00,184.16 " />
-<line x1="436.87" y1="116.08"  x2="435.79" y2="116.78" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.48" y1="118.05"  x2="432.28" y2="118.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="391.25,152.29 391.65,152.15 391.43,152.06 " />
-<polygon style= "fill: #000E9E; opacity:1.00 " points="421.66,137.02 418.53,137.13 421.41,136.82 " />
-<polygon style= "fill: #000297; opacity:1.00 " points="428.00,186.78 427.95,186.60 430.46,189.55 " />
-<line x1="435.79" y1="116.78"  x2="434.66" y2="117.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.66" y1="117.44"  x2="433.48" y2="118.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="402.11" y1="70.00"  x2="402.90" y2="69.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F9F; opacity:1.00 " points="421.86,137.31 418.72,137.42 421.66,137.02 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="371.00,184.16 370.83,183.94 370.25,186.30 " />
-<polygon style= "fill: #000F91; opacity:1.00 " points="371.48,186.89 371.27,186.86 371.96,184.63 " />
-<polygon style= "fill: #000F7E; opacity:1.00 " points="419.36,119.32 421.91,117.39 419.05,119.24 " />
-<polygon style= "fill: #00027F; opacity:1.00 " points="431.14,189.68 430.85,189.72 428.39,186.95 " />
-<polygon style= "fill: #000E98; opacity:1.00 " points="421.99,138.04 418.86,138.14 421.97,137.66 " />
-<polygon style= "fill: #007968; opacity:1.00 " points="375.48,118.09 375.59,118.08 375.47,117.85 " />
-<polygon style= "fill: #0015C3; opacity:1.00 " points="372.90,184.54 372.64,184.64 372.11,186.81 " />
-<polygon style= "fill: #0017B8; opacity:1.00 " points="420.21,121.05 423.13,118.90 420.28,120.75 " />
-<polygon style= "fill: #001086; opacity:1.00 " points="419.66,119.49 422.22,117.47 419.36,119.32 " />
-<polygon style= "fill: #003C70; opacity:1.00 " points="368.47,126.18 368.66,126.05 368.28,125.80 " />
-<polygon style= "fill: #001285; opacity:1.00 " points="365.02,136.14 364.94,136.02 366.34,136.11 " />
-<polygon style= "fill: #0014A6; opacity:1.00 " points="420.28,120.75 423.11,118.57 420.25,120.41 " />
-<polygon style= "fill: #00118C; opacity:1.00 " points="419.93,119.75 422.52,117.65 419.66,119.49 " />
-<line x1="393.81" y1="98.41"  x2="393.23" y2="97.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00027F; opacity:1.00 " points="431.76,189.34 431.45,189.54 429.00,186.76 " />
-<polygon style= "fill: #000D7D; opacity:1.00 " points="371.96,184.63 371.60,184.52 371.12,186.82 " />
-<polygon style= "fill: #00128F; opacity:1.00 " points="420.25,120.41 422.99,118.22 420.13,120.07 " />
-<polygon style= "fill: #000291; opacity:1.00 " points="432.25,188.80 432.04,189.08 429.58,186.30 " />
-<polygon style= "fill: #0002AC; opacity:1.00 " points="429.96,185.48 429.93,185.71 432.41,188.26 " />
-<polygon style= "fill: #0011B5; opacity:1.00 " points="418.15,139.20 421.55,138.95 418.42,139.06 " />
-<line x1="397.97" y1="218.41"  x2="397.95" y2="217.64" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E9E; opacity:1.00 " points="418.53,137.13 421.41,136.82 418.28,136.93 " />
-<polygon style= "fill: #00498C; opacity:1.00 " points="369.41,126.15 369.66,126.14 369.28,125.87 " />
-<polygon style= "fill: #000F9F; opacity:1.00 " points="418.72,137.42 421.66,137.02 418.53,137.13 " />
-<polygon style= "fill: #00A195; opacity:1.00 " points="376.43,119.03 376.55,119.10 376.45,118.86 " />
-<polygon style= "fill: #007067; opacity:1.00 " points="375.33,118.95 375.46,118.88 375.56,119.11 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="366.21,135.40 366.28,135.03 364.86,135.10 " />
-<polygon style= "fill: #000FA3; opacity:1.00 " points="418.79,138.50 421.99,138.04 418.86,138.14 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="371.59,184.54 371.26,184.38 371.68,183.02 " />
-<polygon style= "fill: #0011A3; opacity:1.00 " points="372.64,184.65 372.32,184.68 372.74,183.32 " />
-<polygon style= "fill: #003870; opacity:1.00 " points="368.41,127.04 368.76,127.31 368.54,126.79 " />
-<polygon style= "fill: #0005A7; opacity:1.00 " points="390.39,152.76 390.20,150.65 390.77,152.75 " />
-<line x1="394.46" y1="99.21"  x2="393.81" y2="98.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="371.59,182.94 371.26,184.38 371.42,182.81 " />
-<polygon style= "fill: #001493; opacity:1.00 " points="366.49,135.98 366.52,136.39 366.64,136.21 " />
-<polygon style= "fill: #00037E; opacity:1.00 " points="429.58,186.30 429.29,185.97 429.34,186.53 " />
-<polygon style= "fill: #00706C; opacity:1.00 " points="375.36,120.16 375.52,120.01 375.41,119.79 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="366.21,135.40 366.28,135.03 366.73,135.06 " />
-<line x1="403.68" y1="68.89"  x2="404.43" y2="68.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006D70; opacity:1.00 " points="375.41,120.84 375.51,121.07 375.53,120.66 " />
-<polygon style= "fill: #000480; opacity:1.00 " points="428.39,186.57 425.64,183.46 428.71,186.44 " />
-<line x1="395.19" y1="99.94"  x2="394.46" y2="99.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.42" y1="86.95"  x2="427.50" y2="87.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001086; opacity:1.00 " points="419.66,119.49 416.77,121.34 419.36,119.32 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="389.29,150.10 389.50,150.00 389.52,150.37 " />
-<polygon style= "fill: #00048B; opacity:1.00 " points="389.39,148.59 389.83,150.56 389.52,150.37 " />
-<polygon style= "fill: #00037D; opacity:1.00 " points="389.29,150.10 389.71,152.48 389.52,150.37 " />
-<polygon style= "fill: #0005A1; opacity:1.00 " points="429.50,185.69 426.75,182.58 429.63,185.41 " />
-<polygon style= "fill: #0014A5; opacity:1.00 " points="420.27,120.75 417.38,122.60 420.25,120.42 " />
-<polygon style= "fill: #007879; opacity:1.00 " points="376.34,120.17 376.59,120.14 376.48,119.92 " />
-<polygon style= "fill: #00118C; opacity:1.00 " points="419.93,119.75 417.03,121.60 419.66,119.49 " />
-<polygon style= "fill: #0006DC; opacity:1.00 " points="391.46,150.04 391.76,151.83 391.57,149.71 " />
-<polygon style= "fill: #003470; opacity:1.00 " points="369.30,127.25 369.51,127.00 369.89,127.28 " />
-<polygon style= "fill: #00037E; opacity:1.00 " points="429.02,186.23 426.26,183.12 429.29,185.97 " />
-<polygon style= "fill: #00128F; opacity:1.00 " points="420.13,120.07 417.23,121.92 419.93,119.75 " />
-<polygon style= "fill: #000D92; opacity:1.00 " points="372.61,183.31 372.38,183.29 373.14,180.83 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.19,180.35 372.02,180.13 371.36,182.73 " />
-<polygon style= "fill: #0006D2; opacity:1.00 " points="391.24,150.32 391.65,152.15 391.46,150.04 " />
-<polygon style= "fill: #0005A7; opacity:1.00 " points="390.20,150.65 390.77,152.75 390.58,150.64 " />
-<line x1="397.83" y1="219.79"  x2="397.93" y2="219.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0012C3; opacity:1.00 " points="374.09,180.73 373.83,180.83 373.23,183.23 " />
-<polygon style= "fill: #0005A1; opacity:1.00 " points="426.75,182.58 429.63,185.41 426.88,182.30 " />
-<polygon style= "fill: #000E9E; opacity:1.00 " points="418.53,137.13 415.36,137.21 418.29,136.93 " />
-<polygon style= "fill: #0010AB; opacity:1.00 " points="418.42,139.06 415.25,139.15 418.64,138.82 " />
-<polygon style= "fill: #000480; opacity:1.00 " points="425.64,183.46 428.71,186.44 425.95,183.32 " />
-<polygon style= "fill: #000FA3; opacity:1.00 " points="373.83,180.83 373.50,180.87 372.95,183.30 " />
-<polygon style= "fill: #003474; opacity:1.00 " points="370.25,127.04 370.48,126.96 370.87,127.23 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.78,180.72 372.45,180.55 371.90,183.12 " />
-<polygon style= "fill: #000F7E; opacity:1.00 " points="416.46,121.16 419.06,119.24 416.16,121.08 " />
-<polygon style= "fill: #003270; opacity:1.00 " points="369.45,128.13 369.50,127.88 369.88,128.15 " />
-<polygon style= "fill: #000B7E; opacity:1.00 " points="373.14,180.83 372.78,180.72 372.25,183.25 " />
-<line x1="404.43" y1="68.45"  x2="405.16" y2="68.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="426.26,183.12 429.29,185.97 426.54,182.86 " />
-<line x1="450.20" y1="189.12"  x2="449.70" y2="189.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.70" y1="189.33"  x2="449.22" y2="189.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0017B7; opacity:1.00 " points="417.31,122.90 420.27,120.75 417.38,122.60 " />
-<polygon style= "fill: #000E98; opacity:1.00 " points="418.86,138.14 415.69,138.23 418.83,137.77 " />
-<line x1="448.75" y1="189.78"  x2="448.29" y2="190.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.71" y1="188.54"  x2="451.20" y2="188.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006870; opacity:1.00 " points="376.30,120.96 376.61,120.86 376.71,121.07 " />
-<polygon style= "fill: #00118C; opacity:1.00 " points="417.03,121.60 419.66,119.49 416.77,121.34 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.02,180.12 371.95,179.89 372.83,177.14 " />
-<line x1="452.22" y1="188.35"  x2="451.71" y2="188.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00118F; opacity:1.00 " points="417.35,122.27 420.13,120.07 417.23,121.92 " />
-<line x1="447.40" y1="190.52"  x2="446.99" y2="190.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0011B4; opacity:1.00 " points="414.98,139.29 418.42,139.06 415.25,139.15 " />
-<line x1="397.68" y1="220.37"  x2="397.83" y2="219.79" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E9E; opacity:1.00 " points="415.36,137.21 418.29,136.93 415.12,137.01 " />
-<polygon style= "fill: #0008B5; opacity:1.00 " points="424.65,179.47 424.71,179.48 423.93,178.60 " />
-<polygon style= "fill: #000480; opacity:1.00 " points="425.95,183.32 425.64,183.46 423.66,181.22 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="368.85,136.29 368.77,136.02 366.77,136.10 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.45,180.56 372.19,180.35 373.06,177.59 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="368.79,135.20 368.91,134.95 366.75,135.02 " />
-<line x1="454.33" y1="188.02"  x2="453.24" y2="188.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005A1; opacity:1.00 " points="426.88,182.30 426.75,182.58 424.77,180.34 " />
-<polygon style= "fill: #0010AB; opacity:1.00 " points="415.25,139.15 418.64,138.82 415.47,138.91 " />
-<line x1="396.85" y1="101.18"  x2="395.98" y2="100.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #006270; opacity:1.00 " points="376.47,122.05 376.53,122.01 376.40,121.79 " />
-<line x1="446.21" y1="191.34"  x2="445.85" y2="191.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000480; opacity:1.00 " points="423.66,181.22 423.45,181.26 425.64,183.46 " />
-<polygon style= "fill: #000D92; opacity:1.00 " points="373.50,180.87 373.14,180.83 374.02,178.07 " />
-<polygon style= "fill: #003379; opacity:1.00 " points="370.59,129.14 370.21,128.91 370.57,129.04 " />
-<polygon style= "fill: #000E98; opacity:1.00 " points="415.69,138.23 418.83,137.77 415.66,137.86 " />
-<polygon style= "fill: #002F70; opacity:1.00 " points="370.42,128.11 370.80,128.39 370.54,127.96 " />
-<line x1="455.41" y1="188.05"  x2="454.33" y2="188.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="373.06,177.59 372.94,177.43 372.19,180.35 " />
-<polygon style= "fill: #0012C3; opacity:1.00 " points="374.96,177.98 374.77,178.05 374.08,180.74 " />
-<polygon style= "fill: #00047F; opacity:1.00 " points="424.28,180.88 424.06,181.03 426.26,183.12 " />
-<polygon style= "fill: #00798F; opacity:1.00 " points="377.46,121.97 377.57,122.20 377.54,121.98 " />
-<line x1="427.50" y1="87.92"  x2="427.43" y2="88.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #005D70; opacity:1.00 " points="376.51,123.11 376.39,122.89 376.59,122.97 " />
-<polygon style= "fill: #000FA3; opacity:1.00 " points="374.70,178.08 374.47,178.11 373.83,180.84 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="373.65,177.96 373.41,177.84 372.78,180.72 " />
-<polygon style= "fill: #002D70; opacity:1.00 " points="371.23,127.97 371.32,127.91 371.70,128.18 " />
-<polygon style= "fill: #000B7E; opacity:1.00 " points="374.02,178.07 373.75,178.00 373.14,180.83 " />
-<line x1="445.20" y1="192.26"  x2="444.91" y2="192.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="397.78" y1="101.69"  x2="396.85" y2="101.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0017B7; opacity:1.00 " points="417.30,122.90 414.37,124.75 417.37,122.61 " />
-<polygon style= "fill: #000691; opacity:1.00 " points="424.77,180.34 423.99,179.46 424.62,180.54 " />
-<polygon style= "fill: #00048B; opacity:1.00 " points="389.39,148.59 389.31,148.26 389.52,150.37 " />
-<polygon style= "fill: #001086; opacity:1.00 " points="416.76,121.34 413.82,123.19 416.46,121.16 " />
-<polygon style= "fill: #0014A5; opacity:1.00 " points="417.37,122.61 414.43,124.46 417.35,122.27 " />
-<polygon style= "fill: #00067F; opacity:1.00 " points="423.50,180.00 423.19,180.21 424.06,181.03 " />
-<polygon style= "fill: #000797; opacity:1.00 " points="419.37,176.90 422.20,180.23 419.43,177.10 " />
-<polygon style= "fill: #00057D; opacity:1.00 " points="422.36,180.35 419.59,177.22 422.59,180.39 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="369.51,135.25 369.66,134.93 368.91,134.95 " />
-<polygon style= "fill: #00118F; opacity:1.00 " points="417.23,121.92 414.29,123.77 417.02,121.60 " />
-<line x1="457.48" y1="188.15"  x2="456.46" y2="188.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="405.84" y1="67.80"  x2="406.49" y2="67.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B0; opacity:1.00 " points="390.58,150.64 390.38,148.53 390.94,150.52 " />
-<polygon style= "fill: #00358E; opacity:1.00 " points="371.45,129.98 371.64,129.87 371.58,130.25 " />
-<polygon style= "fill: #000E75; opacity:1.00 " points="413.22,122.93 415.88,121.11 412.94,122.95 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.41,177.84 373.32,177.80 373.66,176.74 " />
-<polygon style= "fill: #00067F; opacity:1.00 " points="422.59,180.39 419.82,177.26 422.88,180.34 " />
-<polygon style= "fill: #0012A8; opacity:1.00 " points="369.45,135.99 369.72,136.21 369.56,136.34 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="371.41,129.27 371.56,128.95 371.16,128.72 " />
-<polygon style= "fill: #005870; opacity:1.00 " points="377.46,123.00 377.60,122.94 377.71,123.18 " />
-<polygon style= "fill: #0008AC; opacity:1.00 " points="424.12,179.18 421.36,176.04 424.16,178.93 " />
-<line x1="444.41" y1="193.27"  x2="444.19" y2="193.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="398.77" y1="102.12"  x2="397.78" y2="101.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="397.22" y1="221.32"  x2="397.47" y2="220.89" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E9E; opacity:1.00 " points="415.36,137.21 412.16,137.28 415.12,137.01 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="374.71,177.05 374.36,177.01 374.12,178.09 " />
-<polygon style= "fill: #0010AB; opacity:1.00 " points="415.24,139.15 412.04,139.22 415.46,138.91 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.23,176.30 373.16,176.07 374.09,173.23 " />
-<line x1="458.47" y1="188.21"  x2="457.48" y2="188.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00067F; opacity:1.00 " points="423.19,180.21 420.42,177.07 423.50,180.00 " />
-<polygon style= "fill: #000691; opacity:1.00 " points="423.77,179.74 421.01,176.61 423.99,179.46 " />
-<polygon style= "fill: #00118C; opacity:1.00 " points="414.09,123.45 416.76,121.34 413.82,123.19 " />
-<polygon style= "fill: #00118E; opacity:1.00 " points="414.41,124.12 417.23,121.92 414.29,123.77 " />
-<polygon style= "fill: #000E97; opacity:1.00 " points="415.68,138.23 412.48,138.30 415.66,137.86 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="369.51,135.25 369.66,134.93 371.41,135.07 " />
-<polygon style= "fill: #005370; opacity:1.00 " points="377.36,123.93 377.48,124.16 377.55,123.81 " />
-<polygon style= "fill: #0007A1; opacity:1.00 " points="421.22,176.32 424.12,179.18 421.36,176.04 " />
-<polygon style= "fill: #000680; opacity:1.00 " points="420.11,177.21 423.19,180.21 420.42,177.07 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.66,176.73 373.40,176.52 374.32,173.68 " />
-<polygon style= "fill: #0006DC; opacity:1.00 " points="391.26,147.93 391.57,149.71 391.37,147.60 " />
-<line x1="406.49" y1="67.59"  x2="407.09" y2="67.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00678F; opacity:1.00 " points="378.47,124.08 378.70,124.12 378.57,123.88 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="420.73,176.86 423.77,179.74 421.01,176.61 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.99,176.89 373.66,176.73 374.59,173.89 " />
-<line x1="443.85" y1="194.36"  x2="443.71" y2="194.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.26" y1="89.11"  x2="427.02" y2="89.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="399.81" y1="102.48"  x2="398.77" y2="102.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001BDD; opacity:1.00 " points="413.51,123.21 413.53,123.01 413.27,123.15 " />
-<polygon style= "fill: #0005A7; opacity:1.00 " points="389.99,148.54 390.58,150.64 390.38,148.53 " />
-<polygon style= "fill: #0017FB; opacity:1.00 " points="411.63,136.98 411.39,137.24 411.34,137.00 " />
-<polygon style= "fill: #000D8C; opacity:1.00 " points="411.35,137.00 408.10,137.05 411.08,137.14 " />
-<polygon style= "fill: #000E98; opacity:1.00 " points="411.91,137.08 408.66,137.12 411.63,136.98 " />
-<polygon style= "fill: #000E9E; opacity:1.00 " points="412.16,137.28 415.12,137.01 411.91,137.08 " />
-<polygon style= "fill: #002870; opacity:1.00 " points="372.73,129.17 372.25,128.92 372.92,129.02 " />
-<polygon style= "fill: #004D70; opacity:1.00 " points="377.47,125.32 377.59,125.10 377.47,124.88 " />
-<polygon style= "fill: #0010AB; opacity:1.00 " points="412.04,139.22 415.46,138.91 412.26,138.98 " />
-<polygon style= "fill: #000FC3; opacity:1.00 " points="376.22,174.08 376.04,174.16 375.30,176.93 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="371.19,136.14 371.18,135.94 369.45,135.99 " />
-<polygon style= "fill: #00308B; opacity:1.00 " points="373.23,128.90 373.67,129.19 373.32,128.89 " />
-<polygon style= "fill: #002670; opacity:1.00 " points="372.22,130.09 372.26,129.85 372.69,130.13 " />
-<polygon style= "fill: #000CA3; opacity:1.00 " points="375.97,174.18 375.73,174.20 375.04,177.02 " />
-<polygon style= "fill: #000E97; opacity:1.00 " points="412.48,138.30 415.66,137.86 412.46,137.92 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="374.92,174.05 374.68,173.93 373.99,176.89 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="375.64,174.21 375.38,174.18 374.72,177.05 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="375.01,174.08 374.36,177.01 374.92,174.05 " />
-<line x1="460.33" y1="188.34"  x2="459.42" y2="188.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000680; opacity:1.00 " points="420.42,177.07 420.11,177.21 418.26,175.11 " />
-<line x1="374.79" y1="64.66"  x2="375.28" y2="63.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="375.28" y1="63.43"  x2="375.82" y2="62.22" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="400.90" y1="102.75"  x2="399.81" y2="102.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.36" y1="65.89"  x2="374.79" y2="64.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014DC; opacity:1.00 " points="374.46,172.03 374.65,172.28 374.41,172.23 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="421.01,176.61 420.73,176.86 418.88,174.76 " />
-<line x1="375.82" y1="62.22"  x2="376.41" y2="61.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.02" y1="89.77"  x2="426.68" y2="90.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.00" y1="67.13"  x2="374.36" y2="65.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.54" y1="195.52"  x2="443.48" y2="195.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000680; opacity:1.00 " points="418.36,175.06 420.42,177.07 418.26,175.11 " />
-<line x1="407.09" y1="67.46"  x2="407.64" y2="67.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004A70; opacity:1.00 " points="378.31,125.14 378.18,124.95 378.60,125.02 " />
-<polygon style= "fill: #0007A1; opacity:1.00 " points="419.42,174.13 421.36,176.04 419.38,174.22 " />
-<line x1="376.41" y1="61.04"  x2="377.05" y2="59.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="389.48,148.10 389.63,148.45 389.73,148.25 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="374.39,173.73 374.32,173.68 374.65,172.68 " />
-<polygon style= "fill: #0014DC; opacity:1.00 " points="376.71,172.93 376.55,173.08 376.27,174.04 " />
-<line x1="373.71" y1="68.37"  x2="374.00" y2="67.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.70" y1="164.35"  x2="455.60" y2="164.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00057E; opacity:1.00 " points="418.98,174.68 421.01,176.61 418.88,174.76 " />
-<polygon style= "fill: #00118B; opacity:1.00 " points="414.08,123.45 411.10,125.30 413.82,123.19 " />
-<line x1="457.81" y1="164.32"  x2="456.70" y2="164.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="377.05" y1="59.88"  x2="377.74" y2="58.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00118E; opacity:1.00 " points="414.28,123.77 411.30,125.63 414.08,123.45 " />
-<line x1="461.19" y1="188.40"  x2="460.33" y2="188.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.92" y1="164.30"  x2="457.81" y2="164.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="373.49" y1="69.61"  x2="373.71" y2="68.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="371.41,135.07 372.90,135.20 371.53,134.94 " />
-<polygon style= "fill: #000880; opacity:1.00 " points="418.36,175.06 418.26,175.11 417.34,174.06 " />
-<line x1="402.04" y1="102.95"  x2="400.90" y2="102.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="371.19,136.14 372.68,136.27 371.18,135.94 " />
-<polygon style= "fill: #000B7E; opacity:1.00 " points="375.61,173.16 375.25,173.05 375.01,174.08 " />
-<line x1="377.74" y1="58.76"  x2="378.46" y2="57.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.03" y1="164.30"  x2="458.92" y2="164.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000991; opacity:1.00 " points="419.38,174.22 418.45,173.17 419.23,174.41 " />
-<polygon style= "fill: #000F7E; opacity:1.00 " points="410.54,124.86 413.22,122.93 410.24,124.78 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="418.98,174.68 418.88,174.76 417.96,173.71 " />
-<polygon style= "fill: #002370; opacity:1.00 " points="373.28,130.09 373.71,130.38 373.42,129.91 " />
-<line x1="373.34" y1="70.82"  x2="373.49" y2="69.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.68" y1="90.47"  x2="426.27" y2="91.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B0; opacity:1.00 " points="390.61,147.99 390.73,148.41 390.33,148.08 " />
-<polygon style= "fill: #0016B6; opacity:1.00 " points="411.38,126.61 414.43,124.46 411.45,126.31 " />
-<line x1="443.47" y1="196.75"  x2="443.50" y2="197.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004370; opacity:1.00 " points="378.44,126.07 378.58,126.31 378.51,126.02 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.90,135.20 373.12,134.95 371.53,134.94 " />
-<line x1="461.13" y1="164.31"  x2="460.03" y2="164.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.46" y1="57.67"  x2="379.21" y2="56.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010AA; opacity:1.00 " points="412.03,139.22 408.78,139.27 412.25,138.98 " />
-<line x1="450.43" y1="165.00"  x2="449.50" y2="165.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014A4; opacity:1.00 " points="411.45,126.31 414.40,124.12 411.42,125.97 " />
-<polygon style= "fill: #00118B; opacity:1.00 " points="411.10,125.30 413.82,123.19 410.84,125.04 " />
-<polygon style= "fill: #000FA8; opacity:1.00 " points="373.51,136.92 373.49,137.16 373.74,136.89 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.68,136.27 372.66,135.89 371.18,135.94 " />
-<polygon style= "fill: #00118E; opacity:1.00 " points="411.42,125.97 414.28,123.77 411.30,125.63 " />
-<polygon style= "fill: #002378; opacity:1.00 " points="373.51,131.11 373.50,131.05 373.93,131.34 " />
-<line x1="396.22" y1="222.16"  x2="396.59" y2="221.96" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #004678; opacity:1.00 " points="379.25,125.97 379.47,125.93 379.61,126.18 " />
-<line x1="373.27" y1="72.02"  x2="373.34" y2="70.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00087F; opacity:1.00 " points="417.05,174.11 414.28,170.94 417.34,174.05 " />
-<polygon style= "fill: #002274; opacity:1.00 " points="374.23,129.88 374.66,130.17 374.47,129.79 " />
-<line x1="403.22" y1="103.06"  x2="402.04" y2="102.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="374.66,172.66 375.96,168.77 374.92,172.86 " />
-<polygon style= "fill: #00288F; opacity:1.00 " points="374.41,131.86 374.46,132.21 374.58,132.01 " />
-<polygon style= "fill: #000E96; opacity:1.00 " points="412.47,138.30 409.22,138.34 412.45,137.92 " />
-<line x1="462.21" y1="164.33"  x2="461.13" y2="164.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003F70; opacity:1.00 " points="378.59,127.17 378.44,126.95 378.65,127.03 " />
-<line x1="449.50" y1="165.19"  x2="448.61" y2="165.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="374.92,172.86 376.23,168.97 375.25,173.03 " />
-<polygon style= "fill: #000FA2; opacity:1.00 " points="375.98,173.20 377.29,169.30 376.30,173.17 " />
-<line x1="379.21" y1="56.63"  x2="379.98" y2="55.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.57" y1="197.61"  x2="443.65" y2="198.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077D; opacity:1.00 " points="414.05,170.90 417.05,174.11 414.28,170.94 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.72,168.33 374.48,172.44 375.79,168.54 " />
-<line x1="373.27" y1="73.20"  x2="373.27" y2="72.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAC; opacity:1.00 " points="415.82,169.72 418.63,172.64 415.86,169.47 " />
-<line x1="463.27" y1="164.37"  x2="462.21" y2="164.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.61" y1="165.41"  x2="447.79" y2="165.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000298; opacity:1.00 " points="389.87,148.07 389.58,148.00 389.41,146.34 " />
-<line x1="462.73" y1="188.52"  x2="461.99" y2="188.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="404.43" y1="103.09"  x2="403.22" y2="103.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0012C3; opacity:1.00 " points="377.61,169.28 376.55,173.08 377.86,169.19 " />
-<polygon style= "fill: #0054A2; opacity:1.00 " points="380.45,126.99 380.55,127.04 380.69,127.28 " />
-<polygon style= "fill: #0010AA; opacity:1.00 " points="408.78,139.27 412.25,138.98 409.00,139.03 " />
-<line x1="411.47" y1="194.38"  x2="410.53" y2="193.57" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.53" y1="193.57"  x2="409.57" y2="192.82" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.91,135.20 373.13,134.95 374.71,135.13 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="415.47,170.29 418.46,173.18 415.69,170.00 " />
-<line x1="443.76" y1="198.48"  x2="443.90" y2="198.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.37" y1="195.23"  x2="411.47" y2="194.38" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00087F; opacity:1.00 " points="414.88,170.75 417.96,173.71 415.20,170.54 " />
-<line x1="395.81" y1="222.27"  x2="396.22" y2="222.16" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.57" y1="192.82"  x2="408.57" y2="192.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="373.36" y1="74.34"  x2="373.27" y2="73.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="374.50,131.25 374.12,131.09 374.62,130.96 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.23,168.97 375.25,173.03 376.56,169.14 " />
-<line x1="413.23" y1="196.13"  x2="412.37" y2="195.23" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E96; opacity:1.00 " points="409.22,138.34 412.45,137.92 409.20,137.96 " />
-<polygon style= "fill: #000D91; opacity:1.00 " points="376.92,169.25 375.98,173.20 377.29,169.30 " />
-<polygon style= "fill: #000B7D; opacity:1.00 " points="376.56,169.14 375.61,173.14 376.92,169.25 " />
-<line x1="464.30" y1="164.41"  x2="463.27" y2="164.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="372.68,136.27 372.66,135.89 374.24,136.07 " />
-<polygon style= "fill: #003A70; opacity:1.00 " points="379.41,127.08 379.55,127.32 379.59,127.00 " />
-<line x1="408.57" y1="192.13"  x2="407.56" y2="191.51" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="425.78" y1="91.95"  x2="425.20" y2="92.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="447.79" y1="165.65"  x2="447.02" y2="165.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F7E; opacity:1.00 " points="410.54,124.86 407.51,126.71 410.24,124.78 " />
-<line x1="407.56" y1="191.51"  x2="406.52" y2="190.96" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0017FB; opacity:1.00 " points="408.66,137.12 408.37,137.26 408.39,137.02 " />
-<polygon style= "fill: #00077C; opacity:1.00 " points="414.05,170.90 411.29,167.71 414.28,170.94 " />
-<polygon style= "fill: #000FA9; opacity:1.00 " points="374.65,137.17 373.20,137.08 374.53,137.07 " />
-<line x1="405.66" y1="103.05"  x2="404.43" y2="103.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.83" y1="198.03"  x2="414.05" y2="197.06" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="380.77" y1="54.70"  x2="381.57" y2="53.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="374.71,135.13 374.84,135.05 373.13,134.95 " />
-<polygon style= "fill: #000074; opacity:1.00 " points="440.38,213.92 443.19,217.74 440.54,213.96 " />
-<polygon style= "fill: #001086; opacity:1.00 " points="410.84,125.04 407.80,126.89 410.54,124.86 " />
-<line x1="444.06" y1="199.37"  x2="444.24" y2="199.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="406.52" y1="190.96"  x2="405.48" y2="190.48" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.41" y1="188.58"  x2="462.73" y2="188.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="373.53" y1="75.45"  x2="373.36" y2="74.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003670; opacity:1.00 " points="379.35,128.23 379.52,128.05 379.36,127.82 " />
-<polygon style= "fill: #00118D; opacity:1.00 " points="411.41,125.98 408.38,127.83 411.29,125.63 " />
-<polygon style= "fill: #00118E; opacity:1.00 " points="411.29,125.63 408.27,127.48 411.09,125.31 " />
-<line x1="465.30" y1="164.45"  x2="464.30" y2="164.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAD; opacity:1.00 " points="415.82,169.73 413.06,166.53 415.86,169.48 " />
-<line x1="415.56" y1="199.02"  x2="414.83" y2="198.03" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="440.54,213.96 443.43,217.71 440.78,213.92 " />
-<polygon style= "fill: #000D8D; opacity:1.00 " points="408.11,137.05 404.81,137.06 407.84,137.18 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.73,168.31 377.10,164.36 375.79,168.52 " />
-<line x1="425.20" y1="92.73"  x2="424.55" y2="93.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="405.48" y1="190.48"  x2="404.43" y2="190.08" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002B0; opacity:1.00 " points="390.52,146.31 390.16,146.43 390.61,147.99 " />
-<polygon style= "fill: #00377F; opacity:1.00 " points="379.48,129.23 379.62,129.48 379.50,129.00 " />
-<line x1="406.92" y1="102.93"  x2="405.66" y2="103.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.45" y1="200.27"  x2="444.67" y2="200.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00087F; opacity:1.00 " points="414.88,170.75 412.12,167.55 415.20,170.54 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="415.47,170.29 412.71,167.09 415.69,170.00 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="375.35,130.97 375.85,131.27 375.44,130.90 " />
-<line x1="404.43" y1="190.08"  x2="403.37" y2="189.76" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="381.57" y1="53.82"  x2="382.38" y2="53.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="440.55,213.96 437.86,210.20 440.79,213.93 " />
-<line x1="447.02" y1="204.27"  x2="443.80" y2="217.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #003678; opacity:1.00 " points="380.41,128.16 380.70,128.11 380.54,127.87 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.97,168.74 377.34,164.79 376.23,168.95 " />
-<polygon style= "fill: #0000B4; opacity:1.00 " points="439.66,208.99 442.38,212.59 439.70,208.82 " />
-<line x1="446.31" y1="166.23"  x2="445.66" y2="166.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.55" y1="93.52"  x2="423.82" y2="94.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA2; opacity:1.00 " points="412.93,166.81 415.82,169.73 413.06,166.53 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="440.79,213.93 438.10,210.16 441.08,213.82 " />
-<polygon style= "fill: #00118B; opacity:1.00 " points="408.07,127.16 410.84,125.04 407.80,126.89 " />
-<line x1="444.91" y1="201.16"  x2="445.17" y2="201.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000880; opacity:1.00 " points="411.80,167.69 414.88,170.75 412.12,167.55 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.23,168.95 377.61,164.99 376.57,169.11 " />
-<polygon style= "fill: #000FA2; opacity:1.00 " points="377.29,169.28 378.67,165.33 377.61,169.27 " />
-<line x1="416.86" y1="201.05"  x2="416.23" y2="200.03" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00118E; opacity:1.00 " points="408.27,127.48 411.09,125.31 408.07,127.16 " />
-<line x1="408.19" y1="102.73"  x2="406.92" y2="102.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="374.84,135.05 374.98,134.98 376.64,135.16 " />
-<polygon style= "fill: #000D90; opacity:1.00 " points="376.93,169.23 378.31,165.27 377.29,169.28 " />
-<polygon style= "fill: #0010AA; opacity:1.00 " points="408.77,139.27 405.48,139.29 408.99,139.03 " />
-<polygon style= "fill: #001B73; opacity:1.00 " points="376.29,130.99 376.44,130.93 376.95,131.22 " />
-<polygon style= "fill: #0000A5; opacity:1.00 " points="439.53,209.20 442.35,212.75 439.66,208.99 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="441.08,213.82 438.40,210.05 441.41,213.65 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="412.43,167.35 415.47,170.29 412.71,167.09 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="375.46,132.07 375.48,131.90 375.99,132.20 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="438.10,210.16 441.08,213.82 438.40,210.05 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="390.52,146.31 390.41,146.12 390.83,146.10 " />
-<polygon style= "fill: #000091; opacity:1.00 " points="439.32,209.44 442.22,212.97 439.53,209.20 " />
-<line x1="382.38" y1="53.00"  x2="383.20" y2="52.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E96; opacity:1.00 " points="409.21,138.34 405.92,138.36 409.20,137.96 " />
-<line x1="374.11" y1="77.54"  x2="373.78" y2="76.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="438.40,210.05 441.41,213.65 438.72,209.88 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="374.24,136.07 375.89,136.26 374.27,135.89 " />
-<polygon style= "fill: #000075; opacity:1.00 " points="434.99,206.42 437.87,210.20 435.15,206.45 " />
-<line x1="423.82" y1="94.31"  x2="423.02" y2="95.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="417.43" y1="202.09"  x2="416.86" y2="201.05" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0012C3; opacity:1.00 " points="378.99,165.32 377.87,169.19 379.24,165.23 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="439.04,209.67 442.00,213.20 439.32,209.44 " />
-<line x1="467.17" y1="164.55"  x2="466.26" y2="164.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="438.72,209.88 441.72,213.44 439.04,209.67 " />
-<line x1="445.74" y1="202.51"  x2="446.04" y2="202.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.66" y1="166.55"  x2="445.09" y2="166.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.47" y1="102.47"  x2="408.19" y2="102.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E76; opacity:1.00 " points="406.93,126.65 407.21,126.63 406.01,127.35 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.34,164.79 376.23,168.95 377.61,164.99 " />
-<polygon style= "fill: #000EB6; opacity:1.00 " points="411.23,164.13 411.33,164.14 410.14,162.75 " />
-<polygon style= "fill: #000FA2; opacity:1.00 " points="378.67,165.33 377.61,169.27 378.99,165.32 " />
-<polygon style= "fill: #0000A5; opacity:1.00 " points="439.53,209.20 436.82,205.45 439.66,208.98 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.61,164.99 376.57,169.11 377.94,165.16 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="435.15,206.45 438.11,210.17 435.39,206.41 " />
-<polygon style= "fill: #00087F; opacity:1.00 " points="412.12,167.55 411.80,167.69 410.24,165.86 " />
-<polygon style= "fill: #000B7B; opacity:1.00 " points="377.94,165.16 376.93,169.23 378.31,165.27 " />
-<polygon style= "fill: #000AA2; opacity:1.00 " points="413.07,166.53 412.93,166.81 411.37,164.98 " />
-<polygon style= "fill: #002B70; opacity:1.00 " points="380.34,129.19 380.56,129.00 380.75,129.25 " />
-<line x1="401.25" y1="189.36"  x2="400.21" y2="189.30" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000A5; opacity:1.00 " points="436.82,205.45 439.66,208.98 436.95,205.23 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="438.40,210.06 435.69,206.30 438.72,209.89 " />
-<polygon style= "fill: #000A87; opacity:1.00 " points="376.19,137.26 376.01,136.98 374.44,136.93 " />
-<line x1="464.57" y1="188.65"  x2="464.03" y2="188.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="408.92" y1="67.71"  x2="409.21" y2="67.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="376.13,131.86 376.64,132.16 376.29,131.66 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="410.24,165.86 410.07,165.89 411.80,167.69 " />
-<line x1="410.75" y1="102.13"  x2="409.47" y2="102.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000175; opacity:1.00 " points="434.05,205.02 433.96,205.00 432.26,202.68 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="438.72,209.89 436.01,206.13 439.04,209.67 " />
-<polygon style= "fill: #00007A; opacity:1.00 " points="439.04,209.67 436.32,205.92 439.32,209.43 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="412.71,167.09 412.43,167.34 410.87,165.52 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="435.39,206.41 438.40,210.06 435.69,206.30 " />
-<line x1="462.42" y1="140.52"  x2="461.33" y2="140.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001086; opacity:1.00 " points="407.51,126.71 407.80,126.90 406.60,127.62 " />
-<polygon style= "fill: #00358D; opacity:1.00 " points="381.44,129.03 381.67,129.04 381.86,129.29 " />
-<line x1="463.53" y1="140.46"  x2="462.42" y2="140.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.33" y1="140.59"  x2="460.26" y2="140.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="375.89,136.26 375.98,135.89 374.27,135.89 " />
-<polygon style= "fill: #0010AA; opacity:1.00 " points="405.48,139.29 408.99,139.03 405.70,139.04 " />
-<line x1="374.52" y1="78.52"  x2="374.11" y2="77.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.64" y1="140.43"  x2="463.53" y2="140.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="434.27,205.01 435.39,206.42 434.12,205.04 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="435.69,206.30 438.72,209.89 436.01,206.13 " />
-<line x1="460.26" y1="140.68"  x2="459.21" y2="140.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007A; opacity:1.00 " points="436.32,205.92 439.32,209.43 436.60,205.68 " />
-<line x1="468.04" y1="164.60"  x2="467.17" y2="164.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000992; opacity:1.00 " points="411.37,164.98 411.24,165.14 412.93,166.81 " />
-<line x1="383.20" y1="52.25"  x2="384.00" y2="51.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="436.01,206.13 439.04,209.67 436.32,205.92 " />
-<polygon style= "fill: #0020A0; opacity:1.00 " points="378.44,132.16 378.60,131.99 378.27,132.00 " />
-<line x1="422.15" y1="95.90"  x2="421.21" y2="96.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.76" y1="140.41"  x2="464.64" y2="140.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E96; opacity:1.00 " points="405.92,138.36 409.20,137.96 405.90,137.98 " />
-<polygon style= "fill: #001877; opacity:1.00 " points="376.48,133.17 376.84,133.38 376.44,132.89 " />
-<line x1="394.42" y1="222.05"  x2="394.91" y2="222.21" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002870; opacity:1.00 " points="380.40,130.19 380.48,129.99 380.66,130.24 " />
-<polygon style= "fill: #000D8E; opacity:1.00 " points="404.55,137.20 404.82,137.06 403.98,137.05 " />
-<line x1="412.02" y1="101.73"  x2="410.75" y2="102.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="400.21" y1="189.30"  x2="399.19" y2="189.32" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000299; opacity:1.00 " points="389.41,146.35 389.18,144.25 389.78,146.44 " />
-<polygon style= "fill: #000091; opacity:1.00 " points="436.82,205.44 436.60,205.68 435.56,204.26 " />
-<polygon style= "fill: #0002A4; opacity:1.00 " points="435.91,203.80 434.21,201.48 435.86,203.89 " />
-<polygon style= "fill: #00118D; opacity:1.00 " points="407.05,128.21 407.10,128.35 408.26,127.49 " />
-<line x1="466.88" y1="140.40"  x2="465.76" y2="140.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="418.40" y1="204.13"  x2="417.94" y2="203.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="436.32,205.92 436.01,206.14 434.97,204.71 " />
-<polygon style= "fill: #0003BF; opacity:1.00 " points="390.52,146.31 390.30,144.21 390.83,146.10 " />
-<polygon style= "fill: #000C83; opacity:1.00 " points="378.75,160.02 377.14,164.17 378.59,160.14 " />
-<line x1="458.20" y1="140.94"  x2="457.23" y2="141.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.21" y1="96.68"  x2="420.22" y2="97.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="413.29" y1="101.26"  x2="412.02" y2="101.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007A; opacity:1.00 " points="435.56,204.26 435.45,204.35 436.60,205.68 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="409.05,164.46 408.76,164.52 410.07,165.89 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.18,164.54 378.63,160.52 377.35,164.75 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="434.65,204.89 432.95,202.56 434.54,204.93 " />
-<line x1="443.80" y1="217.13"  x2="447.06" y2="213.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0020A0; opacity:1.00 " points="377.55,132.05 377.50,131.86 377.33,132.23 " />
-<polygon style= "fill: #00097F; opacity:1.00 " points="410.87,165.52 409.68,164.12 410.69,165.63 " />
-<polygon style= "fill: #0017FC; opacity:1.00 " points="405.39,139.07 405.48,139.29 405.56,138.88 " />
-<line x1="399.19" y1="189.32"  x2="398.18" y2="189.43" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="420.22" y1="97.44"  x2="419.17" y2="98.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.52" y1="100.74"  x2="413.29" y2="101.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="467.98" y1="140.40"  x2="466.88" y2="140.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="432.42,202.72 429.67,198.98 432.66,202.68 " />
-<polygon style= "fill: #00017A; opacity:1.00 " points="435.45,204.35 435.28,204.50 433.59,202.18 " />
-<line x1="457.23" y1="141.10"  x2="456.30" y2="141.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0012C3; opacity:1.00 " points="379.00,165.30 380.45,161.28 379.25,165.23 " />
-<polygon style= "fill: #000291; opacity:1.00 " points="434.08,201.70 433.86,201.94 435.70,204.11 " />
-<line x1="444.59" y1="167.29"  x2="444.16" y2="167.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="433.27,202.39 432.95,202.56 434.85,204.78 " />
-<line x1="468.85" y1="164.65"  x2="468.04" y2="164.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0035A1; opacity:1.00 " points="382.42,130.04 382.56,130.10 382.35,129.84 " />
-<line x1="415.74" y1="100.16"  x2="414.52" y2="100.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B92; opacity:1.00 " points="410.18,163.59 409.96,163.87 411.24,165.14 " />
-<line x1="409.21" y1="67.96"  x2="409.43" y2="68.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="433.59,202.18 433.27,202.39 435.16,204.58 " />
-<polygon style= "fill: #0002B3; opacity:1.00 " points="431.45,197.75 434.24,201.31 431.48,197.58 " />
-<line x1="418.07" y1="98.88"  x2="416.92" y2="99.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.92" y1="99.54"  x2="415.74" y2="100.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FA1; opacity:1.00 " points="378.68,165.30 380.13,161.28 379.00,165.30 " />
-<polygon style= "fill: #00097B; opacity:1.00 " points="408.52,164.48 405.79,161.23 408.75,164.52 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="432.66,202.68 429.90,198.94 432.95,202.57 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="377.95,165.12 379.41,161.10 378.32,165.24 " />
-<polygon style= "fill: #000D8F; opacity:1.00 " points="378.32,165.24 379.77,161.22 378.68,165.30 " />
-<line x1="469.07" y1="140.42"  x2="467.98" y2="140.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002470; opacity:1.00 " points="381.50,130.25 381.67,130.17 381.46,129.93 " />
-<polygon style= "fill: #000A87; opacity:1.00 " points="376.17,137.26 375.99,136.98 377.98,137.30 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="376.98,133.14 377.02,132.81 377.63,133.13 " />
-<line x1="456.30" y1="141.28"  x2="455.42" y2="141.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F8B; opacity:1.00 " points="406.70,127.72 406.86,127.89 404.97,129.02 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="432.95,202.57 430.20,198.83 433.27,202.39 " />
-<polygon style= "fill: #0002A4; opacity:1.00 " points="431.32,197.96 434.21,201.48 431.45,197.75 " />
-<line x1="398.18" y1="189.43"  x2="397.20" y2="189.63" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000291; opacity:1.00 " points="433.86,201.93 431.11,198.20 434.08,201.70 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="408.75,164.52 406.02,161.26 409.04,164.46 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="375.89,136.26 375.98,135.89 377.97,136.21 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="378.63,160.52 377.35,164.75 378.80,160.73 " />
-<polygon style= "fill: #00017A; opacity:1.00 " points="433.59,202.18 430.83,198.44 433.86,201.93 " />
-<polygon style= "fill: #000B8E; opacity:1.00 " points="403.78,137.16 403.98,137.05 401.47,137.04 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="429.90,198.94 432.95,202.57 430.20,198.83 " />
-<polygon style= "fill: #000DAE; opacity:1.00 " points="410.32,163.31 407.58,160.05 410.36,163.07 " />
-<polygon style= "fill: #000291; opacity:1.00 " points="431.11,198.20 434.08,201.70 431.32,197.96 " />
-<polygon style= "fill: #000E86; opacity:1.00 " points="404.42,128.57 404.71,128.75 406.42,127.51 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="430.20,198.83 433.27,202.39 430.52,198.66 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="429.66,198.64 429.44,198.68 426.90,195.25 " />
-<line x1="375.58" y1="80.29"  x2="375.01" y2="79.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="378.80,160.73 377.62,164.95 379.07,160.93 " />
-<line x1="417.41" y1="185.53"  x2="418.77" y2="185.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E95; opacity:1.00 " points="405.06,138.07 405.89,137.98 405.07,138.36 " />
-<line x1="470.13" y1="140.44"  x2="469.07" y2="140.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017A; opacity:1.00 " points="430.83,198.44 433.86,201.93 431.11,198.20 " />
-<line x1="416.06" y1="185.20"  x2="417.41" y2="185.53" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005B3; opacity:1.00 " points="431.25,197.29 431.23,197.44 428.68,194.01 " />
-<line x1="418.77" y1="185.87"  x2="420.15" y2="186.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.42" y1="141.49"  x2="454.59" y2="141.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002170; opacity:1.00 " points="381.41,131.25 381.55,131.05 381.35,130.82 " />
-<line x1="384.79" y1="50.95"  x2="384.98" y2="50.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097F; opacity:1.00 " points="409.36,164.32 406.62,161.07 409.68,164.12 " />
-<line x1="469.60" y1="164.69"  x2="468.85" y2="164.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B92; opacity:1.00 " points="409.96,163.87 407.22,160.61 410.18,163.59 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="379.07,160.93 377.95,165.12 379.41,161.10 " />
-<polygon style= "fill: #0003BF; opacity:1.00 " points="390.30,144.21 390.83,146.10 390.61,144.00 " />
-<line x1="414.73" y1="184.89"  x2="416.06" y2="185.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F8D; opacity:1.00 " points="404.97,129.02 405.17,129.34 406.93,128.02 " />
-<line x1="419.13" y1="206.12"  x2="418.79" y2="205.14" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7A; opacity:1.00 " points="379.41,161.10 378.32,165.24 379.77,161.22 " />
-<line x1="397.20" y1="189.63"  x2="396.24" y2="189.92" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="429.95,198.54 429.68,198.64 427.14,195.21 " />
-<polygon style= "fill: #00217E; opacity:1.00 " points="381.48,132.06 381.67,132.31 381.49,131.84 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="430.58,198.15 430.83,198.44 430.29,198.35 " />
-<line x1="413.45" y1="184.61"  x2="414.73" y2="184.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="393.41" y1="221.46"  x2="393.92" y2="221.80" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="377.98,137.30 377.92,137.09 375.99,136.98 " />
-<polygon style= "fill: #0005A4; opacity:1.00 " points="428.68,194.01 428.55,194.22 431.21,197.46 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="430.27,198.37 429.97,198.53 427.43,195.10 " />
-<polygon style= "fill: #000491; opacity:1.00 " points="431.08,197.67 430.88,197.89 428.34,194.46 " />
-<polygon style= "fill: #000CA2; opacity:1.00 " points="407.44,160.33 410.32,163.31 407.58,160.05 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="377.97,136.21 378.07,136.01 375.98,135.89 " />
-<line x1="471.17" y1="140.47"  x2="470.13" y2="140.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097F; opacity:1.00 " points="406.30,161.21 409.36,164.32 406.62,161.07 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="427.43,195.10 427.14,195.21 429.95,198.54 " />
-<line x1="454.59" y1="141.73"  x2="453.82" y2="141.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000491; opacity:1.00 " points="428.55,194.22 428.34,194.46 431.08,197.67 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="406.93,160.87 409.96,163.87 407.22,160.61 " />
-<polygon style= "fill: #0005B3; opacity:1.00 " points="427.17,191.88 428.71,193.84 427.15,191.95 " />
-<line x1="412.20" y1="184.35"  x2="413.45" y2="184.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="382.30,130.88 382.37,130.85 382.55,131.11 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="427.75,194.92 427.43,195.10 430.27,198.37 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="425.48,193.18 427.14,195.21 425.37,193.20 " />
-<polygon style= "fill: #00037A; opacity:1.00 " points="428.34,194.46 428.06,194.70 430.86,197.91 " />
-<line x1="376.23" y1="81.07"  x2="375.58" y2="80.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="428.06,194.70 427.75,194.92 430.58,198.15 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="427.43,195.10 427.14,195.21 425.61,193.16 " />
-<line x1="419.40" y1="207.08"  x2="419.13" y2="206.12" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D7F; opacity:1.00 " points="404.13,128.48 404.42,128.57 401.79,130.11 " />
-<polygon style= "fill: #0014DC; opacity:1.00 " points="380.70,161.20 382.23,157.11 380.85,161.09 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="378.63,160.49 380.16,156.40 378.81,160.70 " />
-<line x1="472.18" y1="140.50"  x2="471.17" y2="140.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000491; opacity:1.00 " points="428.55,194.22 428.34,194.46 426.81,192.41 " />
-<line x1="410.99" y1="184.11"  x2="412.20" y2="184.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.82" y1="141.99"  x2="453.11" y2="142.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="428.06,194.70 427.75,194.92 426.22,192.87 " />
-<line x1="424.29" y1="187.27"  x2="425.66" y2="187.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="378.36,133.10 378.96,133.41 378.47,132.95 " />
-<polygon style= "fill: #0012C3; opacity:1.00 " points="380.45,161.26 381.99,157.17 380.70,161.20 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="378.81,160.70 380.34,156.61 379.09,160.89 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="426.22,192.87 426.04,192.96 427.75,194.92 " />
-<polygon style= "fill: #000DA9; opacity:1.00 " points="402.34,139.03 402.12,139.27 404.79,139.10 " />
-<polygon style= "fill: #0013FC; opacity:1.00 " points="401.75,137.02 401.51,137.28 401.47,137.04 " />
-<line x1="395.32" y1="190.29"  x2="394.43" y2="190.75" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001276; opacity:1.00 " points="378.79,134.21 378.20,133.96 378.78,134.11 " />
-<polygon style= "fill: #000F8A; opacity:1.00 " points="404.71,128.75 404.96,129.02 402.34,130.57 " />
-<polygon style= "fill: #0007A4; opacity:1.00 " points="425.91,190.27 425.77,190.49 427.08,192.07 " />
-<line x1="433.07" y1="157.36"  x2="434.42" y2="157.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="435.79" y1="158.03"  x2="437.18" y2="158.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="379.09,160.89 380.61,156.80 379.42,161.06 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="424.36,191.48 424.13,191.52 421.39,187.84 " />
-<polygon style= "fill: #0008B3; opacity:1.00 " points="425.94,190.11 425.91,190.27 423.17,186.59 " />
-<polygon style= "fill: #000B78; opacity:1.00 " points="379.42,161.06 380.95,156.97 379.78,161.19 " />
-<line x1="431.75" y1="157.05"  x2="433.07" y2="157.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.18" y1="158.38"  x2="438.56" y2="158.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8F; opacity:1.00 " points="401.22,137.18 401.48,137.04 399.77,137.01 " />
-<polygon style= "fill: #000B95; opacity:1.00 " points="402.55,137.96 402.56,138.34 405.06,138.07 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="426.53,192.64 425.28,190.96 426.36,192.77 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="424.97,191.19 424.65,191.36 426.04,192.96 " />
-<polygon style= "fill: #00097F; opacity:1.00 " points="406.30,161.20 403.57,157.91 406.62,161.07 " />
-<polygon style= "fill: #000EB7; opacity:1.00 " points="404.90,156.52 407.57,159.63 404.84,156.34 " />
-<line x1="376.95" y1="81.80"  x2="376.23" y2="81.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.83" y1="183.91"  x2="410.99" y2="184.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA3; opacity:1.00 " points="407.44,160.33 404.71,157.04 407.58,160.06 " />
-<line x1="443.53" y1="168.60"  x2="443.34" y2="169.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00057A; opacity:1.00 " points="425.56,190.73 425.28,190.96 426.66,192.54 " />
-<line x1="425.66" y1="187.61"  x2="426.99" y2="187.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="419.61" y1="208.00"  x2="419.40" y2="207.08" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="473.14" y1="140.54"  x2="472.18" y2="140.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="377.92,137.09 377.89,136.96 379.12,137.16 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="424.65,191.36 424.36,191.48 421.62,187.80 " />
-<line x1="453.11" y1="142.28"  x2="452.47" y2="142.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097E; opacity:1.00 " points="406.93,160.86 404.21,157.57 407.21,160.61 " />
-<line x1="470.91" y1="164.75"  x2="470.29" y2="164.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="382.68,132.23 382.37,131.98 382.89,132.01 " />
-<polygon style= "fill: #0007A4; opacity:1.00 " points="423.17,186.59 423.04,186.80 425.91,190.27 " />
-<polygon style= "fill: #00197B; opacity:1.00 " points="382.39,133.14 382.38,132.89 382.66,133.16 " />
-<polygon style= "fill: #000691; opacity:1.00 " points="425.77,190.49 425.56,190.73 422.82,187.04 " />
-<polygon style= "fill: #00097D; opacity:1.00 " points="403.29,157.96 406.30,161.20 403.57,157.91 " />
-<polygon style= "fill: #000F8A; opacity:1.00 " points="402.08,130.29 402.29,130.52 404.71,128.75 " />
-<polygon style= "fill: #000FA1; opacity:1.00 " points="381.67,157.16 380.45,161.26 381.99,157.17 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="425.28,190.96 424.97,191.19 422.23,187.50 " />
-<line x1="392.36" y1="220.53"  x2="392.89" y2="221.04" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003D2; opacity:1.00 " points="390.82,143.71 390.61,144.00 390.48,142.85 " />
-<polygon style= "fill: #000F8C; opacity:1.00 " points="402.34,130.57 402.50,130.84 404.96,129.02 " />
-<line x1="429.22" y1="156.49"  x2="430.46" y2="156.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.95" y1="159.07"  x2="441.34" y2="159.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D8D; opacity:1.00 " points="381.31,157.10 380.14,161.26 381.67,157.16 " />
-<polygon style= "fill: #000B78; opacity:1.00 " points="380.95,156.97 379.78,161.19 381.31,157.10 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="379.20,136.41 379.38,136.09 378.07,136.01 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="421.34,187.78 418.56,184.04 421.58,187.74 " />
-<line x1="408.73" y1="183.75"  x2="409.83" y2="183.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="422.23,187.50 421.92,187.68 424.97,191.19 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="379.79,133.43 380.04,133.22 379.38,132.96 " />
-<polygon style= "fill: #000BB3; opacity:1.00 " points="423.13,186.54 420.35,182.79 423.16,186.37 " />
-<polygon style= "fill: #00057A; opacity:1.00 " points="422.82,187.04 422.55,187.28 425.56,190.73 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="404.49,157.32 407.44,160.33 404.71,157.04 " />
-<line x1="426.99" y1="187.95"  x2="428.30" y2="188.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001775; opacity:1.00 " points="383.48,132.09 383.56,132.06 383.24,131.80 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="403.89,157.78 406.93,160.86 404.21,157.57 " />
-<line x1="446.90" y1="212.55"  x2="446.84" y2="212.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00118A; opacity:1.00 " points="380.37,133.07 380.59,133.20 380.64,133.05 " />
-<line x1="474.07" y1="140.57"  x2="473.14" y2="140.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7F; opacity:1.00 " points="401.50,130.02 400.97,130.32 401.74,130.09 " />
-<line x1="377.74" y1="82.45"  x2="376.95" y2="81.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="393.59" y1="191.30"  x2="392.79" y2="191.92" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="421.58,187.74 418.80,183.99 421.87,187.62 " />
-<line x1="446.75" y1="211.18"  x2="446.76" y2="210.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.34" y1="169.09"  x2="443.22" y2="169.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="428.02" y1="156.24"  x2="429.22" y2="156.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.78" y1="210.49"  x2="446.82" y2="210.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000994; opacity:1.00 " points="379.72,136.04 379.39,136.09 379.52,136.24 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="422.54,187.28 422.50,187.23 422.23,187.50 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="418.56,184.04 421.58,187.74 418.80,183.99 " />
-<line x1="441.34" y1="159.41"  x2="442.70" y2="159.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.95" y1="209.46"  x2="447.04" y2="209.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C87; opacity:1.00 " points="400.34,130.69 400.49,130.47 398.12,131.81 " />
-<polygon style= "fill: #000DAF; opacity:1.00 " points="404.46,156.04 404.91,156.53 404.43,156.24 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="379.43,134.07 379.66,134.20 379.55,133.76 " />
-<polygon style= "fill: #000AA4; opacity:1.00 " points="420.21,183.00 423.13,186.54 420.35,182.79 " />
-<line x1="448.62" y1="206.42"  x2="448.87" y2="206.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000991; opacity:1.00 " points="422.78,186.98 420.00,183.23 422.99,186.75 " />
-<polygon style= "fill: #000B94; opacity:1.00 " points="402.54,137.96 402.55,138.34 400.84,138.31 " />
-<line x1="409.64" y1="69.11"  x2="409.63" y2="69.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="380.29,156.03 380.22,155.86 381.70,152.06 " />
-<line x1="451.48" y1="129.79"  x2="452.85" y2="130.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="385.63" y1="49.39"  x2="385.76" y2="49.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="422.19,187.45 419.41,183.70 422.50,187.23 " />
-<line x1="450.13" y1="129.46"  x2="451.48" y2="129.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.85" y1="130.13"  x2="454.24" y2="130.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.46" y1="164.76"  x2="470.91" y2="164.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.70" y1="205.52"  x2="450.00" y2="205.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077A; opacity:1.00 " points="402.80,157.42 402.61,157.39 400.34,154.60 " />
-<line x1="407.70" y1="183.62"  x2="408.73" y2="183.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DA8; opacity:1.00 " points="400.51,139.12 402.33,139.03 400.40,139.24 " />
-<line x1="469.30" y1="116.44"  x2="468.20" y2="116.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.81" y1="129.14"  x2="450.13" y2="129.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B92; opacity:1.00 " points="404.71,157.04 404.49,157.32 404.05,156.79 " />
-<line x1="454.24" y1="130.47"  x2="455.63" y2="130.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="470.41" y1="116.38"  x2="469.30" y2="116.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="428.30" y1="188.26"  x2="429.58" y2="188.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="468.20" y1="116.51"  x2="467.13" y2="116.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.63" y1="205.00"  x2="450.95" y2="204.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="419.09,183.87 422.19,187.45 419.41,183.70 " />
-<polygon style= "fill: #00077A; opacity:1.00 " points="419.72,183.48 422.78,186.98 420.00,183.23 " />
-<line x1="392.79" y1="191.92"  x2="392.03" y2="192.63" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000975; opacity:1.00 " points="417.11,182.07 415.79,180.27 417.03,182.05 " />
-<line x1="467.13" y1="116.60"  x2="466.08" y2="116.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="419.09,183.87 418.80,183.99 417.34,182.02 " />
-<line x1="474.94" y1="140.61"  x2="474.07" y2="140.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B94; opacity:1.00 " points="400.84,138.13 402.54,137.96 400.84,138.31 " />
-<line x1="447.53" y1="128.84"  x2="448.81" y2="129.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="383.50,133.08 383.62,132.95 383.31,132.71 " />
-<line x1="455.63" y1="130.82"  x2="457.03" y2="131.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="380.48,156.25 381.96,152.45 380.47,156.23 " />
-<line x1="451.62" y1="204.63"  x2="451.96" y2="204.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.66" y1="116.32"  x2="471.53" y2="116.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="379.39,136.09 379.64,135.84 381.35,136.23 " />
-<polygon style= "fill: #000FC3; opacity:1.00 " points="382.34,156.78 382.12,156.83 383.60,153.03 " />
-<line x1="466.08" y1="116.71"  x2="465.07" y2="116.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="378.61" y1="83.03"  x2="377.74" y2="82.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EB3; opacity:1.00 " points="418.91,180.74 418.90,180.82 417.58,179.03 " />
-<polygon style= "fill: #000991; opacity:1.00 " points="420.21,183.00 420.00,183.23 418.55,181.27 " />
-<polygon style= "fill: #00137B; opacity:1.00 " points="383.52,134.09 383.24,133.85 383.52,133.96 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="379.11,137.15 379.12,136.78 380.82,137.17 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="419.72,183.48 419.41,183.70 417.95,181.73 " />
-<polygon style= "fill: #000CA1; opacity:1.00 " points="382.09,156.83 381.81,156.81 383.29,153.01 " />
-<line x1="473.77" y1="116.30"  x2="472.66" y2="116.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.29" y1="128.56"  x2="447.53" y2="128.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.65" y1="204.40"  x2="453.00" y2="204.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.03" y1="131.16"  x2="458.42" y2="131.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B8D; opacity:1.00 " points="381.78,156.81 381.45,156.74 382.93,152.94 " />
-<polygon style= "fill: #000977; opacity:1.00 " points="381.42,156.73 381.09,156.61 382.57,152.81 " />
-<line x1="391.33" y1="219.27"  x2="391.84" y2="219.94" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077E; opacity:1.00 " points="403.72,157.07 403.45,157.24 401.18,154.44 " />
-<polygon style= "fill: #00099E; opacity:1.00 " points="400.32,137.09 398.62,137.05 400.43,137.19 " />
-<polygon style= "fill: #000C75; opacity:1.00 " points="380.12,135.05 380.07,134.77 380.81,135.11 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="404.05,156.79 401.79,153.99 404.01,156.82 " />
-<polygon style= "fill: #000CA4; opacity:1.00 " points="417.58,179.03 417.44,179.23 418.83,180.93 " />
-<polygon style= "fill: #000C85; opacity:1.00 " points="401.27,130.41 401.55,130.60 399.18,131.95 " />
-<line x1="406.72" y1="183.54"  x2="407.70" y2="183.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAC; opacity:1.00 " points="381.18,138.25 379.60,137.96 381.07,138.16 " />
-<line x1="444.05" y1="160.06"  x2="445.38" y2="160.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="381.96,152.45 381.78,152.25 380.47,156.23 " />
-<line x1="474.29" y1="116.12"  x2="473.77" y2="116.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="429.58" y1="188.55"  x2="430.81" y2="188.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000975; opacity:1.00 " points="412.87,176.46 415.79,180.27 413.02,176.49 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="417.95,181.73 416.63,179.93 417.79,181.82 " />
-<polygon style= "fill: #000771; opacity:1.00 " points="381.50,136.15 379.64,135.84 381.63,136.08 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="416.63,179.93 416.31,180.11 417.79,181.82 " />
-<polygon style= "fill: #000AA8; opacity:1.00 " points="400.62,139.00 398.92,138.98 400.51,139.12 " />
-<polygon style= "fill: #000AA3; opacity:1.00 " points="402.15,153.44 402.01,153.71 404.40,156.28 " />
-<line x1="464.09" y1="117.00"  x2="463.16" y2="117.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.39" y1="143.31"  x2="450.97" y2="143.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="384.21,132.98 384.34,132.90 384.62,133.17 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="382.23,152.64 381.96,152.45 380.73,156.43 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="401.18,154.44 400.86,154.58 403.40,157.26 " />
-<line x1="445.09" y1="128.30"  x2="446.29" y2="128.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.69" y1="204.32"  x2="454.04" y2="204.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.76" y1="140.64"  x2="474.94" y2="140.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097A; opacity:1.00 " points="417.23,179.47 416.95,179.71 418.40,181.39 " />
-<line x1="458.42" y1="131.49"  x2="459.80" y2="131.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA1; opacity:1.00 " points="383.60,153.03 383.29,153.01 382.09,156.83 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="416.02,180.22 413.26,176.45 416.31,180.11 " />
-<line x1="466.23" y1="188.52"  x2="466.15" y2="188.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="381.07,134.28 380.28,134.02 381.20,134.10 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="380.82,137.17 380.88,136.97 379.12,136.78 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="382.57,152.81 382.23,152.64 381.06,156.60 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="401.79,153.99 401.50,154.24 404.01,156.82 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="413.02,176.49 416.02,180.22 413.26,176.45 " />
-<line x1="475.30" y1="115.77"  x2="474.80" y2="115.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="391.33" y1="193.40"  x2="390.68" y2="194.25" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000977; opacity:1.00 " points="382.93,152.94 382.57,152.81 381.42,156.73 " />
-<line x1="379.53" y1="83.53"  x2="378.61" y2="83.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CA4; opacity:1.00 " points="414.68,175.46 417.58,179.03 414.82,175.25 " />
-<line x1="390.84" y1="218.52"  x2="391.33" y2="219.27" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B91; opacity:1.00 " points="417.23,179.47 414.46,175.70 417.45,179.24 " />
-<polygon style= "fill: #000AA8; opacity:1.00 " points="398.92,138.98 398.71,139.21 400.51,139.12 " />
-<line x1="443.19" y1="170.13"  x2="443.24" y2="170.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FFC; opacity:1.00 " points="398.62,137.05 398.33,137.20 398.35,136.96 " />
-<line x1="463.16" y1="117.18"  x2="462.28" y2="117.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="419.89" y1="210.49"  x2="419.85" y2="209.71" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="416.63,179.93 413.87,176.15 416.95,179.71 " />
-<polygon style= "fill: #000D8A; opacity:1.00 " points="399.36,132.15 401.55,130.60 399.43,132.22 " />
-<line x1="445.38" y1="160.36"  x2="446.66" y2="160.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.71" y1="204.38"  x2="455.04" y2="204.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.95" y1="128.07"  x2="445.09" y2="128.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D8C; opacity:1.00 " points="399.43,132.22 399.57,132.46 401.80,130.88 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="381.83,152.10 381.75,151.93 383.14,148.48 " />
-<line x1="459.80" y1="131.81"  x2="461.15" y2="132.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="413.55,176.33 416.63,179.93 413.87,176.15 " />
-<polygon style= "fill: #000994; opacity:1.00 " points="399.13,137.91 399.14,138.29 400.84,138.13 " />
-<polygon style= "fill: #00097A; opacity:1.00 " points="414.18,175.93 417.23,179.47 414.46,175.70 " />
-<line x1="430.81" y1="188.82"  x2="432.00" y2="189.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010B4; opacity:1.00 " points="413.66,173.43 412.12,171.30 413.64,173.50 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="413.55,176.32 413.26,176.44 412.06,174.78 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="380.83,134.96 380.85,134.75 381.59,135.10 " />
-<line x1="390.68" y1="194.25"  x2="390.09" y2="195.17" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="411.95,174.80 411.82,174.83 410.28,172.69 " />
-<line x1="476.52" y1="140.66"  x2="475.76" y2="140.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.53" y1="70.18"  x2="409.35" y2="70.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="413.87,176.15 413.55,176.32 412.35,174.66 " />
-<line x1="390.36" y1="217.70"  x2="390.84" y2="218.52" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="476.75" y1="115.27"  x2="476.28" y2="115.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="382.11,134.29 381.30,134.00 382.20,134.21 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="384.63,134.18 384.32,133.94 384.64,134.16 " />
-<polygon style= "fill: #000B91; opacity:1.00 " points="413.39,173.91 414.68,175.46 413.27,174.04 " />
-<line x1="455.68" y1="204.56"  x2="455.98" y2="204.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A85; opacity:1.00 " points="398.89,131.75 398.04,132.24 399.10,131.89 " />
-<line x1="380.52" y1="83.95"  x2="379.53" y2="83.53" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="382.28,152.50 382.02,152.31 383.41,148.86 " />
-<polygon style= "fill: #000AA7; opacity:1.00 " points="398.91,138.97 398.69,139.21 397.35,139.18 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="401.18,154.44 398.49,151.06 401.50,154.23 " />
-<polygon style= "fill: #000993; opacity:1.00 " points="401.79,153.99 399.10,150.61 402.01,153.71 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="412.85,174.37 414.18,175.93 412.67,174.49 " />
-<line x1="461.15" y1="132.11"  x2="462.48" y2="132.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077E; opacity:1.00 " points="401.50,154.23 398.81,150.86 401.79,153.99 " />
-<polygon style= "fill: #000FA5; opacity:1.00 " points="412.08,171.46 411.94,171.66 413.56,173.69 " />
-<polygon style= "fill: #000689; opacity:1.00 " points="380.98,138.02 380.90,137.88 382.40,138.23 " />
-<line x1="446.66" y1="160.64"  x2="447.91" y2="160.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="390.09" y1="195.17"  x2="389.55" y2="196.14" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA1; opacity:1.00 " points="383.64,152.91 383.34,152.89 384.73,149.44 " />
-<polygon style= "fill: #00099F; opacity:1.00 " points="397.28,137.02 397.37,137.10 398.62,137.05 " />
-<polygon style= "fill: #000BB0; opacity:1.00 " points="399.48,150.07 402.21,153.21 399.52,149.83 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="382.61,152.67 382.29,152.50 383.68,149.05 " />
-<line x1="477.20" y1="115.10"  x2="476.75" y2="115.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.45" y1="117.61"  x2="460.68" y2="117.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00088D; opacity:1.00 " points="383.32,152.89 382.98,152.81 384.38,149.36 " />
-<polygon style= "fill: #00077C; opacity:1.00 " points="397.88,151.25 400.86,154.57 398.17,151.20 " />
-<polygon style= "fill: #0011B5; opacity:1.00 " points="412.08,171.46 409.36,167.64 412.12,171.30 " />
-<polygon style= "fill: #000B74; opacity:1.00 " points="407.39,168.84 410.27,172.69 407.55,168.87 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="412.85,174.37 412.67,174.49 411.12,172.35 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="412.98,174.27 411.44,172.13 412.85,174.37 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="399.12,137.91 399.13,138.29 397.79,138.25 " />
-<polygon style= "fill: #000A8A; opacity:1.00 " points="382.50,134.07 383.24,134.41 382.71,134.05 " />
-<line x1="405.00" y1="183.51"  x2="405.82" y2="183.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="411.12,172.35 410.80,172.53 412.53,174.57 " />
-<polygon style= "fill: #000CC3; opacity:1.00 " points="385.28,149.42 385.07,149.45 383.88,152.86 " />
-<polygon style= "fill: #000AA7; opacity:1.00 " points="397.48,139.03 398.91,138.97 397.35,139.18 " />
-<line x1="456.28" y1="204.74"  x2="456.57" y2="204.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AA4; opacity:1.00 " points="399.33,150.34 402.16,153.45 399.48,150.07 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="411.72,171.90 411.44,172.13 413.14,174.14 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="398.17,151.20 401.18,154.44 398.49,151.06 " />
-<line x1="450.62" y1="144.13"  x2="450.35" y2="144.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="410.51,172.64 407.79,168.82 410.80,172.52 " />
-<polygon style= "fill: #000FA5; opacity:1.00 " points="411.95,171.67 409.22,167.84 412.08,171.46 " />
-<polygon style= "fill: #000993; opacity:1.00 " points="399.10,150.61 402.01,153.71 399.33,150.34 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="383.68,149.05 383.45,148.89 382.28,152.50 " />
-<polygon style= "fill: #00077E; opacity:1.00 " points="398.49,151.06 401.50,154.23 398.81,150.86 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="407.55,168.87 410.51,172.64 407.79,168.82 " />
-<line x1="389.55" y1="196.14"  x2="389.07" y2="197.17" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077E; opacity:1.00 " points="398.81,150.86 401.79,153.99 399.10,150.61 " />
-<line x1="441.85" y1="127.72"  x2="442.87" y2="127.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="384.02,149.23 383.73,149.08 382.61,152.67 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="410.80,172.52 408.08,168.70 411.12,172.35 " />
-<line x1="472.67" y1="164.71"  x2="472.34" y2="164.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D91; opacity:1.00 " points="411.72,171.90 409.00,168.07 411.95,171.67 " />
-<line x1="462.48" y1="132.39"  x2="463.79" y2="132.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000777; opacity:1.00 " points="384.38,149.36 384.06,149.25 382.97,152.80 " />
-<line x1="460.68" y1="117.86"  x2="459.97" y2="118.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.35" y1="70.79"  x2="409.09" y2="71.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="381.56" y1="84.30"  x2="380.52" y2="83.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="411.12,172.35 408.40,168.53 411.44,172.13 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="385.25,134.15 385.50,133.94 386.11,134.28 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="382.32,137.51 382.42,137.14 380.88,136.97 " />
-<polygon style= "fill: #000A8B; opacity:1.00 " points="386.50,134.14 385.84,133.81 386.72,134.13 " />
-<line x1="447.91" y1="160.89"  x2="449.11" y2="161.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.37" y1="171.26"  x2="443.57" y2="171.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="407.55,168.86 404.85,165.01 407.78,168.81 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="408.08,168.70 411.12,172.35 408.40,168.53 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="408.71,168.31 411.72,171.90 409.00,168.07 " />
-<line x1="419.78" y1="211.86"  x2="419.86" y2="211.21" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0011B5; opacity:1.00 " points="406.67,163.79 409.41,167.49 406.71,163.64 " />
-<line x1="478.48" y1="114.59"  x2="478.07" y2="114.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0007A7; opacity:1.00 " points="397.48,139.03 397.35,139.18 395.22,139.12 " />
-<polygon style= "fill: #000775; opacity:1.00 " points="382.57,136.24 382.52,135.90 382.29,135.82 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="407.78,168.81 405.09,164.96 408.07,168.70 " />
-<line x1="404.25" y1="183.57"  x2="405.00" y2="183.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A89; opacity:1.00 " points="397.03,133.29 398.32,132.43 397.18,133.45 " />
-<polygon style= "fill: #0007A6; opacity:1.00 " points="382.31,137.88 382.57,138.10 382.40,138.23 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="382.46,135.09 382.69,135.20 382.66,134.80 " />
-<polygon style= "fill: #000AA4; opacity:1.00 " points="398.53,149.00 399.48,150.07 398.43,149.18 " />
-<polygon style= "fill: #000694; opacity:1.00 " points="382.63,136.82 382.75,136.97 382.43,137.14 " />
-<line x1="459.97" y1="118.14"  x2="459.33" y2="118.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.90" y1="127.59"  x2="441.85" y2="127.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.13" y1="189.27"  x2="434.20" y2="189.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068D; opacity:1.00 " points="384.96,148.86 384.61,148.78 384.43,149.37 " />
-<polygon style= "fill: #000A74; opacity:1.00 " points="404.69,164.97 402.03,161.09 404.84,165.00 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="383.64,148.29 383.46,148.08 384.66,145.22 " />
-<polygon style= "fill: #000FA5; opacity:1.00 " points="406.53,164.00 409.36,167.64 406.67,163.79 " />
-<polygon style= "fill: #000D91; opacity:1.00 " points="409.00,168.08 406.31,164.23 409.23,167.85 " />
-<line x1="463.79" y1="132.65"  x2="465.05" y2="132.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077E; opacity:1.00 " points="398.10,149.53 399.10,150.61 397.91,149.70 " />
-<line x1="457.59" y1="205.54"  x2="458.02" y2="206.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="477.85" y1="140.68"  x2="477.22" y2="140.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000692; opacity:1.00 " points="397.79,138.02 397.79,138.25 395.66,138.19 " />
-<polygon style= "fill: #000BFC; opacity:1.00 " points="394.49,138.96 394.42,139.18 394.71,139.04 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="408.39,168.52 405.70,164.67 408.71,168.31 " />
-<line x1="382.65" y1="84.56"  x2="381.56" y2="84.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.09,164.96 408.07,168.70 405.38,164.84 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="385.46,135.14 386.06,135.48 385.50,135.05 " />
-<polygon style= "fill: #00079F; opacity:1.00 " points="395.15,136.95 395.38,137.16 397.37,137.10 " />
-<polygon style= "fill: #000D91; opacity:1.00 " points="406.31,164.23 409.23,167.85 406.53,164.00 " />
-<polygon style= "fill: #0008B7; opacity:1.00 " points="396.82,146.23 396.88,146.41 398.59,148.55 " />
-<line x1="409.09" y1="71.44"  x2="408.73" y2="72.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="404.84,165.00 402.19,161.12 405.08,164.95 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.38,164.84 408.39,168.52 405.70,164.67 " />
-<polygon style= "fill: #0007A7; opacity:1.00 " points="395.43,138.88 395.22,139.12 397.48,139.03 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="406.02,164.46 409.00,168.08 406.31,164.23 " />
-<polygon style= "fill: #0007A1; opacity:1.00 " points="385.27,148.90 384.96,148.88 386.16,146.02 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.70,164.67 408.71,168.31 406.02,164.46 " />
-<line x1="449.11" y1="161.11"  x2="450.25" y2="161.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000886; opacity:1.00 " points="396.65,132.98 394.71,134.03 396.77,133.06 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="384.24,148.66 383.91,148.49 385.11,145.63 " />
-<polygon style= "fill: #000578; opacity:1.00 " points="384.60,148.80 384.24,148.66 385.45,145.80 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="384.84,145.43 384.71,145.28 383.64,148.29 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="383.54,135.14 383.60,135.09 382.89,134.88 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.08,164.95 402.42,161.07 405.38,164.84 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="398.10,149.53 397.91,149.70 396.15,147.43 " />
-<polygon style= "fill: #0009C3; opacity:1.00 " points="386.55,146.03 385.51,148.86 386.47,146.04 " />
-<polygon style= "fill: #000692; opacity:1.00 " points="395.65,137.80 395.66,138.19 397.79,138.02 " />
-<line x1="419.64" y1="212.45"  x2="419.78" y2="211.86" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.16" y1="145.04"  x2="450.05" y2="145.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A74; opacity:1.00 " points="402.02,161.08 399.41,157.16 402.18,161.11 " />
-<polygon style= "fill: #000FA6; opacity:1.00 " points="403.88,160.12 406.68,163.80 404.02,159.92 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.38,164.84 402.71,160.95 405.70,164.67 " />
-<line x1="440.02" y1="127.52"  x2="440.90" y2="127.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="403.59" y1="183.68"  x2="404.25" y2="183.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="405.70,164.67 403.04,160.79 406.02,164.46 " />
-<line x1="479.58" y1="114.06"  x2="479.23" y2="114.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7A; opacity:1.00 " points="406.02,164.46 403.36,160.57 406.31,164.23 " />
-<line x1="465.05" y1="132.88"  x2="466.26" y2="133.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="402.42,161.07 405.38,164.84 402.71,160.95 " />
-<line x1="458.42" y1="206.50"  x2="458.77" y2="207.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000693; opacity:1.00 " points="396.68,146.92 396.45,147.19 398.35,149.27 " />
-<line x1="383.79" y1="84.75"  x2="382.65" y2="84.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068E; opacity:1.00 " points="385.91,145.96 384.96,148.88 385.81,145.94 " />
-<polygon style= "fill: #000578; opacity:1.00 " points="385.81,145.94 385.55,145.84 384.60,148.80 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="386.13,141.81 385.30,143.49 386.28,141.77 " />
-<polygon style= "fill: #000D91; opacity:1.00 " points="403.65,160.34 406.54,164.00 403.88,160.12 " />
-<line x1="434.20" y1="189.45"  x2="435.21" y2="189.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="387.87" y1="210.34"  x2="388.10" y2="211.52" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7A; opacity:1.00 " points="403.36,160.57 406.31,164.23 403.65,160.34 " />
-<polygon style= "fill: #000EDF; opacity:1.00 " points="394.71,134.03 394.47,134.16 394.42,133.93 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="403.04,160.79 406.02,164.46 403.36,160.57 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="383.18,136.10 383.21,135.81 384.15,136.19 " />
-<polygon style= "fill: #0008B2; opacity:1.00 " points="396.88,146.42 396.83,146.66 395.50,144.90 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="386.96,135.27 386.32,135.00 387.03,135.18 " />
-<line x1="387.68" y1="209.13"  x2="387.87" y2="210.34" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000691; opacity:1.00 " points="395.63,137.80 395.64,138.18 395.27,138.17 " />
-<polygon style= "fill: #0015E3; opacity:1.00 " points="399.41,157.16 399.73,157.04 399.56,157.19 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="402.41,161.06 399.80,157.14 402.71,160.95 " />
-<line x1="458.77" y1="207.00"  x2="459.08" y2="207.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="387.55" y1="207.90"  x2="387.68" y2="209.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.25" y1="161.30"  x2="451.34" y2="161.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="383.31,137.04 384.95,137.56 383.36,136.99 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="384.90,135.21 383.87,134.88 385.04,135.14 " />
-<polygon style= "fill: #000FA7; opacity:1.00 " points="401.26,156.20 404.02,159.93 401.41,156.00 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="402.71,160.95 400.09,157.03 403.04,160.78 " />
-<polygon style= "fill: #00048E; opacity:1.00 " points="386.16,146.02 386.69,144.78 385.91,145.96 " />
-<polygon style= "fill: #00049F; opacity:1.00 " points="394.80,136.96 395.00,137.14 392.95,137.05 " />
-<polygon style= "fill: #0007A5; opacity:1.00 " points="395.50,144.90 395.43,145.03 396.83,146.66 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="403.36,160.57 400.74,156.65 403.65,160.35 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="399.80,157.14 402.71,160.95 400.09,157.03 " />
-<line x1="384.97" y1="84.85"  x2="383.79" y2="84.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.22" y1="127.48"  x2="440.02" y2="127.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="385.97,144.56 385.64,144.38 385.21,145.68 " />
-<line x1="419.46" y1="212.97"  x2="419.64" y2="212.45" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D91; opacity:1.00 " points="401.03,156.42 403.88,160.13 401.26,156.20 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="384.85,139.23 384.73,139.03 383.18,138.65 " />
-<line x1="466.26" y1="133.09"  x2="467.42" y2="133.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="400.09,157.03 403.04,160.78 400.42,156.86 " />
-<polygon style= "fill: #000373; opacity:1.00 " points="386.75,136.16 385.81,135.79 386.76,136.21 " />
-<polygon style= "fill: #000974; opacity:1.00 " points="396.98,153.21 396.83,153.19 399.05,156.44 " />
-<polygon style= "fill: #000B7A; opacity:1.00 " points="400.74,156.65 403.65,160.35 401.03,156.42 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="395.12,145.43 394.97,145.55 396.45,147.19 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="400.42,156.86 403.36,160.57 400.74,156.65 " />
-<line x1="408.30" y1="72.86"  x2="407.79" y2="73.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="385.62,144.42 385.36,144.21 386.09,142.54 " />
-<line x1="478.89" y1="140.65"  x2="478.41" y2="140.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000491; opacity:1.00 " points="395.26,137.83 395.27,138.17 393.22,138.08 " />
-<polygon style= "fill: #0005B0; opacity:1.00 " points="392.78,139.01 392.61,139.11 394.80,139.11 " />
-<line x1="444.22" y1="173.08"  x2="444.65" y2="173.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="435.21" y1="189.59"  x2="436.15" y2="189.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="384.64,138.34 382.98,138.01 384.64,138.25 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="399.32,156.40 397.22,153.16 399.27,156.41 " />
-<line x1="458.26" y1="119.13"  x2="457.84" y2="119.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="384.64,138.25 384.73,137.98 383.03,137.64 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="384.25,137.02 384.18,136.89 385.12,137.27 " />
-<line x1="465.40" y1="187.79"  x2="465.72" y2="187.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7A; opacity:1.00 " points="401.04,156.43 400.74,156.65 400.27,155.92 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="399.61,156.29 397.51,153.05 399.56,156.31 " />
-<polygon style= "fill: #000493; opacity:1.00 " points="395.35,145.16 394.05,143.44 395.23,145.30 " />
-<polygon style= "fill: #000DA8; opacity:1.00 " points="398.84,152.05 398.70,152.24 400.91,155.32 " />
-<line x1="386.18" y1="84.88"  x2="384.97" y2="84.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="408.17" y1="220.83"  x2="408.87" y2="220.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="407.48" y1="220.90"  x2="408.17" y2="220.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.34" y1="161.45"  x2="452.37" y2="161.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="397.51,153.05 397.22,153.16 399.56,156.31 " />
-<line x1="450.02" y1="146.05"  x2="450.08" y2="146.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.57" y1="220.71"  x2="410.28" y2="220.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="400.21,155.96 399.94,156.13 397.84,152.89 " />
-<polygon style= "fill: #00097A; opacity:1.00 " points="400.51,155.74 400.27,155.92 398.17,152.68 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="386.68,142.95 386.54,142.87 385.95,144.61 " />
-<line x1="406.12" y1="221.06"  x2="406.79" y2="220.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037A; opacity:1.00 " points="386.89,143.03 386.31,144.75 386.68,142.95 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="398.70,152.24 398.46,152.46 400.75,155.52 " />
-<line x1="410.28" y1="220.66"  x2="410.98" y2="220.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="480.72" y1="113.30"  x2="480.47" y2="113.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="395.85,151.19 397.21,153.15 395.73,151.21 " />
-<line x1="405.46" y1="221.15"  x2="406.12" y2="221.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="397.84,152.89 397.51,153.05 399.88,156.16 " />
-<line x1="438.50" y1="127.49"  x2="439.22" y2="127.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00097A; opacity:1.00 " points="398.46,152.46 398.17,152.68 400.51,155.74 " />
-<polygon style= "fill: #000480; opacity:1.00 " points="392.97,134.77 393.12,134.82 391.59,135.59 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="386.01,142.45 385.91,142.32 386.93,139.99 " />
-<line x1="407.79" y1="73.61"  x2="407.20" y2="74.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.55" y1="208.54"  x2="459.70" y2="209.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="385.20,136.27 384.22,136.00 385.22,136.21 " />
-<line x1="467.42" y1="133.25"  x2="468.53" y2="133.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="411.68" y1="220.55"  x2="412.39" y2="220.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BBA; opacity:1.00 " points="396.38,147.90 396.33,148.05 397.63,150.00 " />
-<polygon style= "fill: #000B93; opacity:1.00 " points="398.70,152.25 398.46,152.46 397.22,150.48 " />
-<line x1="404.18" y1="221.37"  x2="404.81" y2="221.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="402.53" y1="184.05"  x2="403.02" y2="183.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="398.17,152.68 397.84,152.88 396.59,150.90 " />
-<line x1="387.43" y1="84.82"  x2="386.18" y2="84.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.39" y1="220.50"  x2="413.08" y2="220.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="396.43,150.98 397.84,152.88 396.27,151.06 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="384.76,137.88 385.61,138.16 384.90,137.65 " />
-<polygon style= "fill: #00097A; opacity:1.00 " points="397.22,150.48 397.07,150.59 398.46,152.46 " />
-<polygon style= "fill: #000494; opacity:1.00 " points="394.05,143.45 393.82,143.71 392.81,142.34 " />
-<line x1="403.57" y1="221.49"  x2="404.18" y2="221.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000573; opacity:1.00 " points="393.44,147.59 393.34,147.57 391.84,145.08 " />
-<polygon style= "fill: #000AA9; opacity:1.00 " points="397.53,150.17 397.46,150.27 396.18,148.24 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="394.68,149.13 394.45,149.17 393.50,147.59 " />
-<polygon style= "fill: #00017A; opacity:1.00 " points="386.89,143.03 386.68,142.95 387.71,140.61 " />
-<line x1="386.35" y1="136.79"  x2="386.30" y2="136.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="394.99,149.03 394.69,149.14 396.12,151.11 " />
-<polygon style= "fill: #000299; opacity:1.00 " points="393.22,138.08 392.09,138.03 393.17,138.33 " />
-<polygon style= "fill: #000171; opacity:1.00 " points="385.55,139.23 385.48,138.89 384.64,138.71 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="396.76,150.80 396.59,150.90 395.32,148.87 " />
-<polygon style= "fill: #000993; opacity:1.00 " points="396.18,148.24 395.95,148.45 397.34,150.38 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="396.93,150.70 395.65,148.67 396.76,150.80 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="387.38,140.43 387.11,140.21 386.24,142.67 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="385.52,137.13 385.56,136.76 385.09,136.63 " />
-<line x1="452.37" y1="161.56"  x2="453.32" y2="161.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="481.13" y1="112.89"  x2="480.94" y2="113.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="413.77" y1="220.39"  x2="414.44" y2="220.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="385.68,136.40 385.89,136.09 385.39,135.95 " />
-<line x1="445.16" y1="174.36"  x2="445.73" y2="175.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D94; opacity:1.00 " points="386.46,155.31 386.63,155.30 386.82,151.58 " />
-<line x1="402.40" y1="221.79"  x2="402.98" y2="221.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="395.32,148.86 394.98,149.02 394.04,147.45 " />
-<polygon style= "fill: #000993; opacity:1.00 " points="395.24,146.67 395.14,146.75 396.19,148.25 " />
-<line x1="388.69" y1="84.69"  x2="387.43" y2="84.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.49" y1="119.91"  x2="457.22" y2="120.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077A; opacity:1.00 " points="395.95,148.46 395.65,148.67 394.70,147.09 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="393.92,147.48 393.73,147.55 392.23,145.06 " />
-<line x1="459.81" y1="209.55"  x2="459.87" y2="210.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.44" y1="220.32"  x2="415.11" y2="220.26" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.54" y1="187.30"  x2="465.01" y2="187.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003E0; opacity:1.00 " points="391.76,136.24 391.46,136.13 391.52,135.96 " />
-<polygon style= "fill: #0008AA; opacity:1.00 " points="393.89,144.00 393.73,144.18 395.33,146.56 " />
-<line x1="479.64" y1="140.56"  x2="479.30" y2="140.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="392.53,144.95 392.23,145.06 393.92,147.48 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="391.93,144.59 391.72,144.63 390.34,142.24 " />
-<polygon style= "fill: #00057A; opacity:1.00 " points="395.00,146.88 393.50,144.39 394.88,146.96 " />
-<line x1="406.53" y1="75.17"  x2="405.78" y2="75.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="394.57,147.17 394.37,147.29 392.86,144.79 " />
-<line x1="415.11" y1="220.26"  x2="415.76" y2="220.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="394.70,147.09 393.20,144.60 394.57,147.17 " />
-<polygon style= "fill: #001096; opacity:1.00 " points="386.41,181.66 386.51,181.64 386.50,184.76 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="392.86,144.79 392.53,144.95 394.24,147.35 " />
-<line x1="473.08" y1="164.24"  x2="473.16" y2="164.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="389.96" y1="84.48"  x2="388.69" y2="84.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="401.33" y1="222.14"  x2="401.85" y2="221.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A71; opacity:1.00 " points="386.50,155.34 386.42,155.32 386.62,151.59 " />
-<polygon style= "fill: #000794; opacity:1.00 " points="393.74,144.19 393.50,144.39 393.24,143.94 " />
-<line x1="445.73" y1="175.01"  x2="446.36" y2="175.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.01" y1="189.73"  x2="437.80" y2="189.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="392.56,144.35 392.26,144.49 390.88,142.09 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="390.58,142.20 389.84,140.91 390.41,142.22 " />
-<line x1="400.82" y1="222.34"  x2="401.33" y2="222.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000494; opacity:1.00 " points="392.10,141.34 391.93,141.48 393.45,143.76 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="386.33,160.26 386.49,155.37 386.52,160.28 " />
-<line x1="453.32" y1="161.63"  x2="454.21" y2="161.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="392.90,144.17 392.60,144.34 391.21,141.94 " />
-<polygon style= "fill: #00037A; opacity:1.00 " points="393.20,143.96 392.93,144.14 391.55,141.75 " />
-<line x1="405.78" y1="75.96"  x2="404.96" y2="76.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.33" y1="127.65"  x2="437.87" y2="127.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="386.49,155.37 386.52,160.28 386.68,155.39 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="387.55,141.43 387.43,143.59 387.52,141.43 " />
-<line x1="391.25" y1="84.21"  x2="389.96" y2="84.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="418.63" y1="214.04"  x2="418.95" y2="213.77" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.88" y1="210.52"  x2="459.83" y2="210.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="391.55,141.75 391.32,141.88 392.90,144.17 " />
-<line x1="416.39" y1="220.10"  x2="417.02" y2="220.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0009D0; opacity:1.00 " points="389.65,143.80 389.59,143.80 389.46,145.76 " />
-<line x1="481.54" y1="112.22"  x2="481.43" y2="112.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="386.56,161.29 386.50,161.28 386.52,160.29 " />
-<polygon style= "fill: #0019CD; opacity:1.00 " points="388.44,165.21 388.59,170.09 388.60,165.20 " />
-<line x1="385.22" y1="48.63"  x2="384.98" y2="48.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C72; opacity:1.00 " points="386.54,184.79 386.46,184.78 386.71,189.59 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.39,179.88 386.29,174.99 386.58,179.89 " />
-<line x1="469.57" y1="133.46"  x2="470.55" y2="133.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="387.50,143.60 387.71,141.46 387.43,143.59 " />
-<polygon style= "fill: #0019CE; opacity:1.00 " points="388.60,165.21 388.44,165.22 388.51,161.32 " />
-<polygon style= "fill: #0009D0; opacity:1.00 " points="389.59,143.80 389.46,145.76 389.49,143.79 " />
-<polygon style= "fill: #000796; opacity:1.00 " points="387.45,206.43 387.55,206.42 387.59,209.27 " />
-<polygon style= "fill: #0019CD; opacity:1.00 " points="388.43,170.08 388.64,174.96 388.59,170.07 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.72,165.20 386.44,165.18 386.50,161.28 " />
-<polygon style= "fill: #00017A; opacity:1.00 " points="391.86,141.54 391.12,140.27 391.64,141.68 " />
-<polygon style= "fill: #0003D4; opacity:1.00 " points="386.50,139.10 386.46,139.02 386.52,139.09 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.29,174.99 386.58,179.89 386.48,175.00 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="390.48,140.66 390.14,140.81 390.98,142.04 " />
-<polygon style= "fill: #0019CD; opacity:1.00 " points="388.43,170.10 388.44,165.21 388.59,170.09 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.58,179.89 386.39,179.89 386.51,181.68 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="387.59,145.60 387.31,145.56 387.50,143.60 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.43,170.09 386.44,165.19 386.71,170.09 " />
-<line x1="446.36" y1="175.67"  x2="447.05" y2="176.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="387.57,145.84 387.30,145.81 387.26,148.58 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="386.73,184.79 386.54,184.79 386.45,181.68 " />
-<polygon style= "fill: #0019CD; opacity:1.00 " points="388.48,174.96 388.75,179.85 388.64,174.95 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="386.51,181.68 386.73,184.79 386.45,181.68 " />
-<polygon style= "fill: #0013B0; opacity:1.00 " points="388.51,161.32 388.52,160.33 388.30,161.32 " />
-<polygon style= "fill: #0013B0; opacity:1.00 " points="388.43,155.46 388.52,160.35 388.69,155.46 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.44,165.19 386.71,170.09 386.72,165.20 " />
-<polygon style= "fill: #0016AF; opacity:1.00 " points="388.47,178.30 388.22,174.98 388.48,174.96 " />
-<polygon style= "fill: #0019CD; opacity:1.00 " points="388.48,174.98 388.43,170.08 388.64,174.96 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.48,174.99 386.43,170.09 386.76,174.99 " />
-<line x1="404.96" y1="76.77"  x2="404.07" y2="77.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010B1; opacity:1.00 " points="388.68,155.47 388.43,155.46 388.62,151.73 " />
-<polygon style= "fill: #0013B0; opacity:1.00 " points="388.26,160.35 388.43,155.46 388.52,160.35 " />
-<polygon style= "fill: #0005B2; opacity:1.00 " points="389.49,143.79 389.70,141.65 389.39,143.79 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.43,170.09 386.76,174.99 386.71,170.10 " />
-<line x1="392.54" y1="83.86"  x2="391.25" y2="84.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="387.58,150.53 387.23,150.50 387.37,148.59 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.59,148.61 387.37,148.59 387.57,145.84 " />
-<line x1="417.02" y1="220.01"  x2="417.62" y2="219.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.58,179.89 386.48,175.00 386.87,179.89 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.59,148.61 387.58,150.53 387.37,148.59 " />
-<polygon style= "fill: #0005B2; opacity:1.00 " points="389.70,141.65 389.48,141.64 389.39,143.79 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.52,151.68 387.58,150.53 387.25,151.66 " />
-<polygon style= "fill: #000D8D; opacity:1.00 " points="388.62,151.73 388.36,151.72 388.42,155.46 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="386.48,175.00 386.87,179.89 386.76,175.00 " />
-<polygon style= "fill: #0002B2; opacity:1.00 " points="389.78,140.86 389.52,140.85 389.48,141.64 " />
-<polygon style= "fill: #000B8D; opacity:1.00 " points="388.68,150.59 388.34,150.57 388.36,151.72 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="387.71,155.43 387.32,155.41 387.52,151.68 " />
-<polygon style= "fill: #0002B6; opacity:1.00 " points="387.48,140.11 387.51,140.09 387.57,140.14 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.16,160.32 387.32,155.43 387.54,160.33 " />
-<polygon style= "fill: #0016AF; opacity:1.00 " points="388.47,178.30 388.59,179.86 388.48,174.96 " />
-<polygon style= "fill: #000B8D; opacity:1.00 " points="388.68,150.61 388.34,150.59 388.48,148.68 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.32,155.43 387.54,160.33 387.71,155.44 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.53,161.32 387.54,160.32 387.22,161.31 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.53,161.32 387.22,161.31 387.46,165.22 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.48,148.68 388.69,145.93 388.34,148.67 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.84,165.23 387.46,165.22 387.53,161.32 " />
-<polygon style= "fill: #0015AF; opacity:1.00 " points="388.64,181.64 388.59,179.85 388.47,181.64 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.69,145.93 388.33,145.91 388.34,148.67 " />
-<line x1="457.04" y1="120.80"  x2="456.93" y2="121.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0016AF; opacity:1.00 " points="388.32,179.87 388.22,174.98 388.59,179.86 " />
-<polygon style= "fill: #0003DB; opacity:1.00 " points="389.56,135.07 389.52,135.09 389.48,135.06 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="388.70,145.71 388.32,145.68 388.52,143.72 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.45,170.11 387.46,165.21 387.83,170.11 " />
-<polygon style= "fill: #0015AF; opacity:1.00 " points="388.59,179.85 388.32,179.86 388.47,181.64 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.73,141.57 388.41,141.54 388.36,143.70 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.52,143.72 388.73,141.57 388.36,143.70 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.80,140.79 388.42,140.75 388.41,141.54 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.45,170.10 387.88,175.00 387.83,170.10 " />
-<line x1="404.07" y1="77.55"  x2="403.12" y2="78.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002B6; opacity:1.00 " points="389.61,134.87 389.72,134.78 389.27,132.83 " />
-<polygon style= "fill: #0013AF; opacity:1.00 " points="388.47,181.64 388.73,184.75 388.38,181.65 " />
-<polygon style= "fill: #000172; opacity:1.00 " points="387.45,135.29 387.67,135.30 387.17,133.31 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.50,175.00 387.45,170.10 387.88,175.00 " />
-<line x1="393.82" y1="83.45"  x2="392.54" y2="83.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003EE; opacity:1.00 " points="386.55,138.10 386.49,138.11 386.49,138.03 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.12,175.00 387.61,179.89 387.50,174.99 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.22,179.89 387.12,175.00 387.61,179.89 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.61,179.89 387.50,174.99 387.98,179.88 " />
-<line x1="447.05" y1="176.33"  x2="447.79" y2="176.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="387.58,204.41 387.39,204.40 387.23,201.14 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.61,179.89 387.22,179.89 387.41,181.68 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.57,206.47 387.49,206.47 387.39,204.40 " />
-<polygon style= "fill: #000484; opacity:1.00 " points="386.41,130.75 386.52,130.80 387.04,133.30 " />
-<polygon style= "fill: #0013AE; opacity:1.00 " points="388.91,189.54 388.65,189.55 388.47,184.75 " />
-<polygon style= "fill: #0010CC; opacity:1.00 " points="389.20,195.57 389.51,199.41 389.17,195.57 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.54,189.59 387.19,189.60 387.02,184.80 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="387.66,181.68 387.61,179.89 387.41,181.68 " />
-<polygon style= "fill: #0010CC; opacity:1.00 " points="389.59,201.05 389.51,199.41 389.48,201.07 " />
-<line x1="399.48" y1="223.05"  x2="399.90" y2="222.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.75,184.79 387.37,184.79 387.27,181.68 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.66,181.68 387.41,181.68 387.75,184.79 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.58,204.41 387.39,204.40 387.57,206.47 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.43,201.15 387.30,201.14 387.58,204.41 " />
-<polygon style= "fill: #000F8B; opacity:1.00 " points="388.47,184.75 388.13,184.77 388.64,189.55 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.23,195.64 387.63,199.50 387.17,195.64 " />
-<polygon style= "fill: #000CCC; opacity:1.00 " points="389.59,201.05 389.48,201.07 389.74,204.31 " />
-<line x1="454.21" y1="161.65"  x2="455.02" y2="161.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="387.63,199.50 387.34,199.50 387.17,195.64 " />
-<line x1="459.74" y1="211.42"  x2="459.60" y2="211.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="387.26,133.32 387.67,135.30 387.44,133.31 " />
-<line x1="403.12" y1="78.34"  x2="402.11" y2="79.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.75,184.78 387.37,184.79 387.93,189.58 " />
-<line x1="395.09" y1="82.97"  x2="393.82" y2="83.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F8B; opacity:1.00 " points="388.64,189.55 388.31,189.57 388.13,184.77 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.45,195.64 387.23,195.64 387.63,199.50 " />
-<polygon style= "fill: #00048D; opacity:1.00 " points="390.47,140.09 390.55,140.07 390.48,140.14 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="387.93,189.58 387.55,189.59 387.37,184.79 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="387.41,194.60 387.20,189.70 387.76,194.59 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="387.20,189.70 387.76,194.59 387.55,189.69 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.63,199.50 387.34,199.50 387.52,201.15 " />
-<polygon style= "fill: #000D8B; opacity:1.00 " points="388.32,189.66 388.86,194.55 388.65,189.65 " />
-<polygon style= "fill: #0003EA; opacity:1.00 " points="390.65,223.91 390.46,219.01 390.57,223.89 " />
-<polygon style= "fill: #0000FE; opacity:1.00 " points="387.46,136.08 387.55,136.03 387.53,136.11 " />
-<line x1="450.71" y1="148.32"  x2="451.08" y2="148.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="387.76,194.59 387.41,194.60 387.53,195.64 " />
-<polygon style= "fill: #000CCC; opacity:1.00 " points="389.74,204.31 389.58,204.33 389.43,201.07 " />
-<polygon style= "fill: #000496; opacity:1.00 " points="393.67,136.94 392.16,137.55 393.74,137.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.52,201.15 387.87,204.41 387.43,201.15 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="387.87,204.41 387.58,204.41 387.43,201.15 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="387.93,189.68 388.52,194.57 388.32,189.66 " />
-<polygon style= "fill: #000D8B; opacity:1.00 " points="388.52,194.57 388.32,189.66 388.86,194.55 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="392.98,135.28 394.70,134.48 393.00,135.35 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="387.98,199.50 387.63,199.50 387.45,195.64 " />
-<line x1="470.55" y1="133.50"  x2="471.45" y2="133.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.68" y1="163.89"  x2="472.92" y2="164.08" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000AAE; opacity:1.00 " points="389.43,201.07 389.25,201.09 389.58,204.33 " />
-<polygon style= "fill: #000777; opacity:1.00 " points="396.01,133.74 396.04,133.86 394.68,134.42 " />
-<polygon style= "fill: #000AAC; opacity:1.00 " points="396.89,135.87 396.95,135.96 395.59,136.52 " />
-<line x1="396.35" y1="82.44"  x2="395.09" y2="82.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002B6; opacity:1.00 " points="388.57,140.13 388.50,140.13 388.50,140.08 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.34,135.25 388.72,135.18 388.15,133.22 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="391.61,136.25 391.74,136.59 393.20,135.87 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="388.57,195.61 388.52,194.56 388.27,195.62 " />
-<polygon style= "fill: #00037C; opacity:1.00 " points="393.54,136.66 392.04,137.27 393.63,136.85 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="388.57,195.61 388.27,195.62 388.75,199.47 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.31,133.19 388.72,135.18 388.52,133.13 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="386.48,130.58 386.70,130.59 385.94,127.81 " />
-<polygon style= "fill: #000AAE; opacity:1.00 " points="389.58,204.33 389.32,204.35 389.53,206.41 " />
-<polygon style= "fill: #0005A6; opacity:1.00 " points="391.52,137.12 391.48,137.05 391.52,137.00 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="388.75,199.47 388.37,199.48 388.19,195.63 " />
-<line x1="401.04" y1="79.84"  x2="399.93" y2="80.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="397.57" y1="81.86"  x2="396.35" y2="82.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="386.76,130.82 387.05,130.80 387.57,133.30 " />
-<polygon style= "fill: #0003D9; opacity:1.00 " points="387.51,139.06 387.50,139.14 387.43,139.10 " />
-<polygon style= "fill: #0008B5; opacity:1.00 " points="388.05,127.31 388.12,127.26 388.75,130.03 " />
-<polygon style= "fill: #0005AA; opacity:1.00 " points="389.58,140.07 389.50,140.12 389.50,140.06 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="388.75,199.46 388.37,199.48 388.58,201.13 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="387.78,133.28 387.07,130.80 387.93,133.26 " />
-<polygon style= "fill: #000AAE; opacity:1.00 " points="389.53,206.41 389.42,206.42 389.32,204.35 " />
-<line x1="399.93" y1="80.55"  x2="398.77" y2="81.22" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="398.77" y1="81.22"  x2="397.57" y2="81.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="384.41" y1="49.04"  x2="384.09" y2="49.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000376; opacity:1.00 " points="388.67,133.09 388.85,133.04 388.17,130.59 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.61,204.39 388.22,204.40 388.06,201.14 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.45,201.13 388.19,201.14 388.61,204.39 " />
-<polygon style= "fill: #0008AE; opacity:1.00 " points="389.82,209.23 389.56,209.25 389.42,206.42 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.58,201.13 388.98,204.37 388.45,201.13 " />
-<polygon style= "fill: #0005A0; opacity:1.00 " points="391.55,138.12 391.47,138.12 391.52,138.07 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="387.93,133.26 388.15,133.22 387.44,130.75 " />
-<polygon style= "fill: #000376; opacity:1.00 " points="388.17,130.59 388.46,130.49 388.98,132.99 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="393.50,136.55 395.19,135.71 393.54,136.66 " />
-<polygon style= "fill: #0003CE; opacity:1.00 " points="390.55,136.09 390.52,136.13 390.46,136.06 " />
-<polygon style= "fill: #0003CC; opacity:1.00 " points="390.26,219.06 390.61,223.94 390.42,219.03 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.31,133.19 388.52,133.13 387.82,130.68 " />
-<polygon style= "fill: #00068A; opacity:1.00 " points="389.42,206.42 389.23,206.43 389.56,209.25 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.61,204.39 388.22,204.40 388.48,206.46 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="394.86,134.93 393.11,135.64 394.91,135.03 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="393.25,135.98 393.35,136.21 395.04,135.37 " />
-<polygon style= "fill: #0000FF; opacity:1.00 " points="387.54,137.09 387.47,137.15 387.45,137.05 " />
-<polygon style= "fill: #0000F4; opacity:1.00 " points="388.52,136.10 388.45,136.05 388.54,136.02 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="388.70,206.46 388.61,204.39 388.48,206.46 " />
-<line x1="418.75" y1="219.66"  x2="419.29" y2="219.53" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="386.70,130.59 387.01,130.57 386.20,127.81 " />
-<line x1="401.61" y1="185.04"  x2="401.82" y2="184.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="388.48,206.46 388.84,209.29 388.32,206.47 " />
-<polygon style= "fill: #0003CC; opacity:1.00 " points="390.63,224.45 390.61,223.95 390.48,224.47 " />
-<polygon style= "fill: #000797; opacity:1.00 " points="388.41,130.23 388.63,130.13 387.88,127.41 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="388.84,209.29 388.45,209.30 388.32,206.47 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.68,214.21 388.33,214.21 388.22,211.89 " />
-<polygon style= "fill: #00068A; opacity:1.00 " points="389.56,209.26 389.22,209.28 389.52,211.84 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="388.57,211.88 388.45,209.30 388.41,211.89 " />
-<polygon style= "fill: #0003F6; opacity:1.00 " points="387.52,138.14 387.43,138.10 387.49,138.04 " />
-<polygon style= "fill: #0003CC; opacity:1.00 " points="390.45,223.96 390.26,219.06 390.61,223.94 " />
-<polygon style= "fill: #00077C; opacity:1.00 " points="395.34,136.03 396.66,135.39 395.43,136.23 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.44,224.02 388.25,219.11 388.73,224.03 " />
-<line x1="398.74" y1="223.62"  x2="399.10" y2="223.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="481.69" y1="111.22"  x2="481.70" y2="111.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="388.84,209.29 388.45,209.30 388.78,211.88 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.48,217.69 388.39,217.69 388.54,219.12 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.57,211.88 388.41,211.89 388.68,214.21 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.25,219.11 388.73,224.03 388.54,219.12 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.73,217.69 388.48,217.69 388.33,214.21 " />
-<polygon style= "fill: #0003E3; opacity:1.00 " points="389.50,136.01 389.56,136.08 389.48,136.09 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="389.52,211.84 389.79,214.16 389.34,211.86 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="388.73,224.03 388.44,224.02 388.49,224.52 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="388.68,214.21 388.33,214.21 388.73,217.69 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="396.64,133.85 396.11,134.08 396.74,134.11 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="389.79,214.16 389.45,214.18 389.34,211.86 " />
-<polygon style= "fill: #000772; opacity:1.00 " points="385.41,125.87 385.64,125.89 386.07,127.82 " />
-<polygon style= "fill: #00048A; opacity:1.00 " points="389.79,214.17 389.45,214.19 389.84,217.65 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="395.00,135.27 395.04,135.37 396.36,134.71 " />
-<polygon style= "fill: #000B97; opacity:1.00 " points="397.35,135.43 397.44,135.60 399.75,134.46 " />
-<line x1="433.76" y1="186.02"  x2="432.81" y2="185.20" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0005A4; opacity:1.00 " points="390.50,139.07 390.54,139.13 390.45,139.16 " />
-<line x1="448.58" y1="177.65"  x2="449.41" y2="178.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="396.51,135.07 396.66,135.39 395.30,135.95 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="386.38,127.80 387.01,130.57 386.53,127.78 " />
-<line x1="434.68" y1="186.88"  x2="433.76" y2="186.02" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="417.87" y1="214.33"  x2="418.26" y2="214.23" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00048A; opacity:1.00 " points="389.84,217.65 389.60,217.66 389.45,214.19 " />
-<line x1="438.50" y1="189.69"  x2="439.13" y2="189.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.41" y1="212.22"  x2="459.17" y2="212.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="387.37,130.52 387.75,130.44 386.90,127.71 " />
-<polygon style= "fill: #0003CB; opacity:1.00 " points="388.53,139.06 388.59,139.14 388.48,139.11 " />
-<line x1="431.83" y1="184.44"  x2="430.82" y2="183.74" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000BB4; opacity:1.00 " points="387.57,125.40 387.68,125.30 387.29,123.86 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="389.60,217.66 389.45,214.19 389.49,217.67 " />
-<polygon style= "fill: #000997; opacity:1.00 " points="387.88,127.41 387.35,125.53 388.01,127.35 " />
-<line x1="435.55" y1="187.79"  x2="434.68" y2="186.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="399.00,132.82 396.64,133.85 399.04,132.92 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="389.49,217.67 389.66,219.10 389.22,217.68 " />
-<polygon style= "fill: #0003BF; opacity:1.00 " points="390.52,137.13 390.43,137.05 390.53,137.01 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="387.27,127.63 387.48,127.57 388.11,130.34 " />
-<polygon style= "fill: #00097C; opacity:1.00 " points="397.22,135.15 397.34,135.40 399.63,134.22 " />
-<line x1="430.82" y1="183.74"  x2="429.79" y2="183.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000F4; opacity:1.00 " points="388.50,137.05 388.56,137.13 388.48,137.12 " />
-<line x1="436.51" y1="128.03"  x2="436.87" y2="127.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002BA; opacity:1.00 " points="389.53,139.07 389.57,139.14 389.48,139.12 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="387.13,127.67 387.75,130.44 387.27,127.63 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="389.28,219.11 389.85,224.01 389.66,219.10 " />
-<line x1="455.02" y1="161.63"  x2="455.74" y2="161.55" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.26" y1="185.58"  x2="462.03" y2="185.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="396.76,134.14 396.89,134.44 399.17,133.23 " />
-<polygon style= "fill: #000973; opacity:1.00 " points="385.06,124.41 385.21,124.42 384.28,121.20 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="389.47,224.02 389.28,219.11 389.85,224.01 " />
-<polygon style= "fill: #0002A9; opacity:1.00 " points="390.45,138.08 390.53,138.05 390.52,138.16 " />
-<polygon style= "fill: #0003E6; opacity:1.00 " points="388.57,138.08 388.47,138.15 388.47,138.05 " />
-<line x1="436.39" y1="188.74"  x2="435.55" y2="187.79" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="400.58,131.87 400.66,132.08 399.00,132.82 " />
-<polygon style= "fill: #000775; opacity:1.00 " points="387.61,127.52 387.05,125.63 387.79,127.46 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="389.52,224.52 389.48,224.53 389.47,224.03 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="385.29,124.42 385.64,125.90 385.49,124.40 " />
-<polygon style= "fill: #0003D9; opacity:1.00 " points="389.48,137.05 389.54,137.13 389.46,137.11 " />
-<polygon style= "fill: #000E97; opacity:1.00 " points="399.71,134.39 399.75,134.46 401.38,133.66 " />
-<line x1="429.79" y1="183.11"  x2="428.75" y2="182.54" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="391.10,138.56 390.86,138.84 391.67,139.30 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="399.48,133.91 399.58,134.12 397.22,135.15 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="385.95,125.86 386.31,125.81 386.75,127.75 " />
-<line x1="456.91" y1="121.78"  x2="456.97" y2="122.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0003CC; opacity:1.00 " points="389.52,138.17 389.42,138.14 389.53,138.07 " />
-<line x1="471.45" y1="133.50"  x2="472.27" y2="133.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000EB4; opacity:1.00 " points="387.21,123.92 387.29,123.86 386.43,120.71 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="399.32,133.57 399.43,133.79 397.07,134.82 " />
-<line x1="449.41" y1="178.31"  x2="450.28" y2="178.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="397.79" y1="224.95"  x2="398.41" y2="223.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="386.31,125.81 386.69,125.73 387.13,127.67 " />
-<line x1="437.19" y1="189.72"  x2="436.39" y2="188.74" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013AD; opacity:1.00 " points="405.85,131.84 405.90,131.93 402.55,133.49 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="401.54,131.42 401.62,131.58 404.90,129.87 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="399.17,133.23 400.79,132.37 399.27,133.44 " />
-<line x1="428.75" y1="182.54"  x2="427.69" y2="182.05" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="419.80" y1="219.37"  x2="420.28" y2="219.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.45" y1="185.15"  x2="461.26" y2="185.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B96; opacity:1.00 " points="386.99,124.03 387.14,123.96 386.21,120.82 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="386.21,124.28 386.33,124.25 386.69,125.73 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="400.94,132.71 401.10,133.05 399.43,133.79 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="385.59,124.39 385.84,124.36 384.81,121.18 " />
-<line x1="437.93" y1="190.73"  x2="437.19" y2="189.72" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="401.78,131.91 400.79,132.37 401.90,132.17 " />
-<line x1="383.35" y1="49.54"  x2="382.94" y2="49.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="391.32,139.94 392.28,140.50 391.29,140.01 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="401.12,133.05 401.28,133.38 402.23,132.85 " />
-<polygon style= "fill: #000A73; opacity:1.00 " points="384.00,120.13 384.17,120.14 383.07,116.54 " />
-<polygon style= "fill: #000974; opacity:1.00 " points="386.69,124.14 386.89,124.07 385.91,120.93 " />
-<line x1="450.28" y1="178.96"  x2="451.18" y2="179.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.69" y1="182.05"  x2="426.63" y2="181.64" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D7D; opacity:1.00 " points="402.37,133.13 405.62,131.37 402.39,133.19 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="386.33,124.25 386.57,124.18 385.55,121.04 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="384.50,121.22 384.81,121.19 384.46,120.11 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="384.81,121.18 385.17,121.12 385.95,124.34 " />
-<polygon style= "fill: #0015AE; opacity:1.00 " points="406.10,131.84 410.52,129.56 406.05,131.74 " />
-<polygon style= "fill: #000693; opacity:1.00 " points="393.18,139.43 393.06,139.50 392.13,138.86 " />
-<line x1="481.51" y1="110.38"  x2="481.60" y2="110.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0010B3; opacity:1.00 " points="385.21,116.01 385.32,115.92 386.26,119.51 " />
-<polygon style= "fill: #000E73; opacity:1.00 " points="409.53,127.61 405.06,129.78 409.47,127.50 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="405.00,130.08 405.13,130.36 401.78,131.91 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="385.17,121.12 385.55,121.04 386.33,124.25 " />
-<polygon style= "fill: #000D7D; opacity:1.00 " points="405.62,131.37 405.75,131.63 402.39,133.19 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="402.10,132.59 402.23,132.85 405.46,131.05 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="401.93,132.25 402.07,132.52 405.29,130.70 " />
-<polygon style= "fill: #000FC4; opacity:1.00 " points="393.41,142.05 393.47,142.04 394.34,142.69 " />
-<line x1="420.28" y1="219.20"  x2="420.73" y2="219.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="480.16" y1="140.15"  x2="480.15" y2="140.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="438.63" y1="191.75"  x2="437.93" y2="190.73" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.18" y1="179.61"  x2="452.10" y2="180.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.63" y1="181.64"  x2="425.56" y2="181.31" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="405.29,130.69 401.93,132.25 405.29,130.70 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="385.17,121.12 385.55,121.03 385.18,119.97 " />
-<polygon style= "fill: #000E96; opacity:1.00 " points="385.93,119.72 386.09,119.63 384.99,116.13 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="385.27,119.95 385.55,121.03 385.54,119.86 " />
-<polygon style= "fill: #001072; opacity:1.00 " points="410.21,127.12 410.27,127.21 413.90,125.27 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="405.31,130.27 409.64,127.81 405.17,129.99 " />
-<line x1="458.71" y1="184.21"  x2="459.60" y2="184.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001397; opacity:1.00 " points="410.52,129.56 406.05,131.74 410.43,129.36 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="383.29,116.54 383.59,116.51 384.53,120.10 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="405.46,131.05 405.63,130.95 405.61,131.36 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="384.80,120.05 383.59,116.51 384.89,120.04 " />
-<polygon style= "fill: #000A74; opacity:1.00 " points="385.63,119.84 385.86,119.75 384.69,116.24 " />
-<polygon style= "fill: #0010B3; opacity:1.00 " points="384.38,112.83 384.46,112.77 385.32,115.90 " />
-<line x1="452.10" y1="180.24"  x2="453.05" y2="180.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F7D; opacity:1.00 " points="405.95,131.54 410.29,129.09 405.81,131.27 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="385.18,119.97 383.95,116.44 385.27,119.95 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="385.27,119.95 385.54,119.86 384.33,116.35 " />
-<line x1="382.50" y1="49.91"  x2="382.04" y2="50.10" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="393.14,141.37 393.09,141.58 392.16,140.95 " />
-<line x1="439.27" y1="192.79"  x2="438.63" y2="191.75" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A73; opacity:1.00 " points="382.28,113.42 382.43,113.42 383.29,116.55 " />
-<polygon style= "fill: #001072; opacity:1.00 " points="413.90,125.27 413.96,125.37 410.28,127.23 " />
-<line x1="425.56" y1="181.31"  x2="424.49" y2="181.07" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="409.78,128.09 405.31,130.27 409.64,127.81 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="405.81,131.27 410.13,128.77 405.65,130.94 " />
-<line x1="472.27" y1="133.44"  x2="473.02" y2="133.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="392.55,140.00 392.45,140.17 393.43,140.73 " />
-<line x1="453.05" y1="180.86"  x2="454.00" y2="181.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E95; opacity:1.00 " points="384.99,116.11 385.21,116.00 384.20,112.94 " />
-<line x1="456.86" y1="183.18"  x2="457.80" y2="183.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.50" y1="163.15"  x2="471.97" y2="163.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="409.95,128.42 405.48,130.60 409.78,128.09 " />
-<polygon style= "fill: #001071; opacity:1.00 " points="413.96,125.38 418.30,122.98 413.89,125.27 " />
-<line x1="454.00" y1="181.46"  x2="454.96" y2="182.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001598; opacity:1.00 " points="411.28,129.14 414.89,127.12 411.29,129.18 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="410.13,128.77 405.65,130.94 409.95,128.42 " />
-<polygon style= "fill: #00077D; opacity:1.00 " points="393.92,140.20 393.73,140.35 392.79,139.72 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="383.60,116.52 383.95,116.45 382.85,113.36 " />
-<polygon style= "fill: #000F7E; opacity:1.00 " points="410.30,129.08 410.45,129.36 411.18,128.93 " />
-<line x1="454.96" y1="182.05"  x2="455.91" y2="182.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A73; opacity:1.00 " points="384.69,116.23 384.99,116.11 383.92,113.06 " />
-<polygon style= "fill: #000DA6; opacity:1.00 " points="394.42,139.97 395.41,140.60 394.25,140.00 " />
-<line x1="458.21" y1="213.44"  x2="457.82" y2="213.65" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="410.39,127.43 410.52,127.66 414.08,125.57 " />
-<polygon style= "fill: #001598; opacity:1.00 " points="414.89,127.12 414.98,127.32 411.29,129.18 " />
-<polygon style= "fill: #000E86; opacity:1.00 " points="380.44,107.25 381.79,111.90 380.32,107.22 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="384.33,116.35 384.69,116.23 383.58,113.18 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.53,113.41 382.00,111.89 382.73,113.38 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="409.79,128.09 409.96,128.41 410.68,127.98 " />
-<line x1="424.49" y1="181.07"  x2="423.43" y2="180.91" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0018AE; opacity:1.00 " points="415.04,127.41 419.41,125.02 415.00,127.31 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="382.85,113.36 383.09,113.31 383.95,116.45 " />
-<polygon style= "fill: #001071; opacity:1.00 " points="418.38,123.09 413.96,125.38 418.30,122.98 " />
-<polygon style= "fill: #0017D6; opacity:1.00 " points="382.56,106.46 381.27,101.85 382.68,106.49 " />
-<line x1="439.86" y1="193.83"  x2="439.27" y2="192.79" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117E; opacity:1.00 " points="411.06,128.70 411.18,128.93 414.75,126.84 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="383.21,113.28 383.46,113.21 384.33,116.35 " />
-<line x1="401.46" y1="185.98"  x2="401.48" y2="185.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="381.56" y1="50.29"  x2="381.05" y2="50.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.08,125.57 414.23,125.85 410.54,127.71 " />
-<line x1="457.11" y1="122.84"  x2="457.33" y2="123.40" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117E; opacity:1.00 " points="414.75,126.84 414.89,127.12 411.20,128.98 " />
-<line x1="452.61" y1="150.81"  x2="453.25" y2="151.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C74; opacity:1.00 " points="380.66,107.26 379.03,102.63 380.44,107.27 " />
-<polygon style= "fill: #000C74; opacity:1.00 " points="379.25,102.61 380.66,107.26 379.03,102.63 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.31,111.86 380.66,107.25 382.01,111.90 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.31,111.85 382.67,111.78 383.09,113.31 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.23,125.85 414.40,126.18 410.71,128.04 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="383.46,113.21 383.58,113.18 383.04,111.68 " />
-<line x1="418.71" y1="157.28"  x2="418.81" y2="156.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="383.04,111.68 383.40,111.57 383.82,113.10 " />
-<line x1="457.82" y1="213.65"  x2="457.39" y2="213.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.23,125.85 418.50,123.29 414.08,125.57 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.40,126.18 414.58,126.52 410.89,128.38 " />
-<polygon style= "fill: #001598; opacity:1.00 " points="419.41,125.02 415.00,127.31 419.32,124.82 " />
-<polygon style= "fill: #0011A2; opacity:1.00 " points="377.46,97.91 378.92,102.54 377.58,97.82 " />
-<polygon style= "fill: #0018AE; opacity:1.00 " points="419.46,125.12 423.82,122.69 419.43,125.02 " />
-<line x1="423.43" y1="180.91"  x2="422.38" y2="180.84" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.67,111.78 380.96,107.20 382.31,111.86 " />
-<polygon style= "fill: #0018AE; opacity:1.00 " points="423.86,122.80 419.46,125.12 423.82,122.69 " />
-<polygon style= "fill: #001094; opacity:1.00 " points="382.57,106.67 383.92,111.32 382.35,106.78 " />
-<line x1="439.66" y1="189.45"  x2="440.10" y2="189.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117E; opacity:1.00 " points="414.90,127.11 419.18,124.55 414.77,126.84 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="418.50,123.29 422.77,120.77 418.37,123.09 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="394.41,141.28 394.22,141.60 393.29,140.96 " />
-<line x1="453.46" y1="194.64"  x2="454.17" y2="194.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.41,126.17 418.65,123.56 414.23,125.85 " />
-<polygon style= "fill: #000C73; opacity:1.00 " points="383.70,111.43 382.05,106.91 383.40,111.56 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="394.65,141.00 394.41,141.28 393.48,140.64 " />
-<line x1="454.89" y1="194.44"  x2="455.62" y2="194.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="418.65,123.56 414.23,125.85 418.50,123.29 " />
-<line x1="440.39" y1="194.87"  x2="439.86" y2="193.83" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117E; opacity:1.00 " points="419.32,124.82 414.90,127.11 419.18,124.55 " />
-<line x1="455.62" y1="194.41"  x2="456.35" y2="194.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="383.04,111.68 381.32,107.13 382.67,111.78 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="414.77,126.84 419.02,124.23 414.59,126.51 " />
-<line x1="380.52" y1="50.67"  x2="379.97" y2="50.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.56" y1="218.59"  x2="421.93" y2="218.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.35" y1="194.43"  x2="457.08" y2="194.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.45" y1="195.29"  x2="452.10" y2="195.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C73; opacity:1.00 " points="382.35,106.78 383.70,111.43 382.05,106.91 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="381.32,107.13 382.67,111.78 380.96,107.20 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="418.83,123.89 414.41,126.17 418.65,123.56 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="422.89,120.96 418.50,123.29 422.77,120.77 " />
-<line x1="480.71" y1="108.80"  x2="480.92" y2="109.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.08" y1="194.49"  x2="457.81" y2="194.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013B1; opacity:1.00 " points="381.27,101.92 382.68,106.56 381.16,102.01 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="418.66,123.56 422.89,120.96 418.50,123.29 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="419.02,124.23 414.59,126.51 418.83,123.89 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.05,106.91 383.40,111.56 381.69,107.02 " />
-<polygon style= "fill: #000D93; opacity:1.00 " points="395.28,140.70 395.01,140.83 395.81,141.34 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="381.69,107.02 383.04,111.68 381.32,107.13 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="394.29,141.64 394.15,141.96 394.93,142.43 " />
-<line x1="450.24" y1="195.96"  x2="450.83" y2="195.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.52" y1="214.10"  x2="416.99" y2="214.27" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117E; opacity:1.00 " points="419.34,124.82 423.59,122.21 419.20,124.54 " />
-<line x1="422.38" y1="180.84"  x2="421.35" y2="180.86" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001094; opacity:1.00 " points="382.57,106.66 380.94,102.13 382.35,106.77 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="427.74,117.94 427.81,118.02 431.42,115.92 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="423.05,121.23 418.66,123.56 422.89,120.96 " />
-<polygon style= "fill: #00117E; opacity:1.00 " points="423.73,122.49 419.34,124.82 423.59,122.21 " />
-<line x1="449.68" y1="196.36"  x2="450.24" y2="195.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="379.40" y1="51.02"  x2="378.81" y2="51.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.53" y1="194.76"  x2="459.23" y2="194.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="419.20,124.54 423.43,121.89 419.02,124.22 " />
-<polygon style= "fill: #000FA3; opacity:1.00 " points="376.08,93.21 375.97,93.30 376.80,95.89 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="419.02,124.22 423.24,121.55 418.84,123.88 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="379.55,102.57 380.96,107.21 379.25,102.61 " />
-<polygon style= "fill: #000C74; opacity:1.00 " points="379.25,102.62 377.58,98.00 379.04,102.64 " />
-<polygon style= "fill: #000C73; opacity:1.00 " points="382.35,106.77 380.64,102.25 382.05,106.90 " />
-<polygon style= "fill: #001598; opacity:1.00 " points="423.84,122.68 428.13,120.13 423.74,122.48 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="427.27,118.60 422.89,120.96 427.14,118.41 " />
-<line x1="440.87" y1="195.90"  x2="440.39" y2="194.87" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="470.37" y1="162.52"  x2="470.97" y2="162.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="381.69,107.02 379.91,102.48 381.32,107.13 " />
-<line x1="378.81" y1="51.19"  x2="378.21" y2="51.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="382.05,106.90 380.29,102.38 381.69,107.02 " />
-<line x1="371.64" y1="52.00"  x2="370.98" y2="51.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="423.43,121.89 419.02,124.22 423.24,121.55 " />
-<polygon style= "fill: #0015AE; opacity:1.00 " points="432.59,117.93 432.63,118.04 428.95,120.05 " />
-<line x1="459.23" y1="194.96"  x2="459.93" y2="195.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0013B0; opacity:1.00 " points="381.27,101.91 379.70,97.37 381.16,102.00 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.42,115.93 431.50,116.02 435.09,113.91 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="379.91,102.48 381.32,107.13 379.55,102.57 " />
-<line x1="480.24" y1="108.11"  x2="480.48" y2="108.46" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="394.89,142.50 394.85,142.73 395.68,143.25 " />
-<line x1="448.67" y1="197.27"  x2="449.16" y2="196.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="423.25,121.55 427.44,118.87 423.06,121.23 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="380.64,102.25 382.05,106.90 380.29,102.38 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="380.29,102.38 381.69,107.02 379.91,102.48 " />
-<polygon style= "fill: #00117E; opacity:1.00 " points="428.13,120.13 423.74,122.48 427.99,119.85 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="379.56,102.57 377.80,97.99 379.25,102.62 " />
-<polygon style= "fill: #001598; opacity:1.00 " points="428.82,119.75 428.14,120.12 428.89,119.91 " />
-<line x1="372.98" y1="52.04"  x2="372.31" y2="52.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="377.59" y1="51.49"  x2="376.95" y2="51.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="423.61,122.21 427.82,119.53 423.43,121.89 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="423.43,121.89 427.63,119.19 423.25,121.55 " />
-<polygon style= "fill: #0015AF; opacity:1.00 " points="436.27,115.92 436.29,116.02 432.63,118.04 " />
-<line x1="373.66" y1="52.02"  x2="372.98" y2="52.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FA3; opacity:1.00 " points="374.44,88.70 375.97,93.31 374.55,88.60 " />
-<polygon style= "fill: #001398; opacity:1.00 " points="432.50,117.73 432.59,117.93 428.91,119.95 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="427.63,119.19 423.25,121.55 427.44,118.87 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="427.99,119.85 423.61,122.21 427.82,119.53 " />
-<line x1="456.44" y1="214.01"  x2="455.93" y2="214.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="374.33" y1="51.98"  x2="373.66" y2="52.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.95" y1="152.11"  x2="454.69" y2="152.76" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="376.31" y1="51.74"  x2="375.66" y2="51.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="427.96,118.23 428.10,118.45 431.64,116.21 " />
-<line x1="375.66" y1="51.84"  x2="375.00" y2="51.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="427.82,119.53 423.43,121.89 427.63,119.19 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.50,116.02 431.64,116.21 435.19,114.03 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="379.91,102.48 378.10,97.94 379.56,102.57 " />
-<line x1="447.83" y1="198.33"  x2="448.23" y2="197.78" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F7E; opacity:1.00 " points="428.80,119.70 432.37,117.46 428.82,119.75 " />
-<line x1="460.60" y1="195.47"  x2="461.25" y2="195.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="380.29,102.38 378.45,97.85 379.91,102.48 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.64,116.21 431.81,116.48 428.13,118.50 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="380.64,102.25 378.83,97.74 380.29,102.38 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="396.05,142.44 395.23,141.86 395.94,142.62 " />
-<line x1="469.71" y1="162.16"  x2="470.37" y2="162.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="428.29,118.76 431.81,116.48 428.32,118.81 " />
-<line x1="441.28" y1="196.91"  x2="440.87" y2="195.90" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C72; opacity:1.00 " points="379.48,97.49 380.94,102.12 379.18,97.61 " />
-<line x1="457.63" y1="123.98"  x2="458.00" y2="124.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="428.32,118.81 428.48,119.09 432.00,116.80 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="378.45,97.85 379.91,102.48 378.10,97.94 " />
-<line x1="447.48" y1="198.91"  x2="447.83" y2="198.33" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.64,116.21 431.82,116.48 435.33,114.23 " />
-<line x1="456.93" y1="161.24"  x2="457.39" y2="161.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0014A6; opacity:1.00 " points="397.89,142.37 397.07,141.79 397.81,142.38 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="377.14,95.96 377.80,98.00 377.30,95.93 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.81,116.48 432.00,116.80 428.32,118.81 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="435.86,113.61 436.00,113.80 435.30,114.19 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="432.20,117.13 432.37,117.46 428.68,119.47 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="440.11,111.09 440.20,111.18 440.71,110.88 " />
-<polygon style= "fill: #001093; opacity:1.00 " points="379.48,97.48 379.70,97.36 378.94,95.37 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="379.18,97.61 380.64,102.25 378.83,97.74 " />
-<line x1="461.25" y1="195.79"  x2="461.88" y2="196.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="378.83,97.74 380.29,102.38 378.45,97.85 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="432.00,116.80 432.20,117.13 428.51,119.15 " />
-<line x1="479.40" y1="107.01"  x2="479.69" y2="107.38" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="420.34" y1="180.96"  x2="419.35" y2="181.16" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F7E; opacity:1.00 " points="432.38,117.45 432.51,117.73 436.06,115.47 " />
-<line x1="473.68" y1="133.18"  x2="474.25" y2="132.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="435.33,114.23 435.48,114.45 431.82,116.48 " />
-<polygon style= "fill: #000F7E; opacity:1.00 " points="436.06,115.47 436.18,115.70 432.51,117.73 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.14,95.96 377.30,95.93 376.30,93.37 " />
-<polygon style= "fill: #000F7D; opacity:1.00 " points="396.57,141.95 396.42,142.07 397.30,142.61 " />
-<polygon style= "fill: #0013AF; opacity:1.00 " points="441.84,112.79 441.32,113.08 441.86,112.89 " />
-<polygon style= "fill: #000CA3; opacity:1.00 " points="372.99,83.99 372.88,84.09 373.99,87.38 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="432.20,117.13 432.38,117.45 435.89,115.16 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="377.44,95.90 378.10,97.94 377.64,95.85 " />
-<polygon style= "fill: #001098; opacity:1.00 " points="436.96,115.52 441.22,112.88 436.88,115.31 " />
-<polygon style= "fill: #001098; opacity:1.00 " points="441.31,113.08 436.96,115.52 441.22,112.88 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="436.18,114.07 440.35,111.37 436.00,113.80 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="435.67,114.77 432.01,116.80 435.70,114.82 " />
-<line x1="455.40" y1="214.02"  x2="454.85" y2="213.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="435.70,114.82 435.86,115.11 432.20,117.13 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="440.73,110.89 440.85,111.05 444.54,108.73 " />
-<polygon style= "fill: #000D93; opacity:1.00 " points="377.98,92.85 378.20,92.73 379.04,95.32 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="378.36,95.63 378.52,95.57 379.18,97.61 " />
-<polygon style= "fill: #000CA3; opacity:1.00 " points="373.00,84.00 372.88,84.09 371.91,80.98 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="396.48,144.05 397.30,144.58 396.50,144.21 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="378.00,95.75 378.16,95.70 378.82,97.74 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="436.56,114.72 436.73,115.04 436.04,115.43 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="445.55,108.13 448.78,106.18 445.57,108.15 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="396.80,143.14 396.67,143.34 395.85,142.76 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="440.52,111.63 436.18,114.07 440.35,111.37 " />
-<polygon style= "fill: #000A72; opacity:1.00 " points="378.69,95.50 377.68,92.98 378.82,95.44 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="436.37,114.38 440.52,111.63 436.18,114.07 " />
-<polygon style= "fill: #000D7E; opacity:1.00 " points="441.22,112.88 436.88,115.31 441.09,112.61 " />
-<line x1="478.44" y1="105.84"  x2="478.77" y2="106.24" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="444.54,108.73 444.69,108.92 440.87,111.07 " />
-<line x1="446.70" y1="200.80"  x2="446.91" y2="200.14" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.79,95.81 378.00,95.75 376.95,93.22 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="436.56,114.71 440.72,111.95 436.37,114.38 " />
-<line x1="401.67" y1="187.13"  x2="401.52" y2="186.53" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="441.63" y1="197.91"  x2="441.28" y2="196.91" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.60,93.32 374.77,88.75 376.30,93.38 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="440.87,111.07 441.02,111.31 444.69,108.92 " />
-<line x1="419.35" y1="181.16"  x2="418.39" y2="181.45" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="440.72,111.95 436.37,114.38 440.52,111.63 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="441.09,112.61 436.74,115.04 440.91,112.28 " />
-<line x1="454.85" y1="213.95"  x2="454.29" y2="213.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="462.47" y1="196.52"  x2="463.04" y2="196.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.95,93.22 377.32,93.11 378.16,95.70 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="440.91,112.28 436.56,114.71 440.72,111.95 " />
-<line x1="477.76" y1="105.03"  x2="478.10" y2="105.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000DAF; opacity:1.00 " points="450.00,108.16 450.02,108.28 451.24,107.55 " />
-<line x1="446.54" y1="201.47"  x2="446.70" y2="200.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="476.71" y1="103.77"  x2="477.06" y2="104.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7E; opacity:1.00 " points="441.61,112.31 441.73,112.55 445.43,110.15 " />
-<polygon style= "fill: #000B7E; opacity:1.00 " points="445.43,110.15 445.57,110.43 441.75,112.58 " />
-<line x1="418.77" y1="158.27"  x2="418.70" y2="157.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="441.05,111.34 441.22,111.62 444.86,109.18 " />
-<polygon style= "fill: #000E98; opacity:1.00 " points="446.61,109.84 445.57,110.43 446.67,109.99 " />
-<line x1="415.52" y1="213.49"  x2="416.02" y2="213.84" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D92; opacity:1.00 " points="376.66,88.11 378.20,92.73 376.44,88.22 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.95,93.23 375.07,88.70 376.60,93.32 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="450.09,105.57 448.87,106.27 450.20,105.70 " />
-<line x1="422.84" y1="217.53"  x2="423.09" y2="217.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B98; opacity:1.00 " points="449.91,107.96 450.00,108.16 446.69,110.04 " />
-<line x1="479.38" y1="139.35"  x2="479.69" y2="139.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000F70; opacity:1.00 " points="397.12,142.75 397.04,142.84 397.91,143.36 " />
-<polygon style= "fill: #000A72; opacity:1.00 " points="377.98,92.84 376.14,88.36 377.68,92.98 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="441.44,111.99 441.59,112.27 445.26,109.83 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="441.24,111.65 441.41,111.95 445.06,109.50 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="454.38,102.97 454.45,103.04 457.43,101.22 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="445.71,108.34 445.85,108.54 449.02,106.46 " />
-<line x1="446.44" y1="202.16"  x2="446.54" y2="201.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="468.23" y1="161.36"  x2="469.00" y2="161.77" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="377.68,92.98 375.79,88.48 377.32,93.11 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="445.06,109.50 445.26,109.83 441.44,111.99 " />
-<line x1="435.98" y1="129.45"  x2="435.97" y2="129.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="445.89,108.60 444.86,109.18 446.05,108.84 " />
-<polygon style= "fill: #000A72; opacity:1.00 " points="376.44,88.22 377.98,92.84 376.14,88.36 " />
-<line x1="440.45" y1="188.98"  x2="440.71" y2="188.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="374.32,87.43 374.77,88.76 374.53,87.39 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.42,88.60 376.95,93.23 375.07,88.70 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="445.26,109.83 445.43,110.15 446.43,109.49 " />
-<polygon style= "fill: #000D92; opacity:1.00 " points="376.44,88.22 376.66,88.10 376.15,86.81 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.02,106.46 449.20,106.72 445.89,108.60 " />
-<polygon style= "fill: #00097E; opacity:1.00 " points="449.77,107.68 449.91,107.96 446.61,109.84 " />
-<polygon style= "fill: #000998; opacity:1.00 " points="451.20,107.41 454.24,105.48 451.22,107.46 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="453.20,103.80 453.35,103.98 450.24,105.76 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="376.14,88.36 377.68,92.98 375.79,88.48 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.79,88.48 377.32,93.11 375.42,88.60 " />
-<polygon style= "fill: #0008AF; opacity:1.00 " points="458.66,103.20 458.68,103.32 455.63,105.07 " />
-<polygon style= "fill: #001793; opacity:1.00 " points="398.45,143.00 398.88,143.27 398.21,143.12 " />
-<line x1="418.39" y1="181.45"  x2="417.46" y2="181.83" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.39" y1="161.00"  x2="457.76" y2="160.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.33" y1="154.06"  x2="457.20" y2="154.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="446.09,108.91 446.25,109.16 449.40,107.03 " />
-<polygon style= "fill: #000998; opacity:1.00 " points="455.59,104.89 455.61,104.95 454.33,105.69 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="454.48,103.06 454.59,103.19 457.53,101.31 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.20,106.72 449.40,107.03 446.09,108.91 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.59,107.36 449.77,107.68 446.47,109.56 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="450.37,105.95 453.35,103.98 450.42,106.02 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.40,107.03 449.59,107.36 446.29,109.24 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="374.53,87.39 373.20,84.14 374.62,87.38 " />
-<line x1="446.38" y1="203.56"  x2="446.38" y2="202.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="397.47,143.96 397.89,144.21 397.35,144.25 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.20,106.72 449.40,107.03 450.57,106.24 " />
-<line x1="441.93" y1="198.87"  x2="441.63" y2="197.91" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.56" y1="197.36"  x2="464.05" y2="197.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00077E; opacity:1.00 " points="451.10,107.18 454.11,105.21 451.14,107.26 " />
-<line x1="474.25" y1="132.96"  x2="474.73" y2="132.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="375.42,88.60 375.79,88.48 375.23,87.19 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="374.88,83.60 375.10,83.48 376.21,86.78 " />
-<line x1="467.41" y1="160.92"  x2="468.23" y2="161.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="450.82,106.66 449.60,107.36 450.95,106.89 " />
-<line x1="453.15" y1="213.46"  x2="452.58" y2="213.21" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="461.77,98.74 461.86,98.83 458.89,100.53 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="374.62,87.38 374.87,87.30 373.50,84.08 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="453.35,103.98 453.53,104.24 454.76,103.43 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="450.57,106.24 453.53,104.24 450.62,106.33 " />
-<polygon style= "fill: #000887; opacity:1.00 " points="371.29,79.54 371.41,79.55 371.95,81.12 " />
-<line x1="446.42" y1="204.27"  x2="446.38" y2="203.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="457.53,101.31 457.68,101.50 459.00,100.66 " />
-<polygon style= "fill: #000972; opacity:1.00 " points="375.91,86.93 374.58,83.73 375.99,86.89 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="450.62,106.33 450.77,106.57 453.73,104.55 " />
-<line x1="458.45" y1="125.17"  x2="458.97" y2="125.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="453.93,104.89 454.11,105.21 451.00,106.98 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="454.76,103.43 457.68,101.50 454.81,103.51 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="374.97,87.28 375.23,87.19 373.86,83.98 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="453.73,104.55 453.93,104.89 450.82,106.66 " />
-<line x1="457.20" y1="154.70"  x2="458.11" y2="155.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="375.34,87.16 375.59,87.06 374.23,83.86 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="453.53,104.24 453.73,104.55 454.95,103.73 " />
-<line x1="452.58" y1="213.21"  x2="452.01" y2="212.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.52" y1="204.98"  x2="446.42" y2="204.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="373.21,84.14 373.50,84.08 372.26,81.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="455.33,104.38 455.39,104.47 454.11,105.21 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="457.68,101.50 457.86,101.76 454.81,103.51 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="458.44,102.72 458.57,103.00 455.52,104.75 " />
-<polygon style= "fill: #00057E; opacity:1.00 " points="455.39,104.47 455.48,104.67 458.44,102.72 " />
-<line x1="478.98" y1="139.09"  x2="479.38" y2="139.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="374.23,83.86 374.58,83.73 375.69,87.03 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="398.34,143.62 398.09,143.90 398.60,144.19 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.86,83.98 374.23,83.86 375.34,87.16 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="373.91,80.50 374.05,80.43 375.09,83.48 " />
-<line x1="417.46" y1="181.83"  x2="416.58" y2="182.29" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="463.56,97.86 461.86,98.83 463.65,97.98 " />
-<polygon style= "fill: #000498; opacity:1.00 " points="462.91,100.52 463.00,100.72 460.02,102.43 " />
-<polygon style= "fill: #0005AF; opacity:1.00 " points="464.69,99.76 462.99,100.73 464.70,99.83 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="455.33,104.38 458.26,102.40 455.39,104.47 " />
-<line x1="466.56" y1="160.45"  x2="467.41" y2="160.92" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000498; opacity:1.00 " points="459.94,102.22 460.00,102.36 462.91,100.52 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="459.04,100.72 459.17,100.89 462.01,99.02 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="457.86,101.76 458.06,102.07 455.01,103.82 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.50,84.08 373.86,83.98 372.58,81.00 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="458.06,102.07 458.26,102.40 455.21,104.15 " />
-<polygon style= "fill: #000972; opacity:1.00 " points="374.58,83.73 374.88,83.60 373.63,80.63 " />
-<line x1="446.86" y1="206.38"  x2="446.66" y2="205.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000775; opacity:1.00 " points="371.41,79.55 371.62,79.53 369.98,75.38 " />
-<line x1="458.11" y1="155.34"  x2="459.04" y2="155.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="480.06" y1="90.42"  x2="476.36" y2="103.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.45" y1="212.55"  x2="450.90" y2="212.16" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="458.06,102.07 458.26,102.41 459.56,101.52 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="459.23,100.98 459.36,101.19 462.20,99.28 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="459.63,101.62 458.26,102.41 459.75,101.84 " />
-<polygon style= "fill: #000AAF; opacity:1.00 " points="373.51,78.86 373.63,78.77 372.08,74.67 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="466.21,96.36 466.36,96.54 463.71,98.05 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="462.01,99.02 462.20,99.28 463.82,98.21 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="372.81,80.93 373.86,83.98 372.93,80.89 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="373.30,80.77 373.53,80.68 374.58,83.73 " />
-<line x1="465.68" y1="159.96"  x2="466.56" y2="160.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="372.46,81.03 372.58,81.00 371.92,79.46 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="372.93,80.89 373.18,80.81 374.22,83.86 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="470.47,93.81 470.57,93.90 468.96,94.80 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="459.56,101.52 462.40,99.59 459.63,101.62 " />
-<line x1="442.16" y1="199.80"  x2="441.93" y2="198.87" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="447.38" y1="207.74"  x2="447.10" y2="207.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.50" y1="198.29"  x2="464.90" y2="198.78" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037E; opacity:1.00 " points="462.77,100.24 462.91,100.52 464.55,99.45 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="462.20,99.28 462.40,99.59 459.43,101.29 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="462.60,99.92 462.77,100.24 459.80,101.94 " />
-<line x1="450.37" y1="211.73"  x2="449.85" y2="211.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000AF; opacity:1.00 " points="470.09,96.75 471.69,95.80 470.11,96.82 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="462.40,99.59 462.60,99.92 459.63,101.62 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="371.62,79.53 371.92,79.46 370.21,75.34 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="399.17,145.51 398.24,144.88 399.14,145.70 " />
-<line x1="447.70" y1="208.39"  x2="447.38" y2="207.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.04" y1="155.97"  x2="459.98" y2="156.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000772; opacity:1.00 " points="372.99,79.11 373.29,78.98 373.83,80.55 " />
-<line x1="449.85" y1="211.25"  x2="449.36" y2="210.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="372.93,80.89 372.27,79.36 373.18,80.81 " />
-<polygon style= "fill: #000298; opacity:1.00 " points="470.03,96.57 470.08,96.70 467.33,98.25 " />
-<line x1="449.36" y1="210.75"  x2="448.90" y2="210.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000298; opacity:1.00 " points="467.24,98.05 467.33,98.25 470.03,96.57 " />
-<line x1="448.46" y1="209.63"  x2="448.07" y2="209.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000992; opacity:1.00 " points="373.29,78.98 373.51,78.86 371.87,74.79 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="466.36,96.54 466.54,96.80 463.89,98.31 " />
-<polygon style= "fill: #00157D; opacity:1.00 " points="400.01,144.36 399.08,143.72 399.85,144.49 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="464.02,98.50 464.09,98.62 462.39,99.59 " />
-<line x1="416.58" y1="182.29"  x2="415.73" y2="182.84" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017E; opacity:1.00 " points="467.11,97.77 467.25,98.04 464.61,99.55 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="469.11,94.99 466.36,96.54 469.18,95.09 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="371.92,79.46 372.27,79.36 370.51,75.27 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="399.12,145.81 399.13,145.96 400.06,146.54 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="370.21,75.34 370.48,75.29 371.92,79.46 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="464.09,98.62 464.21,98.82 466.74,97.11 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="464.29,98.95 464.40,99.15 466.94,97.45 " />
-<polygon style= "fill: #0000AE; opacity:1.00 " points="476.09,93.50 471.70,95.92 476.06,93.38 " />
-<polygon style= "fill: #000575; opacity:1.00 " points="370.03,74.91 368.21,70.32 369.81,74.94 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="466.54,96.80 466.74,97.11 464.09,98.62 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="466.94,97.45 467.11,97.77 464.46,99.27 " />
-<line x1="414.49" y1="212.53"  x2="415.01" y2="213.05" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.82" y1="158.91"  x2="464.76" y2="159.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="470.72,94.08 474.96,91.47 470.57,93.89 " />
-<line x1="460.95" y1="157.20"  x2="461.91" y2="157.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000770; opacity:1.00 " points="372.27,79.36 372.64,79.24 370.86,75.17 " />
-<polygon style= "fill: #0006D4; opacity:1.00 " points="370.25,68.91 370.15,68.90 368.85,64.84 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="372.64,79.24 372.99,79.11 371.23,75.05 " />
-<line x1="462.87" y1="158.36"  x2="463.82" y2="158.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="466.54,96.80 466.74,97.12 469.37,95.37 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="469.18,95.09 470.72,94.08 469.29,95.25 " />
-<line x1="461.91" y1="157.79"  x2="462.87" y2="158.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000772; opacity:1.00 " points="371.58,74.91 371.85,74.80 373.29,78.98 " />
-<polygon style= "fill: #0008AF; opacity:1.00 " points="372.04,74.14 370.32,69.61 371.92,74.24 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="466.74,97.12 466.93,97.45 469.56,95.69 " />
-<line x1="360.40" y1="41.87"  x2="362.48" y2="43.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="469.75,96.02 469.86,96.22 467.11,97.77 " />
-<polygon style= "fill: #0008AF; opacity:1.00 " points="370.44,69.52 372.04,74.14 370.32,69.61 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="371.23,75.05 371.55,74.93 372.99,79.11 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="475.11,91.66 470.72,94.08 474.96,91.47 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="370.86,75.17 371.20,75.06 372.64,79.24 " />
-<polygon style= "fill: #000575; opacity:1.00 " points="368.43,70.29 370.03,74.91 368.21,70.32 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="469.56,95.69 469.69,95.90 466.93,97.45 " />
-<polygon style= "fill: #00007E; opacity:1.00 " points="469.86,96.22 469.91,96.32 471.47,95.31 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="470.90,94.35 475.11,91.66 470.72,94.08 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="370.32,74.84 370.68,74.75 370.83,75.18 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="470.90,94.34 471.10,94.66 469.49,95.56 " />
-<polygon style= "fill: #000692; opacity:1.00 " points="371.92,74.24 370.10,69.73 371.70,74.36 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="399.50,144.86 399.38,145.06 400.36,145.61 " />
-<line x1="415.73" y1="182.84"  x2="414.93" y2="183.47" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="371.05,74.62 371.40,74.49 371.55,74.93 " />
-<line x1="402.23" y1="188.50"  x2="401.91" y2="187.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00007E; opacity:1.00 " points="471.59,95.60 475.85,92.89 471.46,95.32 " />
-<line x1="442.33" y1="200.69"  x2="442.16" y2="199.80" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="475.29,91.92 470.90,94.35 475.11,91.66 " />
-<polygon style= "fill: #00007E; opacity:1.00 " points="475.98,93.18 471.59,95.60 475.85,92.89 " />
-<line x1="465.26" y1="199.28"  x2="465.57" y2="199.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.55" y1="126.41"  x2="460.20" y2="127.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="368.73,70.22 370.32,74.84 368.43,70.29 " />
-<polygon style= "fill: #000572; opacity:1.00 " points="371.70,74.36 369.80,69.86 371.40,74.49 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="471.46,95.32 475.68,92.57 471.29,95.00 " />
-<line x1="470.68" y1="105.62"  x2="480.06" y2="90.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="471.29,95.00 475.48,92.24 471.09,94.66 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="400.68,145.21 399.75,144.58 400.59,145.32 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="371.05,74.62 369.08,70.12 370.68,74.75 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="371.40,74.49 369.45,70.00 371.05,74.62 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="479.53,89.29 475.11,91.66 479.39,89.09 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="475.29,91.92 479.53,89.29 475.11,91.66 " />
-<line x1="419.20" y1="159.48"  x2="418.95" y2="158.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000572; opacity:1.00 " points="370.10,69.73 371.70,74.36 369.80,69.86 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="475.68,92.57 471.29,95.00 475.48,92.24 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="368.43,70.29 368.73,70.22 368.50,69.67 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="369.08,70.12 370.68,74.75 368.73,70.22 " />
-<line x1="423.62" y1="216.15"  x2="423.58" y2="215.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001E93; opacity:1.00 " points="401.21,144.86 401.11,144.90 402.11,145.50 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="369.45,70.00 371.05,74.62 369.08,70.12 " />
-<polygon style= "fill: #000375; opacity:1.00 " points="366.62,65.69 366.84,65.66 368.24,69.73 " />
-<line x1="436.26" y1="130.49"  x2="436.07" y2="129.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.87" y1="188.29"  x2="440.94" y2="187.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001670; opacity:1.00 " points="400.19,145.94 401.16,146.49 400.11,146.15 " />
-<polygon style= "fill: #000492; opacity:1.00 " points="369.91,69.17 370.10,69.07 368.51,65.10 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="369.45,70.00 369.80,69.86 369.57,69.32 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="368.54,69.66 368.84,69.57 367.13,65.59 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="366.84,65.66 367.13,65.59 368.54,69.66 " />
-<polygon style= "fill: #000372; opacity:1.00 " points="369.61,69.30 369.87,69.19 368.21,65.23 " />
-<polygon style= "fill: #000375; opacity:1.00 " points="366.10,63.77 366.19,63.76 366.84,65.66 " />
-<line x1="460.20" y1="127.04"  x2="460.90" y2="127.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="369.21,69.45 367.48,65.49 369.25,69.43 " />
-<polygon style= "fill: #000372; opacity:1.00 " points="368.21,65.23 368.51,65.10 369.91,69.17 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="367.13,65.59 367.48,65.49 368.88,69.56 " />
-<polygon style= "fill: #0028BA; opacity:1.00 " points="403.70,146.25 403.68,146.22 402.91,145.75 " />
-<polygon style= "fill: #000492; opacity:1.00 " points="368.51,65.11 368.73,64.99 367.99,63.14 " />
-<polygon style= "fill: #000287; opacity:1.00 " points="363.53,56.86 364.93,61.03 363.54,56.86 " />
-<line x1="442.44" y1="201.53"  x2="442.33" y2="200.69" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="367.86,65.37 368.21,65.23 369.61,69.30 " />
-<polygon style= "fill: #000175; opacity:1.00 " points="365.04,61.05 365.25,61.02 366.19,63.76 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="366.36,63.72 366.49,63.70 367.13,65.59 " />
-<line x1="465.83" y1="200.30"  x2="466.05" y2="200.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="477.39" y1="138.13"  x2="477.99" y2="138.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="413.47" y1="211.23"  x2="413.98" y2="211.92" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.17" y1="184.18"  x2="413.47" y2="184.97" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="402.64" y1="189.26"  x2="402.23" y2="188.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="367.48,65.49 367.86,65.37 367.06,63.52 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="367.86,65.37 368.21,65.23 367.42,63.39 " />
-<polygon style= "fill: #000087; opacity:1.00 " points="363.54,56.86 363.37,56.39 363.64,56.88 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="401.59,145.88 402.01,146.11 401.37,146.14 " />
-<polygon style= "fill: #000292; opacity:1.00 " points="366.93,60.46 367.15,60.35 368.08,63.09 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="401.46,147.08 401.41,147.39 402.20,147.80 " />
-<polygon style= "fill: #000172; opacity:1.00 " points="367.56,63.34 367.74,63.26 366.63,60.60 " />
-<polygon style= "fill: #000087; opacity:1.00 " points="363.48,56.39 361.84,51.72 363.37,56.38 " />
-<line x1="419.54" y1="160.16"  x2="419.20" y2="159.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="365.55,60.95 365.90,60.85 366.84,63.59 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="363.85,56.84 365.25,61.02 363.88,56.84 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="366.27,60.73 366.63,60.60 367.56,63.34 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="365.90,60.85 366.27,60.73 367.21,63.47 " />
-<polygon style= "fill: #000292; opacity:1.00 " points="366.93,60.47 367.15,60.36 365.55,56.29 " />
-<polygon style= "fill: #001B7C; opacity:1.00 " points="403.04,146.35 402.26,145.88 402.83,146.54 " />
-<line x1="413.47" y1="184.97"  x2="412.82" y2="185.82" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="436.54" y1="131.09"  x2="436.26" y2="130.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="365.55,60.95 365.90,60.85 364.19,56.77 " />
-<line x1="469.93" y1="106.95"  x2="470.07" y2="106.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000172; opacity:1.00 " points="366.63,60.60 366.93,60.47 365.26,56.41 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="364.15,56.78 365.55,60.95 364.19,56.77 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="402.18,147.86 402.21,148.05 403.53,148.78 " />
-<line x1="442.49" y1="202.31"  x2="442.44" y2="201.53" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000172; opacity:1.00 " points="365.26,56.41 365.53,56.30 366.93,60.47 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="364.19,56.77 364.50,56.68 365.90,60.85 " />
-<line x1="458.22" y1="159.96"  x2="458.31" y2="159.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="364.91,56.54 365.23,56.43 366.63,60.60 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="364.54,56.66 364.88,56.55 366.27,60.73 " />
-<line x1="461.66" y1="128.32"  x2="462.46" y2="128.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.21" y1="201.33"  x2="466.32" y2="201.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="363.99,56.30 362.16,51.70 363.69,56.36 " />
-<polygon style= "fill: #000092; opacity:1.00 " points="365.59,55.71 363.84,51.16 365.37,55.83 " />
-<line x1="475.41" y1="132.00"  x2="475.62" y2="131.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.82" y1="185.82"  x2="412.23" y2="186.75" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="364.34,56.20 362.46,51.64 363.99,56.30 " />
-<line x1="476.02" y1="137.36"  x2="476.74" y2="137.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000092; opacity:1.00 " points="364.06,51.05 365.59,55.71 363.84,51.16 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="402.55,146.88 402.40,147.15 403.80,147.84 " />
-<polygon style= "fill: #000072; opacity:1.00 " points="365.37,55.83 363.54,51.29 365.07,55.95 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="364.71,56.08 362.81,51.54 364.34,56.20 " />
-<line x1="412.50" y1="209.63"  x2="412.98" y2="210.46" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="365.07,55.95 363.18,51.42 364.71,56.08 " />
-<polygon style= "fill: #001A70; opacity:1.00 " points="403.64,148.18 403.57,148.36 402.23,147.55 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="362.81,51.54 364.34,56.20 362.46,51.64 " />
-<line x1="462.46" y1="128.96"  x2="463.30" y2="129.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.45" y1="215.18"  x2="423.23" y2="214.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="404.11,147.40 402.78,146.59 404.01,147.53 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="363.54,51.29 365.07,55.95 363.18,51.42 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="363.18,51.42 364.71,56.08 362.81,51.54 " />
-<polygon style= "fill: #000074; opacity:1.00 " points="360.66,47.02 362.16,51.70 360.45,47.05 " />
-<line x1="412.23" y1="186.75"  x2="411.69" y2="187.73" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000093; opacity:1.00 " points="364.07,51.06 362.35,46.50 363.84,51.17 " />
-<line x1="469.75" y1="107.74"  x2="469.82" y2="107.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.25" y1="136.93"  x2="476.02" y2="137.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="442.48" y1="203.04"  x2="442.49" y2="202.31" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000093; opacity:1.00 " points="362.57,46.39 364.07,51.06 362.35,46.50 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="360.96,46.96 362.46,51.63 360.66,47.02 " />
-<line x1="440.92" y1="187.38"  x2="440.81" y2="186.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000074; opacity:1.00 " points="360.66,47.01 358.99,42.35 360.45,47.04 " />
-<polygon style= "fill: #000072; opacity:1.00 " points="363.84,51.17 362.05,46.62 363.54,51.30 " />
-<polygon style= "fill: #002492; opacity:1.00 " points="404.50,147.08 405.93,147.84 404.37,147.16 " />
-<line x1="463.30" y1="129.61"  x2="464.18" y2="130.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.38" y1="202.33"  x2="466.39" y2="202.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000093; opacity:1.00 " points="362.57,46.40 360.90,41.81 362.35,46.50 " />
-<polygon style= "fill: #000072; opacity:1.00 " points="362.35,46.50 363.84,51.17 362.05,46.62 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="361.32,46.86 362.81,51.54 360.96,46.96 " />
-<polygon style= "fill: #0000B1; opacity:1.00 " points="361.25,41.62 362.70,46.32 361.13,41.70 " />
-<line x1="370.98" y1="51.95"  x2="362.48" y2="43.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0032BB; opacity:1.00 " points="405.59,150.22 405.55,149.95 405.42,150.16 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="362.05,46.62 363.54,51.30 361.69,46.74 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="361.69,46.74 363.18,51.42 361.32,46.86 " />
-<line x1="411.69" y1="187.73"  x2="411.21" y2="188.78" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001C70; opacity:1.00 " points="404.90,149.21 404.85,149.48 403.52,148.67 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="403.88,147.70 403.80,147.84 405.20,148.54 " />
-<line x1="474.44" y1="136.48"  x2="475.25" y2="136.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="403.68" y1="190.91"  x2="403.13" y2="190.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002792; opacity:1.00 " points="406.55,148.02 406.45,148.23 406.73,148.08 " />
-<line x1="464.18" y1="130.25"  x2="465.10" y2="130.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F7C; opacity:1.00 " points="405.68,148.00 405.45,148.21 404.11,147.40 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="359.51,42.26 360.96,46.95 359.21,42.32 " />
-<polygon style= "fill: #000072; opacity:1.00 " points="362.35,46.50 360.60,41.93 362.05,46.63 " />
-<line x1="411.62" y1="207.75"  x2="412.05" y2="208.72" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="361.69,46.75 359.86,42.16 361.32,46.86 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="362.05,46.63 360.24,42.05 361.69,46.75 " />
-<line x1="473.59" y1="136.00"  x2="474.44" y2="136.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="423.23" y1="214.61"  x2="422.92" y2="213.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="411.21" y1="188.78"  x2="410.80" y2="189.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="359.86,42.16 361.32,46.86 359.51,42.26 " />
-<line x1="420.47" y1="161.67"  x2="419.97" y2="160.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="360.24,42.05 361.69,46.75 359.86,42.16 " />
-<line x1="465.10" y1="130.88"  x2="466.03" y2="131.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.34" y1="132.45"  x2="436.90" y2="131.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.80" y1="189.88"  x2="410.45" y2="191.01" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.03" y1="131.50"  x2="466.98" y2="132.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.35" y1="203.27"  x2="466.26" y2="203.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.78" y1="134.99"  x2="472.70" y2="135.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="469.71" y1="109.06"  x2="469.69" y2="108.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.72" y1="131.07"  x2="475.86" y2="130.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.98" y1="132.12"  x2="467.95" y2="132.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.31" y1="158.99"  x2="458.21" y2="158.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="404.31" y1="191.80"  x2="403.68" y2="190.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.86" y1="205.64"  x2="411.23" y2="206.72" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.45" y1="191.01"  x2="410.16" y2="192.19" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="467.95" y1="132.73"  x2="468.92" y2="133.32" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00217C; opacity:1.00 " points="406.06,148.20 405.82,148.44 407.89,149.34 " />
-<line x1="469.88" y1="133.89"  x2="470.84" y2="134.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="468.92" y1="133.32"  x2="469.88" y2="133.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.16" y1="192.19"  x2="409.93" y2="193.39" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.54" y1="204.51"  x2="410.86" y2="205.64" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.05" y1="162.49"  x2="420.47" y2="161.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="407.27,150.46 405.33,149.44 407.25,150.63 " />
-<line x1="442.30" y1="204.29"  x2="442.42" y2="203.70" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="407.39,150.12 405.44,149.10 407.33,150.30 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="407.66,149.62 407.56,149.77 405.61,148.75 " />
-<line x1="409.93" y1="193.39"  x2="409.77" y2="194.63" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.26" y1="203.34"  x2="410.54" y2="204.51" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.61" y1="186.24"  x2="440.31" y2="185.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.12" y1="204.13"  x2="465.93" y2="204.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.86" y1="133.20"  x2="437.34" y2="132.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="469.83" y1="110.03"  x2="469.75" y2="109.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.77" y1="194.63"  x2="409.66" y2="195.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.03" y1="202.14"  x2="410.26" y2="203.34" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.96" y1="130.19"  x2="476.04" y2="129.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002EA4; opacity:1.00 " points="408.35,149.03 410.52,150.08 408.25,149.06 " />
-<line x1="405.01" y1="192.73"  x2="404.31" y2="191.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.66" y1="195.88"  x2="409.63" y2="197.14" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.85" y1="200.91"  x2="410.03" y2="202.14" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.21" y1="158.42"  x2="458.02" y2="157.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.63" y1="197.14"  x2="409.64" y2="198.40" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.71" y1="199.66"  x2="409.85" y2="200.91" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.64" y1="198.40"  x2="409.71" y2="199.66" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="422.53" y1="213.31"  x2="422.06" y2="212.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="407.27,150.46 407.25,150.63 409.34,151.55 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.29,151.86 409.32,152.11 407.27,151.03 " />
-<line x1="421.69" y1="163.36"  x2="421.05" y2="162.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0047FE; opacity:1.00 " points="409.71,150.93 409.57,151.20 407.58,149.98 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="407.47,149.95 409.62,150.86 407.39,150.12 " />
-<polygon style= "fill: #002993; opacity:1.00 " points="410.52,150.08 410.43,150.31 410.68,150.14 " />
-<line x1="470.05" y1="111.07"  x2="469.93" y2="110.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.31" y1="185.59"  x2="439.94" y2="184.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="476.08" y1="129.23"  x2="476.09" y2="128.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00237C; opacity:1.00 " points="410.07,150.30 409.84,150.54 407.78,149.46 " />
-<line x1="405.76" y1="193.69"  x2="405.01" y2="192.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="438.45" y1="134.00"  x2="437.86" y2="133.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.84,150.54 409.62,150.86 407.56,149.77 " />
-<line x1="422.06" y1="212.59"  x2="421.52" y2="211.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.42" y1="205.20"  x2="465.09" y2="205.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="422.40" y1="164.27"  x2="421.69" y2="163.36" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="470.37" y1="112.17"  x2="470.20" y2="111.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="476.07" y1="128.20"  x2="476.02" y2="127.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="406.57" y1="194.68"  x2="405.76" y2="193.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.39,152.14 413.57,153.76 409.36,151.89 " />
-<polygon style= "fill: #002991; opacity:1.00 " points="410.05,150.29 414.48,151.98 410.27,150.12 " />
-<line x1="470.56" y1="112.74"  x2="470.37" y2="112.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="421.52" y1="211.81"  x2="420.90" y2="210.99" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.36,151.89 413.61,153.44 409.39,151.58 " />
-<polygon style= "fill: #002890; opacity:1.00 " points="414.45,151.96 414.25,152.14 416.66,152.90 " />
-<polygon style= "fill: #00227B; opacity:1.00 " points="409.84,150.55 414.27,152.15 410.05,150.29 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.39,151.58 413.71,153.09 409.49,151.22 " />
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.64,150.87 414.05,152.41 409.84,150.55 " />
-<line x1="457.75" y1="157.12"  x2="457.39" y2="156.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="409.49,151.22 413.86,152.73 409.64,150.87 " />
-<line x1="464.73" y1="205.73"  x2="464.34" y2="205.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002584; opacity:1.00 " points="413.70,154.17 409.49,152.30 413.61,154.01 " />
-<line x1="423.17" y1="165.20"  x2="422.40" y2="164.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.95" y1="127.11"  x2="475.84" y2="126.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="407.42" y1="195.70"  x2="406.57" y2="194.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="441.66" y1="205.60"  x2="441.92" y2="205.24" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.48" y1="184.14"  x2="438.95" y2="183.34" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="420.90" y1="210.99"  x2="420.22" y2="210.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="413.57,153.76 409.36,151.89 413.61,153.44 " />
-<line x1="439.84" y1="135.73"  x2="439.11" y2="134.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.65" y1="186.60"  x2="461.38" y2="186.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.38" y1="186.52"  x2="462.11" y2="186.49" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.24" y1="114.54"  x2="471.00" y2="113.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00227B; opacity:1.00 " points="414.05,152.41 409.84,150.55 414.27,152.15 " />
-<line x1="462.11" y1="186.49"  x2="462.85" y2="186.51" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="413.61,153.44 409.39,151.58 413.71,153.09 " />
-<line x1="458.56" y1="187.11"  x2="459.24" y2="186.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.72" y1="125.96"  x2="475.57" y2="125.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.91" y1="187.38"  x2="458.56" y2="187.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="408.31" y1="196.74"  x2="407.42" y2="195.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.59" y1="186.57"  x2="464.33" y2="186.68" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.39" y1="156.39"  x2="456.95" y2="155.62" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.49" y1="115.15"  x2="471.24" y2="114.54" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.68" y1="188.05"  x2="457.28" y2="187.70" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.33" y1="186.68"  x2="465.06" y2="186.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="438.95" y1="183.34"  x2="438.34" y2="182.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.06" y1="186.84"  x2="465.78" y2="187.04" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.75" y1="115.78"  x2="471.49" y2="115.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.59" y1="188.89"  x2="456.11" y2="188.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.44" y1="206.23"  x2="462.95" y2="206.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.39" y1="124.77"  x2="475.20" y2="124.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="409.24" y1="197.79"  x2="408.31" y2="196.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.62" y1="136.64"  x2="439.84" y2="135.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="475.20" y1="124.15"  x2="474.99" y2="123.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.48" y1="187.28"  x2="467.16" y2="187.56" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.31" y1="117.05"  x2="472.03" y2="116.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="413.64,153.79 413.68,154.04 415.96,154.76 " />
-<line x1="419.48" y1="209.22"  x2="418.68" y2="208.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="424.85" y1="167.18"  x2="423.99" y2="166.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.59" y1="117.70"  x2="472.31" y2="117.05" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.25" y1="190.45"  x2="454.65" y2="189.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="467.16" y1="187.56"  x2="467.82" y2="187.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="474.77" y1="122.89"  x2="474.52" y2="122.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="438.34" y1="182.50"  x2="437.67" y2="181.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="410.19" y1="198.86"  x2="409.24" y2="197.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="474.52" y1="122.25"  x2="474.27" y2="121.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="473.16" y1="119.00"  x2="472.88" y2="118.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="414.06,152.41 413.89,152.74 416.28,153.42 " />
-<line x1="474.27" y1="121.61"  x2="474.00" y2="120.96" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="462.44" y1="206.33"  x2="461.90" y2="206.31" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="413.89,152.74 413.75,153.11 416.13,153.77 " />
-<line x1="473.45" y1="119.66"  x2="473.16" y2="119.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="418.68" y1="208.28"  x2="417.83" y2="207.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.58" y1="191.64"  x2="453.89" y2="191.03" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="425.76" y1="168.20"  x2="424.85" y2="167.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F70; opacity:1.00 " points="415.97,154.32 413.67,153.46 415.96,154.47 " />
-<line x1="441.45" y1="137.60"  x2="440.62" y2="136.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="411.16" y1="199.94"  x2="410.19" y2="198.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="468.45" y1="188.22"  x2="469.05" y2="188.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.32" y1="192.28"  x2="453.58" y2="191.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="417.83" y1="207.30"  x2="416.95" y2="206.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="437.67" y1="181.61"  x2="436.93" y2="180.69" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002385; opacity:1.00 " points="416.02,154.96 418.08,155.67 416.07,155.05 " />
-<line x1="456.43" y1="154.80"  x2="455.83" y2="153.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="412.14" y1="201.02"  x2="411.16" y2="199.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.35" y1="206.24"  x2="460.79" y2="206.12" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.95" y1="206.30"  x2="416.02" y2="205.27" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.95" y1="193.61"  x2="453.11" y2="192.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002690; opacity:1.00 " points="416.75,152.82 416.66,152.90 418.85,153.60 " />
-<line x1="413.13" y1="202.09"  x2="412.14" y2="201.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="426.69" y1="169.25"  x2="425.76" y2="168.20" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="416.02" y1="205.27"  x2="415.07" y2="204.23" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="414.11" y1="203.17"  x2="413.13" y2="202.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="415.07" y1="204.23"  x2="414.11" y2="203.17" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.79" y1="206.12"  x2="460.21" y2="205.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.85" y1="194.31"  x2="452.95" y2="193.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="469.63" y1="189.02"  x2="470.16" y2="189.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="436.93" y1="180.69"  x2="436.14" y2="179.74" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="442.33" y1="138.58"  x2="441.45" y2="137.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00207B; opacity:1.00 " points="416.46,153.12 418.66,153.77 416.36,153.26 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="416.05,153.96 416.02,154.13 418.16,154.74 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="416.13,153.77 418.29,154.38 416.05,153.96 " />
-<line x1="456.75" y1="177.39"  x2="455.79" y2="176.56" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="427.65" y1="170.30"  x2="426.69" y2="169.25" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.79" y1="176.56"  x2="454.79" y2="175.79" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="418.07,155.10 418.05,155.42 415.95,154.64 " />
-<line x1="452.79" y1="195.72"  x2="452.79" y2="195.01" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="440.62" y1="206.15"  x2="441.00" y2="206.05" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="470.16" y1="189.45"  x2="470.66" y2="189.91" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.79" y1="175.79"  x2="453.77" y2="175.08" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.64" y1="205.74"  x2="459.06" y2="205.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="436.14" y1="179.74"  x2="435.30" y2="178.75" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.84" y1="196.44"  x2="452.79" y2="195.72" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.77" y1="175.08"  x2="452.73" y2="174.43" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.86" y1="178.01"  x2="457.31" y2="177.69" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.24" y1="139.59"  x2="442.33" y2="138.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="428.63" y1="171.37"  x2="427.65" y2="170.30" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="452.73" y1="174.43"  x2="451.67" y2="173.86" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.39" y1="178.34"  x2="457.86" y2="178.01" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.08" y1="197.87"  x2="452.93" y2="197.15" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="458.48" y1="205.17"  x2="457.92" y2="204.81" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #002186; opacity:1.00 " points="418.71,155.86 418.79,156.00 420.50,156.49 " />
-<line x1="455.16" y1="153.03"  x2="454.44" y2="152.09" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.28" y1="198.57"  x2="453.08" y2="197.87" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.67" y1="173.86"  x2="450.61" y2="173.36" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D70; opacity:1.00 " points="418.20,154.75 418.13,155.11 418.70,155.25 " />
-<polygon style= "fill: #001D70; opacity:1.00 " points="418.47,154.05 418.32,154.38 418.90,154.52 " />
-<line x1="429.62" y1="172.45"  x2="428.63" y2="171.37" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="453.52" y1="199.26"  x2="453.28" y2="198.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.42" y1="177.74"  x2="433.50" y2="176.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="457.36" y1="204.41"  x2="456.82" y2="203.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.11" y1="190.39"  x2="471.52" y2="190.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.42" y1="179.04"  x2="458.91" y2="178.68" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="430.61" y1="173.52"  x2="429.62" y2="172.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="444.19" y1="140.63"  x2="443.24" y2="139.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.13" y1="200.60"  x2="453.80" y2="199.94" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.61" y1="173.36"  x2="449.53" y2="172.94" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.50" y1="176.71"  x2="432.55" y2="175.66" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="456.30" y1="203.50"  x2="455.81" y2="202.98" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.50" y1="201.23"  x2="454.13" y2="200.60" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001E7A; opacity:1.00 " points="419.21,153.95 419.05,154.19 420.87,154.63 " />
-<polygon style= "fill: #00248F; opacity:1.00 " points="421.13,154.32 419.38,153.77 421.05,154.41 " />
-<line x1="431.59" y1="174.59"  x2="430.61" y2="173.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="455.34" y1="202.43"  x2="454.91" y2="201.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.55" y1="175.66"  x2="431.59" y2="174.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="454.44" y1="152.09"  x2="453.66" y2="151.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.53" y1="172.94"  x2="448.45" y2="172.61" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.16" y1="141.67"  x2="444.19" y2="140.63" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001C70; opacity:1.00 " points="420.57,155.29 420.51,155.48 418.76,154.93 " />
-<polygon style= "fill: #001C70; opacity:1.00 " points="420.63,155.11 418.88,154.56 420.57,155.29 " />
-<line x1="453.66" y1="151.13"  x2="452.82" y2="150.13" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="448.45" y1="172.61"  x2="447.38" y2="172.36" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.89" y1="191.38"  x2="472.20" y2="191.89" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.83" y1="180.14"  x2="460.38" y2="179.77" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.14" y1="142.73"  x2="445.16" y2="141.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="420.43,156.00 422.19,156.43 420.42,156.17 " />
-<line x1="452.82" y1="150.13"  x2="451.94" y2="149.11" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="420.71,154.94 422.52,155.36 420.63,155.11 " />
-<line x1="461.26" y1="180.51"  x2="460.83" y2="180.14" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001D86; opacity:1.00 " points="422.71,157.13 422.80,157.28 422.30,157.12 " />
-<line x1="447.38" y1="172.36"  x2="446.31" y2="172.19" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="447.13" y1="143.80"  x2="446.14" y2="142.73" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001C7A; opacity:1.00 " points="422.69,155.08 422.54,155.32 420.79,154.77 " />
-<line x1="451.94" y1="149.11"  x2="451.02" y2="148.07" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001A70; opacity:1.00 " points="422.26,156.07 422.20,156.39 420.44,155.84 " />
-<line x1="448.13" y1="144.88"  x2="447.13" y2="143.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="451.02" y1="148.07"  x2="450.08" y2="147.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="449.11" y1="145.95"  x2="448.13" y2="144.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="450.08" y1="147.02"  x2="449.11" y2="145.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="446.31" y1="172.19"  x2="445.25" y2="172.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001F8E; opacity:1.00 " points="423.37,155.02 423.20,155.21 424.20,155.43 " />
-<polygon style= "fill: #001870; opacity:1.00 " points="422.26,156.07 422.77,156.19 422.20,156.39 " />
-<line x1="472.47" y1="192.41"  x2="472.69" y2="192.93" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="462.07" y1="181.26"  x2="461.68" y2="180.89" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="423.68,157.15 422.73,156.89 423.71,157.35 " />
-<polygon style= "fill: #002AE0; opacity:1.00 " points="426.77,158.26 425.42,157.89 426.80,158.21 " />
-<line x1="439.30" y1="205.89"  x2="439.77" y2="206.07" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="445.25" y1="172.11"  x2="444.21" y2="172.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001870; opacity:1.00 " points="423.87,156.09 422.91,155.83 423.78,156.39 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="423.70,156.83 423.69,157.08 425.04,157.36 " />
-<polygon style= "fill: #001670; opacity:1.00 " points="423.89,156.02 425.28,156.29 423.87,156.09 " />
-<line x1="444.21" y1="172.13"  x2="443.20" y2="172.23" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.86" y1="193.45"  x2="472.98" y2="193.95" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.13" y1="182.35"  x2="462.80" y2="181.99" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="443.20" y1="172.23"  x2="442.20" y2="172.43" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00177A; opacity:1.00 " points="426.86,156.21 425.51,155.84 426.82,156.28 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="425.08,157.02 426.44,157.29 425.05,157.20 " />
-<line x1="472.98" y1="193.95"  x2="473.04" y2="194.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00188E; opacity:1.00 " points="427.02,156.03 426.98,156.07 428.07,156.32 " />
-<polygon style= "fill: #001570; opacity:1.00 " points="426.70,156.49 425.35,156.12 426.67,156.57 " />
-<line x1="442.20" y1="172.43"  x2="441.24" y2="172.72" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="426.54,156.92 427.61,157.12 426.46,157.20 " />
-<line x1="438.33" y1="205.26"  x2="438.82" y2="205.62" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.74" y1="183.03"  x2="463.45" y2="182.69" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001370; opacity:1.00 " points="427.61,157.12 427.50,157.49 426.46,157.20 " />
-<polygon style= "fill: #001370; opacity:1.00 " points="427.46,157.86 427.45,158.18 427.72,158.23 " />
-<line x1="473.05" y1="194.93"  x2="473.02" y2="195.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #001170; opacity:1.00 " points="428.02,156.85 427.90,157.17 429.13,157.39 " />
-<polygon style= "fill: #001170; opacity:1.00 " points="428.93,158.23 427.73,157.93 428.92,158.46 " />
-<polygon style= "fill: #00117A; opacity:1.00 " points="429.26,157.07 430.50,157.30 429.22,157.16 " />
-<line x1="440.31" y1="173.10"  x2="439.42" y2="173.56" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00117A; opacity:1.00 " points="430.57,157.18 429.37,156.88 430.50,157.30 " />
-<polygon style= "fill: #000F70; opacity:1.00 " points="428.99,157.87 428.95,158.12 430.16,158.34 " />
-<polygon style= "fill: #00139F; opacity:1.00 " points="432.03,157.23 431.92,157.30 430.72,156.99 " />
-<polygon style= "fill: #000E70; opacity:1.00 " points="431.32,159.22 431.36,159.42 430.16,159.11 " />
-<line x1="464.48" y1="183.94"  x2="464.26" y2="183.65" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="439.42" y1="173.56"  x2="438.57" y2="174.12" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000E70; opacity:1.00 " points="430.25,157.96 431.47,158.18 430.19,158.18 " />
-<line x1="437.32" y1="204.27"  x2="437.83" y2="204.81" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="432.25,159.08 432.23,159.40 431.32,159.17 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="431.49,158.11 431.47,158.18 432.40,158.34 " />
-<line x1="438.57" y1="174.12"  x2="437.77" y2="174.75" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C70; opacity:1.00 " points="432.53,159.15 432.25,159.08 432.52,159.45 " />
-<polygon style= "fill: #000C70; opacity:1.00 " points="432.53,158.00 432.40,158.34 432.70,158.39 " />
-<line x1="472.60" y1="196.64"  x2="472.36" y2="197.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7A; opacity:1.00 " points="432.96,157.79 432.82,158.05 434.04,158.28 " />
-<line x1="437.77" y1="174.75"  x2="437.02" y2="175.47" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="433.77,159.08 432.59,158.78 433.73,159.33 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="434.90,160.18 434.92,160.32 433.74,160.02 " />
-<polygon style= "fill: #00099F; opacity:1.00 " points="435.55,158.15 436.77,158.42 435.48,158.19 " />
-<polygon style= "fill: #00097A; opacity:1.00 " points="435.33,158.38 434.14,158.08 435.26,158.50 " />
-<line x1="436.32" y1="202.95"  x2="436.82" y2="203.65" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.09" y1="197.32"  x2="471.76" y2="197.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="435.01,159.17 434.96,159.38 433.77,159.08 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="436.08,160.11 436.07,160.36 434.89,160.07 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="435.05,159.00 435.01,159.17 436.22,159.38 " />
-<line x1="436.31" y1="176.26"  x2="435.66" y2="177.13" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="471.76" y1="197.61"  x2="471.40" y2="197.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="435.83" y1="202.16"  x2="436.32" y2="202.95" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="436.08,160.11 437.06,160.28 436.07,160.36 " />
-<line x1="465.33" y1="185.05"  x2="465.20" y2="184.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="436.34,159.02 437.34,159.20 436.24,159.30 " />
-<line x1="435.66" y1="177.13"  x2="435.07" y2="178.07" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00057A; opacity:1.00 " points="437.49,158.92 437.34,159.20 437.72,159.27 " />
-<line x1="435.36" y1="201.30"  x2="435.83" y2="202.16" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00059F; opacity:1.00 " points="440.13,159.32 440.06,159.36 438.01,158.82 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="439.46,161.36 439.48,161.49 437.43,160.95 " />
-<line x1="435.07" y1="178.07"  x2="434.54" y2="179.06" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="467.28" y1="178.50"  x2="468.01" y2="178.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.55" y1="178.63"  x2="467.28" y2="178.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="437.47,160.01 437.41,160.35 439.49,160.73 " />
-<polygon style= "fill: #00048E; opacity:1.00 " points="439.98,159.46 439.91,159.55 437.86,159.01 " />
-<line x1="468.76" y1="178.39"  x2="469.50" y2="178.41" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.16" y1="179.02"  x2="465.85" y2="178.80" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="469.50" y1="178.41"  x2="470.25" y2="178.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.50" y1="179.30"  x2="465.16" y2="179.02" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.91" y1="200.38"  x2="435.36" y2="201.30" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="439.63,160.17 437.57,159.64 439.57,160.36 " />
-<line x1="463.26" y1="179.97"  x2="463.87" y2="179.61" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="439.57,160.36 439.52,160.55 437.47,160.01 " />
-<line x1="434.54" y1="179.06"  x2="434.06" y2="180.12" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="462.69" y1="180.38"  x2="463.26" y2="179.97" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="470.10" y1="198.35"  x2="469.61" y2="198.42" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.48" y1="199.39"  x2="434.91" y2="200.38" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="472.46" y1="178.95"  x2="473.17" y2="179.19" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="439.45,161.07 441.51,161.48 439.45,161.24 " />
-<line x1="461.67" y1="181.30"  x2="462.16" y2="180.82" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.06" y1="180.12"  x2="433.65" y2="181.23" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="473.17" y1="179.19"  x2="473.86" y2="179.47" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="439.69,160.00 441.80,160.39 439.63,160.17 " />
-<line x1="469.61" y1="198.42"  x2="469.09" y2="198.45" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00017A; opacity:1.00 " points="441.95,160.11 441.81,160.37 439.76,159.83 " />
-<line x1="460.81" y1="182.39"  x2="461.21" y2="181.83" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="434.09" y1="198.34"  x2="434.48" y2="199.39" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.65" y1="181.23"  x2="433.30" y2="182.38" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="441.57,161.11 441.52,161.45 439.46,160.91 " />
-<line x1="460.45" y1="182.97"  x2="460.81" y2="182.39" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00008F; opacity:1.00 " points="442.45,159.98 442.29,160.17 442.55,160.23 " />
-<line x1="433.73" y1="197.23"  x2="434.09" y2="198.34" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.30" y1="182.38"  x2="433.01" y2="183.57" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0002A0; opacity:1.00 " points="444.45,160.45 442.86,159.98 444.36,160.49 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="442.04,161.93 442.07,162.17 443.65,162.55 " />
-<line x1="475.18" y1="180.14"  x2="475.79" y2="180.52" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="468.55" y1="198.42"  x2="467.99" y2="198.35" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.88" y1="184.23"  x2="460.14" y2="183.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.01" y1="183.57"  x2="432.79" y2="184.80" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.41" y1="196.09"  x2="433.73" y2="197.23" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="442.23,160.87 442.13,161.22 443.77,161.56 " />
-<line x1="432.79" y1="184.80"  x2="432.63" y2="186.05" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.51" y1="185.58"  x2="459.66" y2="184.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="433.13" y1="194.90"  x2="433.41" y2="196.09" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="443.65,162.07 442.05,161.61 443.64,162.27 " />
-<line x1="467.43" y1="198.23"  x2="466.85" y2="198.06" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000170; opacity:1.00 " points="443.89,161.20 443.84,161.33 442.23,160.87 " />
-<line x1="459.40" y1="186.28"  x2="459.51" y2="185.58" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.63" y1="186.05"  x2="432.53" y2="187.32" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.90" y1="193.68"  x2="433.13" y2="194.90" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.53" y1="187.32"  x2="432.48" y2="188.60" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.71" y1="192.43"  x2="432.90" y2="193.68" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.34" y1="186.99"  x2="459.40" y2="186.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.48" y1="188.60"  x2="432.50" y2="189.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="466.85" y1="198.06"  x2="466.27" y2="197.84" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.58" y1="191.16"  x2="432.71" y2="192.43" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="432.50" y1="189.88"  x2="432.58" y2="191.16" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00037A; opacity:1.00 " points="444.14,160.71 444.04,160.88 445.70,161.25 " />
-<line x1="476.91" y1="181.37"  x2="477.17" y2="181.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="443.98,160.99 443.89,161.20 445.54,161.55 " />
-<line x1="459.39" y1="188.43"  x2="459.34" y2="187.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000686; opacity:1.00 " points="445.27,163.12 445.29,163.16 446.54,163.49 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="445.31,162.27 445.26,162.54 443.65,162.07 " />
-<line x1="459.49" y1="189.16"  x2="459.39" y2="188.43" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #00068F; opacity:1.00 " points="445.91,160.99 445.86,161.04 447.18,161.36 " />
-<line x1="477.41" y1="181.64"  x2="477.65" y2="181.79" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.11" y1="197.26"  x2="464.53" y2="196.90" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="459.84" y1="190.59"  x2="459.64" y2="189.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="464.53" y1="196.90"  x2="463.97" y2="196.50" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="460.09" y1="191.29"  x2="459.84" y2="190.59" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="446.53,162.91 446.51,163.23 445.24,162.86 " />
-<line x1="460.38" y1="191.97"  x2="460.09" y2="191.29" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="463.43" y1="196.05"  x2="462.91" y2="195.57" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.08" y1="193.28"  x2="460.71" y2="192.64" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="462.41" y1="195.04"  x2="461.93" y2="194.48" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="461.49" y1="193.90"  x2="461.08" y2="193.28" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="446.71,162.17 446.60,162.54 445.32,162.17 " />
-<polygon style= "fill: #000886; opacity:1.00 " points="446.94,163.63 447.02,163.77 449.15,164.42 " />
-<polygon style= "fill: #00077B; opacity:1.00 " points="447.48,161.70 447.32,161.95 449.58,162.54 " />
-<polygon style= "fill: #00098F; opacity:1.00 " points="449.84,162.24 447.66,161.51 449.76,162.32 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="447.30,161.97 447.16,162.28 449.41,162.85 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="449.16,163.57 449.11,163.78 446.93,163.05 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="449.20,163.41 447.01,162.68 449.16,163.57 " />
-<line x1="478.56" y1="182.55"  x2="478.69" y2="182.71" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="449.41,162.85 451.47,163.37 449.32,163.04 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="449.32,163.04 449.27,163.20 451.31,163.71 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="451.11,164.45 451.08,164.77 449.09,164.11 " />
-<polygon style= "fill: #00097B; opacity:1.00 " points="451.65,163.09 451.47,163.37 449.48,162.70 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="451.18,164.08 451.11,164.45 449.11,163.78 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="451.57,164.20 451.56,164.23 451.14,164.07 " />
-<line x1="479.03" y1="183.30"  x2="479.07" y2="183.44" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000FA2; opacity:1.00 " points="452.45,163.00 452.29,163.07 456.54,164.59 " />
-<polygon style= "fill: #000C85; opacity:1.00 " points="451.46,165.17 451.54,165.31 455.54,166.76 " />
-<line x1="465.70" y1="184.41"  x2="465.73" y2="184.66" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D90; opacity:1.00 " points="452.27,163.07 452.10,163.23 456.36,164.66 " />
-<polygon style= "fill: #000B7B; opacity:1.00 " points="452.08,163.25 451.90,163.50 456.16,164.84 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="452.85,165.47 455.51,166.50 455.55,166.18 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="454.15,164.97 455.79,165.45 455.64,165.82 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="455.49,166.16 459.96,167.77 455.60,165.80 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="451.46,164.59 451.43,164.89 455.55,166.18 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="451.88,163.52 451.72,163.83 455.96,165.11 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="451.70,163.86 451.57,164.20 455.79,165.45 " />
-<polygon style= "fill: #000C84; opacity:1.00 " points="456.86,167.44 455.57,166.89 455.48,166.73 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="455.51,166.50 455.54,166.76 451.46,165.17 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="452.85,165.47 451.43,164.91 455.55,166.18 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="455.64,165.82 455.55,166.18 451.46,164.59 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="455.96,165.11 455.79,165.45 451.70,163.86 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="454.15,164.97 451.56,164.23 455.64,165.82 " />
-<line x1="465.61" y1="183.47"  x2="465.64" y2="183.81" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000C84; opacity:1.00 " points="456.86,167.44 459.84,168.70 455.48,166.73 " />
-<line x1="465.56" y1="182.71"  x2="465.59" y2="183.11" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D91; opacity:1.00 " points="456.18,164.84 460.76,166.63 456.39,164.67 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="455.45,166.48 459.86,168.13 455.49,166.16 " />
-<polygon style= "fill: #000B7B; opacity:1.00 " points="455.96,165.11 460.54,166.81 456.18,164.84 " />
-<polygon style= "fill: #000D91; opacity:1.00 " points="460.54,166.81 456.18,164.84 460.76,166.63 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="459.81,168.45 455.45,166.48 459.86,168.13 " />
-<line x1="465.53" y1="181.37"  x2="465.53" y2="181.84" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000B7B; opacity:1.00 " points="460.32,167.07 455.96,165.11 460.54,166.81 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="460.13,167.40 455.76,165.44 460.32,167.07 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="459.93,167.75 459.81,168.10 461.84,168.94 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="459.96,167.77 455.60,165.80 460.13,167.40 " />
-<line x1="478.14" y1="184.22"  x2="477.98" y2="184.18" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<line x1="465.55" y1="180.37"  x2="465.53" y2="180.88" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000D92; opacity:1.00 " points="460.79,166.65 460.55,166.82 462.63,167.74 " />
-<line x1="477.45" y1="183.96"  x2="477.27" y2="183.85" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000A70; opacity:1.00 " points="460.32,167.07 460.11,167.39 462.17,168.24 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="461.75,169.27 461.73,169.42 459.76,168.42 " />
-<polygon style= "fill: #000A70; opacity:1.00 " points="462.07,168.39 460.11,167.39 461.98,168.58 " />
-<line x1="476.30" y1="183.06"  x2="476.11" y2="182.86" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="461.84,168.94 464.18,169.91 461.78,169.10 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="462.29,168.07 462.17,168.24 464.57,169.23 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="461.98,168.58 464.36,169.55 461.90,168.75 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="464.06,170.27 464.01,170.58 461.73,169.42 " />
-<polygon style= "fill: #000B92; opacity:1.00 " points="465.04,168.81 464.81,168.97 462.52,167.82 " />
-<line x1="475.57" y1="182.14"  x2="475.40" y2="181.88" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000870; opacity:1.00 " points="464.57,169.23 464.36,169.55 462.07,168.39 " />
-<line x1="475.09" y1="181.31"  x2="474.95" y2="181.00" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000CC6; opacity:1.00 " points="466.87,172.46 464.83,171.34 466.95,172.44 " />
-<polygon style= "fill: #000870; opacity:1.00 " points="464.74,170.21 464.16,169.90 464.63,170.52 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="465.63,169.14 465.43,169.27 467.58,170.31 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="464.61,170.56 464.56,170.84 466.63,171.80 " />
-<polygon style= "fill: #000992; opacity:1.00 " points="467.67,170.25 465.63,169.14 467.58,170.31 " />
-<polygon style= "fill: #00077C; opacity:1.00 " points="467.34,170.51 467.19,170.67 465.15,169.55 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="466.78,171.33 464.74,170.21 466.73,171.46 " />
-<polygon style= "fill: #000770; opacity:1.00 " points="466.96,170.98 464.92,169.86 466.89,171.11 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="466.63,171.80 468.21,172.54 466.59,172.00 " />
-<line x1="478.22" y1="175.67"  x2="467.26" y2="179.73" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000570; opacity:1.00 " points="468.16,172.86 468.18,173.11 468.64,173.34 " />
-<polygon style= "fill: #00057C; opacity:1.00 " points="469.00,171.27 468.75,171.52 467.19,170.67 " />
-<polygon style= "fill: #0007A5; opacity:1.00 " points="469.45,171.05 469.24,171.11 469.73,171.36 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="468.75,171.52 468.53,171.84 466.96,170.98 " />
-<polygon style= "fill: #000570; opacity:1.00 " points="468.53,171.84 468.34,172.19 468.83,172.41 " />
-<polygon style= "fill: #0005A5; opacity:1.00 " points="471.91,172.41 469.91,171.31 471.82,172.44 " />
-<polygon style= "fill: #00037C; opacity:1.00 " points="469.46,171.53 469.25,171.75 471.36,172.74 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="469.22,171.78 469.02,172.06 471.13,173.02 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="470.62,174.22 468.63,173.11 470.63,174.32 " />
-<line x1="474.70" y1="180.37"  x2="478.22" y2="175.67" style= "stroke: #0004FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000370; opacity:1.00 " points="470.75,173.70 470.68,173.90 468.68,172.80 " />
-<polygon style= "fill: #000370; opacity:1.00 " points="470.91,173.34 470.80,173.55 468.81,172.45 " />
-<polygon style= "fill: #00017C; opacity:1.00 " points="471.46,172.63 471.36,172.74 473.20,173.59 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="471.13,173.02 472.95,173.84 470.99,173.20 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="472.54,174.51 472.41,174.86 470.68,173.90 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="472.72,174.16 472.54,174.51 470.80,173.55 " />
-<polygon style= "fill: #000170; opacity:1.00 " points="472.91,175.42 472.91,175.46 472.39,175.20 " />
-<polygon style= "fill: #00007C; opacity:1.00 " points="473.70,173.84 473.50,174.07 477.52,175.74 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="473.08,174.78 472.97,175.09 476.90,176.69 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="473.47,174.10 473.28,174.38 477.29,176.00 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="473.25,174.42 473.10,174.74 477.08,176.33 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="476.78,177.05 476.73,177.37 472.91,175.46 " />
-<line x1="465.55" y1="180.37"  x2="467.26" y2="179.73" style= "stroke: #0014FF;stroke-width:0.16; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #000070; opacity:1.00 " points="476.90,176.69 476.78,177.05 472.96,175.14 " />
-<polygon style= "fill: #000070; opacity:1.00 " points="477.08,176.33 476.90,176.69 473.08,174.78 " />
-<line x1="473.77" y1="180.58"  x2="473.00" y2="179.62" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="474.09" y1="179.05"  x2="474.86" y2="180.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="473.87" y1="178.23"  x2="474.80" y2="178.42" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="476.11" y2="179.52" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="474.42" y1="178.36"  x2="474.58" y2="177.60" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="474.58" y2="177.60" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="475.50" y2="177.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.50" y1="177.79"  x2="476.27" y2="178.75" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.27" y1="178.75"  x2="477.46" y2="176.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="474.66" y1="172.19"  x2="475.41" y2="171.52" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.41" y1="171.52"  x2="476.60" y2="171.35" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.60" y1="171.35"  x2="476.81" y2="174.81" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.14" y1="175.74"  x2="474.98" y2="173.12" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.74" y1="172.45"  x2="476.92" y2="172.28" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.92" y1="172.28"  x2="477.14" y2="175.74" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.30" y1="174.05"  x2="476.06" y2="173.38" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="476.06" y2="173.38" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.06" y1="173.38"  x2="477.25" y2="173.21" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.25" y1="173.21"  x2="477.46" y2="176.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="482.49" y1="178.10"  x2="481.73" y2="178.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="482.57" y1="176.90"  x2="479.20" y2="177.03" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="481.70" y1="176.72"  x2="481.62" y2="177.92" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="481.62" y1="177.92"  x2="480.86" y2="178.59" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="481.70" y1="176.72"  x2="478.33" y2="176.85" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="480.75" y2="177.73" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="480.75" y1="177.73"  x2="479.99" y2="178.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.99" y1="178.41"  x2="479.31" y2="177.89" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.46" y1="176.66"  x2="479.31" y2="177.89" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.31" y1="177.89"  x2="479.39" y2="176.69" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="480.82" y1="176.54"  x2="477.46" y2="176.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.79" y1="152.09"  x2="156.12" y2="151.91" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.39" y1="150.98"  x2="155.32" y2="150.21" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="155.32" y1="150.21"  x2="155.98" y2="150.38" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.94" y1="151.31"  x2="156.21" y2="150.37" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="156.14" y1="149.61"  x2="156.81" y2="149.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.54" y1="150.71"  x2="159.33" y2="148.73" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="158.43" y1="150.88"  x2="157.76" y2="150.70" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.76" y1="150.70"  x2="157.03" y2="149.77" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.03" y1="149.77"  x2="156.96" y2="149.00" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.15" y1="148.13"  x2="156.96" y2="149.00" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.15" y1="148.13"  x2="157.63" y2="149.17" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.63" y1="149.17"  x2="158.36" y2="150.11" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="158.36" y1="150.11"  x2="160.15" y2="148.13" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.86" y1="143.06"  x2="158.88" y2="142.88" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="159.72" y1="147.21"  x2="157.41" y2="144.63" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="157.41" y1="144.63"  x2="158.29" y2="143.98" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="158.29" y1="143.98"  x2="159.31" y2="143.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.15" y1="148.13"  x2="157.84" y2="145.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.15" y1="148.13"  x2="158.72" y2="144.90" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="158.72" y1="144.90"  x2="159.74" y2="144.72" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="159.74" y1="144.72"  x2="160.15" y2="148.13" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="164.16" y1="148.27"  x2="164.12" y2="149.44" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="163.25" y1="150.09"  x2="162.41" y2="149.56" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="164.16" y1="148.27"  x2="161.40" y2="148.44" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="163.49" y1="149.29"  x2="162.62" y2="149.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="162.62" y1="149.93"  x2="161.78" y2="149.41" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="163.54" y1="148.11"  x2="160.78" y2="148.28" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="162.87" y1="149.13"  x2="161.99" y2="149.77" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="161.15" y1="149.25"  x2="161.19" y2="148.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="160.15" y1="148.13"  x2="162.07" y2="147.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="162.91" y1="147.95"  x2="160.15" y2="148.13" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.16" y1="221.17"  x2="440.27" y2="220.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.56" y1="218.27"  x2="440.27" y2="220.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="439.50" y1="219.98"  x2="439.64" y2="219.25" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="439.64" y1="219.25"  x2="440.54" y2="219.48" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.88" y1="220.52"  x2="440.98" y2="220.29" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="440.22" y1="219.34"  x2="440.36" y2="218.60" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.60" y1="219.88"  x2="441.70" y2="219.65" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.70" y1="219.65"  x2="440.94" y2="218.69" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="440.94" y1="218.69"  x2="441.08" y2="217.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.00" y1="216.98"  x2="441.08" y2="217.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.08" y1="217.96"  x2="441.98" y2="218.18" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.00" y1="216.98"  x2="441.98" y2="218.18" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.98" y1="218.18"  x2="442.74" y2="219.14" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.74" y1="219.14"  x2="444.00" y2="216.98" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.15" y1="212.58"  x2="441.92" y2="211.89" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.92" y1="211.89"  x2="443.09" y2="211.74" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.48" y1="213.49"  x2="442.26" y2="212.80" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.26" y1="212.80"  x2="443.42" y2="212.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.42" y1="212.65"  x2="443.66" y2="216.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.00" y1="216.98"  x2="441.82" y2="214.40" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.82" y1="214.40"  x2="442.59" y2="213.71" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.00" y1="216.98"  x2="442.59" y2="213.71" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.59" y1="213.71"  x2="443.76" y2="213.56" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.76" y1="213.56"  x2="444.00" y2="216.98" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.91" y1="218.54"  x2="448.14" y2="219.23" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.13" y1="217.13"  x2="448.06" y2="218.32" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.06" y1="218.32"  x2="447.29" y2="219.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.44" y1="216.63"  x2="448.13" y2="217.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.29" y1="216.92"  x2="447.21" y2="218.11" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.45" y1="218.80"  x2="445.75" y2="218.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="445.75" y1="218.30"  x2="445.82" y2="217.11" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.00" y1="216.98"  x2="446.59" y2="216.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.59" y1="216.42"  x2="447.29" y2="216.92" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.29" y1="216.92"  x2="444.00" y2="216.98" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="388.94" y1="184.55"  x2="388.19" y2="183.61" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="388.29" y1="182.86"  x2="389.14" y2="183.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.53" y1="184.13"  x2="389.68" y2="183.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="389.68" y1="183.93"  x2="388.92" y2="182.98" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="391.26" y1="183.50"  x2="390.41" y2="183.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="389.66" y1="182.36"  x2="389.75" y2="181.61" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="389.75" y2="181.61" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="390.61" y2="181.80" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.61" y1="181.80"  x2="391.36" y2="182.75" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.00" y1="178.85"  x2="392.08" y2="175.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="389.82" y1="176.26"  x2="390.60" y2="175.59" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.00" y1="178.85"  x2="390.60" y2="175.59" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.60" y1="175.59"  x2="391.73" y2="175.43" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="391.73" y1="175.43"  x2="392.00" y2="178.85" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.17" y1="177.18"  x2="390.95" y2="176.51" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.95" y1="176.51"  x2="392.09" y2="176.35" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="390.52" y2="178.10" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="390.52" y1="178.10"  x2="391.31" y2="177.43" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="391.31" y2="177.43" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="391.31" y1="177.43"  x2="392.44" y2="177.27" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.44" y1="177.27"  x2="392.71" y2="180.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="397.42" y1="182.11"  x2="396.64" y2="182.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="397.49" y1="180.93"  x2="394.30" y2="181.05" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="396.69" y1="180.74"  x2="396.62" y2="181.93" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="396.62" y1="181.93"  x2="395.84" y2="182.60" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="396.69" y1="180.74"  x2="393.50" y2="180.86" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="395.82" y2="181.75" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="395.82" y1="181.75"  x2="395.04" y2="182.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="395.04" y1="182.41"  x2="394.32" y2="181.90" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="392.71" y1="180.68"  x2="394.32" y2="181.90" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="394.32" y1="181.90"  x2="394.38" y2="180.71" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="395.89" y1="180.56"  x2="392.71" y2="180.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.18" y1="93.87"  x2="475.42" y2="92.91" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.42" y1="92.91"  x2="475.58" y2="92.09" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="475.58" y1="92.09"  x2="476.51" y2="92.22" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.89" y1="93.27"  x2="476.13" y2="92.32" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.21" y1="91.63"  x2="477.98" y2="92.58" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.59" y1="92.68"  x2="476.83" y2="91.73" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.83" y1="91.73"  x2="476.99" y2="90.90" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="476.99" y1="90.90"  x2="477.92" y2="91.03" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="477.92" y2="91.03" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="478.69" y1="91.98"  x2="479.88" y2="90.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.83" y1="84.86"  x2="479.01" y2="84.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.01" y1="84.64"  x2="479.23" y2="88.16" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.55" y1="89.12"  x2="477.39" y2="86.45" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="477.39" y1="86.45"  x2="478.15" y2="85.81" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="478.15" y1="85.81"  x2="479.33" y2="85.61" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.33" y1="85.61"  x2="479.55" y2="89.12" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="480.09" y2="86.99" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="477.72" y2="87.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="478.48" y2="86.77" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="478.48" y1="86.77"  x2="479.66" y2="86.57" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.66" y1="86.57"  x2="479.88" y2="90.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="484.15" y1="91.88"  x2="483.47" y2="91.31" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="484.11" y1="89.92"  x2="484.03" y2="91.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="483.27" y1="91.76"  x2="482.60" y2="91.19" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="484.11" y1="89.92"  x2="480.74" y2="90.20" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="483.16" y2="91.00" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="483.16" y1="91.00"  x2="482.40" y2="91.64" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="482.40" y1="91.64"  x2="481.73" y2="91.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="479.88" y1="90.07"  x2="481.73" y2="91.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="481.73" y1="91.07"  x2="481.80" y2="89.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="482.56" y1="89.22"  x2="483.24" y2="89.80" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="483.24" y1="89.80"  x2="479.88" y2="90.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="445.50" y1="103.63"  x2="444.74" y2="102.68" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.74" y1="102.68"  x2="444.88" y2="101.87" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.88" y1="101.87"  x2="445.78" y2="102.00" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.22" y1="103.03"  x2="445.46" y2="102.08" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="445.46" y1="102.08"  x2="445.60" y2="101.27" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="445.60" y1="101.27"  x2="446.50" y2="101.41" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="446.93" y2="102.44" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.93" y1="102.44"  x2="446.17" y2="101.49" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="446.31" y2="100.68" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.31" y1="100.68"  x2="447.21" y2="100.81" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="447.21" y2="100.81" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.21" y1="100.81"  x2="447.98" y2="101.76" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.98" y1="101.76"  x2="449.22" y2="99.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.55" y1="97.94"  x2="446.38" y2="95.29" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="446.38" y1="95.29"  x2="447.15" y2="94.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.15" y1="94.65"  x2="448.32" y2="94.45" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.32" y1="94.45"  x2="448.55" y2="97.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.88" y1="98.89"  x2="449.05" y2="95.83" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.48" y1="95.61"  x2="448.65" y2="95.40" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.65" y1="95.40"  x2="448.88" y2="98.89" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="447.05" y2="97.19" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="447.82" y2="96.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.82" y1="96.55"  x2="448.98" y2="96.35" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.98" y1="96.35"  x2="449.22" y2="99.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.13" y1="101.04"  x2="453.36" y2="101.67" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.36" y1="101.67"  x2="452.67" y2="101.11" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.51" y1="99.27"  x2="454.20" y2="99.83" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.20" y1="99.83"  x2="450.90" y2="100.09" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.28" y1="100.91"  x2="452.52" y2="101.55" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.52" y1="101.55"  x2="451.82" y2="100.98" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.66" y1="99.14"  x2="453.36" y2="99.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.36" y1="99.71"  x2="450.06" y2="99.96" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.44" y1="100.78"  x2="451.67" y2="101.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.67" y1="101.42"  x2="450.98" y2="100.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="450.98" y2="100.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.22" y1="99.84"  x2="451.82" y2="99.02" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.82" y1="99.02"  x2="452.51" y2="99.58" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.51" y1="99.58"  x2="449.22" y2="99.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.49" y1="224.25"  x2="356.66" y2="224.02" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="356.66" y1="224.02"  x2="355.91" y2="223.07" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="355.91" y1="223.07"  x2="355.98" y2="222.35" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.23" y1="223.61"  x2="357.41" y2="223.38" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.41" y1="223.38"  x2="356.66" y2="222.43" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="356.66" y1="222.43"  x2="356.73" y2="221.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="356.73" y1="221.71"  x2="357.56" y2="221.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="358.98" y2="222.97" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="358.16" y2="222.74" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.16" y1="222.74"  x2="357.41" y2="221.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="357.48" y2="221.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.48" y1="221.07"  x2="358.31" y2="221.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="358.31" y2="221.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.31" y1="221.30"  x2="359.06" y2="222.25" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.06" y1="222.25"  x2="360.47" y2="220.10" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.85" y1="216.27"  x2="357.54" y2="215.74" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.54" y1="215.74"  x2="358.34" y2="215.06" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.34" y1="215.06"  x2="359.45" y2="214.91" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.13" y1="216.34"  x2="359.33" y2="217.03" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.11" y1="219.20"  x2="358.70" y2="215.96" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.70" y1="215.96"  x2="359.82" y2="215.81" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.58" y1="218.08"  x2="358.27" y2="217.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="358.27" y2="217.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.27" y1="217.55"  x2="359.06" y2="216.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="359.06" y2="216.86" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.06" y1="216.86"  x2="360.18" y2="216.71" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.18" y1="216.71"  x2="360.47" y2="220.10" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="365.14" y1="220.47"  x2="365.08" y2="221.65" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="364.28" y1="222.34"  x2="363.55" y2="221.84" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="365.14" y1="220.47"  x2="362.02" y2="220.52" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="364.30" y1="221.44"  x2="363.50" y2="222.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.50" y1="222.13"  x2="362.77" y2="221.63" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.63" y1="219.76"  x2="364.37" y2="220.26" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="364.37" y1="220.26"  x2="361.24" y2="220.31" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.53" y1="221.23"  x2="362.73" y2="221.91" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="362.73" y1="221.91"  x2="361.99" y2="221.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="361.99" y2="221.42" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.47" y1="220.10"  x2="362.86" y2="219.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="362.86" y1="219.55"  x2="363.59" y2="220.05" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.59" y1="220.05"  x2="360.47" y2="220.10" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="450.32" y1="140.25"  x2="449.56" y2="139.30" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.56" y1="139.30"  x2="449.70" y2="138.51" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.94" y1="139.81"  x2="451.03" y2="139.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.03" y1="139.64"  x2="450.27" y2="138.69" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="452.65" y2="139.20" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.65" y1="139.20"  x2="451.75" y2="139.03" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.75" y1="139.03"  x2="450.98" y2="138.08" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="450.98" y2="138.08" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="450.98" y1="138.08"  x2="451.13" y2="137.29" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.13" y1="137.29"  x2="452.04" y2="137.45" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="452.04" y2="137.45" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.80" y1="138.41"  x2="454.03" y2="136.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.20" y1="131.91"  x2="451.97" y2="131.25" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.13" y1="131.07"  x2="453.37" y2="134.54" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="451.54" y1="132.84"  x2="452.30" y2="132.20" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.46" y1="132.01"  x2="453.70" y2="135.48" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="454.20" y2="133.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="451.87" y2="133.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="452.63" y2="133.13" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="452.63" y1="133.13"  x2="453.80" y2="132.95" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="453.80" y1="132.95"  x2="454.03" y2="136.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="458.96" y1="137.72"  x2="458.20" y2="138.38" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="459.04" y1="136.52"  x2="455.72" y2="136.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="458.18" y1="136.37"  x2="458.11" y2="137.57" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="457.35" y1="138.22"  x2="456.66" y2="137.68" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="457.34" y1="136.21"  x2="457.26" y2="137.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="457.26" y2="137.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="456.50" y1="138.07"  x2="455.81" y2="137.52" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="454.03" y1="136.41"  x2="455.81" y2="137.52" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="455.81" y1="137.52"  x2="455.88" y2="136.32" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="457.34" y1="136.21"  x2="454.03" y2="136.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.09" y1="45.73"  x2="356.27" y2="45.64" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="356.27" y1="45.64"  x2="355.52" y2="44.70" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="355.52" y1="44.70"  x2="355.59" y2="43.85" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="355.59" y1="43.85"  x2="356.42" y2="43.94" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.02" y1="45.07"  x2="356.27" y2="44.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="356.34" y1="43.28"  x2="357.16" y2="43.38" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="358.59" y2="44.59" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.59" y1="44.59"  x2="357.76" y2="44.50" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.76" y1="44.50"  x2="357.01" y2="43.56" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="357.01" y2="43.56" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.09" y1="42.71"  x2="357.91" y2="42.80" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="357.91" y2="42.80" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.66" y1="43.75"  x2="360.07" y2="41.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.34" y1="40.03"  x2="357.14" y2="37.37" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.14" y1="37.37"  x2="357.94" y2="36.77" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.94" y1="36.77"  x2="359.05" y2="36.54" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.05" y1="36.54"  x2="359.34" y2="40.03" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="357.50" y1="38.33"  x2="358.30" y2="37.73" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.30" y1="37.73"  x2="359.41" y2="37.50" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.41" y1="37.50"  x2="359.71" y2="41.00" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="360.09" y2="38.84" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="357.87" y2="39.30" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="358.66" y2="38.69" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="358.66" y1="38.69"  x2="359.78" y2="38.46" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="359.78" y1="38.46"  x2="360.07" y2="41.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="364.67" y1="42.96"  x2="363.87" y2="43.57" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.87" y1="43.57"  x2="363.14" y2="42.98" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="364.73" y1="41.77"  x2="361.61" y2="42.13" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="363.12" y2="42.80" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.12" y1="42.80"  x2="362.32" y2="43.41" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="360.07" y1="41.96"  x2="361.59" y2="42.82" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="362.45" y1="41.01"  x2="363.18" y2="41.60" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="363.18" y1="41.60"  x2="360.07" y2="41.96" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.41" y1="205.65"  x2="442.02" y2="208.53" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.12" y1="208.31"  x2="440.36" y2="207.36" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="440.36" y1="207.36"  x2="440.49" y2="206.61" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.84" y1="207.67"  x2="441.07" y2="206.71" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="441.21" y1="205.97"  x2="442.11" y2="206.19" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.45" y1="207.25"  x2="442.55" y2="207.03" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.55" y1="207.03"  x2="441.79" y2="206.07" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="441.93" y2="205.34" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="442.83" y2="205.55" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="442.83" y1="205.55"  x2="443.59" y2="206.51" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.59" y1="206.51"  x2="444.84" y2="204.38" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.93" y1="199.11"  x2="444.17" y2="202.55" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.11" y1="200.19"  x2="444.27" y2="200.03" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="442.67" y2="201.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="443.44" y2="201.11" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="443.44" y1="201.11"  x2="444.61" y2="200.95" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.61" y1="200.95"  x2="444.84" y2="204.38" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.75" y1="205.89"  x2="448.98" y2="206.58" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="449.83" y1="204.70"  x2="446.53" y2="204.78" style= "stroke: #0000FF;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.14" y1="204.29"  x2="448.06" y2="205.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="448.06" y2="205.48" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.30" y1="206.17"  x2="446.60" y2="205.66" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="444.84" y1="204.38"  x2="447.44" y2="203.79" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="447.44" y1="203.79"  x2="448.14" y2="204.29" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="448.14" y1="204.29"  x2="444.84" y2="204.38" style= "stroke: #FF7900;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<polygon style= "fill: #0000FF; opacity:1.00 " points="12.00,35.31 15.01,35.31 15.01,34.65 " />
-<polygon style= "fill: #0000FF; opacity:1.00 " points="15.01,34.65 12.00,34.65 12.00,35.31 " />
-<polygon style= "fill: #001DFF; opacity:1.00 " points="12.00,34.65 15.01,34.65 15.01,33.98 " />
-<polygon style= "fill: #001DFF; opacity:1.00 " points="15.01,33.98 12.00,33.98 12.00,34.65 " />
-<polygon style= "fill: #003AFF; opacity:1.00 " points="12.00,33.98 15.01,33.98 15.01,33.32 " />
-<polygon style= "fill: #003AFF; opacity:1.00 " points="15.01,33.32 12.00,33.32 12.00,33.98 " />
-<polygon style= "fill: #0057FF; opacity:1.00 " points="12.00,33.32 15.01,33.32 15.01,32.66 " />
-<polygon style= "fill: #0057FF; opacity:1.00 " points="15.01,32.66 12.00,32.66 12.00,33.32 " />
-<polygon style= "fill: #0074FF; opacity:1.00 " points="12.00,32.66 15.01,32.66 15.01,31.99 " />
-<polygon style= "fill: #0074FF; opacity:1.00 " points="15.01,31.99 12.00,31.99 12.00,32.66 " />
-<polygon style= "fill: #0091FF; opacity:1.00 " points="12.00,31.99 15.01,31.99 15.01,31.33 " />
-<polygon style= "fill: #0091FF; opacity:1.00 " points="15.01,31.33 12.00,31.33 12.00,31.99 " />
-<polygon style= "fill: #00AEFF; opacity:1.00 " points="12.00,31.33 15.01,31.33 15.01,30.66 " />
-<polygon style= "fill: #00AEFF; opacity:1.00 " points="15.01,30.66 12.00,30.66 12.00,31.33 " />
-<polygon style= "fill: #00CCFF; opacity:1.00 " points="12.00,30.66 15.01,30.66 15.01,30.00 " />
-<polygon style= "fill: #00CCFF; opacity:1.00 " points="15.01,30.00 12.00,30.00 12.00,30.66 " />
-<polygon style= "fill: #00E9FF; opacity:1.00 " points="12.00,30.00 15.01,30.00 15.01,29.34 " />
-<polygon style= "fill: #00E9FF; opacity:1.00 " points="15.01,29.34 12.00,29.34 12.00,30.00 " />
-<polygon style= "fill: #00FFF7; opacity:1.00 " points="12.00,29.34 15.01,29.34 15.01,28.68 " />
-<polygon style= "fill: #00FFF7; opacity:1.00 " points="15.01,28.68 12.00,28.68 12.00,29.34 " />
-<polygon style= "fill: #00FFDA; opacity:1.00 " points="12.00,28.68 15.01,28.68 15.01,28.01 " />
-<polygon style= "fill: #00FFDA; opacity:1.00 " points="15.01,28.01 12.00,28.01 12.00,28.68 " />
-<polygon style= "fill: #00FFBD; opacity:1.00 " points="12.00,28.01 15.01,28.01 15.01,27.35 " />
-<polygon style= "fill: #00FFBD; opacity:1.00 " points="15.01,27.35 12.00,27.35 12.00,28.01 " />
-<polygon style= "fill: #00FFA0; opacity:1.00 " points="12.00,27.35 15.01,27.35 15.01,26.68 " />
-<polygon style= "fill: #00FFA0; opacity:1.00 " points="15.01,26.68 12.00,26.68 12.00,27.35 " />
-<polygon style= "fill: #00FF83; opacity:1.00 " points="12.00,26.68 15.01,26.68 15.01,26.02 " />
-<polygon style= "fill: #00FF83; opacity:1.00 " points="15.01,26.02 12.00,26.02 12.00,26.68 " />
-<polygon style= "fill: #00FF66; opacity:1.00 " points="12.00,26.02 15.01,26.02 15.01,25.36 " />
-<polygon style= "fill: #00FF66; opacity:1.00 " points="15.01,25.36 12.00,25.36 12.00,26.02 " />
-<polygon style= "fill: #00FF48; opacity:1.00 " points="12.00,25.36 15.01,25.36 15.01,24.69 " />
-<polygon style= "fill: #00FF48; opacity:1.00 " points="15.01,24.69 12.00,24.69 12.00,25.36 " />
-<polygon style= "fill: #00FF2B; opacity:1.00 " points="12.00,24.69 15.01,24.69 15.01,24.03 " />
-<polygon style= "fill: #00FF2B; opacity:1.00 " points="15.01,24.03 12.00,24.03 12.00,24.69 " />
-<polygon style= "fill: #00FF0E; opacity:1.00 " points="12.00,24.03 15.01,24.03 15.01,23.36 " />
-<polygon style= "fill: #00FF0E; opacity:1.00 " points="15.01,23.36 12.00,23.36 12.00,24.03 " />
-<polygon style= "fill: #0EFF00; opacity:1.00 " points="12.00,23.36 15.01,23.36 15.01,22.70 " />
-<polygon style= "fill: #0EFF00; opacity:1.00 " points="15.01,22.70 12.00,22.70 12.00,23.36 " />
-<polygon style= "fill: #2BFF00; opacity:1.00 " points="12.00,22.70 15.01,22.70 15.01,22.04 " />
-<polygon style= "fill: #2BFF00; opacity:1.00 " points="15.01,22.04 12.00,22.04 12.00,22.70 " />
-<polygon style= "fill: #48FF00; opacity:1.00 " points="12.00,22.04 15.01,22.04 15.01,21.37 " />
-<polygon style= "fill: #48FF00; opacity:1.00 " points="15.01,21.37 12.00,21.37 12.00,22.04 " />
-<polygon style= "fill: #66FF00; opacity:1.00 " points="12.00,21.37 15.01,21.37 15.01,20.71 " />
-<polygon style= "fill: #66FF00; opacity:1.00 " points="15.01,20.71 12.00,20.71 12.00,21.37 " />
-<polygon style= "fill: #83FF00; opacity:1.00 " points="12.00,20.71 15.01,20.71 15.01,20.04 " />
-<polygon style= "fill: #83FF00; opacity:1.00 " points="15.01,20.04 12.00,20.04 12.00,20.71 " />
-<polygon style= "fill: #A0FF00; opacity:1.00 " points="12.00,20.04 15.01,20.04 15.01,19.38 " />
-<polygon style= "fill: #A0FF00; opacity:1.00 " points="15.01,19.38 12.00,19.38 12.00,20.04 " />
-<polygon style= "fill: #BDFF00; opacity:1.00 " points="12.00,19.38 15.01,19.38 15.01,18.72 " />
-<polygon style= "fill: #BDFF00; opacity:1.00 " points="15.01,18.72 12.00,18.72 12.00,19.38 " />
-<polygon style= "fill: #DAFF00; opacity:1.00 " points="12.00,18.72 15.01,18.72 15.01,18.05 " />
-<polygon style= "fill: #DAFF00; opacity:1.00 " points="15.01,18.05 12.00,18.05 12.00,18.72 " />
-<polygon style= "fill: #F7FF00; opacity:1.00 " points="12.00,18.05 15.01,18.05 15.01,17.39 " />
-<polygon style= "fill: #F7FF00; opacity:1.00 " points="15.01,17.39 12.00,17.39 12.00,18.05 " />
-<polygon style= "fill: #FFE900; opacity:1.00 " points="12.00,17.39 15.01,17.39 15.01,16.73 " />
-<polygon style= "fill: #FFE900; opacity:1.00 " points="15.01,16.73 12.00,16.73 12.00,17.39 " />
-<polygon style= "fill: #FFCC00; opacity:1.00 " points="12.00,16.73 15.01,16.73 15.01,16.06 " />
-<polygon style= "fill: #FFCC00; opacity:1.00 " points="15.01,16.06 12.00,16.06 12.00,16.73 " />
-<polygon style= "fill: #FFAE00; opacity:1.00 " points="12.00,16.06 15.01,16.06 15.01,15.40 " />
-<polygon style= "fill: #FFAE00; opacity:1.00 " points="15.01,15.40 12.00,15.40 12.00,16.06 " />
-<polygon style= "fill: #FF9100; opacity:1.00 " points="12.00,15.40 15.01,15.40 15.01,14.73 " />
-<polygon style= "fill: #FF9100; opacity:1.00 " points="15.01,14.73 12.00,14.73 12.00,15.40 " />
-<polygon style= "fill: #FF7400; opacity:1.00 " points="12.00,14.73 15.01,14.73 15.01,14.07 " />
-<polygon style= "fill: #FF7400; opacity:1.00 " points="15.01,14.07 12.00,14.07 12.00,14.73 " />
-<polygon style= "fill: #FF5700; opacity:1.00 " points="12.00,14.07 15.01,14.07 15.01,13.41 " />
-<polygon style= "fill: #FF5700; opacity:1.00 " points="15.01,13.41 12.00,13.41 12.00,14.07 " />
-<polygon style= "fill: #FF3A00; opacity:1.00 " points="12.00,13.41 15.01,13.41 15.01,12.74 " />
-<polygon style= "fill: #FF3A00; opacity:1.00 " points="15.01,12.74 12.00,12.74 12.00,13.41 " />
-<polygon style= "fill: #FF1D00; opacity:1.00 " points="12.00,12.74 15.01,12.74 15.01,12.08 " />
-<polygon style= "fill: #FF1D00; opacity:1.00 " points="15.01,12.08 12.00,12.08 12.00,12.74 " />
-<polygon style= "fill: #FF0000; opacity:1.00 " points="12.00,12.08 15.01,12.08 15.01,11.41 " />
-<polygon style= "fill: #FF0000; opacity:1.00 " points="15.01,11.41 12.00,11.41 12.00,12.08 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 40.23,204.46 39.86,204.15 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 39.86,204.15 39.55,204.09 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 39.55,204.09 39.41,204.30 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 39.41,204.30 39.50,204.70 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 39.50,204.70 39.78,205.13 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 39.78,205.13 40.14,205.43 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 40.14,205.43 40.45,205.50 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="40.50,204.89 40.45,205.50 40.59,205.29 " />
-<script type="text/ecmascript"><![CDATA[
-var svgdoc, root; 
-var fTol = 2000.;
-var fBlueTol = 0.05 * fTol;
-var fGreenTol = 0.017 * fTol;
-var fRedTol = 0.032 * fTol;
-var svgnsz="http://www.w3.org/2000/svg";
-var version = 'Viewer unknown';
-try
-{
-version = window.getSVGViewerVersion();
-if(version.search("Adobe") != -1)
-{
-svgnsz = null;
-}
-}
-catch(er)
-{
-}
-function SubDivideTriangle(evt, x1,y1,x2,y2,x3,y3,c1R,c1G,c1B,c2R,c2G,c2B,c3R,c3G,c3B,alpha)
-{
-svgdoc=evt.target.ownerDocument;
-root=evt.target;
-
-if(Math.abs(c2B - c1B) > fBlueTol ||
-Math.abs(c2G - c1G) > fGreenTol ||
-Math.abs(c2R - c1R) > fRedTol ||
-Math.abs(c3B - c1B) > fBlueTol ||
-Math.abs(c3G - c1G) > fGreenTol ||
-Math.abs(c3R - c1R) > fRedTol ||
-Math.abs(c2B - c3B) > fBlueTol ||
-Math.abs(c2G - c3G) > fGreenTol ||
-Math.abs(c2R - c3R) > fRedTol )
-{
-var v1x = 0.5*(x1+x2);
-var v1y = 0.5*(y1+y2);
-var v2x = 0.5*(x1+x3);
-var v2y = 0.5*(y1+y3);
-var v3x = 0.5*(x2+x3);
-var v3y = 0.5*(y2+y3);
-var c1r = 0.5*(c1R+c2R);
-var c1g = 0.5*(c1G+c2G);
-var c1b = 0.5*(c1B+c2B);
-var c2r = 0.5*(c1R+c3R);
-var c2g = 0.5*(c1G+c3G);
-var c2b = 0.5*(c1B+c3B);
-var c3r = 0.5*(c2R+c3R);
-var c3g = 0.5*(c2G+c3G);
-var c3b = 0.5*(c2B+c3B);
-SubDivideTriangle(evt,x1,y1,v1x,v1y,v2x,v2y, c1R,c1G,c1B,c1r,c1g,c1b,c2r,c2g,c2b, alpha);
-SubDivideTriangle(evt,v1x,v1y,v2x,v2y,v3x,v3y, c1r,c1g,c1b,c2r,c2g,c2b,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v1x,v1y,x2,y2,v3x,v3y, c1r,c1g,c1b,c2R,c2G,c2B,c3r,c3g,c3b,alpha);
-SubDivideTriangle(evt,v2x,v2y,v3x,v3y,x3,y3, c2r,c2g,c2b,c3r,c3g,c3b,c3R,c3G,c3B,alpha);
-}
-else
-{
-obj = svgdoc.createElementNS(svgnsz,'polygon');
-str = String(x1) + "," + String(y1) + " " + String(x2) + "," + String(y2) + " " + String(x3) + "," + String(y3) ;
-obj.setAttributeNS(null,'points', str);
-var rc = Math.round((c1R+c2R+c3R)/3.0).toString(16);
-var gc = Math.round((c1G+c2G+c3G)/3.0).toString(16);
-var bc = Math.round((c1B+c2B+c3B)/3.0).toString(16);
-if(rc.length == 1) rc = "0"+rc;
-if(gc.length == 1) gc = "0"+gc;
-if(bc.length == 1) bc = "0"+bc;
-cStr = "#" + rc + gc + bc;
-aStr = String(alpha);
-obj.setAttributeNS(null, "style", "fill:" + cStr + "; stroke:" + cStr + "; opacity:" + aStr );
-aStr = String(alpha);
-obj.setAttributeNS(null,"opacity", aStr);
-root.appendChild(obj);
-}
-}
-]]></script>
-<g onload="SubDivideTriangle(evt,40.50,204.89,46.79,200.25,46.51,199.82,156,0,0,156,0,0,191,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,46.51,199.82,40.23,204.46,40.50,204.89,191,0,0,191,0,0,156,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,40.23,204.46,46.51,199.82,46.14,199.52,191,0,0,191,0,0,202,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,46.14,199.52,39.86,204.15,40.23,204.46,202,0,0,202,0,0,191,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,39.86,204.15,46.14,199.52,45.84,199.46,202,0,0,202,0,0,184,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,45.84,199.46,39.55,204.09,39.86,204.15,184,0,0,184,0,0,202,0,0,1.00)" />
-<polygon style= "fill: #7F0000; opacity:1.00 " points="40.45,205.50 46.74,200.86 46.88,200.65 " />
-<polygon style= "fill: #7F0000; opacity:1.00 " points="46.88,200.65 40.59,205.29 40.45,205.50 " />
-<g onload="SubDivideTriangle(evt,40.59,205.29,46.88,200.65,46.79,200.25,127,0,0,127,0,0,156,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,46.79,200.25,40.50,204.89,40.59,205.29,156,0,0,156,0,0,127,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,49.67,197.66,47.62,200.42,47.85,201.48,127,0,0,133,0,0,127,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,49.67,197.66,45.08,198.29,45.91,198.45,127,0,0,158,0,0,175,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,49.67,197.66,45.91,198.45,46.88,199.27,127,0,0,175,0,0,165,0,0,1.00)" />
-<g onload="SubDivideTriangle(evt,49.67,197.66,46.88,199.27,47.62,200.42,127,0,0,165,0,0,133,0,0,1.00)" />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 47.62,200.42 46.88,199.27 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 46.88,199.27 45.91,198.45 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 45.91,198.45 45.08,198.29 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 45.08,198.29 44.72,198.84 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 44.72,198.84 44.95,199.89 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 44.95,199.89 45.70,201.05 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 45.70,201.05 46.66,201.86 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 46.66,201.86 47.49,202.03 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 47.49,202.03 47.85,201.48 " />
-<polygon style= "fill: #AD0000; opacity:1.00 " points="46.29,200.16 47.85,201.48 47.62,200.42 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 40.20,204.38 39.71,204.56 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 39.71,204.56 39.34,204.84 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 39.34,204.84 39.22,205.10 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 39.22,205.10 39.40,205.24 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 39.40,205.24 39.81,205.21 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 39.81,205.21 40.29,205.03 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 40.29,205.03 40.66,204.75 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="40.61,204.35 40.66,204.75 40.79,204.49 " />
-<g onload="SubDivideTriangle(evt,39.22,205.10,42.46,212.43,42.64,212.57,0,147,0,0,147,0,0,173,0,1.00)" />
-<g onload="SubDivideTriangle(evt,42.64,212.57,39.40,205.24,39.22,205.10,0,173,0,0,173,0,0,147,0,1.00)" />
-<g onload="SubDivideTriangle(evt,39.40,205.24,42.64,212.57,43.05,212.54,0,173,0,0,173,0,0,181,0,1.00)" />
-<g onload="SubDivideTriangle(evt,43.05,212.54,39.81,205.21,39.40,205.24,0,181,0,0,181,0,0,173,0,1.00)" />
-<g onload="SubDivideTriangle(evt,39.81,205.21,43.05,212.54,43.54,212.36,0,181,0,0,181,0,0,169,0,1.00)" />
-<g onload="SubDivideTriangle(evt,43.54,212.36,40.29,205.03,39.81,205.21,0,169,0,0,169,0,0,181,0,1.00)" />
-<g onload="SubDivideTriangle(evt,40.29,205.03,43.54,212.36,43.91,212.08,0,169,0,0,169,0,0,140,0,1.00)" />
-<g onload="SubDivideTriangle(evt,43.91,212.08,40.66,204.75,40.29,205.03,0,140,0,0,140,0,0,169,0,1.00)" />
-<g onload="SubDivideTriangle(evt,40.66,204.75,43.91,212.08,44.03,211.82,0,140,0,0,140,0,0,127,0,1.00)" />
-<g onload="SubDivideTriangle(evt,44.03,211.82,40.79,204.49,40.66,204.75,0,127,0,0,127,0,0,140,0,1.00)" />
-<polygon style= "fill: #007F00; opacity:1.00 " points="44.99,216.07 45.33,211.32 45.01,212.01 " />
-<g onload="SubDivideTriangle(evt,44.99,216.07,45.01,212.01,44.02,212.74,0,127,0,0,127,0,0,135,0,1.00)" />
-<g onload="SubDivideTriangle(evt,44.99,216.07,44.02,212.74,42.73,213.24,0,127,0,0,135,0,0,146,0,1.00)" />
-<g onload="SubDivideTriangle(evt,44.99,216.07,42.73,213.24,41.63,213.31,0,127,0,0,146,0,0,139,0,1.00)" />
-<g onload="SubDivideTriangle(evt,44.99,216.07,41.63,213.31,41.16,212.93,0,127,0,0,139,0,0,127,0,1.00)" />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 44.86,210.94 43.77,211.01 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 43.77,211.01 42.47,211.51 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 42.47,211.51 41.48,212.24 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 41.48,212.24 41.16,212.93 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 41.16,212.93 41.63,213.31 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 41.63,213.31 42.73,213.24 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 42.73,213.24 44.02,212.74 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 44.02,212.74 45.01,212.01 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 45.01,212.01 45.33,211.32 " />
-<polygon style= "fill: #00C400; opacity:1.00 " points="43.25,212.13 45.33,211.32 44.86,210.94 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 40.31,204.02 39.89,203.98 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 39.89,203.98 39.52,204.26 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 39.52,204.26 39.33,204.74 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 39.33,204.74 39.40,205.24 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 39.40,205.24 39.70,205.57 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 39.70,205.57 40.11,205.60 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 40.11,205.60 40.49,205.33 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="40.61,204.35 40.49,205.33 40.68,204.85 " />
-<g onload="SubDivideTriangle(evt,40.31,204.02,35.11,202.99,34.69,202.95,0,0,130,0,0,130,0,0,179,1.00)" />
-<g onload="SubDivideTriangle(evt,34.69,202.95,39.89,203.98,40.31,204.02,0,0,179,0,0,179,0,0,130,1.00)" />
-<g onload="SubDivideTriangle(evt,39.89,203.98,34.69,202.95,34.32,203.23,0,0,179,0,0,179,0,0,207,1.00)" />
-<g onload="SubDivideTriangle(evt,34.32,203.23,39.52,204.26,39.89,203.98,0,0,207,0,0,207,0,0,179,1.00)" />
-<polygon style= "fill: #0000CF; opacity:1.00 " points="39.52,204.26 34.32,203.23 34.13,203.71 " />
-<polygon style= "fill: #0000CD; opacity:1.00 " points="34.13,203.71 39.33,204.74 39.52,204.26 " />
-<g onload="SubDivideTriangle(evt,39.33,204.74,34.13,203.71,34.20,204.21,0,0,205,0,0,205,0,0,173,1.00)" />
-<g onload="SubDivideTriangle(evt,34.20,204.21,39.40,205.24,39.33,204.74,0,0,173,0,0,173,0,0,205,1.00)" />
-<g onload="SubDivideTriangle(evt,39.40,205.24,34.20,204.21,34.50,204.54,0,0,173,0,0,173,0,0,127,1.00)" />
-<g onload="SubDivideTriangle(evt,34.50,204.54,39.70,205.57,39.40,205.24,0,0,127,0,0,127,0,0,173,1.00)" />
-<g onload="SubDivideTriangle(evt,32.00,203.21,33.19,204.95,33.01,203.62,0,0,127,0,0,156,0,0,185,1.00)" />
-<g onload="SubDivideTriangle(evt,32.00,203.21,33.01,203.62,33.51,202.34,0,0,127,0,0,185,0,0,187,1.00)" />
-<g onload="SubDivideTriangle(evt,32.00,203.21,33.51,202.34,34.51,201.61,0,0,127,0,0,187,0,0,161,1.00)" />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 36.41,202.57 35.61,201.70 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 35.61,201.70 34.51,201.61 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 34.51,201.61 33.51,202.34 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 33.51,202.34 33.01,203.62 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 33.01,203.62 33.19,204.95 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 33.19,204.95 33.98,205.83 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 33.98,205.83 35.09,205.92 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 35.09,205.92 36.09,205.18 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 36.09,205.18 36.59,203.91 " />
-<polygon style= "fill: #00009C; opacity:1.00 " points="34.80,203.76 36.59,203.91 36.41,202.57 " />
-<line x1="32.01" y1="5.44"  x2="10.00" y2="5.44" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="10.00" y1="5.44"  x2="10.00" y2="37.30" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="10.00" y1="37.30"  x2="32.01" y2="37.30" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="32.01" y1="37.30"  x2="32.01" y2="5.44" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="35.31"  x2="16.01" y2="35.31" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="33.32"  x2="16.01" y2="33.32" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="31.33"  x2="16.01" y2="31.33" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="29.34"  x2="16.01" y2="29.34" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="27.35"  x2="16.01" y2="27.35" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="25.36"  x2="16.01" y2="25.36" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="23.36"  x2="16.01" y2="23.36" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="21.37"  x2="16.01" y2="21.37" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="19.38"  x2="16.01" y2="19.38" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="17.39"  x2="16.01" y2="17.39" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="15.40"  x2="16.01" y2="15.40" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="13.41"  x2="16.01" y2="13.41" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="11.41"  x2="16.01" y2="11.41" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="35.31"  x2="12.00" y2="11.41" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="12.00" y1="11.41"  x2="15.01" y2="11.41" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="15.01" y1="11.41"  x2="15.01" y2="35.31" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<line x1="15.01" y1="35.31"  x2="12.00" y2="35.31" style= "stroke: #000000;stroke-width:0.14; stroke-dasharray: 0 " /> 
-<text x="12.00" y="9.42" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- U, Magnitude 
- </text>
-<text x="17.00" y="35.81" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +0.000e+00 
- </text>
-<text x="17.00" y="33.82" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +9.795e-02 
- </text>
-<text x="17.00" y="31.82" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +1.959e-01 
- </text>
-<text x="17.00" y="29.83" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +2.938e-01 
- </text>
-<text x="17.00" y="27.84" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +3.918e-01 
- </text>
-<text x="17.00" y="25.85" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +4.897e-01 
- </text>
-<text x="17.00" y="23.86" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +5.877e-01 
- </text>
-<text x="17.00" y="21.87" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +6.856e-01 
- </text>
-<text x="17.00" y="19.88" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +7.836e-01 
- </text>
-<text x="17.00" y="17.88" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +8.815e-01 
- </text>
-<text x="17.00" y="15.89" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +9.795e-01 
- </text>
-<text x="17.00" y="13.90" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +1.077e+00 
- </text>
-<text x="17.00" y="11.91" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- +1.175e+00 
- </text>
-<text x="66.00" y="200.07" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- Step: Standard_Buckling 
- </text>
-<text x="66.00" y="202.26" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- Mode        16: EigenValue =   5485.8 
- </text>
-<text x="66.00" y="204.45" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- Primary Var: U, Magnitude 
- </text>
-<text x="66.00" y="206.64" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- Deformed Var: U   Deformation Scale Factor: +1.000e+00 
- </text>
-<text x="66.00" y="182.15" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
-  
- </text>
-<text x="66.00" y="184.34" style=" font-family:verdana; font-weight:normal; font-style:normal; font-size:2.29; fill:#000000;" > 
- ODB: Job-1.odb    Abaqus/Standard 6.14-3    Thu May 10 18:57:31 GMT Daylight Time 2018 
- </text>
-<text x="50.35" y="196.92" style=" font-family:verdana; font-weight:bold; font-style:normal; font-size:2.86; fill:#000000;" > 
- X 
- </text>
-<text x="45.36" y="218.54" style=" font-family:verdana; font-weight:bold; font-style:normal; font-size:2.86; fill:#000000;" > 
- Y 
- </text>
-<text x="30.10" y="203.43" style=" font-family:verdana; font-weight:bold; font-style:normal; font-size:2.86; fill:#000000;" > 
- Z 
- </text>
-</svg>
-</svg>
diff --git a/docs/source/images/interlinked_zone.pdf b/docs/source/images/interlinked_zone.pdf
deleted file mode 100644
index 09f8375d1c7071c63b6a6679effe8107a7104247..0000000000000000000000000000000000000000
Binary files a/docs/source/images/interlinked_zone.pdf and /dev/null differ
diff --git a/docs/source/images/spindle_html.pdf b/docs/source/images/spindle_html.pdf
deleted file mode 100644
index e0062a07af7ce26cbb625ce8320a68943c962988..0000000000000000000000000000000000000000
Binary files a/docs/source/images/spindle_html.pdf and /dev/null differ
diff --git a/docs/source/index.rst b/docs/source/index.rst
deleted file mode 100644
index 636e3283affb10249ee8ecae1d4bee01be29c1e8..0000000000000000000000000000000000000000
--- a/docs/source/index.rst
+++ /dev/null
@@ -1,45 +0,0 @@
-.. FEA Spindle documentation master file, created by
-   sphinx-quickstart on Sat May 12 20:51:06 2018.
-   You can adapt this file completely to your liking, but it should at least
-   contain the root `toctree` directive.
-
-Welcome to the interactive documentation of the Spindle FEA application
-===================================
-
-.. figure::  images/Spindle_mode2.eps
-   :align:   center
-
-This the interactive documentation to the application designed to perform parametric stability modelling of the
-mitotic spindle structures within various cell types during mitosis. The application relies on `Abaqus CAE
-<https://www.3ds.com/products-services/simulia/products/abaqus/abaquscae/>`_ finite
-element code and allows users to design and execute mitotic spindle modelling provided the essential spindle parameter
-value are provided. The application is created ``Python 2.7`` and has a modular structure which allows easy modification
-and extension of the current functionality.
-
-This documentation is a work in progress and is prone to changes and updates and so does the application itself.
-
-.. toctree::
-   :maxdepth: 2
-   :caption: Contents:
-
-   HowToRun
-
-   Project_idea
-
-Technical documentation:
-
-.. toctree::
-   :maxdepth: 4
-
-   LoadCase
-   Parts
-   SpindleAssembly
-   SpindleMesh
-   job
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
diff --git a/docs/source/job.rst b/docs/source/job.rst
deleted file mode 100644
index 906e927c8c07dda3e387f4df18d88fd45dacd8b0..0000000000000000000000000000000000000000
--- a/docs/source/job.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-job module
-==========
-
-.. automodule:: job
-    :members:
-    :undoc-members:
-    :show-inheritance:
diff --git a/docs/source/modules.rst b/docs/source/modules.rst
deleted file mode 100644
index f19091efac91d0bce7fd85cbd8022823d61ba924..0000000000000000000000000000000000000000
--- a/docs/source/modules.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-Spindle
-=======
-
-.. toctree::
-   :maxdepth: 4
-
-   LoadCase
-   Parts
-   SpindleAssembly
-   SpindleMesh
-   job